﻿.intro-slide-video {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
}

.video-banner-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover; /* Changed from contain to cover */
}

@media (max-width: 768px) {
    .video-banner-background {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
