﻿@charset "UTF-8";

@font-face {
    font-family: 'Uncut Sans';
    src: url('../fonts/subset-UncutSans-Lt.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Uncut Sans';
    src: url('../fonts/subset-UncutSans-Rg.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Uncut Sans';
    src: url('../fonts/subset-UncutSans-Md.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Uncut Sans';
    src: url('../fonts/subset-UncutSans-SmBd.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Uncut Sans';
    src: url('../fonts/subset-UncutSans-Bd.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Instrument Serif';
    src: url('../fonts/subset-InstrumentSerif-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/subset-Montserrat-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/subset-Montserrat-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

:root {
	--section-margin: 180px;
}

html {
    -webkit-text-size-adjust: none;
}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body, div {
	margin: 0;
	padding: 0;
}

html, body {
    cursor: none;
}

body {
	font-family: 'Uncut Sans', Arial, sans-serif;
	font-size: 16px;
	font-weight: 300;
	text-align: center;
	color: var(--body-text);
	line-height: 1.44;
	letter-spacing: 0.2px;
	--body-text: #fff;
	--primary-color: #fff;		
	background-color: var(--background-color);
}

.fixedBg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: url('../images/gradient-bg.jpg') no-repeat center top / cover;
    will-change: transform; 
    z-index: -1;
}

body:has(#contact) .fixedBg {
	background: #15294f;
}

/* Green Theme */

body.greenTheme {
	--body-text: #15294F;
	--background-color: #C4FFBD;
	--primary-color: #05F;
}

body.greenTheme .fixedBg {
	display: none;
}

/* Main Wrapper */

#mainWrapper {
	position: relative;
	text-align: left;
	margin: 0 auto;
	min-width: 320px;
	font-size: 18px;
	overflow: clip;
	padding-top: 240px;
}

.customCursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 11px;
    height: 11px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000001;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    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;
    font-size: 17px;
	font-weight: 600;
    color: #fff;
}

.customCursor .sliderArrow {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: url(../images/arrow-right.svg) no-repeat center;
}

.customCursor .sliderArrow:before {
	content: "";
	position: absolute;
	border: 2px solid #05F;
	border-radius: 100%;
}

.customCursor .sliderArrow:before {
	left: -7px;
	right: -7px;
	top: -7px;
	bottom: -7px;
}

.customCursor .sliderArrow.prev {
	-webkit-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg);
}

@media(pointer: coarse) {
	.customCursor {
		display:none
	}
}

/* Section */

.section {
	max-width: 1400px;
	margin: 0 auto;
}

.section.narrow {
	max-width: 926px;
}

/* Header */

#header {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 1000000;
	-webkit-transition: -webkit-transform 0.4s ease;
	transition: -webkit-transform 0.4s ease;
	-o-transition: transform 0.4s ease;
	transition: transform 0.4s ease;
	transition: transform 0.4s ease, -webkit-transform 0.4s ease;
	pointer-events: none;
}

#header.nav-up {
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
}

#header .section {
	position: relative;
	height: 106px;
	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;
}

#header .logo {
    position: absolute;
    left: 0;
    width: 65px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
	pointer-events: auto;
}

#header .logo img {
	display: block;
	width: 100%;
}

#header #navigation {
    position: relative;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    padding: 6px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
	pointer-events: auto;
	-webkit-backdrop-filter: blur(7px); 
    backdrop-filter: blur(7px);
	-webkit-transition: border-color 0.3s;
	-o-transition: border-color 0.3s;
	transition: border-color 0.3s;
}

#header.whiteScheme {
	--primary-color: #fff;
} 

#header #navigation ul {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

#header #navigation ul li {
    margin: 0;
    padding: 0 6px;
    list-style: none;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0;
    position: relative;
    z-index: 2;
}

#header #navigation ul li a {
    position: relative;
    display: inline-block;
    padding: 3px 21px;
    color: var(--primary-color);
    text-decoration: none;
	-webkit-transition: color 0.3s ease;
	-o-transition: color 0.3s ease;
	transition: color 0.3s ease;
}

#header #navigation ul li a::after {
    content: '';
    position: absolute;
    bottom: 7px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%); 
    -webkit-transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s; 
    -o-transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s; 
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s;
}

#header #navigation ul li:hover a::after {
    width: calc(100% - 42px);
}

#header #navigation ul li.active a::after {
    width: calc(100% - 42px);
}

#header #navigation .navIndicator {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    z-index: 1;
    pointer-events: none;
}

#header .linkBtn {
	color: var(--primary-color);
}

#header .startProject {
    position: absolute;
    right: 0;
    margin: 0;
    -webkit-backdrop-filter: blur(7px);
            backdrop-filter: blur(7px);
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
	pointer-events: auto;
}

body.popupOpen {
    overflow: hidden;
    height: 100vh; 
    width: 100%;
	padding-right: var(--scrollbar-width, 0px); 
}

body.popupOpen #header #navigation {
	border-color: #fff !important;
}

body.popupOpen #header #navigation ul li a {
	color: #fff !important;
}

body.popupOpen #header #navigation ul li a::after {
	background-color: #fff !important;
}

body.popupOpen #header .linkBtn {
	color: #fff !important;
}

body.popupOpen #header .linkBtn:after {
	border-color: #fff !important;
}

#header .popupBackdrop {
	display: none;
	position: fixed;
	opacity: 0;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #15294F;
	z-index: -1;
  	background-color: rgba(0, 0, 0, 0.7);
	-webkit-backdrop-filter: blur(0);
	        backdrop-filter: blur(0);
}

