﻿@charset "UTF-8";

@font-face {
    font-family: 'Inter';
    src: url('../fonts/subset-Inter-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/subset-Inter-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/subset-Inter-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/subset-Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/subset-Inter-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

:root {
	--headerHeight: 178px;
	--smallRadius: 50px;
	--bigRadius: 280px;
	--spacing: 75px;
}

html {
    -webkit-text-size-adjust: none;
}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body, div {
  margin: 0;
  padding: 0;
}

body {
	font-family: 'Inter', Arial, sans-serif;
	font-size: 16px;
	font-weight: 300;
	text-align: center;
	color: #1A1B3A;
	line-height: 2;
	background: #fff;
}

/* Main Wrapper */

#mainWrapper {
	position: relative;
	text-align: left;
	margin: 0 auto;
	min-width: 320px;
	font-size: 16px;
	overflow: hidden;
}

@supports (overflow:clip) {
	#mainWrapper {
		overflow: clip;
	}
}

/* Section */

.section {
	max-width: 1360px;
	margin: 0 auto;
}

/* Header */

#header {
	position: relative;
	background: -webkit-gradient(linear, left top, right top, from(#FFF), color-stop(49.52%, #FFF), to(rgba(255, 255, 255, 0.60)));
	background: -o-linear-gradient(left, #FFF 0%, #FFF 49.52%, rgba(255, 255, 255, 0.60) 100%);
	background: linear-gradient(90deg, #FFF 0%, #FFF 49.52%, rgba(255, 255, 255, 0.60) 100%);
	-webkit-backdrop-filter: blur(2px);
	        backdrop-filter: blur(2px);
	z-index: 100000;
}

#header .section {
	height: var(--headerHeight);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

#header .logo {
	width: 313px;
	margin-top: 41px;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}

#header .logo img {
	display: block;
	width: 100%;
}

#header #navigation {
	margin-left: auto;
	margin-top: 54px;
}

#header #navigation ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0;
	padding: 0;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

#header #navigation ul li {
	position: relative;
	margin: 0 0 0 52px;
	padding: 0;
	list-style: none;
	font-size: 18px;
	font-weight: 600;
}

#header #navigation ul li a {
	display: inline-block;
	color: #000;
}

#header #navigation ul li:before {
	background-color: #211D6F;
	bottom: -0.1em;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	right: 0;
	-webkit-transform: scaleX(0);
	    -ms-transform: scaleX(0);
	        transform: scaleX(0);
	-webkit-transform-origin: right;
	    -ms-transform-origin: right;
	        transform-origin: right;
	-webkit-transition: -webkit-transform .75s cubic-bezier(.19,1,.22,1);
	transition: -webkit-transform .75s cubic-bezier(.19,1,.22,1);
	-o-transition: transform .75s cubic-bezier(.19,1,.22,1);
	transition: transform .75s cubic-bezier(.19,1,.22,1);
	transition: transform .75s cubic-bezier(.19,1,.22,1), -webkit-transform .75s cubic-bezier(.19,1,.22,1);
}

#header #navigation ul li:hover:before,
#header #navigation ul li.active:before {
	-webkit-transform: scaleX(1);
	    -ms-transform: scaleX(1);
	        transform: scaleX(1);
	-webkit-transform-origin: left;
	    -ms-transform-origin: left;
	        transform-origin: left;
}

/* Intro */

#intro {
	position: relative;
	padding-bottom: var(--smallRadius);
}

#intro .videoClip {
	position: relative;
	overflow: hidden;
	border-bottom-right-radius: var(--bigRadius);
}

#intro .overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: var(--headerHeight);
	color: #fff;
	z-index: 1;
}

#intro .overlay .text {
	max-width: 520px;
	margin-left: 40px;
	margin-top: 100px;
	-webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
	        filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

#intro video {
	display: block;
	width: 100%;
}

#intro .about {
	--padding: 100px;
	padding-top: var(--bigRadius);
	margin-top: calc(var(--bigRadius) * -1);
	background: #F2F2F4;
	-webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	        box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	border-bottom-left-radius: var(--smallRadius);
	margin-bottom: calc(var(--smallRadius) * -1);
}

#intro .about .text {
	padding-top: var(--padding);
	padding-bottom: var(--padding);
	margin-left: var(--padding);
	max-width: 995px;
}

#intro .about .text>:last-child {
	margin-bottom: 0;
}

/* Sub Banner */

#subBanner {
	background: #F2F2F4;
	color: #211D6F;
	line-height: 1.5;
	-webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	        box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	border-bottom-right-radius: var(--smallRadius);
}

#subBanner .section {
	padding-top: 50px;
	padding-bottom: 50px;
}

#subBanner .cols {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

#subBanner .cols .col {
	width: 645px;
}

#subBanner .cols .col>:last-child {
	margin-bottom: 0;
}

/* Image Banner */

#imageBanner .fitImage {
	position: relative;
	margin-top: 0;
	border-bottom-right-radius: var(--smallRadius);
	z-index: 1;
}

#imageBanner #subBanner {
	position: relative;
	margin-top: calc(var(--smallRadius) * -1);
	padding-top: var(--smallRadius);
	color: #1A1B3A;
}

/* Project Image */

#projectImage {
	position: relative;
	overflow: hidden;
	border-bottom-right-radius: var(--bigRadius);
	z-index: 2;
}

#projectImage img {
	display: block;
	width: 100%;
}

/* Project Info */

#projectInfo {
	--space: 55px;
	margin-top: calc(var(--bigRadius) * -1);
	padding-bottom: var(--space);
}

#projectInfo .section>:last-child {
	margin-bottom: 0;
}

#projectInfo .details {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	margin-bottom: 100px;
}

#projectInfo .left,
#projectInfo .right {
	padding-top: calc(var(--bigRadius) + var(--space));
}

#projectInfo .left {
	width: 680px;
}

#projectInfo .left>:last-child,
#projectInfo .right>:last-child {
	margin-bottom: 0;
}

#projectInfo .right {
	position: relative;
	width: 643px;
	margin-left: auto;
	padding-left: 40px;
	padding-bottom: 40px;
	line-height: 1.5;
	z-index: 1;
}

