/* Layout_1 */
.header.layout_video {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	position: relative;
	min-height: 727px;
	height: fit-content;
	max-height: none;
}

.header.layout_video .header-content {
	padding: 55px 5em;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
	min-height: 70vh;
	max-width: 1400px;
	width: 100%;
}

.header.layout_video .header-content .header-content-inner {
	max-width: 50%;
}

.header.layout_video .header-content h1 {
	color: var(--color-secondary-contrast);
	hyphens: none;
}

.header.layout_video .dynamic-content {
	width: 100%;
	padding-block: 1em;
}

.header.layout_video .dynamic-content,
.header.layout_video .dynamic-content * {
	color: var(--color-secondary-contrast);
	font-size: var(--font-size-text);
	line-height: 32px; /* 177.778% */
}

.header.layout_video .video_backdrop {
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	z-index: -1;
	background-color: #000;
}

.header.layout_video .video_backdrop::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 80%);
	z-index: 1;
}

.header.layout_video iframe {
	width: 1000% !important;
	min-height: 100%;
	position: absolute;
	pointer-events: none !important;
	top: 0;
	left: 0;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0s ease-in-out;
}

.header.layout_video iframe.loaded {
	opacity: 1;
}
.video-overlay {
	position: absolute;
	inset: 0;
	background: black;
	transition: opacity 2s ease;
	pointer-events: none;
	opacity: 0;
}

.video-overlay.hidden {
	transition: opacity 0s ease;
	opacity: 1;
}

@media screen and (max-width: 1400px) {
	.header.layout_video .header-content {
		min-height: 500px;
	}
}

@media screen and (max-width: 1280px) {
	.header.layout_video .header-content .header-content-inner {
		max-width: 50%;
	}
	.header.layout_video .header-content {
		min-height: 500px;
	}
}
@media screen and (max-width: 920px) {
	.header.layout_video .header-content .header-content-inner {
		max-width: 70%;
	}
	.header.layout_video .header-content {
		padding: 55px 2em;
	}

	.header.layout_video .video_backdrop::before {
		background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
	}
}

@media screen and (max-width: 600px) {
	.header.layout_video .header-content .header-content-inner {
		max-width: 100%;
	}
	.header.layout_video .video_backdrop::before {
		background: rgba(0, 0, 0, 0.4);
	}
}
