.d-none {
	display:none;
}

.d-flex {
	display:flex;
}

.d-md-flex {
	display:flex;
}

.d-sm-flex {
	display:flex;
}

.d-md-block-d-none {
	display:block;
}

.d-md-none-d-block {
	display:none;
}

.d-sm-flex-d-none {
	display:flex;
}

.d-sm-none-d-flex {
	display:none;
}

.d-sm-none-d-block {
	display:none;
}

.justify-content-between {
	justify-content:space-between;
}

.justify-content-center {
	justify-content:center;
}

.justify-content-around {
	justify-content:space-around;
}

.n_more{
	width:100%;
	max-width:300px;
	padding:5px 0px;
	text-align:center;
	color:#58b9da !important;
	border:2px solid #58b9da;
	border-radius:5px;
	transition:all 0.4s ease 0s;
	font-size:16px !important;
	margin:0px !important;
}

.n_more:hover{
	color:white !important;
	background:#58b9da;
	border:2px solid #58b9da;
}

.news_wrapper{
	padding:30px;
	max-width:1000px;
	margin:0 auto;
}

.news_inner{
	border:solid 1px #333333;
	padding:30px;"
}

.hs{
	font-size:23px!important;
}

.fs{
	font-size:14px!important;
}

@media screen and (max-width: 768px) {
	.d-md-flex {
		display:d-block;
	}

	.d-md-block-d-none {
		display:none;
	}
	
	.d-md-none-d-block {
		display:block;
	}
}

@media screen and (max-width: 576px) {
	.d-sm-flex {
		display:block;
	}

	.d-sm-flex-d-none {
		display:none;
	}

	.d-sm-none-d-block {
		display:block;
	}

	.d-sm-none-d-flex {
		display:flex;
	}

	.news_wrapper{
		padding:30px 5px;
	}

	.news_inner{
		padding:5px;
	}

}