/**
* Подгрузка видео youtube
*/
.youtube__video-list {
	display: flex;
	flex-wrap: wrap;
}
.youtube__video-cont {
    width: calc(25% - 20px);
    height: 200px;
	margin: 10px;
}
@media screen and (max-width: 991.98px)
{
	.youtube__video-cont {
		width: calc(33.3333% - 20px);
	}	
}
@media screen and (max-width: 767.98px)
{
	.youtube__video-cont {
		width: calc(50% - 20px);
	}	
}
@media screen and (max-width: 575.98px)
{
	.youtube__video-cont {
		width: 100%;
		height: 250px;
		margin-left: 0;
		margin-right: 0;
	}	
}
.youtube__video {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	cursor: pointer;
}
.youtube__video::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-left: 30px solid #fff;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
}