#projectInfo .right:before {
	content: "";
	position: absolute;
	left: 0;
	right: -9999em;
	top: 0;
	bottom: 0;
	background: #F2F2F4;
	-webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	        box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	border-bottom-left-radius: var(--smallRadius);
	z-index: -1;
}

/* Behind Header */

.behindHeader {
	margin-top: calc(var(--headerHeight) * -1);
}

/* Content */

.content .section {
	padding-top: var(--spacing);
	padding-bottom: var(--spacing);
}

.content .section>:last-child {
	margin-bottom: 0;
}

#header + .content>.section {
	padding-top: 10px;
}

.withShadow {
	position: relative;
	-webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	        box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

/* Textured */

.textured {
	background: url(../images/texture.svg) repeat center top fixed;
	background-size: 100px;
}

.grayBg {
	background: #F2F2F4;
}

/* Embed Video */

.embedVideo {
	position: relative;
	background: #1A1B3A;
	overflow: hidden;
	cursor: pointer;
	-webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	        box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.embedVideo:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: url(../images/play-btn-ico.svg) no-repeat center;
	-webkit-transition: opacity 0.7s, -webkit-transform 1s;
	transition: opacity 0.7s, -webkit-transform 1s;
	-o-transition: transform 1s, opacity 0.7s;
	transition: transform 1s, opacity 0.7s;
	transition: transform 1s, opacity 0.7s, -webkit-transform 1s;
}

.embedVideo:hover:after {
	-webkit-transform: scale(1.2);
	    -ms-transform: scale(1.2);
	        transform: scale(1.2);
}

.embedVideo video {
	display: block;
	width: 100%;
	border-bottom-right-radius: var(--bigRadius);
}

.embedVideo.playing:after {
    opacity: 0;
}

.embedVideo:hover:after {
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
}

/* Fit Image */

.fitImage {
	position: relative;
	margin-top: calc(var(--smallRadius) * -1);
	padding-bottom: 42.34375%;
	overflow: hidden;
	z-index: -1;
}

.fitImage img {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center top;
	   object-position: center top;
}

.fitImage.withRadius {
	border-bottom-right-radius: var(--smallRadius);
}

/* Projects */

.projects {
	--gap: 10px;
	margin: 50px calc(var(--gap) * -1) -25px;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.projects li a {
	display: block;
}

.projects li {
	margin: 0 0 50px;
	padding: 0 var(--gap);
	list-style: none;
	width: 33.33333333333333%;
}

.projects li .image {
	position: relative;
	overflow: hidden;
	-webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.projects li .image img {
	display: block;
	width: 100%;
	-webkit-transition: -webkit-transform 0.7s;
	transition: -webkit-transform 0.7s;
	-o-transition: transform 0.7s;
	transition: transform 0.7s;
	transition: transform 0.7s, -webkit-transform 0.7s;
}

.projects li .image .overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	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;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	padding: 50px;
	text-align: center;
	color: #fff;
	opacity: 0;
	background: rgba(0, 0, 0, 0.80);
	-webkit-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.projects li .image .overlay .readmore {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-weight: normal;
	padding-right: 52px;
	line-height: 1;
	background: url(../images/link-arrow.svg) no-repeat right;
	min-height: 36px;
}

.projects li .image .overlay>:last-child {
	margin-bottom: 0;
}

.projects li h6 {
	margin: 24px 0 -15px;
	line-height: 1.428;
}

.projects li h6 span {
	display: block;
}

.projects li h6 span:before {
	content: "";
	display: inline-block;
	width: 0.7619047619047619em;
	height: 1em;
	margin-right: 0.380952380952381em;
	background: url(../images/location-ico.svg) no-repeat;
	vertical-align: middle;
	position: relative;
	background-size: 100% 100%;
	top: -1.5px;
}

.projects li a:hover .image img {
	-webkit-transform: scale(1.2);
	    -ms-transform: scale(1.2);
	        transform: scale(1.2);
}

.projects li a:hover .image .overlay {
	opacity: 1;
}

/* Gallery */

.gallery {
	margin-bottom: var(--spacing);
}

.gallery .swiper-slide {
	-webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	        box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.gallery .swiper-slide a {
	display: block;
	overflow: hidden;
}

.gallery .swiper-slide img {
	display: block;
	width: 100%;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	-webkit-transition: -webkit-transform 1s;
	transition: -webkit-transform 1s;
	-o-transition: transform 1s;
	transition: transform 1s;
	transition: transform 1s, -webkit-transform 1s;
}

.gallery .swiper-slide a:hover img {
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}

.gallery .swiper-pagination {
	position: static;
	margin-top: 24px;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
	width: 30px;
	height: 30px;
	margin: 0 10px;
	background: #1A1B3A;
	opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
	background-color: #A6A7AD;
}

/* Team */

.team {
	--gap: 24px;
	margin: 45px calc(var(--gap) * -1) 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.team li {
	margin: 0 var(--gap) calc(var(--gap) * 2);
	padding: 0;
	list-style: none;
	width: calc(25% - (var(--gap) * 2));
	color: #211D6F;
}

.team li h6 {
	margin: 0;
}

.team li img {
	display: block;
	-webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	        box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	width: 100%;
	margin-bottom: 30px;
	-webkit-transition: -webkit-filter 1s;
	transition: -webkit-filter 1s;
	-o-transition: filter 1s;
	transition: filter 1s;
	transition: filter 1s, -webkit-filter 1s;
}

.team li:hover img {
	-webkit-filter: saturate(0);
	        filter: saturate(0);
}

/* Services */

#services {
	background: url(../images/services-bg.jpg) no-repeat center top;
	background-size: cover;
}

#services .section {
	padding-top: var(--spacing);
	padding-bottom: var(--spacing);
}

#services * {
	color: #fff;
}

#services .introText {
	max-width: 927px;
}

/* Intro Text */

.introText {
	text-align: center;
	margin: 0 auto 55px;
}

/* Centered Text */

.centeredText {
	text-align: center;
	max-width: 1240px;
	margin: 0 auto var(--spacing);
	color: #211D6F;
	line-height: 1.5;
}

.centeredText p {
	margin-bottom: 24px;
}

.centeredText h6 {
	color: #1A1B3A;
}

/* Icon Text */

.iconText {
	margin: 0;
	padding: 0 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.iconText li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 0 35px;
	padding: 0;
	list-style: none;
	width: 490px;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
} 

.iconText li img {
	width: 64px;
	margin-right: 30px;
	margin-top: 6px;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}

.iconText li h6 {
	margin: 0;
}

/* Icon Labels */

.iconLables {
	margin: -35px 0 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	text-align: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.iconLables li {
	margin: 35px 0;
	padding: 0;
	list-style: none;
	width: 25%;
}

.iconLables li img {
	display: block;
	margin: 0 auto 20px;
	height: 64px;
}

.iconLables li h6 {
	margin: 0;
}

/* Image Text */

.imageText {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	line-height: 1.5;
	margin-bottom: var(--spacing);
}

.imageText .image {
	width: 767px;
}

.imageText .image img {
	display: block;
	width: 100%;
	border-top-right-radius: var(--bigRadius);
	border-bottom-right-radius: var(--bigRadius);
}

.imageText .text {
	width: 526px;
	margin-left: auto;
	-ms-flex-item-align: center;
	    -ms-grid-row-align: center;
	    align-self: center;
}

.imageText .text h3 {
	color: #211D6F;
}

.imageText .text p {
	margin-bottom: 24px;	
}

.imageText .text>:last-child {
	margin-bottom: 0;
}

.imageText.alt .text {
	-webkit-box-ordinal-group: 0;
	    -ms-flex-order: -1;
	        order: -1;
	margin-left: 0;
}

.imageText.alt .image {
	margin-left: auto;
}

/* Two Cols */

.twoCols {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-top: 40px;
	margin-bottom: var(--spacing)
}

.twoCols .col {
	width: 624px;
}

.twoCols .col>:last-child {
	margin-bottom: 0;
}

/* Three Cols */

.threeCols {
	--gap: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	margin: 0 calc(var(--gap) * -1);
}

.threeCols .col {
	padding: 0 var(--gap);
	width: 33.33333333333333%;
}

.threeCols .col>:last-child {
	margin-bottom: 0;
}

/* CTA */

.cta {
	background: #1A1B3A;
	color: #fff;
	line-height: 1.5;
}

.cta .section {
	padding-top: 55px;
	padding-bottom: 55px;
}

.cta .cols {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.cta .cols .left {
	width: 944px;
}

.cta .cols .left h2 {
	color: #fff;
	text-align: left;
}

.cta .cols .left h3 {
	font-size: 50px;
}

.cta .cols .left>:last-child {
	margin-bottom: 0;
}

.cta .cols .right {
	margin-left: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}

.cta .cols .right .linkBtn {
	margin: 0 0 0 18px;
	border-color: #fff;
}

/* Accordion */

dl.accordion {
	margin: 40px 0px;
	padding: 0 0 var(--spacing);
	text-align: left;
	border-top: 1px solid #000;
}

dl.accordion dt,
dl.accordion dd {
	margin: 0;
	padding: 0;
}

dl.accordion dt {
	position: relative;
	cursor: pointer;
	padding: 45px 0;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

dl.accordion dt,
dl.accordion dd {
	padding-left: 30px;
	border-bottom: 1px solid #000;
}

dl.accordion dd {
	padding-right: 30px;
}

dl.accordion dt {
	padding-right: 68px;
}

dl.accordion dt h4 {
	margin: 0;
}

dl.accordion dt.opened {
	border-bottom-color: transparent;
}

dl.accordion dt:before,
dl.accordion dt:after {
	content: "";
	position: absolute;
	right: 15px;
	top: 50px;
	background: #000;
	border-radius: 5px;
	-webkit-transition: top 0.6s, -webkit-transform 0.6s;
	transition: top 0.6s, -webkit-transform 0.6s;
	-o-transition: transform 0.6s, top 0.6s;
	transition: transform 0.6s, top 0.6s;
	transition: transform 0.6s, top 0.6s, -webkit-transform 0.6s;
	-webkit-transform-origin: left bottom;
	    -ms-transform-origin: left bottom;
	        transform-origin: left bottom;
	width: 1px;
	height: 9px;
}

dl.accordion dt:before,
dl.accordion dt:after {
	position: absolute;
	content: "";
	width: 45px;
	height: 0;
	opacity: 0;
	background: url(../images/accordion-arrow.svg) no-repeat;
	background-size: 100%;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

dl.accordion dt:after {
	background-position: left bottom;
}

dl.accordion dt:before {
	height: 26px;
	opacity: 1;
}

dl.accordion dt.opened:before {
	height: 0;
	opacity: 0;
}

dl.accordion dt.opened:after {
	height: 26px;
	opacity: 1;
}

dl.accordion dd {
	display: none;
	padding-bottom: 45px;
}

dl.accordion dd p {
	max-width: 1205px;
}

dl.accordion dd>:last-child {
	margin-bottom: 0;
}

/* Our Services */

.ourServices {
	--gap: 20px;
	margin: 0 calc(var(--gap) * -1) -70px;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.ourServices li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 0 70px;
	padding: 0 var(--gap);
	list-style: none;
	width: 33.33333333333333%;
}

.ourServices li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 18px;
	width: 100%;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.20);
	background: -o-linear-gradient(334deg, rgba(106, 106, 106, 0.90) 1.39%, rgba(86, 86, 86, 0.50) 100%);
	background: linear-gradient(116deg, rgba(106, 106, 106, 0.90) 1.39%, rgba(86, 86, 86, 0.50) 100%);
	-webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.30) inset;
	        box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.30) inset;
	-webkit-backdrop-filter: blur(6px);
	        backdrop-filter: blur(6px);
	-webkit-transition: -webkit-backdrop-filter 1.5s;
	transition: -webkit-backdrop-filter 1.5s;
	-o-transition: backdrop-filter 1.5s;
	transition: backdrop-filter 1.5s;
	transition: backdrop-filter 1.5s, -webkit-backdrop-filter 1.5s;
}

.ourServices li .image {
	width: 145px;
	border-radius: 20px;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	overflow: hidden;
	-ms-flex-item-align: start;
	    align-self: flex-start;
}

.ourServices li .image img {
	display: block;
	width: 100%;
	-webkit-transition: -webkit-transform 1s;
	transition: -webkit-transform 1s;
	-o-transition: transform 1s;
	transition: transform 1s;
	transition: transform 1s, -webkit-transform 1s;
}

.ourServices li .text {
	position: relative;
	margin-left: 30px;
	line-height: 1.5;
	padding-bottom: 30px;
}

.ourServices li .text:before {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 26px;
	height: 26px;
	border: 1px solid #F2F2F4;
	background: urL(../images/arrow.svg) no-repeat center;
	border-radius: 100%;
}

.ourServices li .text h6 {
	margin-bottom: 12px;
}

.ourServices li .text>:last-child {
	margin-bottom: 0;
}

.ourServices li a:hover {
	-webkit-backdrop-filter: blur(60px);
	        backdrop-filter: blur(60px);
}

.ourServices li a:hover .image img {
	-webkit-transform: scale(1.2);
	    -ms-transform: scale(1.2);
	        transform: scale(1.2);
}

/* Why */

#why * {
	color: #1A1B3A;
}

