/* HERO HERE */
#hero {
    width: 100%;
    overflow: hidden;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: var(--space-lg);
}
.hero-scroll-wrapper {
    height: 250vh;
    position: relative;
}
#hero video,
#hero img {
    position: absolute;
    top: 0;
    left: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transition: filter 0.1s linear;
}

#hero span,
#hero .hero_row {
    transition: transform 0.1s linear;
    will-change: transform;
}

#hero_one,
#hero_two,
#hero_four {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

#hero_one {
    margin: 0 auto clamp(-16px, -1.4vw, -6px);
}

#hero_two {
    margin: 0 auto;
}

.hero_row {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: var(--space-sm);
    margin-top: clamp(-16px, -1.4vw, -6px);
}

#hero_three {
    position: relative;
    display: block;
    text-align: center;
}

#hero_four {
    margin: clamp(-16px, -1.4vw, -6px) auto 0;
}

#hero_one svg {
    height: clamp(50px, 8.6vw, 165px);
    width: auto;
}
#hero_two svg {
    height: clamp(80px, 13vw, 250px);
    width: auto;
}
#hero_three svg {
    height: clamp(70px, 12vw, 230px);
    width: auto;
}
#hero_four svg {
    height: clamp(65px, 10.7vw, 205px);
    width: auto;
}

@media (max-width: 992px) {
    #hero {
        gap: 1rem;
    }
    #hero_one svg,
    #hero_two svg,
    #hero_three svg,
    #hero_four svg {
        max-width: 92vw;
    }
}

#test {
    height: 100vh;
    width: 100%;
    display: block;
}