#header .popupForm {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	top: 80px;
	bottom: 0;
	opacity: 0;
	pointer-events: auto;
	color: #fff;
}

#header .popupForm .closeBtn {
	position: absolute;
	right: 5px;
	top: 5px;
	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;
	font-size: 25px;
	font-weight: bold;
	color: #fff;
	width: 30px;
	height: 30px;
	border-radius: 100%;
}

#header .popupForm .section {
	height: 100%;
}

#header .popupForm .section .inner {
	width: 400px;
	height: 100%;
	margin-left: auto;
	overflow: auto;
}

#header .popupForm .section .inner .form {
	margin-bottom: 20px;
	border-radius: 25px;
	background: #15294F;
	padding: 30px;
}

#header .popupForm .section .inner .form .fields {
	margin-bottom: 30px;
}

#header .popupForm .section .inner .form .fields .field {
	margin-bottom: 10px;
}

#header .popupForm .section .inner .form .fields .field .textbox {
	display: block;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	width: 100%;
	height: 40px;
	font-family: 'Uncut Sans', Arial, sans-serif;
	font-weight: 400;
	font-size: 16px;
	background: none;
	color: #fff;
	outline: none;
	border-bottom: 1px solid #fff;
	-webkit-appearance: none;
	-moz-appearance: none;
	     appearance: none;
}

#header .popupForm .section .inner .form .fields .field textarea.textbox {
	height: 60px;
	padding-top: 8px;
	overflow: auto;
	resize: none;
}

#header .popupForm .section .inner .form .submitBtn {
	margin-top: 20px;
	margin-bottom: 10px;
}

#header .popupForm .section .inner .form .linkBtn {
	color: var(--primary-color);
}

/* Radio Btn Group */

.radioBtnGroup {
	margin: 0 0 15px;
	padding: 0;
}

.radioBtnGroup li {
	margin: 0 0 8px;
	padding: 0;
	list-style: none;
}

.radioBtnGroup li label {
	position: relative;
	display: inline-block;
	margin: 0;
	padding: 0;
	cursor: pointer;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

.radioBtnGroup li label span {
	position: relative;
	display: inline-block;
	padding-left: 25px;
}

.radioBtnGroup li label span:before {
	content: "";
	position: absolute;
	width: 15px;
	height: 15px;
	left: 0;
	top: 4px;
	border: 1px solid #fff;
	border-radius: 100%;
	-webkit-transition: background-color 0.3s;
	-o-transition: background-color 0.3s;
	transition: background-color 0.3s;
}

.radioBtnGroup li label input {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
}

.radioBtnGroup li label input:checked ~ span:before {
	background: #fff;
}

/* Horizontal Scroll */

.horiScrollWrapper {
	overflow: hidden;
}

.horiScrollWrapper .title {
	margin-bottom: 30px;
}

.horiScroll {
	width:-webkit-fit-content;
	width:-moz-fit-content;
	width:fit-content;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap:nowrap;
	    flex-wrap:nowrap;
}

.hoverImages ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	--gap: 10px;
	--width: 33.33333333333333%;
	margin: 0 calc(var(--gap) * -1);
	padding: 0;
}

.hoverImages ul li {
	margin: 0 var(--gap) calc(var(--gap)*2);
	padding: 0;
	list-style: none;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	width: calc(var(--width) - (var(--gap) * 2));
}

.hoverImages ul li a {
	position: relative;
	display: block;
	border-radius: 5px;
	overflow: hidden;
}

.hoverImages ul li img {
	display: block;
	width: 100%;
	-webkit-transition: all 0.6s;
	-o-transition: all 0.6s;
	transition: all 0.6s;
}

