
/* VIDEO */
.video-container {
    overflow: hidden;
    top: 0; 
    left: 0;
    
}

video {
    overflow: hidden;
    top: 50%;
    left: 0;
    width: 100vw;
    height: 100vh; 
    object-fit: cover;
}

@media (max-width: 768px) {
    .video-container {
        position: relative;
        width: 100%;
        height: 0;
        padding-top: 56.25%; /* 16:9 Aspect Ratio */
        overflow: hidden;
    }
    
    .video-container video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}


/* FIN VIDEO */

