.footer_container {
    width: 100%;
    height: 100vh;
    padding-top: 8em;
    display: flex;
    flex-direction: column;
}

.footer_container > header {
    flex: 3 3;
    display: grid;
    place-items: center;
    background-image: url("/assets/img/footer.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 50%;
}

@media (max-height: 650px) {
    .footer_container > header {
        height: 90%;
    }
}

.footer__wave {
    width: 100%;
    height: 101%;
    object-fit: cover;
}

.footer__content {
    flex: 1 1;
}

.footer__content > header {
    padding: 0 var(--navbar-side-margin);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer__content_header__image {
    width: auto;
    height: 50px;
}

.footer__content_info {
    margin: 6em var(--navbar-side-margin);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 9em;
}

.footer__content_info_section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.625em;
}

.footer__content_info_section > * {
    font-size: 1em;
    font-weight: 300;
    color: white;
    opacity: var(--text-opacity-contrast);
}

.footer__content_info_section > a {
    line-height: unset !important;
    color: inherit;
    text-decoration: none;
}

.footer__content_info_section > :first-child {
    font-size: 1.25em;
    font-weight: 400;
    opacity: 1;
}

.footer__content_info_section:last-child {
    margin-left: auto;
}

.footer__disclaimer {
    font-size: 0.8em;
    font-weight: 300;
    color: white;
    opacity: var(--text-opacity-barely);
    margin: 0 var(--navbar-side-margin);
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 900px) {
    .footer_container > header {
        height: 70%;
        background-size: 150%;
    }

    .footer__content {
        margin-top: 3em;
    }

    .footer__content > header {
        justify-content: flex-start;
    }

    .footer__content_info {
        margin-top: 3em;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 3em;
    }

    .footer__content_info_section:last-child {
        margin-left: 0;
    }

    .footer__disclaimer {
        text-align: center;
    }
}

@media (max-width: 500px) {
    .footer_container > header {
        height: 40%;
    }
}