.hoverImages ul li img:nth-child(2) {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.hoverImages ul li a:hover img:nth-child(2) {
	opacity: 1;
}

.hoverImages ul li a:hover img {
	-webkit-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	        transform: scale(1.05);
}

/* Projects */

.works ul {
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

/* Content */

.content {
	margin-bottom: var(--section-margin);
}

/* Pager */

.pager {
	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;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: 30px 0;
}

.pager .linkBtn {
	margin: 5px 10px;
}

/* Slider Pagination */

.swiper-pagination {
	position: static;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: 15px 0;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.swiper-pagination .swiper-pagination-bullet {
	width: 6px;
	height: 6px;
	margin: 0 2px 10px;
	border: 1px solid var(--primary-color);
	border-radius: 6px;
	background: none;
	opacity: 1;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	cursor: none;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	width: 14px;
	background: var(--primary-color);
}

/* Slider */

.slider .swiper-slide img {
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	display: block;
	width: 100%;
	border-radius: 5px;
}

.swiper-container {
    cursor: none;
}

/* Two Cols */

.twoCols {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	--gap: 110px;
}

.twoCols .left {
	margin-right: auto;
	overflow: hidden;
}

.twoCols .right {
	width: 453px;
	margin-left: var(--gap);
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}

.twoCols .left>:last-child,
.twoCols .right>:last-child {
	margin-bottom: 0;
}

.twoCols.alt .right {
	-webkit-box-ordinal-group: 0;
	    -ms-flex-order: -1;
	        order: -1;
	margin-left: 0;
	margin-right: var(--gap);
}

.twoCols h1 {
	margin-bottom: 40px;
}

/* Awards */

.awards {
	margin: 0 0 30px;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.awards li {
	margin: 0 30px 20px;
	padding: 0;
	list-style: none;
	-webkit-transition: -webkit-transform 0.6s;
	transition: -webkit-transform 0.6s;
	-o-transition: transform 0.6s;
	transition: transform 0.6s;
	transition: transform 0.6s, -webkit-transform 0.6s;
}

.awards li img {
	display: block;
	height: 112px;
}

.awards li:hover {
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}

/* Info Text */

.infoText {
	max-width: 690px;
	margin: 0 auto;
	text-align: center;
}

.infoText .linkBtn {
	margin-right: 0;
}

.infoText>:last-child {
	margin-bottom: 0;
}

/* Portfolio Website */

.portfolioWebsite {
	display: block;
	margin: 80px auto 20px;
	max-width: 1038px;
}

.portfolioWebsite img {
	display: block;
	width: 100%;
}

/* Portfolio Images */

.portfolioImages {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	max-width: 1058px;
	margin: 0 auto;
}

.portfolioImages .item {
	width: 50%;
	margin-bottom: 20px;
}

.portfolioImages .item img {
	display: block;
	margin: 0 auto;
}

.portfolioImages .item.full {
	width: 100%;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}

.portfolioImages .item .slider {
	max-width: 327px;
	margin: 0 auto;
}

/* Portfolio Image */

.portfolioImage {
	max-width: 1038px;
	margin: 0 auto 130px;
}

.portfolioImage img {
	display: block;
	width: 100%;
	border-radius: 5px;
	-webkit-box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.25);
	        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.25);
}

/* Testimonials Slider */

.testimonialsSlider {
	max-width: 1240px;
	margin: 0 auto;
}

.testimonialsSlider .swiper-wrapper {
	padding-top: 40px;
	padding-bottom: 40px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.testimonialsSlider .swiper-slide {
	position: relative;
	width: 440px;
	background: #15294F;
	border-radius: 15px;
	padding: 110px 34px 50px;
    -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
            transform: scale(0.8);
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, -webkit-transform 0.3s;
	-o-transition: transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	opacity: 0.5;
}

.testimonialsSlider .swiper-slide>:last-child {
	margin-bottom: 0;
}

.testimonialsSlider .swiper-slide:before {
	position: absolute;
	content: "“";
	font-family: 'Uncut Sans', Arial, sans-serif;
	font-size: 160px;
	font-weight: 600;
	color: #05F;
	left: 28px;
	top: 1px;
	line-height: 1;
}

.testimonialsSlider .swiper-slide.swiper-slide-active {
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1.1);
	opacity: 1;
}

.testimonialsSlider .swiper-slide h4 {
	margin: 0;
}

.testimonialsSlider .swiper-pagination {
	margin-top: 0;
}

/* Long Slider */

.longSlider {
	width: 100%;
	margin-bottom: 20px;
}

.longSlider h2 {
	text-align: center;
}

.longSlider .swiper-slide {
	width: auto;
	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;
}

.longSlider .swiper-slide img {
	height: 336px;
	width: auto;
	display: block;
	-o-object-fit: cover;
	   object-fit: cover;
	border-radius: 5px;
}

/* Steps Accordion */

.stepsAccordion {
	--radius: 20px;
	border-radius: var(--radius);
}

.stepsAccordion>h3 {
	margin-bottom: 25px;
}

.stepsAccordion .step {
	position: relative;
	margin-bottom: -37px;
	overflow: hidden;
	border-radius: var(--radius);
	z-index: 1;
}

.stepsAccordion .step:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: url('../images/gradient-bg.jpg') no-repeat center top / cover fixed;
	background-size: cover;
	z-index: -1;
}

.stepsAccordion .step:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 50px;
	border: 1px solid #fff;
	border-bottom: 0;
	border-top-left-radius: var(--radius);
	border-top-right-radius: var(--radius);
	pointer-events: none;
}

.stepsAccordion .step:last-child {
	margin-bottom: 0; 
}

.stepsAccordion .step:last-child .inner {
	margin-bottom: 0; 
	padding-bottom: 20px;
}

.stepsAccordion .header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	padding: 25px 40px 25px 118px;

}
.stepsAccordion .header h1 {
	margin: 0;
}

.stepsAccordion .header>h4 {
	position: absolute;
	left: 32px;
	top: 29px;
	margin: 0;
}

.stepsAccordion .header .rightText {
	max-width: 867px;
	margin-left: auto;
	margin-top: 10px;
	height: 0;
	opacity: 0;
}

.stepsAccordion .header .rightText h4 {
	position: static;
}

.stepsAccordion .header .rightText>:last-child {
	margin-bottom: 0;
}

.stepsAccordion .desc {
	height: 0;
	opacity: 0;
	overflow: hidden;	
}

.stepsAccordion .desc .inner {
	padding: 0 40px 70px 118px;
}

.stepsAccordion .desc .inner::-webkit-scrollbar {
    width: 6px;
}

.stepsAccordion .desc .inner::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}



.stepsAccordion .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding: 25px 40px 25px 118px;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}


/* Image Tip */

.imageTip {
	display: inline-block;
	border: 1px solid #fff;
	padding: 0 7px;
	border-radius: 50px;
}

/* Attach Files */

.attachFiles .fileUpload {
	display: inline-block;
	padding-left: 37px;
	background: url(../images/attach-file-ico.svg) no-repeat;
	cursor: pointer;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.5px;
	text-decoration: underline;
}

.attachFiles .fileList .fileName {
	margin-top: 5px;
}

/* Intro */

#intro {
	margin-bottom: var(--section-margin);
}

#intro .section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

#intro .text {
	max-width: 945px;
}

