.false-header-wrapper {
    mix-blend-mode: difference;
    z-index: 10;
}

.false-footer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    margin-top: calc(100dvh + 100vw * 440 / var(--page-width));
    padding: calc(100vw * 37 / var(--page-width))
        calc(100vw * 47 / var(--page-width));
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    pointer-events: none;
}

.false-footer .right {
    display: flex;
    align-items: flex-start;
}

.false-footer .left > span {
    display: block;
    color: var(--white);
    margin-bottom: calc(100vw * 216 / var(--page-width));
}

.false-footer .left img {
    width: 208px;
    height: auto;
    display: block;
}

.false-footer .right > span.year {
    color: var(--white);
}

.footer-space {
    pointer-events: none;
    width: 100%;
    height: 100dvh;
}

footer.footer {
    background-color: var(--black);
    color: var(--white);
    padding: calc(100vw * 37 / var(--page-width))
        calc(100vw * 47 / var(--page-width));
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    z-index: 0;
}

footer.footer-drops {
    position: fixed;
    padding: calc(100vw * 37 / var(--page-width))
        calc(100vw * 47 / var(--page-width));
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 8;
    color: var(--black);
    display: flex;
    justify-content: space-between;
}

footer > picture {
    display: block;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    width: calc(100vw * 804 / var(--page-width));
    height: calc(100vw * 587 / var(--page-width));
}

footer > picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-content {
    color: var(--white);
    display: flex;
    left: 50%;
    top: 67%;
    transform: translate(-50%, -50%);
    position: absolute;
    flex-direction: column;
    font-size: calc(16rem / 13);
}

footer a {
    color: var(--white);
    transition: opacity 0.4s ease !important;
}

footer a:hover {
    opacity: 0.7;
}

.footer-content .social {
    display: flex;
    justify-content: center;
}

.footer-content .social > div {
    margin: calc(100vw * 20 / var(--page-width));
}

.footer-content nav {
    width: 100%;
}

.footer-content nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

.footer-content nav ul li {
    display: inline-block;
    margin: 0 calc(100vw * 20 / var(--page-width));
}

footer .credits {
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(100vw * 37 / var(--page-width));
    position: absolute;
}

footer.footer-drops ul {
    display: flex;
    gap: calc(100vw * 35 / var(--page-width));
}

footer.footer-drops a {
    color: var(--black);
}

@media only screen and (max-width: 768px) {
    .false-footer {
        display: none;
    }

    footer.footer {
        padding: calc(100vw * 40 / var(--page-width))
            calc(100vw * 24 / var(--page-width));
    }

    footer > picture {
        width: calc(100vw * 344 / var(--page-width));
        height: calc(100vw * 240 / var(--page-width));
    }

    .footer-content {
        font-size: calc(12rem / 15);
        width: 100%;
        text-align: center;
    }

    .footer-content .social {
        display: block;
    }

    .footer-content .social > div {
        margin: 0;
        margin-bottom: 3px;
    }

    .footer-content nav {
        margin-top: calc(100vw * 20 / var(--page-width));
    }

    footer .credits {
        font-size: calc(9.38rem / 15);
        width: 100%;
        left: 0;
        transform: none;
        text-align: center;
    }

    footer.footer-drops {
        position: relative;
        padding-top: calc(100vw * 75 / var(--page-width));
        padding-bottom: calc(100vw * 60 / var(--page-width));
        display: block;
        text-align: center;
        font-size: calc(10rem / 15);
        z-index: 1;
        background-color: var(--grey);
    }

    footer.footer-drops nav {
        margin-bottom: 10px;
    }

    footer.footer-drops nav ul {
        display: flex;
        justify-content: center;
        gap: 0;
    }

    .footer-content nav ul {
        display: block;
    }

    .footer-content nav ul li {
        display: block;
        margin: 0 calc(100vw * 20 / var(--page-width)) 10px;
    }
}
