footer{
	position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    z-index: 7000;
    box-sizing: border-box;
}
.footer-container{
	background-color: #b0b0a4;
	padding: 10px 30px;
}
.footer-container p{
	color: #fff;
	font-size: 13px;
	font-weight: normal;
}
.footer-copyright{
	float: left;
}
.footer-info{
	float: right;
}
.footer-info p{
	float: left;
	border-right: 1px solid #fff;
	padding: 0 5px;
}
.social-icons{
	float: left;
	margin-left: 5px;
}
.social-icons li{
	display: inline-block;
	margin-left: 5px;
}
.social-icons li a{
	color: #fff;
	font-size: 13px;
	display: block;
	font-weight: normal;
}
.projects-cat > li > p{
	width: 100px;
	float: left;
	text-align: center;
	font-size: 20px;
	color: #b0b0a4;
	font-weight: 300;
}
.projects-list-container{
	margin-top: 30px;
}
.projects-cat > li {
	margin-bottom: 30px;
}
.projects-cat > li > ul {
	float: left;
	width: calc(100% - 100px);
}
.projects-subcat{
	float: left;
}
.projects-list{
	display: inline-block;
	width: calc(100% / 9 - 6px);
}
.projects-list a{
	display: block;
}
.projects-list img {
	display: block;
		-webkit-filter: grayscale(90%);
	-moz-filter: grayscale(90%);
	-o-filter: grayscale(90%);
	-ms-filter: grayscale(90%);
	filter: grayscale(90%);
	transition: all .5s ease-in-out;
}
.projects-list a:hover img {
	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
	-o-filter: grayscale(0%);
	-ms-filter: grayscale(0%);
	filter: grayscale(0%); 
}
.projects-catname{
	margin-left: 1px;
	background-color: #b0b0a4;
	position: relative;
	display: inline-block;
	width: calc(100% / 9 - 6px);
	vertical-align: top;
}
.projects-catname span{
	position: absolute;
	bottom: 0;
	padding: 10px;
	color: #fff;
	font-size: 14px;
	text-transform: uppercase;
}
.project-inner{
	width: calc(100% - 255px);
	float: left;
}
.aside{
	width: 250px;
	float: right;
	position: fixed;
	top: 125px;
	bottom: 0px;
	z-index: 9;
}
.project-image{
	margin-top: 5px;
	background-size: cover !important;
	margin-right: 5px;
}
.gallery-images li{
	position: relative;
	float: left;
	width: calc(100% / 5 - 10px);
	padding: 5px;
	overflow: hidden;
	cursor: pointer;
}

.gallery-images li a {
	display: block;
	position: relative;
}

.gallery-images img{
	width: 100%;
	display: block;
}
.project-facts{
	background-color: #b0b0a4;
	position: relative;
	min-height: 200px;
	transition: all .8s ease-in-out;
}
.project-facts.animate {
	visibility: visible;
	opacity: 1;
	transform: translateY(0px);
	transform: scale(1);
}
.project-facts span{
	position: absolute;
	bottom: 0;
	padding: 15px;
}
.project-facts span h2{
	text-transform: uppercase;
	color: #fff;
	font-size: 12px;
	margin-bottom: 10px;
	font-weight: 400;
}

.project-facts span h1 {
	text-transform: uppercase;
	color: #fff;
	font-size: 14px;
	margin-bottom: 10px;
	font-weight: 300;
}
.project-facts span p{
	color: #fff;
	font-size: 12px;
	font-weight: 300;
}
.project-description{
    position: absolute;
    top: 0;
    padding-left: 10px;
	color: #b0b0a4;
	font-size: 14px;
	text-align: left;
	transition: all .8s ease-in-out;
}
.project-description.animate {
	visibility: visible;
	opacity: 1;
	transform: translateY(0%);
	transform: scale(1);
}