        .custom-video-carousel {
            background: #000;
        }
        .custom-video-carousel .container-fluid {
            padding: 0 !important;
        }
        .thumbs {
            position: relative;
            white-space: nowrap;
            display: flex;
            align-items: center; 
        }
        .thumbs-container {
            display: flex; 
            overflow-x: auto; 
            scroll-behavior: smooth; 
            width: 100%; 
            padding: 0 10px; 
        }

        .thumb {
            display: inline-block;
            width: 200px;
            min-width: 200px;
            height: 120px;
            margin-right: 10px;
            cursor: pointer;
            border: 2px solid transparent;
            border-radius: 5px;
            transition: border-color 0.3s;
        }
        .thumbs .btn-nav {
            height: 120px;
            position: absolute;
            top: 25%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: 1px solid #FFF;
            width: 40px;
            height: 40px;
            padding: 0;
            border-radius: 20px;
            z-index: 999;
        }
        .thumbs .btn-nav:hover {
            background: #F00 !important;
            border: 1px solid #f00;
        }
        .thumbs .btn-nav i {
            font-size: 20px;
        }
        .thumbs .btn-nav.btn-prev {
            left: 0;
            background: linear-gradient(90deg, black, transparent);
        }
        .thumbs .btn-nav.btn-next {
            right: 0;
            background: linear-gradient(270deg, black, transparent);
        }

        .thumb:hover {
            border-color: #007bff;
        }

        .active-thumb {
            border-color: #007bff;
        }

        .video-content {
            overflow: hidden;
        }
        .video-content video {
            height: 72vh;
        }
		.video-content iframe {
			width: 100% !important;
			height: 100% !important;
		}

	.owl-stage-outer {
		margin-bottom: 0 !important
	}
        
        @media screen and (min-width: 1600px) {
            .video-content {
                height: 71vh;
            }
        }