#why ul {
	--gap: 13px;
	margin: 38px calc(var(--gap) * -1) 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#why ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0;
	padding: 0 var(--gap);
	list-style: none;
	width: 25%;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

#why ul li img {
	width: 64px;
	margin-right: 20px;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}

#why ul li h6 {
	margin: 0;
}

/* Build */

#build {
	position: relative;
	color: #fff;
	z-index: 1;
}

#build .section {
	min-height: 800px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	padding-top: 46px;
	padding-bottom: 46px;
}

#build img {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	-o-object-position: center top;
	   object-position: center top;
	-o-object-fit: cover;
	   object-fit: cover;
	z-index: -1;
}


#build .text {
	width: 605px;
}

#build .text>:last-child {
	margin-bottom: 0;
}

/* Partners */

#partners .section {
	text-align: center;
	padding-top: 40px;
}

#partners .logos {
	--gap: 37px;
	position: relative;
	margin: 30px calc(var(--gap) * -1) 0;
	padding: 27px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	z-index: 1;
}

#partners .logos:before {
	content: "";
	position: absolute;
	left: -9999em;
	right: -9999em;
	top: 0;
	bottom: 0;
	border-top: 5px solid #1a1b3a;
	border-bottom: 5px solid #1a1b3a;
	background: #f2f2f4;
	z-index: -1;
}

