footer {
    position: relative;
    color: #FFF;
    background: #111011;
    padding: 2.5rem 0 1.5rem 0;
}

.site-footer__inner {
    max-width: 90rem;
    padding: 0 1.5rem;
    box-sizing: content-box;
    margin: auto;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    gap: 3.125rem;
}

.footer-divider {
    width: 100%;
    height: 164px;
    position: absolute;
    transform: translateY(-5.5rem) rotate(-0deg);
}

.site-footer__logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1.75rem;
}

.site-footer__logo-img {
    max-height: 9.825rem;
}

.site-footer__col--brand {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.site-footer__col--quick-links {
    display: flex;
    gap: 1.5rem;
    row-gap: 2.91875rem;
    flex-wrap: wrap;
}

/* .site-footer__socials {
    flex-basis: 100%;
} */

h2.site-footer__heading {
    color: #FFF;
    font-family: "Teko", Sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 2.47744rem */
    margin: 0;
}

.site-footer__content p {
    color: #FFF;
    font-family: "Roboto";
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 300;
    line-height: 110%; /* 1.54056rem */
    margin: 0;
}

.site-footer__title {
    color: #FFF;
    font-family: 'Roboto';
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 1.19225rem */
    margin: 0;
}

.site-footer__brand-info {
    text-align: center;
}

.site-footer__menu {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.site-footer__menu.col-1 {
    justify-content: start;
}

.site-footer__menu.col-2 {
    justify-content: center;
}

.site-footer__list {
    display: flex;
    gap: 1rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer__socials {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: end;
    gap: 1rem;
}

a.site-footer__link {
    color: #FFF;
    font-family: "Teko", sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; /* 2.04388rem */
}

.site-footer__item {
    margin: 0;
}

.site-footer__item:last-of-type {
    margin: 0;
}

.site-footer__social-list {
    display: flex;
    gap: 1.856025rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

@media(max-width:1200px) {
    .site-footer__list {
        flex-direction: column;
    }

    .site-footer__menu {
        flex-direction: column;
        text-align: center;
    }

    .site-footer__socials {
        flex-direction: column;
        justify-content: center;
        flex: 1;
    }
}

@media(max-width:768px) {
    footer {
        padding: 2.5rem 0;
    }
    .site-footer__inner {
        flex-direction: column-reverse;
        padding: 0 0.9375rem;
    }
    .site-footer__col--brand {
        gap: 1.5rem;
    }
    .site-footer__logo {
        margin: 0;
    }
    .site-footer__title {
        text-align: center;
    }
    .site-footer__col--quick-links {
        align-items: center;
        flex-wrap: nowrap;
        flex-direction: column;
        row-gap: 1.5rem;
    }
    .site-footer__item {
        margin-bottom: 0.75rem;
        text-align: center;
    }
    .site-footer__link {
        font-size: 1.5rem;
    }
    .site-footer__item:last-of-type {
        margin-bottom: 0;
    }
    h2.site-footer__heading {
        font-size: 1.5rem;
    }
    .site-footer__content p {
        font-size: 1rem;
    }
}