/* Restricts the canvas element from generating wider than its container frame */
#video-scroll-container canvas,
#video-scroll-container video {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100vh !important;
    object-fit: contain !important; /* Fits entire horizontal track safely inside black margins */
}
.scoll-video-container {
    @media (width < 720px) {
        display: none;
    }
}
nav {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
}

/* Mobile Fallback */
.ux_map_image_holder {
    @media (width > 720px) {
        display: none;
    }

.ux_map_image {
    width: 100%;
}