#partners .logos li {
	margin: 0;
	padding: 0 var(--gap);
	list-style: none;
}

#partners .logos li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

#partners .logos li img {
	display: block;
	-webkit-transition: -webkit-transform 0.7s;
	transition: -webkit-transform 0.7s;
	-o-transition: transform 0.7s;
	transition: transform 0.7s;
	transition: transform 0.7s, -webkit-transform 0.7s;
}

#partners .logos li a:hover img {
	-webkit-transform: scale(1.08);
	    -ms-transform: scale(1.08);
	        transform: scale(1.08);
}

/* Members */

#members {
	border-top: 5px solid #1A1B3A;
	background: #F2F2F4;
	text-align: center;
}

#members .section {
	padding-top: 40px;
	padding-bottom: 40px;
}

#members .logos {
	margin: 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

#members .logos li {
	margin: 10px 30px 0;
	padding: 0;
	list-style: none;
}

#members .logos li a {
	display: inline-block;
}

#members .logos li img {
	display: block;
	height: 50px;
	-webkit-transition: -webkit-transform 0.5s;
	transition: -webkit-transform 0.5s;
	-o-transition: transform 0.5s;
	transition: transform 0.5s;
	transition: transform 0.5s, -webkit-transform 0.5s;
}

#members .logos li a:hover img {
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}

/* Contact Us */

#contactUs .section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

#contactUs .image {
	width: 767px;
}

#contactUs .image img {
	display: block;
	width: 100%;
	border-bottom-right-radius: var(--bigRadius);
}

#contactUs .form {
	width: 480px;
	margin-left: auto;
}

#contactUs .form h4 {
	color: #211D6F;
}

#contactUs .form .field {
	margin-bottom: 20px;
}

#contactUs .form .field .textbox {
	display: block;
	margin: 0;
	padding: 19px 35px;
	border-radius: 30px;
	border: 1px solid #1A1B3A;	
	height: 60px;
	width: 100%;
	font-family: 'Inter', Arial, sans-serif;
	font-size: 16px;
	font-weight: normal;
	background: #fff;
	-webkit-appearance: none;
	-moz-appearance: none;
	     appearance: none;
}

#contactUs .form .field textarea.textbox {
	height: 160px;
	overflow: auto;
	resize: none;
}

#contactUs .form .field.options {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

#contactUs .form .field .uploadBtn {
	border-radius: 30px;
	border: 1px solid #000;
	background: #fff;
	font-size: 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-weight: normal;
	min-height: 60px;
	position: relative;
	top: -1px;
	padding: 0 29px;
	line-height: 1.2;
	cursor: pointer;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	-webkit-transition: background-color 0.3s;
	-o-transition: background-color 0.3s;
	transition: background-color 0.3s;
}

#contactUs .form .field .uploadBtn:before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 11px;
	vertical-align: middle;
	background: url(../images/upload-ico.svg) no-repeat;
	background-size: 100%;
}

#contactUs .form .field .uploadBtn:hover {
	background-color: #1A1B3A;
	color: #fff;
}

#contactUs .form .field .uploadBtn:hover:before {
	-webkit-filter: brightness(0) invert(1);
	        filter: brightness(0) invert(1);
}

#contactUs .form .field .submitBtn {
	margin: 0;
}

/* Map */

#map {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	--offset: 170px;
	background: #f2f2f2;
}

#map .left,
#map .right {
	position: relative;
	width: 50%;
}

#map .left {
	z-index: 1;
}

#map .left:before {
	content: "";
	position: absolute;
	left: 0;
	right: calc(var(--offset) - var(--smallRadius));
	top: 0;
	bottom: 0;
	background: #1A1B3A;
	border-bottom-right-radius: var(--smallRadius);
	z-index: -1;
}

