/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 .sticky-video-container {
    position: relative;
    height: 2000dvh;
    width: 100%;
}

.sticky-video-wrapper {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100lvh;
    z-index: 1;
}

#dversovideoscroller {
    width: 100%;
    aspect-ratio: 10 / 6;
    max-height: 100lvh;
    position: relative;
    background-color: #101010;
}

.scroll-video {
    width: 100%;
    height: 100lvh;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    #dversovideoscroller {
        max-height: unset !important;
        aspect-ratio: 5/10;
    }
}