/* Viov Hero */
.viov-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	overflow: hidden;
	isolation: isolate;
}

.viov-hero__image,
.viov-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.viov-hero__image {
	z-index: 0;
}

.viov-hero__video {
	z-index: 1;
}

.viov-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
}

.viov-hero__content {
	position: relative;
	z-index: 3;
	width: 100%;
}

@media (prefers-reduced-motion: reduce) {
	.viov-hero__video {
		display: none;
	}
}