#intro .image {
	-ms-flex-item-align: end;
	    align-self: flex-end;
	margin-left: auto;
	margin-right: 143px;
	width: 205px;
}

#intro .title {
	font-family: 'Instrument Serif', Times, serif;
	font-size: 180px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 0.88;
	margin-bottom: 63px;
}

#intro .info {
	margin-left: 195px;
	max-width: 637px;
}

#intro .info .linkBtn {
	margin: 10px 0;
}

#intro .info>:last-child {
	margin-bottom: 0;
}

/* Big Image */

.bigImage {
	margin: 80px -75px;
}

.bigImage img {
	display: block;
	width: 100%;
	border-radius: 5px;
}

.beforeAfterSlider {
	--position: 50%;
	--slider-width: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 5px;
}

.beforeAfterSliderImages {
	position: relative;
}

.beforeAfterSliderImage {
	display: block;
	width: 100%;
	border-radius: 0;
	pointer-events: none;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

.beforeAfterSliderReveal {
	position: absolute;
	inset: 0;
	width: var(--position);
	overflow: hidden;
}

.beforeAfterSliderReveal .beforeAfterSliderImage {
	width: var(--slider-width);
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	max-width: none;
}

.beforeAfterSliderRange {
	position: absolute;
	inset: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: ew-resize;
}

.beforeAfterSliderHandle {
	position: absolute;
	top: 0;
	left: var(--position);
	z-index: 2;
	width: 2px;
	height: 100%;
	background: var(--primary-color);
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	pointer-events: none;
}

.beforeAfterSliderHandle:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 46px;
	height: 46px;
	border: 2px solid var(--primary-color);
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.2);
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}

.beforeAfterSliderHandle:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 18px;
	border-left: 2px solid var(--primary-color);
	border-right: 2px solid var(--primary-color);
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}

/* Laptop Website Scroll */

.laptopScrollShowcase {
	--screen-left: 12.8%;
	--screen-top: 15.4%;
	--screen-right: 12.1%;
	--screen-bottom: 20.9%;
	--scroll-multiplier: 1;
	position: relative;
	margin: 80px -75px;
}

.laptopScrollPin {
	min-height: 100vh;
	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;
}

.laptopScrollDevice {
	position: relative;
	width: min(100%, 1400px);
	margin: 0 auto;
}

.laptopScrollFrame {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	pointer-events: none;
}

.laptopScrollScreen {
	position: absolute;
	top: var(--screen-top);
	right: var(--screen-right);
	bottom: var(--screen-bottom);
	left: var(--screen-left);
	z-index: 1;
	overflow: hidden;
	background: #fff;
}

.laptopScrollScreenshot {
	display: block;
	width: 100%;
	max-width: none;
	will-change: transform;
}

/* Fit Image */

.fitImage {
	display: block;
	width: 100%;
	border-radius: 5px;
	margin-bottom: 20px;
}

/* Works */

#works {
	margin-bottom: var(--section-margin);
}

#works .title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

#works .title * {
	margin: 0;
}

#works .title .linkBtn {
	margin-left: 20px;
}

/* Get Started */

#getStarted {
	overflow: hidden;
	position: relative;
	min-height: 700px;
	padding-top: 100px;
	padding-bottom: 100px;
	background: url(../images/get-started-bg.jpg) center top;
	background-size: cover;
	color: #fff;
}

#getStarted .overlay {
	position: absolute;
	left: 0;
	right: 0;
	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;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

#getStarted .heading {
	font-size: 27px;
	margin-bottom: 0;
}

#getStarted .heading span {
	font-size: 1.111111111111111em; /* 30px */
	font-weight: 600;
}

#getStarted .title {
	font-family: 'Instrument Serif', Times, serif;
	font-size: 18.6vw;
	letter-spacing: 0;
	line-height: 1;
	margin: 0 0 0.1811594202898551em;
}

#getStarted .linkBtn {
	margin: 20px 0;
	color: #fff;
}

#getStarted .formWrapper {
	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;
	pointer-events: none;
}

/* Contact */

#contact {
	border-bottom: 1px solid #fff;
	padding-bottom: var(--section-margin);
}

#contact .title {
	font-family: 'Instrument Serif', Times, serif;
	font-size: 37vw;
	font-weight: normal;
	text-align: center;
	line-height: 0.6;
	letter-spacing: 0;
}

#contact .formSection {
	position: relative;
	margin-left: auto;
	margin-top: -4vw;
}

#contact .contactInfo {
	width: 1078px;
	margin-left: auto;
	margin-top: 100px;
}

#contact .contactInfo .listing {
	margin: 0 0 50px;
	padding: 0;
}

#contact .contactInfo .listing li {
	position: relative;
	margin: 0 0 17px;
	padding: 0 0 0 60px;
	list-style: none;
	font-family: 'Instrument Serif', Times, serif;
	font-size: 44px;
}

#contact .contactInfo .listing li a {
	position: relative;
	display: inline-block;
}

#contact .contactInfo .listing li a:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 3px;
	height: 2px;
	background: #fff;
}

#contact .contactInfo .listing li span {
	position: absolute;
	left: -60px;
	top: 15px;
	width: 39px;
	height: 39px;
	border-radius: 100%;
	background: #05F;
	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;
}

#contact .contactInfo .listing li span img {
	display: block;
	margin: 0 auto;
}

/* Form Section */

.formSection {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 1078px;
	padding: 45px;
	text-align: left;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	pointer-events: auto;
	border-radius: 5px;
	background: url(../images/gradient-bg.jpg) no-repeat center 6%;
}

