/*NEWS-FEED*/

.news-feed {
	width: 100%;
}

.news-feed__ul {
	list-style: none;
}

.news-feed__ul::after {
	content: '';
	display: block;
	clear: both;
}

.news-feed__li {
	float: left;
	margin-right: 4px;
}

.news-feed__li:nth-child(2) {
	display: none;
}

.news-feed__lnk {
	color: #1b9cf8;
	background-color: #d8ebf8;
	padding: 0 29px;
	line-height: 58px;
	text-transform: uppercase;
	display: block;
	-webkit-transition: .5s linear;
	-moz-transition: .5s linear;
	-o-transition: .5s linear;
	transition: .5s linear;
}

.news-feed__lnk--video {
	color: transparent !important;
	width: 76px;
	background-image: url(play-na.png);
	background-position: center;
	background-repeat: no-repeat;
}

.news-feed__li.active .news-feed__lnk {
	background-color: #1b9cf8;
	color: #fff;
}

.news-feed__li.active .news-feed__lnk--video {
	background-image: url(play-a.png);
}

.news-feed__tab {
	background-color: #1b9cf8;
	padding: 24px 15px;
}

.news-feed__video-item {
	width: 100%;
}
.news-feed__video-item:hover .news-feed__video-img::after{
	-webkit-transform: scale(1.4);
	-moz-transform: scale(1.4);
	-ms-transform: scale(1.4);
	-o-transform: scale(1.4);
	transform: scale(1.4);
}

.news-feed__video-item:last-child .news-feed__video-title {
	margin-bottom: 0;
}

.news-feed__video-img {
	width: 100%;
	height: 111px;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position: relative;
	margin-bottom: 2px;
}

.news-feed__video-img::after {
	content: '';
	display: block;
	width: 48px;
	height: 48px;
	background-image: url(play-or.png);
	position: absolute;
	top: -webkit-calc(50% - 24px);
	top: -moz-calc(50% - 24px);
	top: calc(50% - 24px);
	left: -webkit-calc(50% - 24px);
	left: -moz-calc(50% - 24px);
	left: calc(50% - 24px);
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.news-feed__video-date {
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	line-height: 28px;
	background-color: #f56f1c;
	padding: 0 6px;
	position: absolute;
	left: 0;
	top: 14px;
}

.news-feed__video-title {
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	line-height: 19px;
	display: inline-block;
	margin-bottom: 34px;
}

#vk_groups {
	height: 250px !important;
	overflow: hidden !important;
	width: 100% !important;
}

#vk_groups iframe {
	width: 100% !important;
	height: 100% !important;	
}

@media screen and (min-width: 768px) {

	#vk_groups {
		height: 577px !important;
	}

}

@media screen and (min-width: 1024px) {

	.news-feed__li:nth-child(2) {
		display: block;
	}

}