
/*
** video
*/

.video {
	position: relative;
}

.video__play{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;

	content: '';
	background: transparent;
}

.video video {
	width: 100%;
	height: 100vh;

	-o-object-fit: cover;
	   object-fit: cover;
}

.video__name {
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 2;

	padding: 1em;

	font-size: 0.8em;
	color: white;
	background: transparent;
}

.video__sound {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 2;

	cursor: pointer;
	padding: 1em;

	font-size: 0.8em;
	color: white;
	background: transparent;

	-webkit-transition: all 600ms;
	-o-transition: all 600ms;
	transition: all 600ms;
}

.video__sound.muted {
	display: block;
}

.video__sound:not(.muted) {
	display: none;
}

