.video-holder{
	width: 100%;
	/*height: 390px;*/
	margin-bottom: 20px;
	background: #000000;
}

.video-holder .video-container{
	display: none;
}

.video-holder .video-container.show{
	display: block;
}

.video-overlay{
	display: block;
	/*display: none;*/
	width: 100%;
	padding-bottom: 56.25%;
  	padding-top: 30px;
	background-size: cover;
	background-position: center center;
	position: relative;
}

.video-overlay:after{
	content: '';
	background: url(../img/ytp.png) no-repeat center center;
	position: absolute;
	top: 0px; bottom: 0px; left: 0px; right: 0px;
	opacity: 0.9;
}

.video-overlay:hover:after{
	opacity: 1;
}

.video-overlay img{
	width: 100%;
	height: auto;
}

.video-overlay.hide{
	display: none;
}