/* .thb-hero {
position: relative;
width: 100%;
height: 100vh;
min-height: 500px;
max-height: 900px;
overflow: hidden;
} */
.thb-hero {
	position: relative;
	width: 100%;
	padding-bottom: 100px;
}

.thb-hero .inner {
	position: relative;
	width: 100%;
	height: auto;
	min-height: 510px;
}

.thb-hero__panel {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.6s ease, visibility 0.6s ease;
	z-index: 1;
}

.thb-hero__panel.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

.thb-hero__media {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.thb-hero__media--overlay::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 2;
	pointer-events: none;
}

.thb-hero__video,
.thb-hero__image {
	width: 100%;
	height: 100%;
	display: block;
}
.thb-hero__image {
	object-fit: contain;
}
.thb-hero__video {
	object-fit: cover;	
}

.thb-hero__oembed {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 177.78vh;
	height: 56.25vw;
	min-width: 100%;
	min-height: 100%;
	transform: translate(-50%, -50%);
}

.thb-hero__oembed iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.thb-hero__content {
	position: relative;
	pointer-events: none;
	z-index: 3;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	height: 100%;
	padding: 60px 40px 120px;
	max-width: 1200px;
	margin: 0 auto;
	color: #fff;
}

.thb-hero__content>* {
	pointer-events: auto;
}

.thb-hero__heading {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 16px;
	color: #fff;
}

.thb-hero__text {
	font-size: clamp(1rem, 2vw, 1.25rem);
	line-height: 1.6;
	margin: 0 0 24px;
	max-width: 600px;
	color: rgba(255, 255, 255, 0.9);
}

.thb-hero__text p:last-child {
	margin-bottom: 0;
}

.thb-hero__cta {
	display: inline-block;
	padding: 5px 40px;
	background: #feb606;
	color: #000000;
	font-size: 1rem;
	font-weight: bold;
	text-decoration: none;
	border-radius: 50px;
	transition: background 0.3s ease, transform 0.3s ease;
}

.thb-hero__cta:hover {
	background: #f0f0f0;
	transform: translateY(-1px);
	color: #111;
	text-decoration: none;
}

/* Toggle Switch */
.thb-hero__toggle-wrap {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	z-index: 10;
	padding: 16px 0;
}

.thb-hero__toggle {
	position: relative;
	display: inline-flex;
	background: #002347;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 50px;
	padding: 4px;
}

.thb-hero__toggle-tab {
	position: relative;
	z-index: 2;
	padding: 15px 15px;
	border: none;
	background: transparent;
	color: rgb(160 160 160 / 70%);
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	border-radius: 50px;
	transition: color 0.3s ease;
	white-space: nowrap;
	outline: none;
	min-width: 70px;
}

.thb-hero__toggle-tab:hover {
	color: #111;
}

.thb-hero__toggle-tab.is-active {
	color: #111;
	background: #fff;
}

.thb-hero__toggle-slider {
	position: absolute;
	top: 4px;
	left: 4px;
	width: calc(50% - 4px);
	height: calc(100% - 8px);
	background: #fff;
	border-radius: 50px;
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1;
	pointer-events: none;
}

.thb-hero[data-active-tab="2"] .thb-hero__toggle-slider {
	transform: translateX(100%);
}

/* Responsive */
@media (max-width: 768px) {
	.thb-hero {
		padding-bottom: 50px;
	}

	.thb-hero .inner {
		height: 50vh;
		min-height: 400px;
	}

	.thb-hero__content {
		padding: 40px 20px 100px;
		align-items: center;
		text-align: center;
	}

	.thb-hero__toggle-tab {
		padding: 8px 20px;
		font-size: 0.8rem;
	}

	.thb-hero__toggle-wrap {
		padding: 12px 0;
	}
}
@media(max-width: 650px) {
	.et_pb_gutters3 .et_pb_section_1_tb_header {
		padding-bottom: 0;
		padding-top: 20px;
	}
	#home-custom {
		padding-bottom: 0 !important;
		margin-top: 0px !important;
		min-height: auto;
		padding-top: 0 !important;
	}
	.thb-hero {
		padding-bottom: 0px;
	}
	.thb-hero .inner {
		height: 20vh;
		min-height: 200px;
	}
}