
.new-page{
	margin: 50px 0px;
}
.title-new{
	margin: 0;
	text-transform: uppercase;
}
.new-item{
	margin-top: 60px;
}
.new-img a{
    position: relative;
    display: block;
    overflow: hidden;	
}
.new-img img{
	width: 100%;
	transition: all 0.3s;
}
.new-img a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: transparent;
    transition: all 0.3s;
}
.new-img a:hover:after {
    background: rgba(0, 0, 0, 0.2);
}
.new-img a:hover img {
    transform: scale(1.05);
}
.new-text {
    padding: 20px;
    border: 1px solid #f1f1f1;
    border-top: none;
}
.new-text .new-date {
    display: inline-block;
    text-align: center;
    width: 15%;
    margin-right: 0px;
}
.new-text .new-date .datetime_m {
    display: block;
    font-size: 25px;
    line-height: 25px;
    color: #e43500;
    font-weight: 700;
}
.new-text .new-date .datetime_b {
    display: block;
    font-size: 15px;
    color: #e43500;
    font-weight: 400;
}
.new-text .new-title {
    margin-bottom: 15px;
    display: inline-block;
    width: 80%;
    padding-left: 5px;
}
.new-text .new-title a {
    display: inline-block;
    color: #000000;
    font-weight: bold;
}
.new-text .new-desc {
    padding-top: 10px;
    font-size: 15px;
}
.new-text .new-title a:hover{
	color: #d35400;
}
.new-content{
	display: flex;
	flex-wrap: wrap;
}
@media(max-width: 767px){
	.new-item{
		margin-top: 20px;
	}
	.title-new{
		font-size: 25px;
	}
	.new-text{
		padding: 10px 5px;
	}
}

/*pager*/
.pager{
    margin: 30px 0;
}
.pager li>a, .pager li>span{
    border-radius: 0;
    margin: 0px 2px 5px;
    border: none;
    background: #0092ce;
    padding: 5px 13px;
    color: #fff;
    line-height: 1.5;
}
.pager .active a, .pager .active span, 
.pager .active a:hover, 
.pager .active span:hover, 
.pager li:hover a {
    background: #f44336;
}
/*End pager*/