footer.footer-main-box {
    background: #ffffff !important;
}
.footer-main-box {
    border-top: 0.75px solid #0000004d;
    padding: 40px 0;
}
.footer-card-box {
    display: flex;
    align-items: baseline;
    gap: 80px;
    padding: 0 0 40px;
}
.footer-logo {
    width: 153px;
    height: 66px;
}
.footer-card {
    max-width: 324px;
    width: 200px;
}
.footer-card:first-child {
    min-width: 324px;
}
.footer-about-brand {
    font:
        400 20px/26px "SF Pro",
        sans-serif;
    color: #000000;
    padding: 24px 0 0;
}
.quick-links-heading {
    padding: 0 0 17px;
    color: #f8941d;
    font:
        700 15px/22px "SF Pro",
        sans-serif;
    text-transform: uppercase;
}
.footer-links {
    font:
        400 16px/22px "SF Pro",
        sans-serif;
    color: #000000;
    padding-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.mail-icon-footer {
    width: 16px;
    height: 16px;
}
.footer-cities {
    position: relative;
    background: #ffffff;
    border-radius: 5px;
    border: 0.5px solid #525252;
}

.gloab-icon-footer {
    width: 16px;
    height: 16px;
}

.footer-cities.open {
    border-radius: 5px 5px 0 0;
}

.footer-card .footer-cities-input {
    padding: 14px 35px 14px 14px;
    color: #000000;
    display: flex;
    gap: 10px;
    align-items: center;
    width: 171px;
}

.footer-selected-text {
    font:
        500 14px/20px "Gilroy",
        sans-serif;
}

.footer-card .footer-cities-input.selected {
    color: #000000;
}

.footer-cities-input::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    font-size: 14px;
    transition: transform 0.5s ease;
    pointer-events: none;
    background: url(/assets/frontend/images/footer/drop-down-icon.svg);
    width: 11px;
    height: 6px;
}

.footer-cities.open .footer-cities-input::after {
    transform: translateY(-50%) rotate(180deg);
}

.footer-cities .options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 0 0 5px 5px;
    margin-top: 0;
    list-style: none;
    padding: 0;
    z-index: 10;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height 0.5s ease,
        opacity 0.5s ease;
}

.footer-cities.open .options {
    max-height: 300px;
    opacity: 1;
    overflow-y: auto;
    border: 0.5px solid #525252;
    border-top: none;
    display: block !important;
}

.footer-cities .options li {
    padding: 10px;
    cursor: pointer;
    font:
        400 14px / 20px "Gilroy",
        sans-serif;
    border-top: 1px solid #eaeaea;
}

.options li:hover {
    background: #eaeaea !important;
    color: #757575;
}
.copy-right-with-social-media {
    border-top: 0.75px solid #0000004d;
    padding: 40px 0 0;
}
.copy-right-with-social-media .footer-links {
    padding: 0;
}
.copyright-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.app-store-and-social-media {
    display: flex;
    align-items: center;
    gap: 42px;
}
.social-media,
.app-store-link {
    display: flex;
    align-items: center;
    gap: 10px;
}
.social-media-icon {
    width: 30px;
    height: 30px;
}
.app-store-buttons {
    width: 130px;
    height: 40px;
}
@media (max-width: 991px) {
    .footer-card-box {
        gap: 16px 60px;
        padding: 0 0 20px;
        flex-wrap: wrap;
    }
    .footer-card {
        width: auto;
    }
    .footer-cities.open .options {
        max-height: 170px;
    }
}
@media (max-width: 575px) {
    .footer-card .footer-cities-input {
        width: 191px;
    }
    .footer-main-box {
        padding: 20px 0;
    }

    .copy-right-with-social-media {
        padding: 20px 0 0;
    }
    .copyright-card {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
    .app-store-and-social-media {
        gap: 16px;
        flex-direction: column;
    }
    .footer-about-brand {
        font:
            400 18px/24px "SF Pro",
            sans-serif;
        padding: 16px 0 0;
    }
    .quick-links-heading {
        padding: 0 0 10px;
    }
    .footer-links {
        font:
            400 14px/20px "SF Pro",
            sans-serif;
        padding-bottom: 8px;
    }
    .footer-card:first-child {
        min-width: 100%;
    }
}
