/* Hero Video Section Styles */
.video-section {
	display: flex;
	position: relative;
	width: 100%;
	height: 70dvh;
	min-height: 800px;
	overflow: hidden;
	align-items: center;
	border: 14px solid #fff;
}

.video-section video {
	position: absolute;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.4);
}

.hero-video-content {
	position: relative;
	z-index: 101;
	display: flex;
	gap: 28px;
	margin-left: 65px;
	flex-direction: column;
	max-width: 516px;
}

#hero-video .hero-video-content h1 {
	font-family: 'OptimaProRoman', sans-serif;
	color: #fff !important;
	font-size: 56px;
	line-height: 68px;
	font-weight: 400;
	margin: 0;
}

#hero-video .hero-video-content p {
	color: #fff !important;
	font-family: 'Lato', sans-serif;
	font-size: 20px;
	line-height: 32px;
	font-weight: 500;
}

.hero-cta {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 101;
	background-color: #E9F1FB;
	padding: 20px;
	border: 9px solid #fff;
	border-bottom: none;
	border-left: none;
	max-width: 420px;
	display: flex;
	gap: 16px;
	flex-direction: column;
	color: #434B5E;
}

#hero-video .hero-cta h2 {
	font-family: 'OptimaProRoman', sans-serif;
	font-weight: 400;
	font-size: 22px;
	line-height: 32px;
	margin: 0;
	color: #434B5E;
}

#hero-video .hero-cta a {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 3px;
	margin: 0;
	text-transform: uppercase;
	color: #1A21C7;
	font-family: 'Lato', sans-serif;
}

/* Tablet Styles */
@media screen and (max-width: 1280px) {
	.hero-video-content {
		margin: 0px 80px;
		max-width: 550px;
	}

	.hero-cta {
		padding: 20px 40px;
		max-width: 450px;
	}
}

/* Mobile Styles */
@media screen and (max-width: 744px) {
	.video-section {
		border: 6px solid #fff;
		align-items: flex-start;
	}

	.hero-video-content {
		margin: 0px 18px;
		max-width: 100%;
		padding-top: 105px;
	}

	#hero-video .hero-video-content h1 {
		font-size: 40px;
		line-height: 48px;
	}

	#hero-video .hero-video-content p {
		font-size: 18px;
		line-height: 32px;
	}

	.hero-cta {
		max-width: 100%;
		width: 100%;
		border-top: 9px solid #fff;
		border-right: none;
		padding: 16px;
	}

	#hero-video .hero-cta h2 {
		font-size: 20px;
		line-height: 28px;
	}
}
