.video {
	background: #00a19a;
	color: #fff;
	background-size: cover;
	padding: 10px 0;
}

@media screen and (min-width: 768px) {
	.video {
		padding: 25px 0;
	}
}

.video__inner {
	position: relative;
}

.video__inner::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border: 1px solid #fff;
	border-radius: 7px;
}

@media screen and (min-width: 768px) {
	.video__inner::before {
		left: 20px;
		width: calc(100% - 40px);
	}
}

.video__vid {
	display: block;
	width: 100%;
	pointer-events: none;
	opacity: 0;
	border-radius: 7px;
}

.video__btn {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 2.4rem;
	font-weight: 900;
	text-transform: uppercase;
	text-align: center;
	cursor: pointer;
	white-space: nowrap;
}

@media screen and (min-width: 768px) {
	.video__btn {
		font-size: 3.6rem;
	}
}

.video__btn img {
	width: 35px;
	height: auto;
}

@media screen and (min-width: 768px) {
	.video__btn img {
		width: 120px;
	}
}

.video--show .video__btn {
	display: none;
}

.video--show .video__vid {
	pointer-events: auto;
	opacity: 1;
}

.video--show .video__inner::before {
	display: none;
}