.formSection .left,
.formSection .right {
	width: 470px;
}

.formSection .fields .field {
	margin-bottom: 50px;
}

.formSection .fields .field .textbox {
	display: block;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 60px;
	border: none;
	border-radius: 0;
	background: none;
	font-family: 'Uncut Sans', Arial, sans-serif;
	font-size: 32px;
	font-weight: normal;
	letter-spacing: 0.1px;
	outline: none;
	color: #fff;
	border-bottom: 1px solid #fff;
	-webkit-appearance: none;
	-moz-appearance: none;
	     appearance: none;
}

.formSection .fields .field textarea.textbox {
	height: 280px;
	resize: none;
	overflow: auto;
}

.formSection .submitBtn {
	margin: 25px 0;
}

/* Footer */

#footer {
	background: #15294f;
	color: #fff;
}

#footer .section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	max-width: 1240px;
	padding-top: 100px;
	padding-bottom: 100px;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

#footer .logo {
	width: 65px;
	margin-top: -9px;
}

#footer .logo img {
	display: block;
	width: 100%;
}

#footer .info {
	margin-left: 24px;
}

#footer .info .linkBtn {
	margin: 0;
	color: #fff;
}

#footer .info .text {
	padding-left: 7px;
	margin-top: 20px;
}

#footer .info .text p {
	margin: 0;
}

#footer .info .text>:last-child {
	margin-bottom: 0;
}

#footer .info .text .links {
	margin: 0;
	padding: 0;
}

#footer .info .text .links li {
	margin: 0;
	padding: 0;
	list-style: none;
}

#footer .info .text .links li a {
	text-decoration: underline;
}

#footer .contacts {
	margin-left: auto;
	padding-left: 50px;
}

#footer .contacts>:last-child {
	margin-bottom: 0;
}

#footer .flinks {
	margin-left: 50px;
}

#footer .flinks ul {
	margin: 0;
	padding: 0;
}

#footer .flinks ul li {
	margin: 0 0 1px;
	padding: 0;
	list-style: none;
	font-size: 20px;
	font-weight: 500;
}

#footer .flinks ul li a:hover {
	text-decoration: underline;
}

/* Accordion */

.accordion {
	max-width: 1164px;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 12px;
}

.accordion h1 {
	margin-bottom: 71px;
}

.accordion .title {
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none; 
}

.accordion .item {
	position: relative;
	border-bottom: 1px solid #C3C2CE;
}

.accordion .item:first-of-type {
	border-top: 1px solid #C3C2CE;
}

.accordion .item .title {
	position: relative;
	cursor: pointer;
	padding: 20px 50px 20px 0;
}

.accordion .item .title:before {
	content: "";
	position: absolute;
	right: 0;
	top: 19px;
	width: 34px;
	height: 34px;
	border-radius: 100%;
	background: #05F url(../images/plus-sign.svg) no-repeat center;
	background-size: 14px;
	pointer-events: none;
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	-o-transition: transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.accordion .item.opened .title:before {
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
}

.accordion .item .title h4 {
	position: relative;
	margin: 0;
	-webkit-filter: none;
	        filter: none;
}

.accordion .item .desc {
	display: none;
	padding-right: 50px;
	padding-bottom: 18px;
}

.accordion .item .desc>:last-child {
	margin-bottom: 0;
}

.accordion .item.opened .desc {
	display: block;
}

.accordion .linkBtn {
	margin-top: 40px;
}

/* Hamburger */

.hamburger {
	display: none;
	overflow: visible;
	margin-top: 5px;
	-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: .7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before {
	background-color: var(--primary-color)
}

.hamburger-box {
	position: absolute;
	right: 15px;
	top: 15px;
	display: inline-block;
	width: 32px;
	height: 24px
}

.hamburger-inner {
	top: 50%;
	display: block;
	margin-top: -2px
}

.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: var(--primary-color);
}

.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-menu_theme-dark {
	--mm-color-background: #0055ff url(../images/get-started-bg.jpg) no-repeat center top;
	font-family: 'Uncut Sans', Arial, sans-serif;
	font-size: 28px;
	font-weight: bold;
	--mm-listitem-size: 57px;
	background-size: cover;
}

.mm-listview {
	text-align: left;
}

.mm-navbar {
	border-color: #fff;
	border-width: 2px;
	margin-bottom: 20px;
}

.mm-navbar>* {
	min-height: 54px;
}

.mm-navbar__title>span {
	color: #fff;
	line-height: 1;
}

.mm-listitem {
	border: transparent;
	padding-left: 10px;
	padding-right: 10px;
	margin-top: 3px;
	margin-bottom: 3px;
}

.mm-listitem a {
	border-radius: 50px;
}

.mm-listitem.active a {
	background: rgba(255,255,255,0.2);
	text-decoration: underline;
}

/* Miscelleneous */

p {
	margin: 0 0 14px;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: normal;
	margin: 0 0 19px;
	line-height: 1.2;
}

h1 {
	font-family: 'Instrument Serif', Times, serif;
	font-size: 64px;
	letter-spacing: 0;
	line-height: 1;
	margin-bottom: 90px;
}

h1>span {
	font-family: 'Uncut Sans', Arial, sans-serif;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.5px;
	margin-right: 14px;
	text-transform: uppercase;
}

h1 .linkBtn {
	margin: 0 0 0 18px;
}

h2 {
	font-family: 'Instrument Serif', Times, serif;
	font-size: 44px;
	line-height: 1.04;
	letter-spacing: 0;
}

h3 {
	font-size: 32px;
	line-height: 1.18;
	letter-spacing: 0.1px;
	margin-bottom: 20px;
}

h4 {
	font-size: 26px;
	font-weight: 500;
	line-height: 1.23;
	margin-bottom: 10px;
}

h5 {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.1px;
	margin-bottom: 25px;
}

h6 {
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.5px;
}

ul,
ol {
	margin: 0;
	padding: 0 0 0 30px;
	margin-bottom: 14px;
}

.linkBtn {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	padding: 7px 20px 7px 7px;
	font-family: 'Uncut Sans', Arial, sans-serif;
	font-size: 20px;
	font-weight: 500;
	text-align: left;
	min-width: 135px;
	border: 0;
	line-height: 1;
	margin: 25px 0 37px 0;
	background: none;
	color: var(--primary-color);
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	     appearance: none;
	border-radius: 50px;
	-webkit-transition: color 0.3s;
	-o-transition: color 0.3s;
	transition: color 0.3s;
}

.linkBtn:before {
	content: "";
	display: inline-block;
	width: 34px;
	height: 34px;
	margin-right: 20px;
	background: #05F url(../images/arrow-right.svg) no-repeat center;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	border-radius: 50px;
	background-size: 16px;
}

.linkBtn.alt {
	padding-left: 20px;
	padding-right: 7px;
}

.linkBtn.alt:before {
	margin-left: 20px;
	margin-right: 0;
	-webkit-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg);
}

