.video{
    position: relative;
    display: flex;
    flex-direction: column;
    height: 267px;
    text-align: center;
    justify-content: center;
    margin-bottom: 20px;
}
.video:before{
	content: url('i/icon-play.svg');	
	position: relative;
	z-index: 3;
}
.video:after{
	content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(196, 196, 196, 0.2);
    transition-property: background;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    z-index: 2;
}
.video:hover:after{
background: rgba(53, 53, 53, 0.45);
}
.video__img{
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: cover;
    background-position: 50% 50%;
    z-index: 1;
}
.video__title{
	font-weight: 500;
    color: var(--black_title);
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 21px;
    display: block;
}
/*xs*/
@media (max-width: 36em) {
	.video{
    	height: 200px;
	}
	.video__title{
		font-size: 16px;
    	line-height: 19px;
	}
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	/* IE10+ CSS styles go here */
	.video:before, .video:after {
		display: block;
	}
	.video:before { 
		background-image: url('i/icon-play.svg');
		background-size: 56px 40px;
		background-repeat: no-repeat;
		background-position: center center;
		display: block;
		width: 100%;
		height: 40px;
		content: "";
	}
}
