/* =========================================
   FOOTER
========================================= */

.footer {
    background: #060c18;
    color: rgba(255, 255, 255, 0.7);
    padding: 100px 0 0;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    /* display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 0.9fr;
    gap: 80px; */
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(232, 228, 220, 0.30);
    align-items: start;
}

/* ==========================
   Brand
========================== */

/* .footer__brand {
    display: flex;
    align-items: flex-start;
} */

.footer-logo-img {
    max-width: 246px;
}

.footer-logo {
    display: block;
    width: 100%;
    height: auto;
}

/* ==========================
   Columns
========================== */
.footer-links-columns {
    display: flex;
    gap: 70px;
}

.footer__col {
    max-width: 230px !important;
    width: 230px !important;
}

.footer__col-title {
    margin-bottom: 16px;
    color: var(--color-primary);
}

.footer__links-grid {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 40px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* .footer__links li:not(:last-child) {
    margin-bottom: 14px;
} */

/* ==========================
   Links
========================== */

.footer__link,
.footer__bottom-link {
    text-decoration: none;
    transition: color .3s ease;
}

.footer__link:hover,
.footer__bottom-link:hover {
    color: #b68b47;
}

/* .footer__link--static {
    color: rgba(255, 255, 255, .65);
} */

/* ==========================
   Contact Address
========================== */

.footer__col--contact .footer__link--static {
    max-width: 210px;
}

/* ==========================
   Bottom
========================== */

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
}

/* .footer__copyright {
    color: rgba(255, 255, 255, .45);
    margin: 0;
} */

.footer__bottom-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.footer-social-links,
.footer-media a.social-link {
    display: flex;
}

.footer-social-links {
    margin-top: 30px;
    gap: 10px;
}

.footer-media {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background: #B48D53;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer__link--static:hover {
    color: unset;
}

.footer-bbb img {
	width:auto;
}


@media only screen and (max-width:1366px) {
    .footer__links-grid {
        gap: 24px;
    }

    .footer__col {
        width: 210px !important;
    }

    .footer {
        padding: 80px 0 0;
    }
}

@media only screen and (max-width:1199px) {
    .footer__top {
        gap: 48px;
    }

    .footer__col {
        width: 100% !important;
    }

    .footer {
        padding: 70px 0 0;
    }
}

@media only screen and (max-width:991px) {
    .footer {
        padding-top: 56px;
    }

    .footer__top {
        gap: 70px;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }

    .footer {
        padding: 60px 0 0;
    }

    .footer-links-columns {
        gap: 45px;
    }
}

@media only screen and (max-width:767px) {
    .footer__top {
        flex-direction: column;
        gap: 36px;
        padding-bottom: 40px;
    }

    .footer__brand {
        grid-column: auto;
    }

    .footer__logo-row--big {
        font-size: 28px;
    }

    .footer__bottom {
        /* flex-direction: column;
        align-items: flex-start; */
        gap: 12px;
        padding-block: 24px;
    }

    .footer-logo-img {
        max-width: 200px;
    }

    .footer-links-columns {
        width: 100%;
        gap: 20px;
        /* flex-wrap: wrap; */
    }

    .footer__brand {
        margin: 0 auto;
    }

    .footer {
        padding: 50px 0 0;
    }

    .footer__col {
        max-width: 200px !important;
    }

    .footer__links-grid {
        gap: 15px;
    }

    .footer-links-columns {
        gap: 20px;
    }

    .footer-logo-badge {
        flex-direction: row;
        gap: 0;
        justify-content: space-between;
        width: 100%;

    }

    .footer__brand {
        margin: 0;
    }

    .footer-social-links {
        margin-top: 20px;
    }
}

@media only screen and (max-width:650px) {
    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media only screen and (max-width:575px) {
    .footer {
        padding-top: 48px;
    }

    .footer__links-grid {
        flex-direction: column;
        gap: 14px;
    }

    .footer__logo-row--small {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .footer__logo-line {
        width: 16px;
    }

    .footer__bottom-links {
        gap: 20px;
    }

    .footer-logo-img {
        max-width: 140px;
    }

    .footer__col--links,
    .footer__col--contact,
    .footer__col--hours {
        width: 46% !important;
    }

    .footer {
        padding: 40px 0 0;
    }

    .footer-links-columns {
        flex-wrap: wrap;
    }
}

@media only screen and (max-width:479px) {

    .footer__col--links,
    .footer__col--contact,
    .footer__col--hours {
        width: 100% !important;
    }
}