#map .left .text {
	margin-left: auto;
	width: 680px;
	padding: 55px var(--offset) 55px 60px;
	color: #fff;
}

#map .left .text>:last-child {
	margin-bottom: 0;
}

#map .left .text .contacts {
	margin: 40px 0 0;
	padding: 0;
}

#map .left .text .contacts li {
	margin: 0 0 25px;
	padding: 0;
	list-style: none;
}

#map .left .text .contacts li:last-child>h6 {
	margin-bottom: 0;
}

#map .left .text .contacts li:last-child {
	margin-bottom: 0;
}

#map .right iframe {
	position: absolute;
	left: calc(var(--offset) * -1);
	right: 0;
	top: 0;
	bottom: 0;
	width: calc(100% + var(--offset));
	height: 100%;
}

/* Footer */

#footer {
	background: #f2f2f4;
	color: #000;
	font-weight: normal;
}

#footer .top .section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 50px;
	padding-bottom: 20px;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	line-height: 1.1875;
}

#footer .top .logo {
	width: 313px;
	margin-top: 10px;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}

#footer .top .logo img {
	display: block;
	width: 100%;
}

#footer .top .links {
	padding: 0;
	margin: 0 0 0 236px;
}

#footer .top .links li {
	margin: 0 0 9px;
	padding: 0;
	list-style: none;
}

#footer .top .links li a:hover {
	text-decoration: underline;
}

#footer .top .contacts {
	width: 270px;
	margin-left: 100px;
}

#footer .top .contacts p {
	margin: 0 0 14px;
}

#footer .top .info {
	margin-left: auto;
	padding-left: 20px;
	text-align: right;
}

#footer .top .info .socials {
	margin: 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

#footer .top .info .socials li {
	margin: 0 0 10px 15px;
	padding: 0;
	list-style: none;
}

#footer .top .info .socials li img {
	display: block;
	height: 26px;
}

#footer .top .info .socials li a:hover img {
	-webkit-transform: scale(1.08);
	    -ms-transform: scale(1.08);
	        transform: scale(1.08);
}

#footer .bottom {
	background: #1A1B3A;
	color: #fff;
	font-size: 12px;
	text-align: center;
}

#footer .bottom .section {
	padding-top: 18px;
	padding-bottom: 18px;
}

#footer .bottom .section>:last-child {
	margin: 0;
}

/* Hamburger */

.hamburger {
	display: none;
	overflow: visible;
	position: absolute;
	top: 32px;
	right: 15px;
	margin-top: 0;
	-webkit-transition-timing-function: linear;
	     -o-transition-timing-function: linear;
	        transition-timing-function: linear;
	-webkit-transition-duration: .15s;
	     -o-transition-duration: .15s;
	        transition-duration: .15s;
	-webkit-transition-property: opacity, -webkit-filter;
	transition-property: opacity, -webkit-filter;
	-o-transition-property: opacity, filter;
	transition-property: opacity, filter;
	transition-property: opacity, filter, -webkit-filter;
	text-transform: none;
	color: inherit;
	border: 0;
	background-color: transparent;
}

