.news_block_new{color:#FFF;}
.news_block_new .news-title{font-weight:bold;font-size:70px;}
.news_block_new .news-title span{font-size:30px;font-weight:normal;margin-left:20px;}

.news_block_new a{display:block;color:#FFF;font-weight:bold;padding:30px 15px;}
.news_block_new a:hover{color:var(--brand-primary);}

.news_block_new li{border-bottom:1px solid rgba(255,255,255,0.2);}

.news_block_new .date{display:inline-block;width:180px;}
.news-caption{padding-right:15px;}

.news_block_new .arrow{
	display:inline-block;
	position:relative;
	width:1px;
	height:30px;
	background:#FFF;
	float:right;
	transition:all 0.3s ease-in-out;
}
.news_block_new a:hover .arrow{height:40px;}
.news_block_new .arrow:before{
	position:absolute;
	content:'';
	left:0px;
	bottom:-1px;
	width:0px;
	height:0px;
	border-style:solid;
	border-width:13px 7px 0px 0px;
	border-color:#FFF transparent transparent transparent;
}

@keyframes marquee-infinite{
	from {
		transform: translateY(0%);
	}
	to {
		transform: translateY(-100%);
	}
}
.marquee-infinite{height:425px;overflow:hidden;}
.marquee-infinite .marquee-item{animation:marquee-infinite 24s linear infinite;margin-bottom:0px;}
.marquee-news:hover .marquee-item{animation-play-state:paused;}

@media (max-width: 991px) {
	.news_block_new .news-title{font-size:55px;}
	.news_block_new .news-title span{font-size:23px;}
	.news_block_new .date{display:block;width:auto;}
}