#news_block_new{margin-bottom:20px;}
.news-block{display:flex;column-gap:30px;}

.news-photo{width:40%;border-radius:30px;overflow:hidden;position:relative;}
.news-img{
	position:absolute;
	width:100%;
	height:100%;
	left:0px;
	top:0px;
	overflow:hidden;
}
.news-photo .cover{width:100%;height:100%;}
.news-photo .cover img{width:100%;height:100%;object-fit:cover;object-position:50% 50%;transition:all 0.9s;}
.news-block:hover img{transform:scale(1.1, 1.1);}

#news_block_new .owl-stage .owl-item:nth-of-type(odd) .news-content{background:#EAF1FC;}
#news_block_new .owl-stage .owl-item:nth-of-type(even) .news-content{background:#A8C3F2;}
.news-content{width:60%;border-radius:30px;min-height:500px;padding:30px 30px 90px;position:relative;}

.news-content .news-note{display:inline-block;color:#000;font-weight:bold;border:2px solid #000;border-radius:30px;padding:2px 12px;margin-bottom:20px;}
.news-content .h2{color:#000;font-weight:bold;}
.news-content .news-txt{color:#000;font-weight:bold;line-height:2;}
.news-content .news-more{
	position:absolute;
	right:90px;
	bottom:50px;
	color:#000;
	font-weight:bold;
}

@media (max-width: 767px) {
	.news-block{column-gap:0px;flex-wrap:wrap;}
	.news-photo{width:100%;}
	.news-img{position:static;}
	.news-content{width:100%;margin-top:30px;}
	.news-content .news-more{right:auto;left:30px;}
}

.news-icon{
	position:absolute;
	right:0px;
	bottom:0px;
	width:70px;
	height:70px;
	background:#F5F5F5 url(../images/bg_b.png);
	border-radius:50% 0px 0px;
	padding:10px;
	margin:0px -10px -10px 0px;
}
.news-icon span{
	display:inline-block;
	width:50px;
	height:50px;
	background:#000;
	border-radius:100%;
	text-align:center;
	line-height:50px;
}
.news-icon svg{
	display:block;
	position:absolute;
	top:-20px;
	right:10px;
	width:20px;
	transform:rotate(180deg) scale(1.01);
}
.news-icon > svg:last-of-type{
	top:auto;
	bottom:10px;
	right:auto;
	left:-20px;
}
.news-icon .bi{display:inline-block;color:#FFF;font-size:30px;transition:.3s;}
.news-block:hover .news-icon .bi{transform:rotate(-22.5deg) scale(1.4);}

/* owl-nav Start */
#news_block_new .owl-nav.disabled + .owl-dots{
	margin-top:0px;
	position:absolute;
	right:0px;
	bottom:30px;
	width:60%;
	text-align:left;
	padding-left:45px;
}
@media (max-width: 767px) {
	#news_block_new .owl-nav.disabled + .owl-dots{width:100%;bottom:10px;padding-left:30px;}
}

#news_block_new .owl-dots .owl-dot span{
	width:22px;
	height:6px;
	background:rgba(0,70,199,0.3);
	border-radius:10px;
	margin:0px 3px;
	position:relative;
	overflow:hidden;
}

#news_block_new .owl-dots .owl-dot span:before{
	content:'';
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	background:linear-gradient(to right, #0046C7 0%, #0046C7 100%);
	background-size:0% 100%;
	background-repeat:no-repeat;
	background-position:left;
	transition:all 0.4s ease;
}

#news_block_new .owl-dots .owl-dot.active span:before,
#news_block_new .owl-dots .owl-dot:hover span:before{background-size:100% 100%;}
/* owl-nav End */