div.news-list
{
	word-wrap: break-word;
}
div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}
.news-date-time {
	color:#486DAA;
}
.flex_box{
	/*display: flex;*/
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin-bottom: 20px;
}
.flex_box h3{
	font-family: Open Sans;
font-style: normal;
font-weight: 600;
font-size: 18px;
line-height: 150%;
/* or 27px */

text-align: center;
text-transform: uppercase;

color: #242424;
}
.border_box{
	margin-top: 20px;
	padding-top: 16px;
	padding-left: 14px;
/*	padding-right: 14px;*/
	padding-bottom: 15px;
}
@media screen and (max-width: 1024px) {
	.flex_box{
		overflow-x: auto;
	}
	.about-content.ert .row{
		margin-left: 0px;
		margin-right: 0px;
	}
}

.youtube {
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	display: inline-block;
	overflow: hidden;
	transition: all 200ms ease-out;
	cursor: pointer;
}
.youtube .play {
	background: url('/upload/image/play.svg') no-repeat; /*ВАЖНО: здесь укажите адрес до изображения*/
	background-position: 0 0px;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	position: absolute;
	height: 80px;
	width: 80px;
	transition: none;
	top:0;
	left:0;
	right:0;
	bottom:0;
	margin:auto;
}
.youtube:hover .play {
	background-position: 0 0;
}