.hamburger.is-active:hover,
.hamburger:hover {
	opacity: 1
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before {
	background-color: #211D6F;
}

.hamburger-box {
	display: inline-block;
	width: 32px;
	height: 24px;
}

.hamburger-inner {
	top: 50%;
	display: block;
	margin-top: -4px
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
	position: absolute;
	width: 32px;
	height: 4px;
	-webkit-transition-timing-function: ease;
	     -o-transition-timing-function: ease;
	        transition-timing-function: ease;
	-webkit-transition-duration: .15s;
	     -o-transition-duration: .15s;
	        transition-duration: .15s;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	border-radius: 4px;
	background-color: #211D6F;
}

.hamburger-inner:after,
.hamburger-inner:before {
	display: block;
	content: ""
}

.hamburger-inner:before {
	top: -10px
}

.hamburger-inner:after {
	bottom: -10px
}

.hamburger .hamburger-inner {
	-webkit-transition-timing-function: cubic-bezier(.55, .055, .675, .19);
	     -o-transition-timing-function: cubic-bezier(.55, .055, .675, .19);
	        transition-timing-function: cubic-bezier(.55, .055, .675, .19);
	-webkit-transition-duration: .22s;
	     -o-transition-duration: .22s;
	        transition-duration: .22s
}

.hamburger .hamburger-inner:before {
	-webkit-transition: top .1s ease-in .25s, opacity .1s ease-in;
	-o-transition: top .1s ease-in .25s, opacity .1s ease-in;
	transition: top .1s ease-in .25s, opacity .1s ease-in
}

.hamburger .hamburger-inner:after {
	-webkit-transition: bottom .1s ease-in .25s, -webkit-transform .22s cubic-bezier(.55, .055, .675, .19);
	transition: bottom .1s ease-in .25s, -webkit-transform .22s cubic-bezier(.55, .055, .675, .19);
	-o-transition: bottom .1s ease-in .25s, transform .22s cubic-bezier(.55, .055, .675, .19);
	transition: bottom .1s ease-in .25s, transform .22s cubic-bezier(.55, .055, .675, .19);
	transition: bottom .1s ease-in .25s, transform .22s cubic-bezier(.55, .055, .675, .19), -webkit-transform .22s cubic-bezier(.55, .055, .675, .19)
}

.hamburger.is-active .hamburger-inner {
	-webkit-transition-delay: .12s;
	     -o-transition-delay: .12s;
	        transition-delay: .12s;
	-webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	     -o-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
	-webkit-transform: rotate(225deg);
	    -ms-transform: rotate(225deg);
	        transform: rotate(225deg)
}

.hamburger.is-active .hamburger-inner:before {
	top: 0;
	-webkit-transition: top .1s ease-out, opacity .1s ease-out .12s;
	-o-transition: top .1s ease-out, opacity .1s ease-out .12s;
	transition: top .1s ease-out, opacity .1s ease-out .12s;
	opacity: 0
}

.hamburger.is-active .hamburger-inner:after {
	bottom: 0;
	-webkit-transition: bottom .1s ease-out, -webkit-transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
	transition: bottom .1s ease-out, -webkit-transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
	-o-transition: bottom .1s ease-out, transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
	transition: bottom .1s ease-out, transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
	transition: bottom .1s ease-out, transform .22s cubic-bezier(.215, .61, .355, 1) .12s, -webkit-transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
	-webkit-transform: rotate(-90deg);
	    -ms-transform: rotate(-90deg);
	        transform: rotate(-90deg)
}

.mm-panel {
	background: #F2F2F4;
	text-align: left;
		font-weight: bold;
}

.mm-navbar>* {
	min-height: 40px;
	background: #211D6F;
	font-weight: bold;
}

.mm-navbar__title>span {
	color: #fff;
	padding-left: 10px;
}

.mm-listitem__text {
	color: #000 !important;
}

.mm-listitem.active, 
.mm-listitem .active {
	background-color: rgba(0, 0, 0, 0.1);
}

/* Miscelleneous */

p {
	margin: 0 0 32px;
}

strong {
	font-weight: bold;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: 600;
	margin: 0 0 19px;
	line-height: 1.2;
}

h1 {
	font-size: 50px;
	font-weight: 700;
	margin: 0 0 22px;
	line-height: 1.17;
}

h2 {
	font-size: 38px;
	margin-bottom: 26px;
	text-align: center;
	color: #151F6D;
}

h3 {
	font-size: 38px;
	margin-bottom: 26px;
}

h4 {
	font-size: 28px;
}

h5 {
	font-size: 21px;
	font-weight: 700;
}

h6 {
	font-size: 21px;
	font-weight: 500;
	margin-bottom: 20px;
}

a {
	outline: none;
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: inherit;
}

hr {
	margin: 32px 0;
	padding: 0;
	height: 1px;
	border: 0;
	background: #000;
}

img {
	border: 0;
	max-width: 100%;
}

ul,
ol {
	padding: 0 0 0 25px;
	margin-bottom: 25px;
}

.linkBtn {
	position: relative;
	display: table;
	font-family: 'Inter', Arial, sans-serif;
	font-size: 16px;
	font-weight: normal;
	margin: 32px 0;
	text-align: center;
	color: #fff;
	border: 1px solid #1A1B3A;
	padding: 13px 30px;
	border-radius: 30px;
	background: #1A1B3A;
	cursor: pointer;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	     appearance: none;
	-webkit-transition: background-color 0.3s;
	-o-transition: background-color 0.3s;
	transition: background-color 0.3s;
}

.linkBtn:hover {
	background-color: #fff;
	color: #1A1B3A;
}

.linkBtn.centered {
	margin-left: auto;
	margin-right: auto;
}

.linkBtn.linkBtnTrans {
	border-color: #fff;
	background: rgba(26, 27, 58, 0.50);
}

.linkBtn.linkBtnTrans:hover {
	background-color: #fff;
}

.linkBtns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.linkBtns .linkBtn {
	margin-right: 20px;
}

.clear {
	clear: both;
}

.clearfix:after { 
  content: "."; 
  display: block; 
  height: 0; 
  clear: both; 
  visibility: hidden; 
}

.clearfix { 
  display: inline-block;  
}

* html .clearfix{  
  height: 1%;  
}

.clearfix {  
  display: block;  
}

input::-moz-focus-inner { 
    border: 0;
    padding: 0;
}

form {
	margin: 0;
	padding: 0;
}

input, select, textarea {
    border-radius: 0;
}

::-webkit-input-placeholder {
	color: inherit;
	opacity: 1;
}

:-moz-placeholder {
	color: inherit;
	opacity: 1;
}

::-moz-placeholder {
	color: inherit;
	opacity: 1;
}

:-ms-input-placeholder {  
	color: inherit;
	opacity: 1;
}

/* Media Queries */

/* Large Screens (Desktops) */

@media only screen and (max-width : 1450px) {
	.section {
		max-width: 1230px;
	}	

	.ourServices {
		--gap: 10px;
		margin-bottom: -40px;
	}

	.ourServices li {
		margin-bottom: 40px;
	}

	.ourServices li .image {
		width: 120px;
	}

	.ourServices li .text {
		margin-left: 18px;
	}

	.introText {
		margin-bottom: 40px;
	}

	.imageText .image {
		width: 665px;
	}

	.twoCols .col {
		width: 595px;
	}

	.threeCols {
		--gap: 20px;
	}

	.iconText {
		padding: 0 30px;
	}

	#build .section {
		min-height: 700px;
	}

	#subBanner .cols .col {
		width: 595px;
	}

	#projectInfo .left {
		width: 610px;
	}

	#projectInfo .right {
		width: 583px;
	}

	.team {
		--gap: 20px;
	}

	#contactUs .image {
		width: 710px;
	}
	
	#map .left .text {
		width: 615px;
		padding-left: 40px;
	}

	#footer .top .links {
		margin-left: 128px;
	}
}

/* Tablet Screens (Landscape) */

@media only screen and (max-width : 1260px) {
	.section {
		max-width: 970px;
	}	

	:root {
		--headerHeight: 140px;
		--spacing: 60px;
	}

	#header .logo {
		margin-top: 27px;
	}

	#header #navigation {
		margin-top: 52px;
	}

	#header #navigation ul li {
		margin-left: 34px;
	}

	#intro .overlay .text {
		max-width: 496px;
		margin-left: 20px;
		margin-top: 50px;
	}

	#intro .about {
		--padding: 68px;
	}

	#intro .about .text {
		padding-left: 0;
	}
	
	.projects li .image .overlay {
		padding: 25px;
	}

	#projectInfo .details {
		margin-bottom: 60px;
	}

	#projectInfo .left {
		width: 471px;
	}

	#projectInfo .right {
		width: 465px;
	}

	.ourServices li {
		width: 50%;
	}

	.imageText .image {
		width: 459px;
	}

	.imageText .text {
		width: 478px;
	}

	.twoCols .col {
		width: 465px;
	}

	.threeCols {
		--gap: 15px;
	}

	.cta .cols .left h3 {
		font-size: 39px;
	}

	.team {
		--gap: 15px;
		margin-top: 35px;
	}

	.team li img {
		margin-bottom: 20px;
	}
	
	#build .section {
		min-height: 600px;
	}

	#build .overlay .text {
		width: 535px;
	}

	#partners .logos {
		--gap: 20px;
	}

	#contactUs .image {
		width: 517px;
	}

	#contactUs .form {
		width: 422px;
	}

	.fitImage {
		padding-bottom: 50%;
	}

	.iconText {
		padding: 0 15px;
	}

	.iconText li {
		width: 455px;
	}

	.iconText li img {
		margin-right: 20px;
	}

	#subBanner .cols .col {
		width: 470px;
	}

	#map {
		--offset: 130px;
	}

	#map .left .text {
		width: 485px;
		padding-left: 0;
	}

	#footer .top .logo {
		width: 270px;
	}

	#footer .top .links {
		margin-left: 64px;
	}

	#footer .top .contacts {
		margin-left: 50px;
	}

	h1 {
		font-size: 47px;
	}

	h2,
	h3 {
		font-size: 36px;
	}

	h4 {
		font-size: 25px;
	}
}

