/* FOOTER */
footer {
    background: #242424;
    margin-top: 3rem;
    overflow: hidden;
}

footer .container {
    padding: 22px 0 8px 0;
}

footer .logo-desktop {
    width: 194px;
    height: auto;
    aspect-ratio: 137/56;
}

footer h3 {
    margin-top: 0;
    font-size: 1.125rem;
    color: var(--light)
}

footer .footer__nav li a i {
    font-size: .625rem
}

footer .footer__nav li a:hover {
    color: var(--primary-color-light)
}

footer .address {
    margin: 0;
}

footer .address :is(span, a):not(.btn),
footer .footer__nav li a:not(.btn) {
    color: #FAFAFA;
    font-family: Inter;
    font-size: 11px;
    font-style: normal;
    font-weight: 300;
    transition: .3s;
    line-height: 18px;
}

footer .address a:not(.btn):hover {
    color: var(--primary-color-light)
}

.copyright-footer .btn.selos {
    min-height: unset;
    font-size: 11px;

}

.copyright-footer .btn.selos strong,
.copyright-footer .btn.selos i {
    font-weight: 300;
}

footer .social {
    justify-content: center;
}

footer .social .social__icon {
    border: none;
    color: var(--primary-color-light);
}

footer .address.primary {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}


footer .footer__nav nav ul {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin: 0 0 14px 0;
}

.copyright-footer {
    background: #242424;
}

.copyright-footer p {
    color: #C3C3C3;
    font-family: Inter;
    font-size: 10px;
    font-style: normal;
    font-weight: 300;
    margin: 0;
}

@media screen and (max-width: 992px) {
    footer .footer__nav nav ul {
        flex-wrap: wrap;
    }

    footer .address.primary {
        flex-direction: column;
    }
}

@media screen and (min-width: 1920px) {
    footer .container {
        padding: 38px 0 40px 0;
    }

    .copyright-footer p {
        font-size: 13px;
        font-weight: 300;
        margin: 0;
    }

    footer .footer__nav nav ul {
        gap: 24px;
        margin: 0 0 14px 0;
    }

    footer .address :is(span, a):not(.btn),
    footer .footer__nav li a:not(.btn) {
        font-size: 16px;
        font-weight: 300;
        line-height: 26px;
    }

    footer .social .social__icon i {
        font-size: 26px;
    }

    footer .logo-desktop {
        width: 274px;
        height: auto;
        aspect-ratio: 137 / 56;
    }
}