/* CONFORMATION */
.news-header {
	position: relative;
	overflow: hidden;
	background-color: #100f0f;
}
.news-header slider {
	display: -webkit-flex; /* Safari */
  	display: flex;
  	-webkit-justify-content: center; /* Safari */
	justify-content:         center;
	-webkit-align-items: center; /* Safari */
	align-items:         center;
	height: 100%;
}
.news-top {
	padding: 0px 10px;
	color: #00fff6;
	font-size: 54px;
	font-weight: 700;
}
@media (max-width: 768px){
	.news-top {
		font-size: 34px;
	}
}
.news {
	background-color: #f5f5f5;
}
.news > .body {
	padding:50px 25px;
	background-color: #f5f5f5;
}
@media (max-width: 768px){
	.news > .body {
		padding:50px 10px;
	}
}
.news-list {
	display: -webkit-flex;
  	display: flex;
  	-webkit-flex-wrap: wrap;
  	flex-wrap:  wrap;
}
.news-list li {
	width: 33.333%;
	padding: 20px 1.5% 0px;	
	position: relative;
}
@media (max-width: 768px){
	.news-list li {
		width: 50%;
	}
}
@media (max-width: 580px){
	.news-list li {
		width: 100%;
		max-width: none;
	}
}
.news-list a {
	width: 100%;
	height: 100%;
	color: #3a3740;	
	background-color: #fff;
	display: inline-block;
	padding: 10px;
}
.news-list .img {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 267px;
	display: -webkit-flex;
  	display: flex; 	
  	-webkit-flex-flow: row nowrap;
  	flex-flow: row nowrap;
  	-webkit-align-items: center;
  	align-items: center;	
	margin: 15px auto;

}
@media (max-width: 1366px){
	.news-list .img {
		height: calc( (30vw - 16.666px) * ( 267 / 389 ) ) ;
	}
}
@media (max-width: 768px){
	.news-list .img {
		height: calc( (30vw - 8px) * ( 267 / 389 ) ) ;
	}
}
@media (max-width: 580px){
	.news-list .img {
		height: auto;
	}
}
.news-list img {
	position: relative;
	display: block;
	width: 100%;
	max-width:100%;
}

.news-list .date {
	position: relative;	
	font-size: 12px;
	font-weight: 700;
	display: inline-block;
	width: 100%;
	color: #ff0000;
	padding:10px;
	text-align: left;
	text-transform: capitalize;
}
.news-list h2 {
	position: relative;
	font-size: 20px;
	font-weight: 900;
}
.news-list .view {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 16px;
}	
.news-list .view em:before,
.news-list .view em:after {
	content: '';
	display: inline-block;
	width: 30px;
	height: 1px;
	background-color: #9e9da1;
	margin:5px 10px;
}
.pagination {
	display: -webkit-flex;
  	display: flex;
  	-webkit-flex-wrap: nowrap; /* Safari */
  	flex-wrap:         nowrap;
  	-webkit-justify-content: center;
  	justify-content: center;
	max-width: 680px;
	margin: 40px auto;
}
.pagination:before,
.pagination:after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background-color: #969696;
	margin-top: 15px;
}
.pagination li a,
.pagination li span {
	position: relative;
	display: block;
	width: 32px;
	height: 32px;
	border: solid 1px #cbcbcb;
	line-height: 32px;
	color:#494a4a;
	margin-left: -1px;	
}
.pagination li:first-child a,
.pagination li:first-child span {
	border-radius: 4px 0 0 4px;
	margin-left: 20px;
}
.pagination li:last-child a,
.pagination li:last-child span {
	border-radius: 0 4px 4px 0;
	margin-right: 20px;
}
.pagination li a:hover {
	background-color: #ccc;
}
.pagination li.active {
	font-weight: 700;
}
/* NEWS DETAIL */
.news-detail .date {
	position: relative;	
	font-size: 12px;
	font-weight: 700;
	display: inline-block;
	width: 100%;
	color: #ff0000;
	padding:10px;
	text-transform: uppercase;
}
.news-detail h1 {
	font-family: 'Open Sans';
	font-size: 32px;
	line-height: 36px;
	font-weight: 900;
	max-width: 768px;
	margin: 10px auto;
}
.news-detail .info {
	position: relative;
	max-width: 880px;
    margin: 30px auto;
    text-align: left;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #3a3740;
    padding: 0 40px;
}
@media (max-width: 768px){
	.news-detail .info {
		font-size: 16px;
    	line-height: 24px;
		padding:0px 10px;
	}
}

.news-detail .info a {
	border-bottom: dotted 1px #ccc;
}
.news-detail .info a:hover {
	color: #222;
}
.news-detail .img  {
	position: relative;
}
.news-detail img  {
	width: 100%;
	max-width: 880px;
}