/* Tablet Screens (Portrait) */

@media only screen and (max-width : 991px) {
	.section {
		max-width: 750px;
		padding-left: 15px;
		padding-right: 15px;
	}	

	:root {
		--headerHeight: 100px;
		--bigRadius: 190px;
	}

	#header .logo {
		width: 200px;
		margin-top: 25px;
	}

	#header #navigation {
		margin-top: 34px;
	}

	#header #navigation ul li {
		margin-left: 16px;
	}

	#header + .content>.section {
		padding-top: 20px;
	}

	#intro .overlay .text {
		max-width: 410px;
		margin-left: 10px;
		margin-top: 50px;
	}

	#intro .about {
		--padding: 50px;
	}

	.projects li .image .overlay {
		padding: 15px;
	}

	#projectInfo {
		--space: 45px;
	}

	#projectInfo .details {
		margin-bottom: 40px;
	}

	#projectInfo .right {
		padding-left: 25px;
		width: 374px;
	}

	#projectInfo .left {
		width: 318px;
	}

	.ourServices li .image {
		width: 100px;
	}

	.gallery .swiper-pagination .swiper-pagination-bullet {
		margin-left: 5px;
		margin-right: 5px;
	}

	dl.accordion dt {
		padding-top: 35px;
		padding-bottom: 35px;
	}

	dl.accordion dd {
		padding-bottom: 35px;
	}

	dl.accordion dt, dl.accordion dd {
		padding-left: 20px;
	}

	dl.accordion dd {
		padding-right: 20px;
	}

	dl.accordion dt:before, dl.accordion dt:after {
		top: 39px;
	}

	.imageText .image {
		width: 324px;
	}

	.imageText .text {
		width: 370px;
	}

	.twoCols .col {
		width: 340px;
	}
	
	.cta .cols .left h2 {
		text-align: center;
	}

	.cta .cols .left h3 {
		font-size: 27px;
	}

	.team li {
		width: calc(33.33333333333333% - (var(--gap) * 2));
	}

	.fitImage {
		padding-bottom: 56.25%;
	}

	.iconText {
		padding: 0;
		max-width: 550px;
		margin: 0 auto;
	}

	.iconText li {
		width: 100%;
	}

	.iconText li:last-child {
		margin-bottom: 0;
	}

	.iconText li h6 {
		-ms-flex-item-align: center;
		    -ms-grid-row-align: center;
		    align-self: center;
	}

	.iconLables li {
		margin: 23px 0;
	}

	.embedVideo:after {
		background-size: 50px;
	}
	
	#subBanner .cols .col {
		width: 345px;
	}

	#imageBanner #subBanner .cols .col {
		width: 375px;
	}

	#why ul {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}

	#why ul li {
		width: 50%;
		margin-top: 10px;
		margin-bottom: 10px;
	}

	#partners .logos {
		--gap: 12px;
	}
	
	#contactUs .image {
		width: 306px;
	}

	#contactUs .form {
		width: 387px;
	}

	#contactUs .form .field {
		margin-bottom: 15px;
	}

	#contactUs .form .field .uploadBtn {
		padding-left: 20px;
		padding-right: 20px;
	}

	#members .logos li {
		margin-left: 15px;
		margin-right: 15px;
	}

	#map {
		--offset: 50px;
	}

	#map .left .text {
		width: 375px;
	}

	#footer .top .section {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}

	#footer .top .logo {
		margin: 0;
	}

	#footer .top .links {
		margin-left: 42px;
	}

	#footer .top .info {
		width: 100%;
		-ms-flex-negative: 0;
		    flex-shrink: 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin-top: 30px;
		padding-left: 0;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}

	#footer .top .info h6 {
		margin-top: 3px;
	}
	
	h1 {
		font-size: 43px;
	}

	h2,
	h3 {
		font-size: 30px;
		margin-bottom: 25px;
	}

	h4 {
		font-size: 24px;
	}

	h5,
	h6 {
		font-size: 19px;
	}

}

/* Mobile Screens */

