.vgd-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.vgd-hero-bg,
.vgd-hero-overlay,
.vgd-hero-fallback,
.vgd-hero-video-bg {
	position: absolute;
	inset: 0;
}

.vgd-hero-bg,
.vgd-hero-video-bg,
.vgd-hero-fallback {
	z-index: 1;
}

.vgd-hero-bg,
.vgd-hero-fallback {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.vgd-hero-overlay {
	z-index: 2;
}

.vgd-hero-title,
.vgd-hero-subtitle,
.vgd-hero-buttons {
	max-width: none;
	width: 100%;
}

.vgd-hero-title {
	margin: 0 0 16px;
}

.vgd-hero-subtitle {
	margin: 0 0 24px;
}

.vgd-hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-top: 0;
}

.vgd-hero-inner {
	position: relative;
	z-index: 3;
	min-height: inherit;
	display: flex;
	width: 100%;
padding: 0rem 10rem;
	box-sizing: border-box;
}

.vgd-hero-content {
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
	margin: 0;
}

.v-align-top {
	align-items: flex-start;
	justify-content: flex-start;
}

.v-align-center {
	align-items: center;
	justify-content: center;
}

.v-align-bottom {
	align-items: flex-end;
	justify-content: flex-end;
}

.hero-left {
	justify-content: flex-start;
	text-align: left;
}
.hero-left .vgd-hero-buttons {
	justify-content: flex-start;
}

.hero-center {
	justify-content: center;
	text-align: center;
}
.hero-center .vgd-hero-buttons {
	justify-content: center;
}

.hero-right {
	justify-content: flex-end;
	text-align: right;
}
.hero-right .vgd-hero-buttons {
	justify-content: flex-end;
}

.vgd-btn {
	padding: 12px 24px;
	background: #111;
	color: #fff;
	text-decoration: none;
}

.vgd-hero-video {
	position: relative;
	overflow: hidden;
}

.vgd-hero-video-bg {
	overflow: hidden;
}

.vgd-hero-video-bg iframe,
.vgd-hero-video-bg video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 56.25vw;
	min-width: 177.78vh;
	min-height: 100vh;
	transform: translate(-50%, -50%);
	border: 0;
}

.vgd-hero-video-bg iframe {
	pointer-events: none;
}

.vgd-hero-video.vgd-hero-video-has-audio .vgd-hero-video-bg iframe,
.vgd-hero-video.vgd-hero-video-has-audio .vgd-hero-video-bg video {
	pointer-events: auto;
}

.vgd-hero-video-bg video {
	object-fit: cover;
}

.vgd-hero-slider {
	position: relative;
	overflow: hidden;
}

.vgd-slider {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.vgd-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
}

.vgd-slide.active {
	opacity: 1;
}

.vgd-slider-prev,
.vgd-slider-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 20;
	background: rgba(0, 0, 0, 0.35);
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	width: 48px;
	height: 48px;
	font-size: 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.vgd-slider-prev:hover,
.vgd-slider-next:hover {
	background: rgba(0, 0, 0, 0.65);
	border-color: #fff;
}

.vgd-slider-prev { left: 20px; }
.vgd-slider-next { right: 20px; }

.vgd-hero-parallax {
	position: relative;
	overflow: hidden;
}

.vgd-parallax-layers {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
}

.vgd-parallax-layer {
	position: absolute;
	top: -12%;
	left: -12%;
	width: 124%;
	height: 124%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	will-change: transform, opacity;
	pointer-events: none;
	transform: translate3d(0, 0, 0) scale(1.08);
	transition: transform 120ms linear;
}

.vgd-parallax-layer-1 { z-index: 1; }
.vgd-parallax-layer-2 { z-index: 2; }
.vgd-parallax-layer-3 { z-index: 3; }
.vgd-parallax-layer-4 { z-index: 4; }
.vgd-parallax-layer-5 { z-index: 5; }

.vgd-hero-parallax .vgd-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 6;
}

.vgd-hero-parallax .vgd-hero-inner {
	position: relative;
	z-index: 7;
}

@media (max-width: 768px) {
	.vgd-hero-inner {
		padding: 3rem 1.5rem;
	}
	.vgd-hero-static {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
}

}

	.vgd-slider-prev,
	.vgd-slider-next {
		width: 38px;
		height: 38px;
		font-size: 14px;
	}

	.vgd-slider-prev { left: 10px; }
	.vgd-slider-next { right: 10px; }

	.vgd-parallax-disable-mobile .vgd-parallax-layer {
		transform: none !important;
		animation: none !important;
	}
}


@media (max-width: 767px) {
	.vgd-hero-title,
	.vgd-hero-subtitle,
	.vgd-hero-buttons {
		max-width: 100%;
	}

	.vgd-hero-buttons {
		gap: 12px;
	}

	.vgd-hero-video-bg iframe,
	.vgd-hero-video-bg video {
		width: 177.78vh;
		height: 100vh;
		min-width: 100%;
		min-height: 100%;
	}
	
}

@media (max-width: 480px) {
	.vgd-hero-inner {
		padding: 2.25rem 4rem;
	}

.hero-left .vgd-hero-buttons {
	justify-content: flex-start;
}

.hero-center .vgd-hero-buttons {
	justify-content: center;
}

.hero-right .vgd-hero-buttons {
	justify-content: flex-end;
}
.vgd-hero-buttons a,
.vgd-hero-buttons .vgd-btn {
	flex: 0 0 auto;
}
}
