 #home_video_slider.carousel {
 	position: relative;
 	overflow: hidden;
/*  	max-height: 98vh; */
 	margin-bottom: 5px;
 	direction: rtl;
 }

 .carousel-slider {
 	display: flex;
 	transition: transform 0.5s ease;
 }

 .carousel-slide {
 	flex: 0 0 100%;
 	position: relative;
 }

 .carousel-slide>picture>img,
 .carousel-slide>video {
 	width: 100%;
 	height: 100%;
 	object-position: bottom;
 	object-fit: cover;
 }

 #site-header {
 	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
 	height: 14rem;
 	border: none;
 }

 body.vans_custom_sticky #site-header {
 	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
 	height: auto;
 	border: none;
 }

 #home_video_slider .video-content-wrap {
 	display: flex;
 	flex-direction: column;
 	position: absolute;
 	top: 72vh;
 	left: 80px;
 	color: #fff;
 	text-align: left;
 }

 #home_video_slider .video-title {
 	font-size: 70px;
 	line-height: 70px;
 	font-family: 'FannDorenCondensed';
 	font-weight: 600;
 }

 #home_video_slider .video-text {
 	font-size: 18px;
 	font-weight: 400;
 }

 #home_video_slider .video-link {
 	color: white;
 	text-decoration: underline;
 	font-size: 20px;
 }

 /* Carousel Navigation (Bullets) */
 #home_video_slider .carousel-navigation {
 	display: flex;
 	gap: 10px;
 	position: absolute;
 	bottom: 45px;
 	right: 85px;
 	z-index: 10;
 }

 #home_video_slider .carousel-bullet {
 	display: flex;
 	align-items: center;
 	justify-content: center;
 	width: 25px;
 	height: 25px;
 	border-radius: 50%;
 	background-color: rgba(0, 0, 0, 0.2);
 	border: none;
 	opacity: 1;
 	cursor: pointer;
 	position: relative;
 	overflow: hidden;
 	transition: background 0.3s ease;
 	font-weight: bold;
 	color: #fff;
 }

 #home_video_slider .carousel-bullet .bullet-number {
 	display: block;
 	position: relative;
 	z-index: 2;
 	font-size: 12px;
 }

 #home_video_slider .carousel-bullet.is-active .bullet-number {
 	display: none;
 }

 /* Progress SVG */
 #home_video_slider .carousel-bullet .progress-svg {
 	--progress: 0;
 	position: absolute;
 	width: 100%;
 	height: 100%;
 	left: 0;
 	top: 0;
 	stroke-width: 1px;
 	fill: none;
 	transform: rotate(-90deg);
 	z-index: 1;
 }

 /* Default stroke for inactive bullets */
 #home_video_slider .carousel-bullet .progress-svg circle {
 	stroke: gray;
 }

 /* Active bullet: show progress animation */
 #home_video_slider .carousel-bullet.is-active .progress-svg {
 	display: block;
 	stroke-dashoffset: calc(75.398px * (1 - var(--progress)));
 	stroke-dasharray: 75.398;
 }

 #home_video_slider .carousel-bullet.is-active .progress-svg circle {
 	stroke: #fff;
 }

 /* Play/Pause Button */
 #home_video_slider .carousel-bullet .play-pause-btn {
 	display: none;
 	position: relative;
 	background: none;
 	border: none;
 	color: #fff;
 	font-size: 20px;
 	cursor: pointer;
 	padding: 0;
 	margin: 0;
 	line-height: 1;
 	z-index: 2;
 }

 #home_video_slider .carousel-bullet.is-active .play-pause-btn {
 	display: block;
 }

 #home_video_slider .play-pause-btn svg {
 	width: 15px;
 	height: 15px;
 	fill: currentColor;
 	vertical-align: middle;
 }

 /* Carousel Navigation Arrows */
 #home_video_slider .carousel-prev,
 #home_video_slider .carousel-next {
 	display: none;
 	position: absolute;
 	top: 50%;
 	transform: translateY(-50%);
 	color: #fff;
 	width: 40px;
 	height: 40px;
 	background-color: rgba(0, 0, 0, 0.4);
 	border: none;
 	cursor: pointer;
 	align-items: center;
 	justify-content: center;
 	z-index: 10;
 	font-size: 18px;
 }

 #home_video_slider .carousel-prev {
 	right: 20px;
 }

 #home_video_slider .carousel-next {
 	left: 20px;
 }

 #home_video_slider:hover .carousel-prev.visible,
 #home_video_slider:hover .carousel-next.visible {
 	display: flex;
 }

 .icon-pause {
 	padding-bottom: 4px;
 }

 @media (max-width: 767px) {
 	#home_video_slider .video-content-wrap {
 		top: 72%;
 		left: 20px;
 	}

 	#home_video_slider .video-title {
 		font-size: 40px;
 		line-height: 45px;
 	}

 	#home_video_slider .video-text {
 		font-size: 16px;
 		font-weight: 500;
 	}

 	#home_video_slider .carousel-navigation {
 		right: 15px;
 		bottom: 15px;
 	}
 }

 /* home text animation */

 .home_animation_text p {
 	position: relative;
 	display: inline-block;
 	text-decoration: none;
 }

 .home_animation_text p::after {
 	content: '';
 	position: absolute;
 	left: 0;
 	bottom: 2px;
 	width: 100%;
 	height: 1px;
 	background-color: rgb(255, 255, 255);
 	transform: scaleX(1);
 	transition: transform 0.3s ease;
 	transform-origin: right;
 }

 @keyframes underline-animation {
 	0% {
 		transform: scaleX(1);
 	}

 	00% {
 		transform: scaleX(0);
 	}

 	100% {
 		transform: scaleX(1);
 	}
 }

 .home_animation_text p:hover::after {
 	animation: underline-animation 0.8s 1;
 }

 /* END home text animation */


 /* home img animation */
 .home_animation_img {
 	overflow: hidden !important;
 }

 .home_animation_img_w {
 	width: 100% !important;
 	height: 100% !important;
 }

 .home_animation_img:hover .home_animation_img_w {
 	transform: scale(1.05) rotate(1.8deg) !important;
 }

 /* END home img animation */