/**
 * Hero background video styles for Setoda pages.
 *
 * Z-index layering: 0 = video, 1 = overlay.
 */

.page-hero {
	position: relative;
	overflow: hidden;
	background-image: none !important;
}

.as-hero-video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: 0;
	object-fit: cover;
}

.as-hero-video__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 1;
}
