.hero-video {
	position: relative;
}

.hero-video div.wrapper {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 1;
	overflow: hidden;
}

.hero-video div.wrapper:after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.2);
	z-index: 10;
	pointer-events: none;
}

.hero-video div.video {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.hero-video div.poster {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	z-index: 1;
}

.hero-video iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index:10;
}

.hero-video iframe.hidden-video {
	opacity: 0;
}

.hero-video div.info-wrapper {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	z-index: 20;
}

.hero-video div.info {
	margin-bottom: 4vh;
	text-align: center;
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	z-index: 3;
	padding: 0 1rem;
}

.hero-video div.info h2 {
	text-shadow: 0 1px 3px rgba(0,0,0,0.25);
	font-weight: 400;
	color: #fff;
}

@media (max-width: 1320px) {
	.hero-video div.wrapper {
		aspect-ratio: 5 / 2;
	}
}

@media (max-width: 992px) {
	.hero-video div.wrapper {
		aspect-ratio: 2 / 1;
	}
}

@media (max-width: 576px) {
	.hero-video div.wrapper {
		aspect-ratio: 1 / 1;
	}
}