/* ==========================================================================
GALLERY
========================================================================== */
.gallery{
	background: #fff;
	color: #eae5d6;
	padding-bottom: 0;
}
.gallery .section_title{
	margin-bottom: 20px;
	
}
.gallery .section_title h2 {
	color: #009dde;
}
.gallery .gallery-tab-container{
	text-align: center;
	margin-bottom: 20px;
}
.gallery .gallery-tab{
	display: inline-block;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(115, 132, 142, 0.2);
	padding: 5px 25px 11px;
}
.gallery .gallery-tab li{
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	display: inline-block;
	margin-right: 22px;
	color: #000;
	
}
.gallery .gallery-tab li:after{
	content: '';
	display: inline-block;
	width: 1px;
	height: 16px;
	position: relative;
	top: 4px;
	z-index: 99;
	background: #424b51;
	margin-left: 22px;
}
.gallery .gallery-tab li:last-child{
	margin-right: 0;
}
.gallery .gallery-tab li:last-child:after{
	content: none;
}
.gallery .gallery-tab li.active{
	color: #009dde;
}
.gallery .gallery-tab li span{
	cursor: pointer;
}
.js .gallery .gallery-items-container li{
}
.gallery .gallery-items-container li{
	float: left;
	width: 20%;
	overflow: hidden;
	position: relative;
}

@media (min-width: 992px) and (max-width: 1199px){

	.gallery .gallery-items-container li{
		width: 25%;
	}
}
@media (max-width: 991px){

	.gallery .gallery-items-container li{
		width: 33.33333333333333%;
	}
}
@media (max-width: 767px){

	.gallery .gallery-items-container li{
		width: 100%;
	}
}