#news h1 {
	color: #fff;
	line-height: 66px !important;
}

#news h1:before {
	content: none !important;
}

#news h1 span {
	padding: 10px 0;
	background-color: rgb(240, 73, 39);
}

#news h1 span:before {
	content: '';
	display: inline-block;
	width: 10px;
}

#news h1 span:after {
	content: '';
	display: inline-block;
	width: 10px;
}

#news .photos {
	width: 100%;
	margin-bottom: 30px;
	
    -ms-user-select: none; 
    -moz-user-select: none; 
    -webkit-user-select: none; 
    user-select: none; 
}

#news .photos .item {	
	width: 100%;
	text-align: center;
}

#news .photos .item img {
	max-width: 100%;
	vertical-align: top;
}

#news.gallery .photos {
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

#news h1:before {
	content: '';
}

#news.gallery h1 {
	color: #000;
	line-height: 46px !important;
}

#news.gallery .photos .item {
	box-sizing: border-box;
	width: 25%;
	border: 1px solid #fff;
}

@media all and (max-width: 960px) {
	#news.gallery .photos .item {
		width: 33.33333%
	}
}

@media all and (max-width: 720px) {
	#news.gallery .photos .item {
		width: 50%
	}
}

@media all and (max-width: 576px) {
	#news.gallery .photos .item {
		width: 100%
	}
}

#news.gallery .photos .item a {
	display: inline-block;
	width: 100%;
}

body > div.lightbox {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	
	padding: 15px;
	z-index: 10000;
	
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;

	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	
    -ms-user-select: none; 
    -moz-user-select: none; 
    -webkit-user-select: none; 
    user-select: none; 
}

body > div.lightbox img {
	max-width: 100%;
	max-height: 100%;
}

body > div.lightbox button {
	position: absolute;
	bottom: 10px;
	right: 10px;
	border: 0;
	background-color: #efefef;
	color: #000;
	width: 50px;
	height: 50px;
	cursor: pointer;
	font-size: 20px;
	line-height: 50px;
}

body > div.lightbox .prev {
	right: 61px;
}

body > div.lightbox .prev:before {
	content: '\2190';
}

body > div.lightbox .next:before {
	content: '\2192';
}