body.mob-menu-overlay, body.mob-menu-slideout, body.mob-menu-slideout-over, body.mob-menu-slideout-top {
	padding-top: 170px !important;
}
body.mob-menu-overlay.admin-bar, body.mob-menu-slideout.admin-bar, body.mob-menu-slideout-over.admin-bar, body.mob-menu-slideout-top.admin-bar {
    padding-top: 202px !important;
}
.home-video-slider {
    position: relative;
    width: 100%; /* Full width */
    padding-top: calc(850 / 1920 * 100%); /* Maintain 1920x850 aspect ratio */
    overflow: hidden;
}
.home-video-slider .video-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.home-video-slider .video-slide {
    display: none; /* Hide inactive slides */
    width: 100%;
    height: 100%;
}
.home-video-slider .video-slide-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; /* Default full width */
    height: auto; /* Adjust height based on width */
    max-height: 100%; /* Prevent overflow */
    object-fit: cover; /* Ensure the video covers the entire area */
}
.home-video-slider .slider-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%); /* Center vertically */
    border: 2px solid #fff;
    width: 60px;
    height: 60px;
    border-radius: 100px;
    background: none;
    cursor: pointer;
    color: #ffffff;
    transition: color 0.3s ease;
    z-index: 10; /* Ensure buttons appear above the videos */
}
.home-video-slider .slider-nav button:hover {
    color: #ff6600; /* Change to your desired hover color */
}
.home-video-slider .slider-nav svg {
    width: 32px;
    height: 32px;
}
.home-video-slider .slider-nav button.prev-slide {
    left: 2%;
}
.home-video-slider .slider-nav button.next-slide {
    right: 2%;
}

@media only screen and (max-width: 767px) {
	.home-video-slider .slider-nav button {
		width: 30px;
		height: 30px;
	}
	.home-video-slider .slider-nav svg {
		width: 16px;
		height: 24px;
	}
}