/* INTRO HOME */

/* INTRO HOME */

[data-animate] {
	opacity: 0;
	will-change: auto;
}

.animated {
	transition: all 1s cubic-bezier(0.57, 0.08, 0.9, 0.36);
	opacity: 1;
}

.intro-home {
	min-height: 100vh;
}

.intro-video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 100vh;
	transform: translate(-50%, -50%);
	overflow: hidden;
	z-index: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.60) 100%);
}

.intro-video iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 177.7777778vh;
	height: 100vh;
	min-width: 100vw;
	min-height: 56.25vw;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.intro-video::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		0deg,
		rgba(0, 0, 0, 0.60) 0%,
		rgba(0, 0, 0, 0.60) 100%
	);
	z-index: 1;
	pointer-events: none;
}

.intro-video iframe {
	z-index: 0;
}

.intro-home .grid-container {
	z-index: 1;
}