#newslide{
	
}
.project_filter{
	padding: 30px 0;
}
.project_filter > ul{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.project_filter > ul.cate_lists{
	margin-bottom: 10px;
}
.project_filter > ul > li > a{
	display: block;
	padding: 5px 15px;
	list-style: none;
	font-size: 20px;
	color: #999999;
	font-weight: 300;
	font-size: 20px;
	text-decoration: none;
	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}
.project_filter > ul > li:hover > a{
	color: #BB0000;
}
.project_filter > ul > li.active > a{
	color: #000;
}
.project_filter > ul.sub_lists > li > a{
	font-size: 16px;
}

/* ---- grid ---- */

.grid {
	position: relative;
	overflow: hidden;
}

/* clear fix */
.grid:after {
  content: '';
  display: block;
  clear: both;
}

/* ---- .grid-item ---- */

.grid-sizer,
.grid-item {
  width: 33.333%;
}

.grid-item {
  float: left;
}

.grid-item img {
  display: block;
  max-width: 100%;
}
.all_projects{
	padding-bottom: 150px;
}
.all_projects .grid-item{
	position: relative;
	overflow: hidden;
}
.all_projects .grid-item .img{
	overflow: hidden;
}
.all_projects .grid-item .img img{
	-webkit-transition: all .4s ease;
	   -moz-transition: all .4s ease;
	    -ms-transition: all .4s ease;
	     -o-transition: all .4s ease;
	        transition: all .4s ease;
}
.all_projects .grid-item:hover .img img{
	-webkit-transform: scale(1.3);
	   -moz-transform: scale(1.3);
	    -ms-transform: scale(1.3);
	     -o-transform: scale(1.3);
	        transform: scale(1.3);
}
.all_projects .grid-item .info{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	text-decoration: none;
	font-size: 20px;
	padding: 20px;
	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}
.all_projects .grid-item:hover .info{
	opacity: 1;
}
.project_views{
	padding-bottom: 150px;
	display: flex;
	flex-direction: row-reverse;
}
.project_views .gallery{
	width: calc(100% - 400px);
	padding-right: 30px;
}
.project_views .info{
	min-width: 400px;
	max-width: 400px;
}
.project_views .info > h2{
	font-size: 30px;
}
.project_img{
	margin-bottom: 15px;
	display: block;
}
.project_img img{
	width: 100%;
}
.embed_code > iframe,
.embed_code > video{
    min-width: 100%;
    min-height: 400px;
}
@media (max-width: 991px) {
	.project_views{
		flex-direction:row;
	}
	.project_views .info{
		padding-right: 15px;
	}
	.embed_code > iframe, .embed_code > video{
		min-height: 200px;
		height: 200px;
	}
	.project_views .info > h2{
		font-size: 24px;
	}
	.project_views{
		padding-top: 15px;
		padding-bottom: 50px;
	}
}
@media (max-width: 767px) {
	.grid-sizer, .grid-item{
		width: 50%;
	}
	.all_projects .grid-item .info{
		opacity: 1;
		font-size: 14px;
		top: auto;
		padding: 5px 15px;
	}
	.project_views{
		flex-wrap: wrap;
	}
	.project_views .gallery,
	.project_views .info{
		min-width: 100%;
		max-width: 100%;
		padding-right: 0;
	}
	.embed_code > iframe, .embed_code > video{
		min-height: 300px;
		height: 300px;
	}
}
@media (max-width: 575px) {
	.embed_code > iframe, .embed_code > video{
		min-height: auto;
		height: 70vw;
	}
	.project_views{
		padding-bottom: 15px;
	}
}