<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.video-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 360px; 
    display: flex;
    align-items: center;
}

.video-banner .video-banner-text {
    text-align: center;
    margin-bottom: 50px;
}
.video-banner .video-banner-text .title {
    font-size: 27px;
    line-height: 1.4em;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
}

.video-banner .video-banner-text .text {
    font-size: 25px;
    line-height: 1.4em;
    font-weight: 700;
    color: #fff;
}

.video-text-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    border: none;
    cursor: pointer;
}

.video-text-cover__img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: all .3s ease;
    border-radius: 20px;
    box-shadow: 0 3px 20px rgba(0, 38, 62, .15);
}

.video-text-cover:hover .video-text-cover__img { opacity: 1; }

.video-text-cover__link {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-text-cover__link i {
    width: 64px;
    height: 64px;
    background-color: #00263E;
    border-radius: 50%;
    font-size: 20px;
    color: #D2EB15;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;
}
.video-text-cover__link i:hover {
    transform: scale(1.1);
}

.video-text-cover__link i:before { margin-left: 8px; }



.fluid-width-video-wrapper {
    padding: 0 !important;
    height: 190px;
}

.video-text .row-flex [class*="col-"]:first-child { margin-bottom: 50px; } 

.video_block_popup__video::after {
    display: none !important;
}

@media (min-width: 600px) {
    .video-banner {
        min-height: 460px; 
    }
    .fluid-width-video-wrapper { 
        height: 300px; 
    }
    .video-banner .video-banner-text .text {
        font-size: 35px;
    }
}

@media (min-width: 768px) {
    .fluid-width-video-wrapper { 
        height: 330px; 
    }

    .video-text-cover__link i {
        width: 84px;
        height: 84px;
        font-size: 26px;
    }
     .video-text__video a { 
        height: 340px; 
    }
}
@media (min-width: 1025px) {
    .video-banner .video-banner-text .text {
        font-size: 45px;
    }
}

@media (min-width: 1200px) {
    .video-banner {
        min-height: 550px;
    }
    .fluid-width-video-wrapper { 
        height: 420px; 
    }
    .video-text__video a { 
        height: 420px; 
    }
}
</pre></body></html>