.linkBtn.alt span {
	-webkit-box-ordinal-group: 0;
	    -ms-flex-order: -1;
	        order: -1;
}

.linkBtn:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	border: 1px solid currentColor;
	border-radius: 50px;
	-webkit-transition: border-color 0.3s;
	-o-transition: border-color 0.3s;
	transition: border-color 0.3s;
}

.linkBtn:hover {
	color: currentColor;
}

.linkBtn:hover:before {
	-webkit-animation: arrowAnim 0.8s cubic-bezier(0.0,0.0,0.36,1);
	        animation: arrowAnim 0.8s cubic-bezier(0.0,0.0,0.36,1);
}


.linkBtn.alt:hover:before {
	-webkit-animation: arrowAnimAlt 0.8s cubic-bezier(0.0,0.0,0.36,1);
	        animation: arrowAnimAlt 0.8s cubic-bezier(0.0,0.0,0.36,1);
}

.linkBtn:hover span {
	-webkit-animation: textAnim 0.6s cubic-bezier(0.0,0.0,0.36,1);
	        animation: textAnim 0.6s cubic-bezier(0.0,0.0,0.36,1);
}

.linkBtn:hover span {
	-webkit-animation: textAnimAlt 0.6s cubic-bezier(0.0,0.0,0.36,1);
	        animation: textAnimAlt 0.6s cubic-bezier(0.0,0.0,0.36,1);
}

.linkBtn:hover:after {
	-webkit-animation: borderAnim 1.1s cubic-bezier(0.0,0.0,0.36,1);
	        animation: borderAnim 1.1s cubic-bezier(0.0,0.0,0.36,1);
}
@-webkit-keyframes arrowAnim{
	50% {
		-webkit-transform: translateX(9px);
		        transform: translateX(9px)
	}
}

@keyframes arrowAnim{
	50% {
		-webkit-transform: translateX(9px);
		        transform: translateX(9px)
	}
}

@-webkit-keyframes textAnim {
	50% {
		-webkit-transform: translateX(-6px);
		        transform: translateX(-6px);
		opacity: 0.8;
	}
}

@keyframes textAnim {
	50% {
		-webkit-transform: translateX(-6px);
		        transform: translateX(-6px);
		opacity: 0.8;
	}
}

@-webkit-keyframes arrowAnimAlt {
    50% {
        -webkit-transform: rotate(180deg) translateX(9px);
                transform: rotate(180deg) translateX(9px); 
    }
}

@keyframes arrowAnimAlt {
    50% {
        -webkit-transform: rotate(180deg) translateX(9px);
                transform: rotate(180deg) translateX(9px); 
    }
}

@-webkit-keyframes textAnimAlt {
	50% {
		-webkit-transform: translateX(6px);
		        transform: translateX(6px);
		opacity: 0.8;
	}
}

@keyframes textAnimAlt {
	50% {
		-webkit-transform: translateX(6px);
		        transform: translateX(6px);
		opacity: 0.8;
	}
}

@-webkit-keyframes borderAnim {
	30% {
		-webkit-transform: scale(0.97);
		        transform: scale(0.97);
	}
}

@keyframes borderAnim {
	30% {
		-webkit-transform: scale(0.97);
		        transform: scale(0.97);
	}
}

a {
	outline: none;
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: inherit;
}

img {
	border: 0;
	max-width: 100%;
}

.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;
}

strong {
	font-weight: 600;
}

::-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 */

/* Larger Screens */

@media only screen and (max-width : 1585px) {
	.section {
		max-width: 1400px;
	}

	.formSection .fields .field {
		margin-bottom: 30px;
	}

	.formSection .fields .field .textbox {
		font-size: 25px;
		height: 43px;
	}

	.formSection .fields .field textarea.textbox {
		height: 189px;
	}
}

@media only screen and (max-width : 1450px) {
	.section,
	#footer .section {
		max-width: 1200px;
	}	

	#intro .image {
		margin-right: 20px;
	}

	.testimonialsSlider .swiper-slide {
		width: 420px;
	}

	.stepsAccordion .header,
	.stepsAccordion .desc .inner {
		padding-left: 100px;
	}

	.stepsAccordion .header .rightText {
		max-width: 830px;
	}
}

