html,
body {
	height: 100%;
	font-family: 'PT Sans', sans-serif;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

img {
	max-width: 100%;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
}

ul {
	padding: 0;
	margin: 0;
}

/*---------------------
  Helper CSS
-----------------------*/

/*---------------------
  Commom elements
-----------------------*/

/* buttons */

.site-btn {
	display: inline-block;
	border: 2px solid #000000;
	font-size: 16px;
	font-weight: 700;
	min-width: 189px;
	padding: 15px 28px;
	padding-right: 62px;
	letter-spacing: 0.08em;
	border-radius: 0;
	text-align: center;
	text-transform: uppercase;
	color: #323232;
	line-height: normal;
	cursor: pointer;
	background-color: transparent;
	background-image: url("../img/angle-rignt.png");
	background-repeat: no-repeat;
	background-position: right 23px top 22px;
}

.site-btn:hover {
	color: #323232;
}

.site-btn.sb-light {
	color: #fff;
	border-color: #fff;
	background-image: url("../img/angle-rignt-w.png");
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #000;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

.main-warp {
	height: 100%;
	/* padding-left: 455px; */
}

/*------------------
  Header section
---------------------*/

.page-section {
	min-height: 100%;
}



/* ----------------
  Gallery Page
---------------------*/

.gallery-page {
	/* background: #f7f9fb; */
}

.gallery-item {
	width: 33.33%;
	float: left;
	position: relative;
}

.gallery-item .hover-links {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #323232;
	display: -ms-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	opacity: 0;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.gallery-item .site-btn {
	min-width: 150px;
	position: relative;
	left: -20px;
	opacity: 0;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.gallery-item:hover .hover-links {
	opacity: 1;
}

.gallery-item:hover .site-btn {
	left: 0;
	opacity: 1;
	-webkit-transition: all 0.2s ease 0.4s;
	-o-transition: all 0.2s ease 0.4s;
	transition: all 0.2s ease 0.4s;
}

.portfolio-filter {
	list-style: none;
	padding: 28px 0;
	padding-left: 63px;
	padding-right: 130px;
}

.portfolio-filter li {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	color: #898d90;
	margin-right: 65px;
	cursor: pointer;
	padding: 10px 0;
}

.portfolio-filter li:last-child {
	margin-right: 0;
}

.portfolio-filter li.active {
	color: #323232;
}

/* Medium screen : 992px. */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.main-warp {
		/* padding-left: 300px; */
	}
	.gallery-item {
		width: 50%;
	}
}

/* Tablet :768px. */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.main-warp {
		padding-left: 0;
	}
	.portfolio-filter {
		padding-right: 215px;
	}
	.portfolio-filter li {
		margin-right: 30px;
	}
	.gallery-item {
		width: 50%;
	}
}

/* Large Mobile :480px. */

@media only screen and (max-width: 767px) {
	.main-warp {
		padding-left: 0;
	}
	.portfolio-filter {
		padding-right: 160px;
	}
	.portfolio-filter li {
		margin-right: 30px;
	}
	.gallery-item {
		width: 50%;
	}
}

/* Medium Mobile :480px. */

/* Small Mobile :320px. */

@media only screen and (max-width: 479px) {
	.portfolio-filter {
		padding: 0px 30px 20px;
	}
	.gallery-item {
		width: 100%;
	}
}