@media only screen and (max-width : 767px) {
	.hamburger {
		display: block;
	}

	:root {
		--bigRadius: 65px;
		--smallRadius: 30px;
		--spacing: 50px;
	}

	#header .section {
		display: block;
		height: auto;
		padding-top: 30px;
		padding-bottom: 30px;
		padding-left: 55px;
		padding-right: 55px;
	}

	#header #navigation {
		display: none;
	}

	#header .logo {
		position: relative;
		display: block;
		max-width: 295px;
		width: auto;
		margin: 0 auto;
		left: -10px;
	}

	#header + .content>.section {
		padding-top: 7px;
	}

	#subBanner .section {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	
	#intro {
		margin-top: 0;
	}

	#intro .overlay {
		top: 0;
		bottom: 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		text-align: center;
	}

	#intro .overlay .text {
		margin: 0;
	}

	#intro .overlay .text>:last-child {
		margin-bottom: 0;
	}

	#intro .about {
		--padding: 30px;
	}

	#intro .about .text {
		margin-left: 0;
		text-align: center;
		padding-bottom: 40px;
	}

	.cta {
		text-align: center;
	}

	.cta .section {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.cta .cols {
		display: block;
	}

	.cta .cols .left {
		width: 100%;
		margin-bottom: 15px;
	}

	.cta .cols .left h3 {
		font-size: 23px;
	}

	.cta .cols .right {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}

	.cta .cols .right .linkBtn {
		margin: 10px 0;
	}

	.cta .cols .right .linkBtn:last-child {
		margin-bottom: 0;
	}

	.fitImage {
		padding-bottom: 71.25%;
	}

	dl.accordion {
		margin: 33px 0;
	}

	dl.accordion dt, dl.accordion dd {
		padding-left: 0;
	}

	dl.accordion dt {
		padding-top: 25px;
		padding-bottom: 25px;
		padding-right: 56px;
	}

	dl.accordion dd {
		padding-right: 0;
		padding-bottom: 25px;
	}

	dl.accordion dt:before, dl.accordion dt:after {
		top: 25px;
		right: 0;
	}
	
	#why ul {
		margin-top: 0;
	}

	.imageText {
		display: block;
		text-align: center;
	}
	
	.imageText .image {
		margin: 0 auto 30px;
		max-width: 350px;
		width: 100%;
	}

	.imageText .text {
		width: 100%;
	}

	.twoCols {
		display: block;
		text-align: center;
	}

	.twoCols .col:first-child {
		margin-bottom: 25px;
	}

	.twoCols .col {
		width: 100%;
	}

	.threeCols {
		display: block;
		text-align: center;
	}

	.threeCols .col {
		width: 100%;
		margin-bottom: 25px;
	}
	
	.threeCols .col:last-child {
		margin-bottom: 0;
	}
	
	.linkBtn {
		margin-top: 25px;
		margin-bottom: 25px;
		margin-left: auto;
		margin-right: auto;
	}

	#projectInfo {
		--space: 30px;
	}

	#projectInfo .details {
		display: block;
		text-align: center;
	}

	#projectInfo .left {
		width: 100%;
		margin-bottom: 40px;
	}

	#projectInfo .right {
		width: 100%;
		padding-left: 15px;
		padding-top: 50px;
	}

	#projectInfo .right ul {
		text-align: left;
	}

	.projects {
		max-width: 400px;
		margin: 0 auto;
		--gap: 0;
		text-align: center;
	}

	.projects li {
		width: 100%;
		margin-bottom: 25px;
	}

	.projects li:last-child {
		margin-bottom: 0;
	}

	.projects li h6 {
		margin-bottom: 5px;
		margin-top: 16px;
	}

	.ourServices {
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}

	.ourServices li {
		width: 100%;
		text-align: center;
	}

	.ourServices li a {
		display: block;
	}

	.ourServices li .image {
		margin: 0 auto 20px;
		width: 145px;
	}

	.ourServices li .text {
		margin-left: 0;
		padding-bottom: 38px;
	}

	.ourServices li .text:before {
		right: 50%;
		margin-right: -14px;
	}

	#subBanner {
		text-align: center;
	}

	#subBanner .cols {
		display: block;
	}

	#subBanner .cols .col:first-child {
		margin-bottom: 20px;
	}

	#subBanner .cols .col {
		width: 100%;
	}

	.behindHeader {
		margin-top: 0;
	}

	#imageBanner #subBanner .cols .col {
		width: 100%;
		margin-bottom: 0;
	}

	#why ul li {
		display: block;
		width: 100%;
		text-align: center;
	}

	#why ul li img {
		display: block;
		margin: 0 auto 20px;
	}

	#build .section {
		min-height: 1px;
	}

	#build .text {
		width: 100%;
		max-width: 450px;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}

	#partners .logos {
		--gap: 15px;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}

	#partners .logos li {
		margin-top: 10px;
		margin-bottom: 10px;
	}

	#contactUs .section {
		display: block;
	}

	#contactUs .form {
		width: 100%;
	}

	#contactUs .form h4 {
		text-align: center;
	}
	
	#contactUs .form .field.options {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		max-width: 270px;
		margin: 0 auto;
	}

	#contactUs .form .field .submitBtn {
		min-height: 60px;
		margin-top: 15px;
	}

	#contactUs .image {
		max-width: 350px;
		width: 100%;
		margin: 0 auto 30px;
	}

	.team {
		--gap: 12px;
		text-align: center;
	}

	.team li {
		width: calc(50% - (var(--gap) * 2));
	}

	.iconLables li {
		width: 50%;
	}

	.gallery .swiper-pagination {
		margin-top: 18px;
	}

	.gallery .swiper-pagination .swiper-pagination-bullet {
		width: 15px;
		height: 15px;
	}

	#map {
		display: block;
		text-align: center;
	}

	#map .left {
		width: 100%;
	}
	
	#map .left:before {
		right: 0;
	}

	#map .left .text {
		width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}

	#map .left .text .contacts {
		margin-top: 30px;
	}

	#map .right {
		width: 100%;
		height: 350px;
		margin-top: calc(var(--smallRadius) * -1);
	}

	#map .right iframe {
		left: 0;
	}

	#footer .top .section {
		display: block;
		text-align: center;
	}
	
	#footer .top .logo {
		display: block;
		margin: 0 auto 30px;
	}

	#footer .top .links {
		margin: 0 0 25px;
	}

	#footer .top .links li {
		margin-bottom: 20px;
	}

	#footer .top .contacts {
		margin-left: 0;
		width: 100%;
	}

	#footer .top .info {
		display: block;
		text-align: center;
	}

	#footer .top .info .socials {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}

	#footer .top .info .socials li {
		margin-left: 5px;
		margin-right: 5px;
	}

	.linkBtns {
		display: block;
		margin-top: 30px;
	}

	.linkBtns .linkBtn {
		width: 100%;
		margin: 0 0 20px;
	}

	p {
		margin-bottom: 25px;
	}

	h1 {
		font-size: 35px;
		margin-bottom: 10px;
	}

	h2, h3 {
		font-size: 25px;
	}

	h4 {
		font-size: 19px;
	}

	h5, h6 {
		font-size: 17px;
	}

}

@media only screen and (max-width : 479px) {

}