/* HERO */
.home-hero {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: black;
}
#home-hero--desktop {
    display: none;
}
@media only screen and (min-width: 1024px) {
    #home-hero--mobile {
        display: none;
    }

    #home-hero--desktop {
        display: block;
    }
}

.home-hero img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}


/* LOGO */
.home-logo_desktop {display: none;}

.home-logos {
    position: fixed;
    top: 45px;
    left: 1rem;
    right: 1rem;
    z-index: 5;
}

@media only screen and (min-width: 768px) {
    .home-logos {
        top: 48px;
    }
}
@media only screen and (min-width: 1024px) {
    .home-logo_mobile {display: none;}
    .home-logo_desktop {display: block;}

    .home-logos {
        top: 34px;
    }
}

.home-logos img {
    width: 100%;
    z-index: 5;
}


/* DESCRIPTION */
.home-description {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    max-height: calc(var(--baseline-small_m) * 7);
    overflow-y: auto;
    z-index: 5;
}
.home-description.t-black {color: black;}
.home-description.t-white {color: white;}
@media only screen and (min-width: 768px) {
    .home-description {
        bottom: 2rem;
        max-height: unset;
    }
}
@media only screen and (min-width: 1024px) {
    .home-description {
        bottom: calc(50px + 1rem);
    }
}