/* Tablet Screens (Landscape) */

@media only screen and (max-width : 1260px) {
	.section,
	#footer .section {
		max-width: 970px;
	}	

	:root {
		--section-margin: 180px;
	}

	#mainWrapper {
		padding-top: 180px;
	}

	#header .popupForm .section .inner {
		width: 573px;
	}
	
	#intro .image {
		margin-right: 0;
	}

	#intro .title {
		font-size: 136px;
	}

	#intro .info {
		margin-left: 90px;
	}

	.bigImage {
		margin: 60px 0;
	}

	.testimonialsSlider .swiper-slide {
		width: 330px;
		padding-left: 20px;
		padding-right: 20px;
		padding-bottom: 24px;
	}

	.testimonialsSlider .swiper-slide:before {
		left: 13px;
	}

	.longSlider .swiper-slide img {
		height: 270px;
	}

	.twoCols .right {
		width: 453px;
	}

	.formSection {
		width: 940px;
		padding: 35px;
	}

	.formSection .left, .formSection .right {
		width: 420px;
	}

	#contact .contactInfo {
		width: 940px;
	}

	.stepsAccordion .header .rightText {
		max-width: 627px;
	}

	.stepsAccordion .header, .stepsAccordion .desc .inner {
		padding-left: 90px;
	}

	.linkBtn {
		margin-top: 20px;
	}
	
}

/* Tablet Screens (Portrait) */

@media only screen and (max-width : 991px) {
	.section,
	.section.narrow,
	#footer .section {
		max-width: 750px;
		padding-left: 15px;
		padding-right: 15px;
	}

	:root {
		--section-margin: 140px;
	}
	
	#header>.section {
		padding-right: 225px;
		-webkit-box-pack: end;
		    -ms-flex-pack: end;
		        justify-content: flex-end;
	}

	#header #navigation ul li {
		padding-left: 4px;
		padding-right: 4px;
	}

	#header #navigation ul li a {
		padding-left: 14px;
		padding-right: 14px;
	}

	#header .popupForm .section {
		padding-right: 0;
	}

	#intro .image {
		width: 160px;
	}

	#intro .title {
		font-size: 103px;
		margin-bottom: 34px;
	}

	#intro .info {
		margin-left: 96px;
		max-width: 410px;
	}

	.horiScroll ul {
		--width: 50%;
		--gap: 10px;
	}

	.awards li {
		margin-left: 15px;
		margin-right: 15px;
	}

	.awards li img {
		height: 90px;
	}

	.testimonialsSlider .swiper-slide {
		width: 300px;
	}

	.longSlider .swiper-slide img {
		height: 220px;
	}

	.imageText .slider {
		width: 332px;
	}

	.imageText .text {
		margin-left: 40px;
	}

	.twoCols {
		--gap: 40px;
	}

	.twoCols .right {
		width: 348px;
		margin-left: var(--gap);
	}
	
	.twoCols.alt .right {
		margin-right: var(--gap);
	}

	.portfolioImage {
		margin-bottom: 90px;
	}

	.stepsAccordion .twoCols .right {
		width: 270px;
	}

	.stepsAccordion .header,
	.stepsAccordion .step:last-child .inner {
		padding-left: 87px;
	}

	.stepsAccordion .header .rightText {
		max-width: 412px;
	}

	.formSection .left, .formSection .right {
		width: 311px;
	}

	#contact .contactInfo {
		margin-top: 60px;
	}

	#contact .contactInfo .listing li {
		font-size: 40px;
	}

	#contact .contactInfo .listing li span {
		top: 11px;
	}

	.testimonialsSlider .swiper-slide {
		-webkit-transform: scale(0.9);
		    -ms-transform: scale(0.9);
		        transform: scale(0.9);
	}

	.testimonialsSlider .swiper-slide.swiper-slide-active {
		-webkit-transform: scale(1);
		    -ms-transform: scale(1);
		        transform: scale(1);
	}

	.formSection {
		width: 724px;
	}

	#footer .section {
		padding-top: 80px;
		padding-bottom: 80px;
	}

	h1 {
		font-size: 53px;
		margin-bottom: 70px;
	}

	h2 {
		font-size: 40px;
	}

	h3 {
		font-size: 28px;
	}
	
}

/* Mobile Screens */

