.footer {
    background-color: #201A46;
    padding: 145px 137px;
    color: #fff;
    z-index: 1;
    bottom: 0;
    right: 0;
    left: 0;
    position: relative;
}

@media (max-width: 768px) {
    .footer {
        padding: var(--spacing-20) 0;
    }
}

.footer-container {
    display: grid;
    grid-template-columns: 70% 30%;
}

@media (max-width: 1156px) {
    .footer-container {
        display: flex;
        flex-direction: column;
    }
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: baseline;
    font-family: Raleway, sans-serif;
    font-size: 67px;
    letter-spacing: 7px;
    line-height: normal;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .footer-brand {
        font-size: var(--font-size-4xl);
        letter-spacing: 3px;
    }
}

.brand-light {
    font-weight: 400;
}

.brand-bold {
    font-weight: 800;
}

.footer-description {
    white-space: normal;
    font-family: Raleway;
    font-size: var(--font-size-xl);
    font-style: normal;
    font-weight: 300;
    line-height: 1.4;
    color: #fff;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .footer-description {
        font-size: var(--font-size-sm);
    }
}

.copyright {
    opacity: 0.6;
    font-size: var(--font-size-sm);
}

.footer-legal {
    display: flex;
    gap: var(--spacing-6);
}

.footer-legal a {
    font-size: var(--font-size-2xl);
    transition: opacity 0.2s;
    margin-right: 16px;
    color: inherit;
    text-decoration: none;
    font-family: Helvetica, sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 1;
}

.footer-legal a:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-legal {
        flex-direction: column;
    }
}

.footer-right {
    display: flex;
    width: 75%;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 20px;
}

@media (max-width: 1156px) {
    .footer-right {
        gap: var(--spacing-8);
    }
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-socials a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    border-bottom: white 1px solid;
    padding: 10px 0;
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    opacity: 0.6;
}

.footer-logo-nv img {
    height: 48px;
    object-fit: contain;
}
