.footer {
    background-color: #161a1e;
    font-size: .8rem;
    color: #fff;
    padding: 4rem 20px 20px;
    font-family: Inter, sans-serif;

    @media screen and (max-width: 1200px) {
        text-align: center;
    }
}
body.webp .footer {
    margin-top: 5rem;
    background-color: #161a1e;
    font-size: .8rem;
    color: #fff;
    padding: 4rem 20px 20px;
    font-family: Inter, sans-serif;

    @media screen and (max-width: 1200px) {
        text-align: center;
    }
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.footer p, .footer h1 {
    margin: 0;
}

.footer__container {
    max-width: 1390px;
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
}

.footer__sections {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 4rem;

    @media screen and (max-width: 1200px) {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }
}

.footer__left {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 50% !important;
    flex-basis: 50% !important;
    display: flex;
    flex-direction: column;
    gap: 1.88rem;

    @media screen and (max-width: 1200px) {
        width: 100% !important;
    }
}

.footer__logo {
    display: flex !important;
    align-items: center;
    gap: .5rem;
    text-decoration: none;

    @media screen and (max-width: 1200px) {
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }
}

.footer__social {
    @media screen and (max-width: 1200px) {
        width: 100%;
    }
}

.footer__logo {
    display: flex;
    align-content: center;
    justify-content: center;
}

.footer__title {
    color: #fff;
    font-family: Inter,sans-serif;
    font-weight: 500;
    font-size: 1.375rem;
    line-height: 1;
}

.footer__title--margin {
    margin-bottom: 1.75rem !important;
}

.footer__disclaimer {
    color: #9596a2;
    max-width: 65%;

    @media screen and (max-width: 1200px) {
        max-width: 100%;
    }
}

.footer__separator {
    height: 1px;
    width: 100%;
    margin-bottom: 22px;
    background: linear-gradient(270deg,#161a1e,#e5e7ea 48.69%,#161a1e);
}

.footer__text {
    font-size: .5625rem;
    color: #9596a2;
    text-align: center;
}

.footer__links {
    display: flex;
    gap: 3.5rem;
    list-style-type: none;
    font-weight: 500;
    margin: 0;
    padding: 0;

    @media screen and (max-width: 1200px) {
        display: flex;
        flex-direction: column !important;
    }
}

.footer__icon {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
}

.footer__items {
    list-style-type: none;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
}

.footer__link {
    color: #9596a2;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 14px;
    transition: color .3s;
}

.footer__link:hover,
.footer__link:focus,
.footer__link:active {
    color: #fff;
}