.video-cover {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;

	&.fade {
		animation: fadeIn 1s ease-in;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}


.video-cover video {
	pointer-events: none;
	position: absolute;
	top: 0;
	left: 50%;
	opacity: 0.85;
	mix-blend-mode: multiply;
	transform: translate(-40%,-10%);
	height: 105vh;
	width: 300vw!important;
	filter: grayscale(100%) contrast(1);
	flex: 1 0 100%;
	max-width: none;
}
