<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.video-bg-container {
    height: 100vh;
    min-height: 550px;
    width: 100%;
    position: relative;
    margin-bottom: 50px;
    background: transparent;
}

.video-bg-container .heading-color {
    color: #FFFFFF;
}

.video-bg {
    position: fixed;
    display: block;
    top: 60%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    overflow: hidden;
    z-index: -1;
}
@media (min-width: 576px) {
    .video-bg {
        top: 50%;
    }
}

.video-bg-controls {
    bottom: -40px;
    right: 15px;
}

/* For YouTube video */
.video-background {
    background: #000;
    position: fixed;
    top: 0; 
    right: 0; 
    bottom: 0; 
    left: 0;
    z-index: -99;
}

.video-foreground,
.video-background iframe {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    pointer-events: none;
}
    @media (min-aspect-ratio: 16/9) {
        .video-foreground { 
            height: 300%; 
            top: -100%;
        }
    }
    @media (max-aspect-ratio: 16/9) {
        .video-foreground { 
            width: 300%; 
            left: -100%; 
        }
    }</pre></body></html>