@charset "UTF-8";
@import url(jquery-ui.min.css);
body {
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	color: #545454;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	overflow: hidden;
}
ol, ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
h1, h2, h3, h4, h5, h6 {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	line-height: 1.286;
	margin: 0 0 15px;
	text-rendering: optimizeLegibility;
	letter-spacing: -0.5px;
}
b, strong {
	font-weight: 500;
}
html {
	height: 100%;
}
button:focus {
	outline: none;
}
button {
	cursor: pointer;
	border: none;
	background: transparent;
	padding: 0;
}
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus {
 -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}
::-webkit-input-placeholder {
/ Chrome/Opera/Safari / color: #000 !important;
}
::-moz-placeholder {
/ Firefox 19+ / color: #000 !important;
}
::-ms-input-placeholder {
/ IE 10+ / color: #000 !important;
}
::-moz-placeholder {
/ Firefox 18- / color: #000 !important;
}
::-webkit-scrollbar {
 width: 8px;
 height: 8px;
 background: #8ec751;
}
::-webkit-scrollbar-thumb {
 cursor: pointer;
 background: #1e9ed7
}
.clearfix:after {
	content: "";
	clear: both;
	display: table;
}
.overflow {
	overflow: hidden !important;
}
.no-margin {
	margin: 0 !important;
}
.no-padding {
	padding: 0 !important;
}
.no-top-padding {
	padding-top: 0 !important;
}
.no-bottom-padding {
	padding-bottom: 0 !important;
}
img {
	max-width: 100%;
}
a {
	color: #545454;
	-webkit-transition: 0.25s ease-in-out;
	-moz-transition: 0.25s ease-in-out;
	-ms-transition: 0.25s ease-in-out;
	-o-transition: 0.25s ease-in-out;
	transition: 0.25s ease-in-out;
}
a, a:hover, a:active, a:focus {
	text-decoration: none;
	outline: none;
	border: none;
}
.preloader {
	height: 100px;
	width: 100px;
	position: relative;
	top: calc(50% - 25px);
	left: calc(50% - 25px);
	perspective: 1000px;
	z-index: 1000;
}
.thing {
	height: $size;
	width: $size;
	background-color: #8ec751;
	position: absolute;
	box-sizing: border-box;
	top: 0;
	left: 0;
}
.thing {
	height: 50px;
	width: 50px;
	background-color: #8ec751;
	position: absolute;
	box-sizing: border-box;
	top: 0;
	left: 0;
}
.thing:nth-of-type(1) {
	animation: bounce 0.5s ease-in-out infinite alternate, move 4s -1s infinite;
}
.thing:nth-of-type(2) {
	animation: bounce 0.5s ease-in-out infinite alternate, move 4s -2s infinite;
}
.thing:nth-of-type(3) {
	animation: bounce 0.5s ease-in-out infinite alternate, move 4s -3s infinite;
}
.thing:nth-of-type(4) {
	animation: bounce 0.5s ease-in-out infinite alternate, move 4s -4s infinite;
}
 @keyframes bounce {
 from {
 transform: scale(1);
}
to {
	transform: scale(0.8);
}
}
 @keyframes move {
 0% {
 top: 0;
 left: 0;
 background-color: #8ec751;
}
 25% {
 top: 0;
 left: 50%;
 background-color: #c0dd92;
}
 50% {
 top: 50%;
 left: 50%;
 background-color: #1e9ed7;
}
 75% {
 top: 50%;
 left: 0;
 background-color: #2ebaeb;
}
}
.page-loaded {
	overflow: inherit;
}
.page-loaded .preloader {
	left: -100%;
	transition-delay: 0.6s;
}
.page-loaded .preloader .layer {
	bottom: -100%;
	transition-delay: 0.2s;
}
.page-loaded .preloader .inner {
	transform: translateY(30px);
	opacity: 0;
}
.page-loaded .header .social-media {
	transform: translateY(0);
	opacity: 1;
}
.page-loaded .navbar {
	transform: translateY(0);
}
.page-loaded .soundbar {
	transform: translateX(0);
}
.transition-overlay {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: -100%;
	z-index: 10;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	transition-duration: 500ms;
	-webkit-transition-duration: 500ms;
	transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	-webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.transition-overlay * {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	transition-duration: 500ms;
	-webkit-transition-duration: 500ms;
	transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	-webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.transition-overlay .layer {
	width: 10px;
	height: 100%;
	float: left;
	background: #8ec751;
	transition-delay: 0.4s;
}
.transition-overlay.active {
	top: 0;
}
.transition-overlay.active .layer {
	width: 100%;
}
.navigation-menu {
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	position: fixed;
	left: 0;
	top: -100%;
	z-index: 100;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	transition-duration: 500ms;
	-webkit-transition-duration: 500ms;
	transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	-webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.navigation-menu * {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	transition-duration: 500ms;
	-webkit-transition-duration: 500ms;
	transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	-webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.navigation-menu .nav-bg {
	width: 10px;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: #8ec751;
	transition-delay: 0.4s;
}
.navigation-menu .nav-bg2 {
	width: 0;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgb(60, 60, 60);
	transition-delay: 0.8s;
}
.navigation-menu .inner {
	width: 100%;
	position: relative;
	z-index: 2;
	padding: 0 40px;
}
.navigation-menu .inner address {
	float: left;
	color: #fff;
	font-family: "Montserrat", serif;
	font-size: 20px;
	transform: translateX(-200%);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	transition-duration: 500ms;
	-webkit-transition-duration: 500ms;
	transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	-webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	margin: 0;
	height: 170px;
	position: absolute;
	top: 50%;
	margin-top: -85px;
}
.navigation-menu .inner address span {
	font-family: "Roboto", sans-serif;
	display: block;
	font-size: 2vw;
	font-weight: 800;
	margin-bottom: 20px;
}
.navigation-menu .inner ul {
	width: 50%;
	float: right;
	margin: 0;
	padding: 0;
}
.navigation-menu .inner ul li {
	display: block;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
}
.navigation-menu .inner ul li:hover ul {
	max-height: 500px;
	transition: max-height 0.45s ease-in;
}
.navigation-menu .inner ul li a {
	float: right;
	font-size: 2vw;
	color: #fff;
	font-weight: 800;
	transform: translateY(200%);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	transition-duration: 500ms;
	-webkit-transition-duration: 500ms;
	transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	-webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	position: relative;
}
.navigation-menu .inner ul li a:hover {
	text-decoration: none;
}
.navigation-menu .inner ul li a:hover:before {
	width: 100%;
}
.navigation-menu .inner ul li a:before {
	content: "";
	width: 0;
	height: 10px;
	position: absolute;
	left: 0;
	bottom: 17px;
	z-index: -1;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	transition-duration: 500ms;
	-webkit-transition-duration: 500ms;
	transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	-webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.navigation-menu .inner ul li ul {
	max-height: 0;
	width: 100%;
	transition: max-height 0.25s ease-out;
}
.navigation-menu .inner ul li ul li {
	display: block;
}
.navigation-menu .inner ul li ul li a {
	font-size: 26px;
}
.navigation-menu .inner ul li ul li a:before {
	height: 4px;
	bottom: 8px;
}
.navigation-menu.open {
	top: 0;
}
.navigation-menu.open .nav-bg {
	width: 100%;
}
.navigation-menu.open .nav-bg2 {
	width: 100%;
}
.navigation-menu.open address {
	transition-delay: 1s;
	transform: translateY(0);
}
.navigation-menu.open ul li {
	margin: 0;
}
.navigation-menu.open ul li:nth-child(1) a {
	transition-delay: 0.8s;
}
.navigation-menu.open ul li:nth-child(2) a {
	transition-delay: 0.85s;
}
.navigation-menu.open ul li:nth-child(3) a {
	transition-delay: 0.9s;
}
.navigation-menu.open ul li:nth-child(4) a {
	transition-delay: 0.95s;
}
.navigation-menu.open ul li:nth-child(5) a {
	transition-delay: 1s;
}
.navigation-menu.open ul li:nth-child(6) a {
	transition-delay: 1.05s;
}
.navigation-menu.open ul li:nth-child(7) a {
	transition-delay: 1.1s;
}
.navigation-menu.open ul li:nth-child(8) a {
	transition-delay: 1.15s;
}
.navigation-menu.open ul li a {
	transform: translateY(0);
}
.sandwich-btn {
	width: 22px;
	height: 22px;
	float: left;
	position: relative;
	cursor: pointer;
}
.sandwich-btn span {
	display: block;
	height: 2px;
	width: 18px;
	background: #fff;
	opacity: 1;
	position: absolute;
	right: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: 0.25s ease-in-out;
	-moz-transition: 0.25s ease-in-out;
	-o-transition: 0.25s ease-in-out;
	transition: 0.25s ease-in-out;
}
.sandwich-btn span:nth-child(1) {
	top: 0;
}
.sandwich-btn span:nth-child(2) {
	top: 8px;
}
.sandwich-btn.open span:nth-child(1) {
	top: 4px;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}
.sandwich-btn.open span:nth-child(2) {
	top: 4px;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
.header {
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
}
.navbar {
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 101;
	padding: 30px 40px;
	font-family: "Montserrat", serif;
}
.navbar .logo {
}
.navbar .logo a {
	float: left;
}
.navbar .sandwich-nav {
	margin-right: 0;
}
.navbar .sandwich-nav .sandwich-text {
	float: left;
	height: 46px;
	overflow: hidden;
}
.navbar .sandwich-nav .sandwich-text.move-up b {
	transform: translateY(-50%);
}
.navbar .sandwich-nav .sandwich-text b {
	float: left;
	font-weight: 500;
	line-height: 46px;
	color: #fff;
	font-family: "Montserrat", serif;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	transition-duration: 500ms;
	-webkit-transition-duration: 500ms;
	transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	-webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.navbar .sandwich-nav .sandwich-btn {
	float: left;
	margin-left: 10px;
	margin-top: 18px;
}
.header {
	width: 100%;
	height: 100vh;
	display: flex;
	position: fixed;
	left: 0;
	top: 0;
}
.header .social-media {
	position: absolute;
	left: 44px;
	bottom: 90px;
	margin: 0;
	padding: 0;
	font-family: "Montserrat", serif;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	transition-duration: 500ms;
	-webkit-transition-duration: 500ms;
	transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	-webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	margin: 0;
	padding: 0;
	z-index: 2;
	transform: translateY(100%);
	opacity: 0;
	transition-delay: 1.2s;
}
.header .social-media li {
	float: left;
	margin: 0;
	margin-right: 15px;
	padding: 0;
	list-style: none;
}
.header .social-media li a {
	float: left;
	color: #fff;
	position: relative;
}
.header .social-media li a:hover {
	text-decoration: none;
}
.header .social-media li a:hover:before {
	width: 100%;
}
.header .social-media li a:before {
	content: "";
	width: 0;
	height: 6px;
	background: #00bbcc;
	position: absolute;
	left: 0;
	bottom: 2px;
	z-index: -1;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	transition-duration: 500ms;
	-webkit-transition-duration: 500ms;
	transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	-webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.header .swiper-carousel {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
}
.header .swiper-carousel * {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	transition-duration: 500ms;
	-webkit-transition-duration: 500ms;
	transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	-webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.header .swiper-carousel .swiper-button-prev {
	width: 20%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: none;
	cursor: url("../images/arrow-left.png"), auto;
}
.header .swiper-carousel .swiper-button-next {
	width: 20%;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	background: none;
	cursor: url("../images/arrow-right.png"), auto;
}
.header .swiper-carousel .swiper-slide {
	height: 100%;
	display: flex;
	background: #eee;
	align-items: center;
	justify-content: center;
	transition: all 200ms linear;
	background-size: cover;
}
.header .swiper-carousel .swiper-slide:after {
	content: "";
	width: 100%;
	height: 100%;
	background: #545454;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0.6;
	-webkit-transition: 0.25s ease-in-out;
	-moz-transition: 0.25s ease-in-out;
	-ms-transition: 0.25s ease-in-out;
	-o-transition: 0.25s ease-in-out;
	transition: 0.25s ease-in-out;
}
.header .swiper-carousel .swiper-slide .inner {
	opacity: 0;
	padding: 0 5vw;
	position: relative;
	z-index: 2;
	transform: translateY(50px);
}
.header .swiper-carousel .swiper-slide .inner h2 {
	font-size: 6vw;
}
.header .swiper-carousel .swiper-slide-active {
	margin: 0;
	box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
	z-index: 2;
}
.header .swiper-carousel .swiper-slide-active:after {
	content: "";
	opacity: 0;
}
.header .swiper-carousel .swiper-slide-active .inner {
	opacity: 1;
	transform: translateY(0);
}
.header .swiper-container {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
}
.header .swiper-container .swiper-slide {
	overflow: hidden;
}
.header .swiper-container .swiper-button-next {
	z-index: 2;
	width: auto;
	height: auto;
	background: none;
	right: 33px;
	font-weight: 600;
	color: #fff;
	transform: rotate(90deg);
	margin-top: 20px;
	overflow: hidden;
}
.header .swiper-container .swiper-button-next * {
	-webkit-transition: 0.25s ease-in-out;
	-moz-transition: 0.25s ease-in-out;
	-ms-transition: 0.25s ease-in-out;
	-o-transition: 0.25s ease-in-out;
	transition: 0.25s ease-in-out;
}
.header .swiper-container .swiper-button-next span {
	position: relative;
	display: inline-block;
}
.header .swiper-container .swiper-button-next span:before {
	position: absolute;
	top: 100%;
	content: attr(data-hover);
}
.header .swiper-container .swiper-button-next span:before {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.header .swiper-container .swiper-button-next:hover span {
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	transform: translateY(-100%);
}
.header .swiper-container .swiper-button-prev {
	width: auto;
	height: auto;
	background: none;
	left: auto;
	right: 33px;
	font-weight: 600;
	color: #fff;
	transform: rotate(90deg);
	margin-top: -40px;
	overflow: hidden;
}
.header .swiper-container .swiper-button-prev * {
	-webkit-transition: 0.25s ease-in-out;
	-moz-transition: 0.25s ease-in-out;
	-ms-transition: 0.25s ease-in-out;
	-o-transition: 0.25s ease-in-out;
	transition: 0.25s ease-in-out;
}
.header .swiper-container .swiper-button-prev span {
	position: relative;
	display: inline-block;
}
.header .swiper-container .swiper-button-prev span:before {
	position: absolute;
	top: 100%;
	content: attr(data-hover);
}
.header .swiper-container .swiper-button-prev span:before {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.header .swiper-container .swiper-button-prev:hover span {
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	transform: translateY(-100%);
}
.header .swiper-container .swiper-pagination-fraction {
	z-index: 2;
	width: 100px;
	position: absolute;
	left: auto;
	right: 40px;
	bottom: 20px;
	color: #fff;
	text-align: right;
}
.header .swiper-container .swiper-pagination-fraction .swiper-pagination-current {
	font-size: 50px;
	font-weight: 800;
}
.header .swiper-container .swiper-pagination-fraction .swiper-pagination-current:before {
	content: "0";
}
.header .swiper-container .swiper-pagination-fraction .swiper-pagination-total {
	font-size: 15px;
	font-weight: 600;
	opacity: 0.7;
}
.header .slide-inner {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	padding: 0 150px;
}
main {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-top: 30vh;
	background: #fff;
	position: relative;
}
.page-header {
	width: 100%;
	min-height: 40vh;
	position: fixed;
	left: 0;
	top: 0;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	background-size: cover;
	background: rgb(60, 60, 60);
}
.page-header-img:after {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(18, 18, 18, 0.7) none repeat scroll 0 0;
	position: absolute;
}
.page-header .social-media {
	position: absolute;
	left: 140px;
	bottom: 30px;
	margin: 0;
	padding: 0;
	font-family: "Montserrat", serif;
	z-index: 2;
}
.page-header .social-media li {
	float: left;
	margin: 0;
	margin-right: 15px;
	padding: 0;
	list-style: none;
}
.page-header .social-media li a {
	float: left;
	color: #fff;
	position: relative;
}
.page-header .social-media li a:hover {
	text-decoration: none;
}
.page-header .social-media li a:hover:before {
	width: 100%;
}
.page-header .social-media li a:before {
	content: "";
	width: 0;
	height: 6px;
	background: #00bbcc;
	position: absolute;
	left: 0;
	bottom: 2px;
	z-index: -1;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	transition-duration: 500ms;
	-webkit-transition-duration: 500ms;
	transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	-webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.page-header .inner-content {
	width: 100%;
	position: absolute;
	left: 0;
	top: 50%;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
}
.page-header .inner-content .inner {
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	padding: 0 140px;
}
.title2 {
	font-weight: bold;
	margin-top: 0;
	margin-bottom: 40px;
	font-size: 1.5vw;
	line-height: 1.5rem;
	font-family: "Montserrat", serif;
}
.title-border:after {
	content: '';
	display: block;
	height: 2px;
	width: 40px;
	margin-top: 10px;
	background: #545454;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.title-border2:after {
	content: '';
	display: block;
	height: 2px;
	width: 40px;
	margin-top: 10px;
	background: #FFF;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.text-content-block {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	padding: 6rem 0rem;
}
.text-content-block h2 {
	font-size: 4.6vw;
	font-family: "Montserrat", serif;
}
.text-content-block h4 {
	font-weight: 600;
	font-size: 2vw;
}
.text-content-block p {
	font-size: 16px;
	line-height: 28px;
	letter-spacing: 0.2px;
	font-weight: 300;
	text-align: justify;
}
.page-title {
	float: left;
	width: 100%;
	position: relative;
	z-index: 5;
}
.page-title .creat-list a:before {
	background: #fff;
}
.page-title .creat-list {
	position: relative;
	top: 20px;
}
.parallax-section .page-title, .parallax-section .creat-list a {
	color: #fff;
}
.parallax-section .creat-list {
	float: right;
	margin: 10px 0;
}
.parallax-section .creat-list li {
	float: left;
	margin-right: 10px;
}
.parallax-section .creat-list li a {
	float: left;
	padding-left: 30px;
	font-size: 12px;
	font-family: "Roboto", sans-serif;
	line-height: 12px;
	text-transform: uppercase;
	padding-left: 63px;
	position: relative;
	font-weight: 600;
	letter-spacing: 2px;
}
.parallax-section .creat-list li a:hover {
	text-decoration: none !important;
}
.parallax-section .creat-list li a:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 40px;
	height: 1px;
	background: #fff;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}
.parallax-section .creat-list li a:hover:before {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.page-title h2 {
	font-size: 36px;
	float: left;
	margin-bottom: 30px;
	text-align: left;
	width: 100%;
	color: #fff;
	font-weight: 300;
	text-align: left;
	position: relative;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	z-index: 1;
}
.page-title h2:before {
	content: '';
	position: absolute;
	bottom: -20px;
	left: 0;
	width: 80px;
	height: 4px;
	background: #fff;
}
.parallax-section .page-title, .parallax-section .creat-list a {
	color: #fff !important;
}
.page-title h2 strong {
	font-weight: bold;
}
.mt2, .contentpage p {
	margin-top: 2rem;
}
.mb12 {
	margin-bottom: 12rem;
}
.mt3 {
	margin-top: 3rem;
}
.mb3 {
	margin-bottom: 3rem;
}
.mtb3 {
	margin: 3rem 0rem;
}
.contentpage p, .contentpage div {
	margin-bottom: 0 !important;
}
.footer-top-area, .footer-bottom-area {
	width: 100%;
	display: flex;
	position: relative;
	flex-wrap: wrap;
}
.footer-top-area {
	text-align: center;
	background: #27282c;
}
.footer-bottom-area {
	background: #1f1f23;
}
.footer-top-area .wrapper, .footer-bottom-area .wrapper {
	z-index: 10;
}
.footer-top-area .wrapper, .footer-bottom-area .wrapper {
	width: 100%;
}
.footer-bottom-area .wrapper .top-footer {
	display: flex;
	background: #f8f8f8;
	margin: -70px 0 0px;
	z-index: 100;
	border: 1px solid #e5e5e5;
}
ul.footer-contact-info {
	position: relative;
	display: flex;
	background: #f8f8f8;
}
ul.footer-contact-info li {
	position: relative;
	display: inline-block;
	float: left;
	max-width: 385px;
	border-right: 1px solid #e5e5e5;
}
ul.footer-contact-info li:last-child {
	border-right: 0px solid;
}
ul.footer-contact-info li .single-footer-contact-info .inner {
	position: relative;
	display: block;
	padding: 35px 40px 30px;
}
ul.footer-contact-info li .single-footer-contact-info .icon {
	width: 60px;
}
ul.footer-contact-info li .single-footer-contact-info .icon span:before {
	color: #545454;
	font-size: 50px;
	transition: all 500ms ease;
}
ul.footer-contact-info li .single-footer-contact-info:hover .icon span:before {
	color: #000;
}
ul.footer-contact-info li .single-footer-contact-info .icon, ul.footer-contact-info li .single-footer-contact-info .text {
	display: table-cell;
	vertical-align: top;
}
ul.footer-contact-info li .single-footer-contact-info .text p {
	color: #545454;
	margin: 0;
	font-size: 14px;
	line-height: 28px;
	letter-spacing: 0.2px;
	font-weight: 300;
	text-align: justify;
}
ul.footer-contact-info li .single-footer-contact-info .text p span {
	color: #27282c;
}
.footer-bottom-area .wrapper .bottom-footer {
	width: 100%;
	padding: 2rem 0rem;
	color: #fff;
	font-family: "Montserrat", serif;
}
.google-map {
	margin: 0;
	line-height: 1px;
}
.block-link {
	display: inline-block;
	padding: 5px;
	border: 1px solid #fff;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}
.more-reviews-button {
	position: relative;
	display: block;
	margin-top: 39px;
}
.single-testimonial-item {
	position: relative;
	display: block;
	background: #fff;
	-webkit-box-shadow: 0px 2px 10px 3px #e1e1e1;
	min-height: 25rem;
	box-shadow: 0px 2px 10px 3px #e1e1e1;
	margin-bottom: 2rem;
}
.single-testimonial-item .inner-content {
	position: relative;
	display: block;
	padding: 5rem 1.5rem 0rem;
	background: #fff;
}
.single-testimonial-item .inner-content .client-info {
	position: relative;
	display: block;
}
.single-testimonial-item .inner-content .client-info h3 {
	color: #545454;
	font-weight: 600;
	margin: 0 0 3px;
}
.single-testimonial-item .inner-content .client-info span {
	font-size: 16px;
	font-weight: 300;
}
.single-testimonial-item .inner-content .text-box {
	position: relative;
	display: block;
	padding-top: 24px;
}
.single-testimonial-item .inner-content .text-box p {
	font-size: 16px;
	line-height: 28px;
	letter-spacing: 0.2px;
	font-weight: 300;
	text-align: justify;
}
.single-testimonial-item .quote-icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 60px;
	height: 70px;
	z-index: 3;
}
.bluebg {
	background: #1e9ed7;
}
.greenbg {
	background: #8ec751;
}
.red, .form-error {
	color: #F00 !important;
}
.single-testimonial-item .quote-icon span:before {
	color: #fff;
	font-size: 30px;
	display: block;
	padding: 20px 0;
}
.sec-title {
	position: relative;
	display: block;
	margin-top: -5px;
	padding-bottom: 50px;
}
.sec-title.max-width {
	max-width: 650px;
	margin: -5px auto 0;
}
.sec-title.with-text {
	padding-bottom: 52px;
}
.sec-title p, .sec-title h2 {
	color: #1e9ed7;
	font-size: 16px;
	line-height: 20px;
	font-weight: 600;
	text-transform: uppercase;
	margin: 0 0 7px;
	font-family: "Montserrat", sans-serif;
}
.sec-title .title {
	position: relative;
	display: block;
	color: #545454;
	font-size: 36px;
	line-height: 44px;
	font-weight: 400;
	text-transform: uppercase;
	font-family: "Montserrat", sans-serif;
}
.sec-title .title.clr-white {
	color: #fff;
}
.sec-title .title span {
	font-weight: 700;
}
.sec-title .bottom-text {
	color: #545454;
	font-size: 17px;
	line-height: 27px;
	font-weight: 400;
	text-transform: none;
	margin: 13px 0 0;
	font-family: "Montserrat", sans-serif;
}
.fix {
	position: relative;
	display: block;
	overflow: hidden;
}
.flex-box-two {
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
}
.btn-one {
	position: relative;
	display: inline-block;
	background: #8ec751;
	color: #fff;
	font-size: 15px;
	line-height: 60px;
	font-weight: 500;
	text-transform: capitalize;
	font-family: "Montserrat", sans-serif;
	padding: 0 30px 0;
	transition: all 500ms ease;
}
.btn-one span:before {
	font-size: 26px;
	line-height: 14px;
	display: inline-block;
	padding-left: 10px;
	position: relative;
	top: 4px;
}
.btn-one:hover {
	color: #fff;
}
.btn-two {
	color: #27282c;
	font-size: 15px;
	line-height: 20px;
	font-weight: 500;
	text-transform: capitalize;
	font-family: "Montserrat", sans-serif;
	transition: all 500ms ease;
}
.btn-two span:before {
	position: relative;
	top: 5px;
	font-size: 26px;
	line-height: 14px;
	display: inline-block;
	padding-left: 10px;
}
.btn-two:hover {
	color: #1e9ed7;
}
.recently-project-area .btn-two {
	color: #fff !important;
}
.recently-project-area .btn-two:hover {
	color: #8ec751 !important;
}
.slogan-area, .projects-pagination {
	width: 100%;
	position: relative;
	display: block;
}
.slogan-area{
	padding: 3rem 0;
	-webkit-box-shadow: 0px 2px 10px 3px #e1e1e1;
	box-shadow: 0px 2px 10px 3px #e1e1e1;
	background: #1e9ed7;	
}
.projects-pagination{
	padding: 1rem 0;
    margin-bottom: 9rem;
    background: #f8f8f8;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}
.projects-pagination a{
	color: #545454;
    margin: 0;
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.2px;
    font-weight: 400;
	text-transform:uppercase;
}
.projects-pagination a:hover{
	color: #000;
}
.slogan-area .title {
	position: relative;
	display: block;
}
.slogan-area .title h3 {
	color: #fff;
	font-size: 20px;
	line-height: 30px;
	font-weight: 700;
	margin-bottom: 0 !important;
}
.slogan-area .button {
	position: relative;
	display: block;
}
.slogan-area .button a {
	color: #27282c;
	background: #fff;
}
.slogan-area .button a:hover {
	color: #fff;
	background: #0e83b7 !important;
}
.scroll-to-top {
	position: fixed;
	right: 20px;
	bottom: 30px;
	width: 55px;
	height: 55px;
	background: #1e9ed7;
	border: 2px solid #1e9ed7;
	border-radius: 0%;
	color: #fff;
	font-size: 25px;
	line-height: 50px;
	font-weight: 400;
	cursor: pointer;
	display: none;
	text-align: center;
	transition: all 500ms ease 0s;
	z-index: 99999999999;
	box-shadow: 0px 5px 10px -10px rgba(27,27,27,1);
}
.scroll-to-top:hover {
	opacity: .5;
}
.scroll-to-top-style2 {
	position: fixed;
	bottom: 25px;
	right: 15px;
	background: #000;
	border: 2px solid #000;
	width: 55px;
	height: 55px;
	border-radius: 0%;
	color: #fff;
	font-size: 25px;
	line-height: 50px;
	font-weight: normal;
	cursor: pointer;
	display: none;
	text-align: center;
	transition: all 500ms ease 0s;
	z-index: 10001;
	box-shadow: 0px 8px 23px -6px rgba(27,27,27,1);
}
.scroll-to-top-style2:hover {
	background-color: #8ec751;
	border: 2px solid #8ec751;
}
.recently-project-area {
	width: 100%;
	position: relative;
	display: block;
	padding: 6rem 0rem;
	background-image: url(../images/working-style2-bg.jpg);
	background-attachment: fixed;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
}
.recently-project-area::before {
	background: rgba(18, 18, 18, 0.85) none repeat scroll 0 0;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	content: "";
	z-index: 1;
}
.recently-project-area .container {
	position: relative;
	z-index: 2
}
.recently-project-area .container-fluid {
	padding-right: 10px;
	padding-left: 10px;
}
.more-project-button {
	position: relative;
	display: block;
	margin-top: 39px;
}
.single-project-style1, .single-project-style2 {
	position: relative;
	display: block;
	z-index: 6;
}
.single-project-style1 .img-holder, .single-project-style2 .img-holder {
	position: relative;
	display: block;
	overflow: hidden;
	z-index: 5;
}
.single-project-style1 .img-holder img, .single-project-style2 .img-holder img {
	width: 100%;
	transform: scale(1.01);
	transition: all 700ms ease;
}
.single-project-style1:hover .img-holder img{
	transform: scale(1.2) rotate(2deg);
}
.single-project-style1 .overlay-content, .single-project-style2 .overlay-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: rgba(0, 0, 0, 0.80);
	transform: scaleX(0);
	transition: all 700ms ease 100ms;
}
.single-project-style1:hover .overlay-content, .single-project-style1:focus .overlay-content, .single-project-style2:hover .overlay-content {
	transform: scaleY(1);
}
.single-project-style1 .overlay-content .inner-content, .single-project-style2 .overlay-content .inner-content {
	display: table;
	width: 100%;
	height: 100%;
}
.single-project-style1 .overlay-content .inner-content .link-box {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	opacity: 0;
	transform-style: preserve-3d;
	transform: perspective(1200px) rotateX(90deg) translateZ(-45px);
	transition: all 300ms ease 100ms;
}
.single-project-style1:hover .overlay-content .inner-content .link-box, .single-project-style1:focus .overlay-content .inner-content .link-box{
	opacity: 1;
	transform: translate3d(0px, 0px, 0px);
	transition: all 700ms ease 500ms;
}
.single-project-style1 .overlay-content .inner-content .link-box a {
	background: #ffffff;
	color: #27282c;
	line-height: 55px;
	padding: 0 25px 0;
}
.single-project-style1 .overlay-content .inner-content .link-box a:hover, .single-project-style1 .overlay-content .inner-content .link-box a:focus {
	color: #ffffff;
	background: #8ec751;
}
.single-project-style1 .img-holder .title-box {
	position: absolute;
	left: 0px;
	bottom: 0px;
	right: 0px;
	text-align: center;
	display: block;
	padding-bottom: 34px;
	transform-style: preserve-3d;
	transform: perspective(1200px) rotateX(90deg) translateZ(-45px);
	opacity: 0;
	transition: all 300ms ease 200ms;
	z-index: 3;
}
.single-project-style1:hover .img-holder .title-box, .single-project-style1:focus .img-holder .title-box {
	transform: translate3d(0px, 0px, 0px);
	opacity: 1;
	transition: all 700ms ease 800ms;
}
.single-project-style1 .img-holder .title-box span {
	color: #95979c;
}
.single-project-style1 .img-holder .title-box h3 {
	color: #ffffff;
	font-weight: 600;
	margin: 3px 0 0;
}
.single-project-style2 .overlay-content .inner-content .link-box {
	display: table-cell;
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -47px;
	margin-top: -40px;
	transition: all 0.3s ease-out 0s;
	overflow: hidden;
}
.single-project-style2:hover .overlay-content .inner-content .link-box {
	top: 45%
}
.single-project-style2:hover .overlay-content .inner-content .link-box a {
	float: left;
	margin-right: 5px;
}
.single-project-style2:hover .overlay-content .inner-content .link-box {
	position: absolute;
	transition: all 0.3s ease-out;
}
.single-project-style2 .overlay-content .inner-content .link-box a {
	color: #27282c;
	line-height: 55px;
}
.project-carousel.owl-carousel .owl-stage-outer {
	padding: 0px;
}
.project-carousel .owl-dots {
	position: relative;
	display: block !important;
	margin-top: 43px !important;
	line-height: 14px;
}
.project-carousel .owl-dots .owl-dot {
	background-image: none;
	width: 20px;
	height: 5px;
	margin: 0px 10px;
	background: #fff;
	border: 2px solid #fff;
	padding: 0px;
	border-radius: 0%;
	transition: all 500ms ease;
	display: inline-block;
}
.project-carousel .owl-dots .owl-dot span {
	display: none;
}
.project-carousel .owl-dots .owl-dot.active {
	background: #8ec751;
	border-color: #8ec751;
}
.white {
	color: #fff !important;
}
.green {
	color: #8ec751 !important;
}
.blue {
	color: #1e9ed7 !important;
}
.stricky-fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0rem 1rem;
	z-index: 10000;
	background: #fff;
	margin: 0;
	animation-name: menu_sticky;
	animation-duration: 0.60s;
	animation-timing-function: ease-out;
	transition: all .25s ease-in-out;
	-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.10);
	-moz-box-shadow: 0 0 15px rgba(0,0,0,0.10);
	-ms-box-shadow: 0 0 15px rgba(0,0,0,0.10);
	-o-box-shadow: 0 0 15px rgba(0,0,0,0.10);
	box-shadow: 0 0 15px rgba(0,0,0,0.10);
}
.stricky-fixed.navbar .sandwich-nav .sandwich-text b {
	color: #000 !important;
}
.stricky-fixed.navbar .sandwich-btn span {
	background-color: #000 !important;
}
@keyframes menu_sticky {
 0% {
margin-top:-90px;
}
 50% {
margin-top: -74px;
}
 100% {
margin-top: 0;
}
}
.main-project-area.style2 {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	padding: 3rem 0;
}
.main-project-area.style2 .contem, .text-content-block .contem {
	margin-bottom: 30px;
}
.post-pagination {
	position: relative;
	display: block;
}
.post-pagination.martop20 {
	margin-top: 20px;
}
.post-pagination li {
	display: inline-block;
	margin: 0 3px;
}
.post-pagination li a {
	position: relative;
	display: block;
	background: #ffffff;
	border-radius: 0px;
	border: 1px solid #ededed;
	color: #2f2f2f;
	font-size: 18px;
	font-weight: 600;
	height: 50px;
	width: 50px;
	padding: 11px 0;
	transition: all 500ms ease 0s;
	font-family: 'Poppins', sans-serif;
}
.post-pagination li a i {
	position: relative;
	font-size: 20px;
}
.post-pagination li.active a, .post-pagination li:hover a {
	color: #fff;
	background: #8ec751;
	border: 1px solid #8ec751;
}
.text-content-block .contentpage, .main-project-area .contentpage{
	padding-bottom: 3rem !important;
}
.text-content-block .whatwedo {
	padding-bottom: 4.5rem !important;
}
.text-content-block .contentpage p, .main-project-area .contentpage p{
	margin-top: 1rem!important;
}
.text-content-block .contentpage p, .text-content-block .contentpage div, .main-project-area .contentpage p {
	font-size: 16px;
	line-height: 28px;
	letter-spacing: 0.2px;
	font-weight: 300;
	text-align: justify;
}
.text-content-block .contentpage div{
	margin-top: 0rem!important;	
}
.project-description-area {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	padding: 6rem 0;
}
.project-description-area .pattern-bg {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.project-description-image-box {
	position: relative;
	display: block;
	z-index: 3;
}
.project-description-image-box img {
	max-width: none;
	float: right;
}
.project-description-content {
	position: relative;
	display: block;
	z-index: 3;
	padding-top: 45px;
	padding-left: 100px;
}
.project-description-content .sec-title {
	padding-bottom: 32px;
}
.project-description-content .sec-title p {
	margin: 0 0 5px;
}
.project-description-content .sec-title .title {
	font-size: 30px;
}
.project-description-content .inner-content {
	position: relative;
	display: block;
}
.project-description-content .inner-content p {
	font-size: 16px;
	line-height: 28px;
	letter-spacing: 0.2px;
	font-weight: 300;
	text-align: justify;
}
.project-detail .overlay-content .inner-content .link-box {
	bottom: 10px;
	position: absolute;
	color: #fff;
}
.project-detail .overlay-content .inner-content .link-box a {
	height: 70px;
	width: 70px;
	margin-top: 10px;
	margin-left: 10px;
	float: left;
	margin-right: 5px;
}
.project-detail .overlay-content .inner-content .link-box a i {
	width: 60px;
	height: 60px;
	color: #FFF;
	background: #1e9ed7;
	text-align: center;
	line-height: 60px;
	border-radius: 50%;
	font-size: 23px;
}
.project-detail .overlay-content .inner-content .link-box a i:after {
	transition: all 0.3s ease-out;
	content: '';
	position: absolute;
	top: 5px;
	left: 5px;
	width: 70px;
	height: 70px;
	border: 2px solid #1e9ed7;
	border-radius: 50%;
	opacity: 0;
	z-index: 0
}
.project-detail .overlay-content .inner-content .link-box a:hover i:after {
	opacity: 1;
}
.project-detail .overlay-content .inner-content .link-box i {
	background: #1e9ed7;
}
.mobx-holder {
	position: fixed;
	overflow: hidden;
	z-index: 99999;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	visibility: hidden;
	opacity: 0;
	will-change: opacity, visibility;
	box-sizing: border-box;
	-ms-touch-action: none;
	touch-action: none;
	pointer-events: none;
	-webkit-text-size-adjust: 100%;
	-webkit-backface-visibility: hidden;
	font-family: "Roboto", sans-serif;
	-webkit-transition: opacity .4s ease;
	transition: opacity .4s ease, visibility .4s ease
}
 .mobx-holder:-webkit-full-screen {
 background-color: transparent
}
.mobx-holder * {
	box-sizing: border-box
}
.mobx-holder svg {
	pointer-events: none
}
.mobx-open {
	pointer-events: auto;
	visibility: visible;
	opacity: 1
}
.mobx-rtl {
	direction: rtl
}
.mobx-slider {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	opacity: 1;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	-ms-touch-action: none;
	touch-action: none;
	-webkit-transition: opacity .45s ease;
	transition: opacity .45s ease
}
.mobx-hide {
	opacity: 0;
	-webkit-transition: none;
	transition: none
}
.mobx-overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	will-change: opacity;
	transform: translateZ(0);
	background-color: rgba(0, 0, 0, .9)
}
.mobx-ui:after {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	visibility: hidden;
	will-change: opacity;
	background: rgba(0, 0, 0, .4);
	-webkit-transition: opacity .25s ease-out, visibility .25s ease-out;
	transition: opacity .25s ease-out, visibility .25s ease-out
}
.mobx-open-tooltip .mobx-ui:after {
	opacity: 1;
	visibility: visible
}
.mobx-video:before, .mobx-video:after, .mobx-thumb-video:after, .mobx-ui button, .mobx-share-tooltip *:after {
	background-image: url(../images/modulobox.svg);
	background-repeat: no-repeat;
	background-color: transparent
}
.mobx-top-bar {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	will-change: transform;
	background-color: rgba(0, 0, 0, .4);
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: -webkit-transform .25s ease-in-out;
	transition: transform .25s ease-in-out
}
.mobx-idle .mobx-top-bar, .mobx-will-close .mobx-top-bar, .mobx-holder:not(.mobx-open) .mobx-top-bar {
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%)
}
.mobx-bottom-bar {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	will-change: transform;
	background-color: rgba(0, 0, 0, .4);
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: -webkit-transform .25s ease-in-out;
	transition: transform .25s ease-in-out
}
.mobx-panzoom .mobx-bottom-bar, .mobx-will-close .mobx-bottom-bar, .mobx-holder:not(.mobx-open) .mobx-bottom-bar {
	-webkit-transform: translateY(100%);
	transform: translateY(100%)
}
.mobx-caption {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	pointer-events: none
}
.mobx-caption-inner {
	max-width: 420px;
	margin: 0 auto;
	pointer-events: auto;
	cursor: default
}
.mobx-title {
	position: relative;
	display: block;
	margin: 0;
	padding: 14px 10px 12px;
	font-size: 13px;
	line-height: 18px;
	font-weight: 400;
	text-align: center;
	color: #eee
}
.mobx-desc {
	position: relative;
	display: block;
	margin: 0;
	padding: 14px 10px 12px;
	font-size: 12px;
	line-height: 16px;
	font-weight: 400;
	text-align: center;
	color: #bbb
}
.mobx-title+.mobx-desc {
	margin: -6px 0 0;
	padding: 0 10px 10px
}
.mobx-item, .mobx-item-inner {
	position: absolute;
	display: block;
	overflow: hidden;
	left: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	text-align: center;
	touch-action: none;
	transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform-origin: center;
	transform-origin: center
}
.mobx-img, .mobx-panzoom .mobx-item {
	cursor: move;
	cursor: grab;
	cursor: -webkit-grab
}
.mobx-dragging .mobx-item * {
	cursor: grabbing;
	cursor: -webkit-grabbing
}
.mobx-img, .mobx-html, .mobx-video, .mobx-iframe, .mobx-error {
	position: absolute;
	display: block;
	height: 0;
	width: 0;
	max-width: none;
	padding: 0;
	margin: 0;
	opacity: 0;
	will-change: opacity;
	visibility: hidden;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translate3d(0, 0, 0);
	-webkit-transition: opacity .35s ease;
	transition: opacity .35s ease
}
.mobx-media-loaded {
	opacity: 1;
	visibility: visible
}
.mobx-error, .mobx-html-inner {
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%)
}
.mobx-error {
	width: 100%;
	height: auto;
	padding: 20px 60px;
	color: #bbb;
	pointer-events: none;
	text-align: center
}
.mobx-html {
	pointer-events: none
}
.mobx-html-inner {
	position: relative;
	display: inline-block;
	overflow: auto;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	margin: 0 auto;
	pointer-events: auto
}
.mobx-video {
	cursor: pointer;
	background: rgba(255, 255, 255, .1);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center
}
.mobx-video.mobx-playing {
	background: 0 0;
	background-image: none !important
}
.mobx-video:before, .mobx-video:after {
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
	width: 80px;
	height: 80px;
	padding: 0;
	margin: -44px 0 0 -44px;
	border: 4px solid #fff;
	border-radius: 100%;
	background-size: 175px;
	background-position: 28px -414px;
	box-sizing: content-box
}
.mobx-video.mobx-loading:before {
	border-color: transparent
}
.mobx-video:after {
	opacity: 0;
	visibility: hidden;
	background-image: none;
	background-color: transparent;
	border-color: transparent;
	border-left-color: #fff
}
.mobx-video.mobx-loading:after {
	opacity: 1;
	visibility: visible;
	-webkit-animation: mobx-load 1.1s infinite linear;
	animation: mobx-load 1.1s infinite linear
}
.mobx-video.mobx-playing:before, .mobx-video.mobx-playing:after {
	opacity: 0
}
.mobx-video video, .mobx-video iframe, .mobx-video .mejs-video {
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	opacity: 0;
	background: rgba(255, 255, 255, .065);
	pointer-events: none;
	-webkit-transition: opacity .35s ease-in-out;
	transition: opacity .35s ease-in-out
}
.mobx-video iframe {
	background: 0 0
}
.mobx-video.mobx-playing video, .mobx-video.mobx-playing .mejs-video, .mobx-video.mobx-playing iframe {
	opacity: 1;
	pointer-events: auto
}
 .mobx-fullscreen video::-webkit-media-controls-fullscreen-button, .mobx-fullscreen .mejs-fullscreen-button {
 display: none
}

:-webkit-full-screen-ancestor:not(iframe) {
 will-change: auto !important
}
.mobx-counter {
	position: relative;
	display: inline-block;
	float: left;
	height: 44px;
	font-size: 13px;
	line-height: 44px;
	color: #fff;
	opacity: .75;
	margin: 0 10px;
	letter-spacing: .6px
}
.mobx-rtl .mobx-counter {
	float: right
}
.mobx-timer {
	position: relative;
	display: inline-block;
	float: left;
	width: 24px;
	height: 24px;
	margin: 10px 0 10px 5px;
	opacity: 0;
	will-change: opacity;
	-webkit-transition: opacity .25s ease-in-out;
	transition: opacity .25s ease-in-out
}
.mobx-rtl .mobx-timer {
	float: right
}
.mobx-autoplay .mobx-timer {
	opacity: 1
}
.mobx-loader {
	position: absolute;
	width: 30px;
	height: 30px;
	top: 50%;
	left: 50%;
	margin: -15px 0 0 -15px;
	outline: 1px solid transparent;
	border-radius: 50%;
	border-width: 3px;
	border-right-style: solid;
	border-top-style: solid;
	border-bottom-style: solid;
	border-color: rgba(255, 255, 255, .2);
	border-left: 3px solid #fff;
	-webkit-animation: mobx-load 1.1s infinite linear;
	animation: mobx-load 1.1s infinite linear
}
 @-webkit-keyframes mobx-load {
 0% {
 -webkit-transform: rotate(0deg)
}
 100% {
 -webkit-transform: rotate(360deg)
}
}
 @keyframes mobx-load {
 0% {
 transform: rotate(0deg)
}
 100% {
 transform: rotate(360deg)
}
}
.mobx-share-tooltip {
	position: absolute;
	display: block;
	z-index: 2;
	width: 120px;
	top: 50px;
	opacity: 0;
	visibility: hidden;
	background: #fff;
	will-change: transform;
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
	-webkit-transition: -webkit-transform .25s ease, opacity .25s ease, visibility .25s ease;
	transition: transform .25s ease, opacity .25s ease, visibility .25s ease
}
.mobx-share-tooltip:before {
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	top: -12px;
	right: 14px;
	border: 6px solid transparent;
	border-bottom-color: #f9fafb
}
.mobx-share-tooltip[data-position=left]:before {
	left: 14px;
	right: auto
}
.mobx-open-tooltip .mobx-share-tooltip {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(0);
	transform: translateY(0)
}
.mobx-share-tooltip span {
	display: block;
	width: 100%;
	height: 40px;
	padding: 10px;
	color: #777;
	font-size: 14px;
	line-height: 22px;
	text-align: center;
	background: #f9fafb;
	box-shadow: inset 0 -2px 8px rgba(0, 0, 0, .03)
}
.mobx-ui button, .mobx-share-tooltip *:after {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 40px;
	padding: 0;
	cursor: pointer;
	box-shadow: none;
	border: none;
	outline: none;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	-webkit-appearance: none;
	-webkit-transition: opacity .25s ease-in-out;
	transition: opacity .25s ease-in-out
}
.mobx-ui button:hover, .mobx-share-tooltip button:hover:after {
	opacity: 1
}
.mobx-share-tooltip button:after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	opacity: 0
}
.mobx-share-tooltip button {
	float: left
}
.mobx-rtl .mobx-share-tooltip button {
	float: right
}
.mobx-top-bar button {
	float: right;
	margin: 2px;
	opacity: .75
}
.mobx-rtl .mobx-top-bar button {
	float: left
}
button.mobx-prev, button.mobx-next {
	position: absolute;
	left: 0;
	top: 50%;
	width: 44px;
	height: 32px;
	margin: 0 6px;
	opacity: .75;
	background-color: rgba(0, 0, 0, .4);
	will-change: transform;
	-webkit-transform: translateX(0) translateY(-50%);
	transform: translateX(0) translateY(-50%);
	-webkit-transition: opacity .25s ease-in-out, -webkit-transform .25s ease-in-out;
	transition: opacity .25s ease-in-out, transform .25s ease-in-out
}
button.mobx-next {
	left: auto;
	right: 0
}
.mobx-idle .mobx-prev, .mobx-will-close .mobx-prev, .mobx-holder:not(.mobx-open) .mobx-prev {
	-webkit-transform: translateX(-120%) translateY(-50%);
	transform: translateX(-120%) translateY(-50%)
}
.mobx-idle .mobx-next, .mobx-will-close .mobx-next, .mobx-holder:not(.mobx-open) .mobx-next {
	-webkit-transform: translateX(120%) translateY(-50%);
	transform: translateX(120%) translateY(-50%)
}
.mobx-holder[data-zoom=false] .mobx-zoom, .mobx-holder[data-zoom=false] .mobx-zoom:hover, .mobx-holder[data-download=false] .mobx-download, .mobx-holder[data-download=false] .mobx-download:hover {
	opacity: .45;
	cursor: default
}
.mobx-prev {
	left: 0;
	background-position: 10px 4px
}
.mobx-next {
	right: 0;
	background-position: 10px -40px
}
.mobx-close {
	background-position: 12px -76px
}
.mobx-zoom {
	background-position: 12px -120px
}
.mobx-panzoom .mobx-zoom {
	background-position: 12px -164px
}
.mobx-play {
	background-position: 12px -208px
}
.mobx-autoplay .mobx-play {
	background-position: 12px -252px
}
.mobx-download {
	background-position: 12px -296px
}
.mobx-share {
	background-position: 12px -340px
}
.mobx-fullscreen {
	background-position: 12px -384px
}
.mobx-fullscreen .mobx-fullscreen {
	background-position: 12px -428px
}
.mobx-facebook {
	background-position: -32px -472px
}
.mobx-facebook:after {
	background-color: #3b5998;
	background-position: 12px -472px
}
.mobx-twitter {
	background-position: -32px -516px
}
.mobx-twitter:after {
	background-color: #1da1f2;
	background-position: 12px -516px
}
.mobx-googleplus {
	background-position: -32px -560px
}
.mobx-googleplus:after {
	background-color: #dd4b39;
	background-position: 12px -560px
}
.mobx-pinterest {
	background-position: -32px -604px
}
.mobx-pinterest:after {
	background-color: #bd081c;
	background-position: 12px -604px
}
.mobx-linkedin {
	background-position: -32px -648px
}
.mobx-linkedin:after {
	background-color: #0077b5;
	background-position: 12px -648px
}
.mobx-reddit {
	background-position: -32px -692px
}
.mobx-reddit:after {
	background-color: #ff4500;
	background-position: 12px -692px
}
.mobx-tumblr {
	background-position: -32px -736px
}
.mobx-tumblr:after {
	background-color: #35465c;
	background-position: 12px -736px
}
.mobx-blogger {
	background-position: -32px -780px
}
.mobx-blogger:after {
	background-color: #f57d00;
	background-position: 12px -780px
}
.mobx-buffer {
	background-position: -32px -824px
}
.mobx-buffer:after {
	background-color: #323b43;
	background-position: 12px -824px
}
.mobx-digg {
	background-position: -34px -868px
}
.mobx-digg:after {
	background-color: #005be2;
	background-position: 10px -868px
}
.mobx-stumbleupon {
	background-position: -32px -912px
}
.mobx-stumbleupon:after {
	background-color: #eb4924;
	background-position: 12px -912px
}
.mobx-evernote {
	background-position: -32px -956px
}
.mobx-evernote:after {
	background-color: #2dbe60;
	background-position: 12px -956px
}
.mobx-thumbs-holder, .mobx-thumbs-inner {
	position: absolute;
	display: block;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 0;
	margin: 0 auto
}
.mobx-thumbs-holder {
	position: relative
}
.mobx-thumb {
	position: absolute;
	margin: 0;
	will-change: left;
	background-color: #191919;
	outline: 0 solid transparent;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	-webkit-transition: background-color .25s ease;
	transition: background-color .25s ease
}
.mobx-thumb:hover {
	background-color: #323232
}
.mobx-thumb:after {
	content: "";
	position: absolute;
	pointer-events: none;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: .0001;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	border: 2px solid #fff
}
.mobx-active-thumb:after {
	opacity: .9999
}
.mobx-thumb-bg {
	position: absolute;
	overflow: hidden;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	visibility: hidden;
	opacity: 0;
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
	will-change: opacity, visibility;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: opacity .25s ease, visibility .25s ease;
	transition: opacity .25s ease, visibility .25s ease
}
.mobx-thumb-loaded {
	visibility: visible;
	opacity: .5
}
.mobx-thumb-bg:hover, .mobx-active-thumb .mobx-thumb-loaded {
	opacity: 1
}
.mobx-thumbs-holder {
	cursor: move;
	cursor: grab;
	cursor: -webkit-grab
}
.mobx-dragging .mobx-thumbs-holder {
	cursor: grabbing;
	cursor: -webkit-grabbing
}
.mobx-thumb-video:after {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 50%;
	width: 40px;
	height: 40px;
	margin: -20px auto 0 auto;
	background-position: 12px -208px
}
body.tg_lightbox_white .mobx-overlay {
	background-color: #fff
}
body.tg_lightbox_white .mobx-top-bar {
	background: #222
}
body.tg_lightbox_white .mobx-bottom-bar {
	background: 0 0
}
body.tg_lightbox_white .mobx-thumb {
	background-color: #fff
}
body.tg_lightbox_white .mobx-title {
	color: #222
}
body.tg_lightbox_white .mobx-desc {
	color: #222
}
.pgtitle, .pgtitle2 {
	background: #f8f8f8;
	border: 1px solid #e5e5e5;
	padding: 2rem;
}
.pgtitle{
	margin-bottom: 3rem;	
}
.pgtitle2{
	margin-bottom: 6rem;	
}
.no-margin-bottom {
	margin-bottom: 0 !important;
}
.single-client-item {
	position: relative;
	display: block;
	margin-bottom: 2rem;
}
.single-client-item .inner-content {
	padding: 1rem;
	position: relative;
	display: block;
	background: #f6f6f6;
}
.single-client-item .inner-content .client-info {
	position: relative;
	display: block;
}
.single-client-item .inner-content .client-info h3 {
	font-size: 16px;
	color: #545454;
	font-weight: 600;
	margin: 0 0 3px;
}
.single-client-item .inner-content .client-info span {
	font-size: 16px;
	font-weight: 300;
}
.client-filter {
	position: relative;
	display: block;
	text-align: center;
	margin-bottom: 3rem;
}
.client-filter li {
	position: relative;
	display: inline-block;
}
.client-filter li + li {
}
.client-filter li .filter-text {
	color: #27282c;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	display: block;
	padding: 8px 10px 8px;
	padding-right: 26px;
	cursor: pointer;
	transition: all .4s ease;
}
.client-filter li:hover .filter-text, .client-filter li.active .filter-text {
	color: #1e9ed7;
}
.client-filter li .count {
	position: absolute;
	top: -13px;
	right: 15%;
	color: #1e9ed7;
	font-size: 15px;
	line-height: 20px;
	font-weight: 700;
	display: inline-block;
	opacity: 0;
	-webkit-transform: translate(-50%, 0%);
	transform: translate(-50%, 0%);
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
	font-family: 'Poppins', sans-serif;
}
.client-filter li:hover .count, .client-filter li.active .count {
	opacity: 1;
	-webkit-transform: translate(-50%, 50%);
	transform: translate(-50%, 50%);
}
.contact-form {
	position: relative;
	display: block;
	z-index: 3;
	width: 100%;
	margin-bottom:3rem;
}
.contact-form .inner-box {
	position: relative;
	display: block;
	background: #f6f6f6;
	border: 1px solid #ededed;
	padding: 3rem;
}
.contact-form form {
	position: relative;
	display: block;
}
.contact-form form .input-box {
	position: relative;
	display: block;
	margin-bottom:0.5rem !important;
}
.contact-form form .form-group{
	margin-bottom: 30px;
}
.contact-form form .input-box .icon {
	position: absolute;
	top: 19px;
	left: 20px;
}
.contact-form form .input-box .icon i {
	color: #b6b6b6;
	font-size: 24px;
}
.contact-form form .input-box .icon.envelop {
	position: absolute;
	top: 16px;
	left: 20px;
}
.contact-form form input[type="text"], .contact-form form input[type="email"], .contact-form form input[type="file"], .contact-form form textarea {
	position: relative;
	display: block;
	background: #ffffff;
	border: 1px solid #ededed;
	width: 100%;
	height: 60px;
	font-size: 16px;
	padding-left: 50px;
	padding-right: 20px;
	border-radius: 0px;
	transition: all 500ms ease;
	font-family: "Roboto", sans-serif;
	letter-spacing: 0.2px;
	font-weight: 300;
}
.contact-form form textarea {
	height: 110px;
	padding-left: 50px;
	padding-right: 20px;
	padding-top: 14px;
	padding-bottom: 15px;
	resize: none;
}
.contact-form form input[type="text"]:focus {
	border-color: #1d1d1d;
	color: #222222;
}
.contact-form form input[type="email"]:focus {
	border-color: #1d1d1d;
	color: #222222;
}
.contact-form form input[type="file"]:focus {
	border-color: #1d1d1d;
	color: #222222;
}
.contact-form form textarea:focus {
	border-color: #1d1d1d;
	color: #222222;
}
.contact-form form input[type="text"]::-webkit-input-placeholder {
 color: #828282;
}
.contact-form form input[type="text"]:-moz-placeholder {
 color: #828282;
}
.contact-form form input[type="text"]::-moz-placeholder {
 color: #828282;
}
.contact-form form input[type="text"]:-ms-input-placeholder {
 color: #828282;
}
.contact-form form input[type="file"]::-webkit-input-placeholder {
 color: #828282;
}
.contact-form form input[type="file"]:-moz-placeholder {
 color: #828282;
}
.contact-form form input[type="file"]::-moz-placeholder {
 color: #828282;
}
.contact-form form input[type="file"]:-ms-input-placeholder {
 color: #828282;
}
.contact-form form input[type="email"]::-webkit-input-placeholder {
 color: #828282;
}
.contact-form form input[type="email"]:-moz-placeholder {
 color: #828282;
}
.contact-form form input[type="email"]::-moz-placeholder {
 color: #828282;
}
.contact-form form input[type="email"]:-ms-input-placeholder {
 color: #828282;
}
.contact-form form button {
	position: relative;
	display: block;
}
.contact-form-image-box {
	position: absolute;
	top: -110px;
	right: -350px;
	z-index: 1;
}
.contact-form-image-box img {
	max-width: none;
	float: left;
}
.contact-form form .input-box .ui-selectmenu-button {
	position: relative;
	display: block;
	background: #ffffff;
	width: 100% !important;
	height: 60px !important;
	border-radius: 0px !important;
	border: 1px solid #ededed;
	color: #828282;
	font-size: 16px;
	padding-left: 50px;
	padding-right: 20px;
	margin-bottom: 30px;
	text-transform: capitalize;
	font-family: "Roboto", sans-serif;
	letter-spacing: 0.2px;
	font-weight: 300;
}
.contact-form form .input-box .ui-selectmenu-button:focus {
	outline: none;
}
.contact-form form .input-box .ui-selectmenu-button span.ui-selectmenu-text {
	display: block;
	line-height: 14px;
	overflow: hidden;
	text-align: left;
	padding: 15px 0px 20px;
}
/* arrow button css */
.contact-form form .input-box .ui-selectmenu-button span.ui-icon {
	position: absolute;
	top: 0px;
	right: 0;
	bottom: 0;
	display: block;
	float: right;
	height: 58px;
	width: 45px;
	text-indent: 0;
	background-image: none;
	margin: 0;
}
.contact-form form .input-box .ui-selectmenu-button span.ui-icon::before {
	color: #828282;
	content: "\f107";
	font-family: FontAwesome;
	font-size: 20px;
	overflow: visible;
	position: absolute;
	right: 18px;
	top: 17px;
}
.contact-info-area .contact-form textarea:-webkit-input-placeholder {
 color: #83888d !important;
}
.contact-info-area .contact-form textarea:-moz-placeholder { /* Firefox 18- */
 color: #83888d !important;
}
.contact-info-area .contact-form textarea:-moz-placeholder {  /* Firefox 19+ */
 color: #83888d !important;
}
.contact-info-area .contact-form textarea:-ms-input-placeholder {
 color: #83888d !important;
}
#contact-form input[type="text"].error {
	border-color: #ff0000;
}
#contact-form input[type="email"].error {
	border-color: #ff0000;
}
#contact-form select.error {
	border-color: #ff0000;
}
#contact-form textarea.error {

	border-color: #ff0000;
}
#contact-form label.error {
	display: none !important;
}
.ui-state-default {
	width: auto !important;
}
.ui-selectmenu-open .ui-widget-content {
	border: 1px solid #1d1d1d !important;
	background: #ffffff !important;
	color: #222222 !important;
	border-radius: 0 !important;
}
/* Jquery ui select hover bg css */
.ui-selectmenu-open .ui-widget-content .ui-state-active {
	border: 1px solid #1d1d1d !important;
	background: #1d1d1d !important;
	font-weight: normal !important;
	color: #ffffff !important;
	font-size: 13px !important;
}
/* Jquery ui select hover some change css */
.ui-selectmenu-open .ui-menu .ui-menu-item {
	border: 1px solid transparent !important;
	position: relative !important;
	margin: 0;
	cursor: pointer !important;
	font-size: 13px !important;
	text-transform: none !important;
}
.ui-selectmenu-menu .ui-menu {
	padding-bottom: 0px !important;
}
.f700{
	font-weight:700 !important;	
}
.projectslisting{
	padding: 0rem 0rem 3rem;
}
.projectslisting .contem{
	background-color: #f8f8f8;
	border: 1px solid #f8f8f8;	
}
.jx-portfolio-grid {
	overflow: hidden;
}
/* clear fix */
.jx-portfolio-grid:after {
	content: '';
	display: block;
	clear: both;
}
.jx-portfolio {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	padding: 0rem 0rem 9rem;
}
.jx-portfolio .grid-item {
	float: left;	
	padding:0.1px !important;
	overflow: hidden;
}
.jx-portfolio-grid img {
	width: 100%;
	height: auto
}
/* Portfolio Hover */
.jx-image-wrapper {
	position: relative
}
.jx-portfolio .grid-item .jx-portfolio-hoverlayer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: rgba(0, 0, 0, 0.80);
	transform: scaleX(0);
	transition: all 700ms ease 100ms;
}
.jx-portfolio .grid-item:hover .jx-portfolio-hoverlayer, .jx-portfolio .grid-item:focus .jx-portfolio-hoverlayer {
	transform: scaleY(1);
}
.jx-portfolio .grid-item .jx-portfolio-hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	padding: 20px;
	opacity: 0;
	transition: all .3s ease-out;
}
.jx-portfolio .grid-item:hover .jx-portfolio-hover, .jx-portfolio .grid-item:focus .jx-portfolio-hover {
	opacity: 1;
	cursor: pointer;
}
.jx-portfolio-hover .jx-title {
	font-size: 19px;
	font-weight: 500;
	line-height: 1.2;
	color: #fff;
}
.jx-portfolio .grid-item:hover .jx-portfolio-plus-hover i, .jx-portfolio .grid-item:focus .jx-portfolio-plus-hover i {
	top: 50%
}
.jx-portfolio-bottom-hover .jx-portfolio-more {
	width: 100%;
}
.jx-portfolio .grid-item.gird-item-top {
	top: -210.5px;
}
.jx-portfolio .grid-item .jx-portfolio-top-hover {
	position: absolute;
	bottom: 17px !important;
	transition: all 0.3s ease-out;
}
.jx-portfolio .grid-item .jx-portfolio-top-hover .jx-title {
	color: #fff;
}
.jx-portfolio .grid-item:hover .jx-portfolio-top-hover, .jx-portfolio .grid-item:focus .jx-portfolio-top-hover {
	bottom: 30px;
}
.jx-portfolio .grid-item .jx-portfolio-plus-hover i {
	top: 20px !important;
	left: 7px;
	z-index: 1
}
.jx-portfolio .grid-item .jx-portfolio-plus-hover a {
	height: 70px;
	width: 70px;
	margin-top: 10px;
	margin-left: 10px;
}
.jx-portfolio .grid-item .jx-portfolio-plus-hover i:after {
	transition: all 0.3s ease-out;
	content: '';
	position: absolute;
	top: 5px;
	left: 5px;
	width: 70px;
	height: 70px;
	border: 2px solid #1e9ed7;
	border-radius: 50%;
	opacity: 0;
	z-index: 0
}
.jx-portfolio .grid-item .jx-portfolio-plus-hover:hover i:after {
	opacity: 1;
}
/* Portfolio Hover */
.jx-image-wrapper {
	position: relative
}
.jx-portfolio-columns {
	margin-bottom: 20px;
}
.jx-portfolio .grid-item .jx-portfolio-hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	padding: 20px;
	opacity: 0;
	transition: all .3s ease-out;
}
.jx-portfolio .grid-item:hover .jx-portfolio-hover, .jx-portfolio .grid-item:focus .jx-portfolio-hover {
	opacity: 1;
	cursor: pointer;
}
.jx-portfolio .grid-item img {
	width: 100%;
	height: auto;
	transform: scale(1.01);
	transition: all 700ms ease;
}
.jx-portfolio .grid-item:hover img, .jx-portfolio .grid-item:focus img {
	transform: scale(1.2) rotate(2deg);
}
.jx-portfolio-top-hover .jx-title {
	font-size: 15px;
	font-weight: 300;
	line-height: 1.2;
	color: #000;
}
.jx-portfolio-top-hover .jx-subtitle {
	font-size: 17px;
	font-weight: 500;
}
.jx-portfolio .grid-item .jx-portfolio-bottom-hover {
	bottom: 10px;
	position: absolute;
	color: #fff;
}
.jx-portfolio .grid-item .jx-portfolio-plus-hover i {
	width: 60px;
	height: 60px;
	color: #FFF;
	background: #1e9ed7;
	text-align: center;
	line-height: 60px;
	border-radius: 50%;
	font-size: 23px;
}
.jx-portfolio-bottom-hover .jx-portfolio-more {
	width: 100%;
}
.portfolio-item.gird-item-top {
	top: -210px;
}
.jx-portfolio-plus-hover {
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -47px;
	margin-top: -40px;
	transition: all 0.3s ease-out 0s;
	overflow: hidden
}
.jx-portfolio .grid-item:hover .jx-portfolio-plus-hover, .jx-portfolio .grid-item:focus .jx-portfolio-plus-hover {
	top: 45%
}
.jx-portfolio-plus-hover a {
	float: left;
	margin-right: 5px;
}
.jx-portfolio-columns .jx-portfolio-top-hover {
	position: absolute;
	bottom: 20px;
	transition: all 0.3s ease-out;
}
.jx-portfolio-columns .jx-portfolio-top-hover .jx-title {
	color: #fff;
}
.jx-portfolio-columns .jx-portfolio-plus-hover i {
	top: 20px !important;
	left: 7px;
	z-index: 1
}
.jx-portfolio-columns .jx-portfolio-plus-hover a {
	height: 70px;
	width: 70px;
	margin-top: 10px;
	margin-left: 10px;
}
.jx-portfolio-columns .jx-portfolio-plus-hover i:after {
	transition: all 0.3s ease-out;
	content: '';
	position: absolute;
	top: -7px;
	left: -7px;
	width: 70px;
	height: 70px;
	border: 2px solid #1e9ed7;
	border-radius: 50%;
	opacity: 0;
	z-index: 0
}
.jx-portfolio-columns .jx-portfolio-plus-hover:hover i:after, .jx-portfolio-columns .jx-portfolio-plus-hover:focus i:after {
	opacity: 1;
}
.grid-item .jx-portfolio-plus-hover i {
	background: #1e9ed7;
}
.whatwedo ul{
	margin:0;
	padding:0;
}
.whatwedo ul li{
	width:8em;
	height:8em;
	text-align:center;
	margin-right:1.6rem;
	float:left;
	font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.2px;
    font-weight: 300;
}
.whatwedo ul li div{
	width:8em;
	height:8em;
	padding:2em;
	background-color: #1e9ed7;
	border-radius: 50%;
	display: inline-block;
	clear:both;
	margin-bottom:0.5rem;
}
.whatwedo ul li img{
	width:4em;
	height:4em;
	margin-bottom:1rem;
	-webkit-filter: invert(100%);
	filter: invert(100%);
}

.clientswrapper,.projectimagewrapper,.grid{
	width:100%;
}
/* clear fix */
.grid:after {
	content: '';
	display: block;
	clear: both;
}
.grid .grid-sizer, .grid-item {
	width: 33.333%;
}
.grid .grid-item {
	float: left;
	padding:0px !important;
}
.grid .grid-item img {
	display: block;
	max-width: 100%;
}
.m-grid{
	column-count: 4;
	column-gap: 1em;
}
.p-grid{
	column-count: 3;
	column-gap: 0em;
}
.m-grid .m-grid-item{
	display: inline-block;
	width: 100%;
	margin: 0 0 1em;
}
.m-grid:after{
	content: '';
	display: block;
	clear: both;
}
.prevlink{
	text-align:left;
}
.centerink{
	text-align:center;
}
.nextlink{
	text-align:right;
}