@media only screen and (max-width : 767px) {
	.section,
	#footer .section {
		padding-left: 15px;
		padding-right: 15px;
	}

	:root {
		--section-margin: 80px;
	}
	
	#mainWrapper {
		padding-top: 244px;
		text-align: center;
	}

	#header {
		position: absolute;
	}

	#header .section {
		display: block;
		height: auto;
		padding: 20px 0;
	}

	#header .menuBtn {
		display: block;
		pointer-events: auto;
	}

	#header #navigation {
		display: none;
	}

	#header.nav-up {
		-webkit-transform: none;
		    -ms-transform: none;
		        transform: none;
	}

	#header .logo {
		position: static;
		display: block;
		margin: 0 auto 15px;
		width: 110px;
		-webkit-transform: none;
		    -ms-transform: none;
		        transform: none;
		top: 0;
	}

	#header .startProject {
		position: relative;
		margin: 0 auto;
		-webkit-transform: none;
		    -ms-transform: none;
		        transform: none;
		top: 0;
	}

	#header .popupForm {
		top: 0 !important;
		right: 0;
	}

	#header .popupForm .section {
		padding: 0;
		text-align: left;
	}

	#header .popupForm .section .inner {
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
	}

	#header .popupForm .section .inner .form {
		margin: 15px;
	}

	#header .popupForm .closeBtn {
		right: 19px;
		top: 17px;
	}

	#intro .section {
		display: block;
	}

	#intro .info {
		margin: 0;
		max-width: 100%;
	}

	#intro .title {
		font-size: 64px;
	}

	#intro .image {
		display: block;
		width: 110px;
		margin: 40px auto 0;
	}

	
	.portfolioWebsite {
		margin-top: 30px;
		margin-bottom: 30px;
	}

	.portfolioImages {
		display: block;
	}

	.portfolioImages .item {
		width: 100%;
	}

	.portfolioImage {
		margin-bottom: 55px;
	}

	.pager {
		-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;
	}

	.horiScroll ul {
		--width: 100%;
		--gap: 10px;
	}

	#works .title {
		display: block;
	}

	#works .title .linkBtn {
		margin: 20px 0 0;
	}

	.testimonialsSlider .swiper-slide {
		width: 95%;
		padding-top: 76px;
	}

	.testimonialsSlider .swiper-slide:before {
		left: 0;
		right: 0;
		font-size: 125px;
	}

	.testimonialsSlider .swiper-slide.swiper-slide-active {
		-webkit-transform: none;
		    -ms-transform: none;
		        transform: none;
	}

	.awards li {
		margin-top: 25px;
		margin-bottom: 25px;
	}

	.longSlider .swiper-slide img {
		height: 180px;
	}

	.twoCols {
		display: block;
	}

	.twoCols .left,
	.twoCols .right {
		width: 100%;
		margin: 0 0 30px;
	}

	.stepsAccordion .twoCols .right {
		width: 100%;
	}

	.bigImage {
		margin-top: 30px;
		margin-bottom: 30px;
	}

	.hoverImages ul li {
		--width: 100%;
	}

	.stepsAccordion .step {
		margin-top: -38px;
	}

	#contact .formSection {
		max-width: 100%;
	}

	#contact .contactInfo {
		max-width: 100%;
		width: 100%;
	}

	#getStarted .heading {
		font-size: 17px;
	}

	.formSection {
		display: block;
	}

	.awards {
		margin-top: -50px;
		margin-bottom: 15px;
	}

	#footer .section {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		padding-top: 60px;
		padding-bottom: 60px;
	}

	#getStarted {
		padding-top: 245px;
	}

	#getStarted .overlay {
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
		padding-top: 50px;
	}

	#getStarted .formWrapper {
		padding-left: 20px;
		padding-right: 20px;
	}
	.stepsAccordion .header,
	.stepsAccordion .desc .inner,
	.stepsAccordion .step:last-child .inner {
		display: block;
		padding-left: 20px;
		padding-right: 20px;
	}

	.stepsAccordion .header>h4 {
		position: static;
	}

	.stepsAccordion .header .rightText {
		max-width: 100%;
	}

	.stepsAccordion .header h1 {
		margin-bottom: 20px;
	}

	.stepsAccordion .step {
		margin-top: 0;
		margin-bottom: -20px;
	}

	.stepsAccordion .desc .inner {
		padding-bottom: 24px;
	}

	.formSection {
		padding: 25px;
	}

	.formSection .left, .formSection .right {
		width: 100%;
	}

	.formSection .fields .field .textbox {
		font-size: 20px;
	}

	.formSection .fields .field textarea.textbox {
		height: 94px;
	}

	#contact .contactInfo .listing {
		margin-bottom: 25px;
	}

	#contact .contactInfo .listing li {
		padding-left: 0;
		margin-bottom: 30px;
	}

	#contact .contactInfo .listing li:last-child {
		margin-bottom: 0;
	}

	#contact .contactInfo .listing li a:after {
		display: none;
	}

	#contact .contactInfo .listing li span {
		position: static;
		margin: 0 auto 5px;
	}

	.radioBtnGroup {
		text-align: left;
	}

	#footer .logo {
		display: block;
		margin: 0 auto 35px;
		width: 100px;
		-webkit-box-ordinal-group: 2;
		    -ms-flex-order: 1;
		        order: 1;
	}

	#footer .flinks {
		-webkit-box-ordinal-group: 3;
		    -ms-flex-order: 2;
		        order: 2;
		width: 100%;
		margin: 0 0 25px;
	}

	#footer .flinks ul li {
		margin-bottom: 10px;
	}

	#footer .contacts {
		-webkit-box-ordinal-group: 4;
		    -ms-flex-order: 3;
		        order: 3;
		margin: 0 0 35px;
		width: 100%;
		padding: 0;
	}

	#footer .info {
		-webkit-box-ordinal-group: 5;
		    -ms-flex-order: 4;
		        order: 4;
		width: 100%;
		margin: 0;
	}
		
	ul {
		list-style: none;
		padding-left: 0;
	}

	ul li {
		margin-top: 6px;
		margin-bottom: 6px;
	}

	h1 {
		font-size: 45px;
		margin-bottom: 40px;
	}

	h1>span {
		display: block;
		margin-right: 0;
		margin-bottom: 15px;
	}

	h1 .linkBtn {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		width: -webkit-max-content;
		width: -moz-max-content;
		width: max-content;
		margin: 20px auto 0;
	}

	h3 {
		font-size: 24px;
	}
}

@media only screen and (max-width : 479px) {

}
