.hero-video-block{
    display: flex;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.hero-video{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
}
.hero-video-block video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.hero-video-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 0;
}
.hero-video-content{
    position: absolute;
    top: 50%;
    left: var(--gutters);
    transform: translateY(-50%);
    z-index: 1;
}
.hero-video-scroll-indicator{
    position: absolute;
    bottom: 2rem;
    left: var(--gutters);
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    gap: 0.5rem;
}
.scroll-indicator-arrow{
    display: flex;
    width: 11px;
    height: 90px;
    background-image: url(../../../assets/svg/down-arrow.svg);
    background-size: cover;
    background-repeat: no-repeat;
}
.scroll-indicator-text{
    font-family: 'Inter', sans-serif;
    color: var(--wp--preset--color--beige);
    font-size: 10px;
    font-weight: 600;
    display: inline-flex;
    text-transform: uppercase;
    writing-mode: sideways-lr;
    text-orientation: sideways;
    line-height: 1;
}
@media (max-width: 576px) {
    .hero-video-scroll-indicator{
        left: unset;
        right: var(--gutters);
        bottom: 0;
    }
    .hero-video-content{
        padding-right: var(--gutters);
    }
}
@media (min-width: 2000px) {
    .hero-video-content{
        left: calc(var(--gutters)/2);
    }
    .hero-video-scroll-indicator{
        left: calc(var(--gutters)/2);
    }
}