.news-detail{
	display: block;
	width: 100%;
	margin-bottom: 40px;
}
.news-detail .news_tittle{
	color: #788ea2;
	max-width: 400px;
	font-weight: 400;
}
.news-detail .banner_preview{
	display: block;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	height: 500px;
}
.news-detail .banner_preview .banner_text{
	color: #788ea2;
	max-width: 600px;
	padding: 40px 40px  0;
}
.news-detail .banner_preview .banner_text_button{
	color: #fff;
	background-color: #788ea2;
	margin: 10px 40px;
	padding: 10px;
	border-radius: 5px;
	cursor: pointer;
	display: block;
	width: fit-content;
}
.news-detail .bottom_block{
	display: flex;
	flex-direction: row;
	width: 100%;
	gap: 20px;
	flex-wrap: nowrap;
	justify-content: space-between;
	margin-top: 3px;
}
.news-detail .bottom_block .right_block_news{
	width: 50%;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	height: 590px;
	background-position: center;
}
.news-detail .bottom_block .left_block_news{
	display: block;
	width: 50%;
}
.news-detail .bottom_block .left_block_news .title{
	display: block;
	color: #788ea2;
	max-width: 300px;
	font-size: 1.4em;
	margin-top: 25px;
	margin-bottom: 50px;
}
.news-detail .bottom_block .left_block_news .point_wrap{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
	gap: 40px;
}
.news-detail .bottom_block .left_block_news .point_wrap .point_item{
	display: block;
	width: calc(50% - 20px);
	color: #788ea2;
}
.news-detail .bottom_block .left_block_news .point_wrap .point_item .point_name{
	font-size: 18px;
	font-weight: 500;
	text-transform: uppercase;
}
.news-detail .bottom_block .left_block_news .point_wrap .point_item .point_text{
	margin-top: 10px;
}
@media screen and ( max-width: 992px){
	.news-detail .bottom_block{
		display: none;
	}
	.news-detail .banner_preview{
		background-image: unset!important;
		height: unset;
	}
	.news-detail .banner_preview .banner_text{
		padding: unset;
	}
	.news-detail .banner_preview .banner_text_button{
		display: none;
	}
}

