:root {
	--header-height: 111.98px;
}

.hero-video-bg {
	position: relative;
	overflow: hidden;
	height: calc(100vh - var(--header-height));
	min-height: calc(100vh - var(--header-height));
	background: #000;
}

.hero-video-bg__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

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

.hero-video-bg__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.30) 0%,
		rgba(0, 0, 0, 0.45) 45%,
		rgba(0, 0, 0, 0.75) 100%
	);
}

.hero-video-bg__content {
	position: relative;
	z-index: 3;
	height: 100%;
	display: flex;
	align-items: center;
}