
.video-thumb {
	overflow: hidden;
	border-radius: 10px;
	position: relative;
	cursor: pointer;
}
.video-thumb img {
	width:100%;
	max-width: 100%;
	height:280px;
	object-fit:cover;
	
	transition:all .6s ease;
}
@media (min-width: 576px) {
	.video-thumb img {
		height:176px;	
	}
}
.video-thumb span.play {
	width:64px;
	height: 64px;
	display: block;
	position: absolute;
	left:50%;
	top:50%;
	transform: translateX(-50%) translateY(-50%) scale(0);
	z-index: 2;
	border-radius: 36px;
	box-shadow: 0 0 45px rgba(0,0,0,.2);
	transition: all .4s ease;
}
.video-thumb span.play img {
	width:64px;
	height: 64px;
}
.video-thumb:after {
	position: absolute;
	content:'';
	inset:0;
	transition: all .4s ease;
	background: rgba(0,0,0,0);
}
.video-thumb:hover:after {
	background: rgba(0,0,0,.5);
}
.video-thumb:hover img {
	transform: scale(1.2);
}
.video-thumb:hover span.play {
	transform: translateX(-50%) translateY(-50%) scale(1);
}
.video-title {
	margin:1rem 0 .5rem 0;
	font-size: 18px;
	font-weight: 600;
	color:var(--text-color);
}
.video-description {
	font-weight: 300;
	color:var(--color-gray-800);	
}
.video-overlay {
	position: fixed;
	inset:0;
	background: rgba(0,0,0,.5);
	z-index:10001;
	display: none;
	padding-bottom: 56.25%;
}
.video-overlay iframe {
	position: fixed;
	top:50%;
	left:50%;
	transform: translateX(-50%) translateY(-50%);
	box-shadow:0 0 204px rgba(0,0,0,.4);
	border:2px solid #fff;
	width: 100%;
	max-width:820px;
	aspect-ratio: 16 / 9;
}
@media (min-width: 992px) {
	.video {
		margin-top: 70px;
	}
}