/* ========================================================
   General
======================================================== */
/* Fonts */
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,700|Roboto+Condensed:300,700');

/* Common Styles */
body {
	margin: 0;
	padding: 0;
	font-family:'Roboto', Arial, sans-serif;
	font-size: 14px;
	font-weight: 300;
	color: #333;
	background: #fff;
	overflow-x: hidden;
}

/* Links */
a {
	color: #5b6770;
	transition: all 0.4s ease;
}
a:hover {
	color: #a30046;
	text-decoration: underline;
}

/* Media */
img {
	max-width: 100%;
	width: auto\9;
	height: auto;
}
embed,
iframe,
object,
video {
	max-width: 100%;
	vertical-align: middle;
}

/* Strong */
b, strong {
	font-weight: 700;
}

/* Typography */
h1 {
	font-size: 28px;
	margin-top: 0;
	font-weight: 700;
	text-transform: uppercase;
}
h2 {
	font-size: 26px;
	font-weight: 700;
}
h4 {
	font-weight: 700;
}
p {
	margin-bottom: 15px;
}

/* Preloader */
.preloader {
    background: #fff;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
}
.status-mes {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -40px 0 0 -40px;
    font-size: 10px;
    text-indent: -12345px;
    border-top: 4px solid rgba(0, 0, 0, 0.07);
    border-right: 4px solid rgba(0, 0, 0, 0.07);
    border-bottom: 4px solid rgba(0, 0, 0, 0.07);
    border-left: 4px solid #039568;
    border-radius: 50%;
    -webkit-animation: spinner 800ms infinite linear;
    animation: spinner 800ms infinite linear;
    z-index: 10000;
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* ========================================================
   Buttons
======================================================== */
.btn-red {
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 17px;
	font-weight: 700;
	border: 0;
	border-radius: 0;
	text-transform: uppercase;
	color: #fff;
	padding: 8px 25px;
	letter-spacing: 0.5px;
	transition: all 0.4s ease;
}
.btn-red {
	background: #039568;
	color: #fff;
}
.btn-red:hover,
.btn-red:focus {
	background-color: #333;
	color: #fff;
}
.btn-m-btm {
	margin-bottom: 20px;
}

/* ========================================================
   Form
======================================================== */
input:-webkit-autofill, 
textarea:-webkit-autofill, 
select:-webkit-autofill {
	background:#fff;
}

/* Radio/Checkbox */
.checkbox, .radio {
	margin-top: 0;
	margin-bottom: 15px;
}
.control {
	display: block;
	position: relative;
	padding-left: 28px !important;
	text-align: left;
	color: #666;
	cursor: pointer;
}
.control input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.control__indicator {
	position: absolute;
	top: 4px;
	left: 0;
	height: 20px;
	width: 20px;
	border: 2px solid #ccc;
	background: #e6e6e6;
}
.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
	background: #e6e6e6;
}
.control input:checked ~ .control__indicator {
	background: #fff;
}
.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
	background: #fff;
}
.control input:disabled ~ .control__indicator {
	background: #e6e6e6;
	opacity: 0.6;
	pointer-events: none;
}
.control__indicator:after {
	content: '';
	position: absolute;
	display: none;
}
.control input:checked ~ .control__indicator:after {
	display: block;
}
.control--checkbox .control__indicator:after {
	left: 2px;
	top: 2px;
	width: 12px;
	height: 12px;
	/*border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);*/
	background: #039568;
}
.control--checkbox input:disabled ~ .control__indicator:after {
  	border-color: #7b7b7b;
}

/* Radio */
.control--radio .control__indicator {
	border-radius: 50%;
}
.control--radio .control__indicator:after {
	left: 4px;
	top: 1px;
	width: 6px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}
.control--radio input:disabled ~ .control__indicator:after {
	background: #7b7b7b;
}

.checkbox label.error {
	padding-left: 0 !important;
}

/* Form Fields */
.formwrapper .form-control {
    background: #e6e6e6;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    height: 46px;
}
.formwrapper label.error {
    width: 100%;
    color: red;
    font-size: 13px;
    font-weight: normal;
    margin: 0;
}
.formwrapper .control a {
	color: #0066ff;
}
.formwrapper .btn-submit {
	font-family: 'Roboto Condensed', Arial, sans-serif;
	font-size: 28px;
	font-weight: 700;
	background: #039568;
	color: #fff;
	padding: 2px 12px;
	width: calc(100% - 20px);
	text-transform: uppercase;
	letter-spacing: 2px;
	border-radius: 14px;
}
.formwrapper .btn-submit:hover {
	background: #333;
	border-color: #333;
}
.formwrapper .btn:disabled {
	background: #e1e3e4;
	border-color: #e1e3e4;
}

/* ========================================================
   Header
======================================================== */
.header .container {
	position: relative;
}
.header .logo {
	padding: 20px 0 15px;
}
.header .logo img {
	height: 55px;
}

.header .caption {
	background: url(../images/header-bg.jpg) no-repeat center top;
	background-size: cover;
}
.header .caption h1 {
	font-family: 'Roboto Condensed', Arial, sans-serif;
	font-size: 55px;
	font-weight: 300;
	line-height: 1.2;
	color: #fff;
	width: 482px;
	margin: 40px 0;
	letter-spacing: 1px;
}

.layer.parallax {
    position: absolute;
    top: 0;
    right: 0;
    width: 560px;
    height: 590px;
    margin-top: -90px;
}
#layer-0 {
    background: url(../images/shape1.png) no-repeat left -50px;
    background-size: contain;
    opacity: 0.8;
    z-index: 20;
}
#layer-1 {
    background: url(../images/main-img.png) no-repeat 38px -3px;
    background-size: 86%;
    z-index: 19;
}
#layer-2 {
    background: url(../images/shape2.png) no-repeat 0 bottom;
    background-size: cover;
    right: -272px;
    width: 700px;
    margin-top: -96px;
    z-index: 20;
}
#layer-3 {
    background: url(../images/shape3.png) no-repeat 0 bottom;
    background-size: contain;
    z-index: 20;
    width: 477px;
    right: -145px;
    margin-top: 175px;
}
#layer-4 {
    background: url(../images/shape4.png) no-repeat 0 bottom;
    background-size: contain;
    z-index: 22;
    width: 482px;
    right: -170px;
    margin-top: 257px;
}
#layer-5 {
    background: url(../images/shape5.png) no-repeat 0 bottom;
    background-size: contain;
    width: 483px;
    right: -140px;
    margin-top: -205px;
    z-index: 20;
}
#layer-6 {
    background: url(../images/shape6.png) no-repeat 0 bottom;
    background-size: contain;
    width: 470px;
    right: 42px;
    margin-top: -540px;
    z-index: 20;
}
#layer-7 {
    background: url(../images/shape7.png) no-repeat 0 center;
    background-size: contain;
    width: 500px;
    right: -40%;
    margin-top: -252px;
    z-index: 20;
}

/* ========================================================
   Content Area / Sections
======================================================== */
/* Titles */
.title {
	font-size: 26px;
	font-weight: 300;
	line-height: 1.3;
	margin-top: 0;
	color: #333;
}

/* Flex */
.row-flex {
	display: flex;
	flex-wrap: wrap;
}
.row-flex [class*="col-"] {
  margin-bottom: 30px;
}
.align-item-center {
	align-items: center;
}

/* Contact Area A */
.content-area-a {
	padding: 30px 0 20px;
}
.content-area-a .block {
	width: 56%;
}
.content-area-a p {
	font-size: 17px;
	line-height: 1.6;
}

/* Contact Area B */
.content-area-b {
	position: relative;
	background: rgba(235,235,235,0.9);
	padding: 30px 0 15px;
	z-index: 999;
}
.content-area-b h2.title {
	font-family: 'Roboto Condensed', Arial, sans-serif;
	font-weight: 300;
	color: #6a747c;
	margin-bottom: 30px;
	text-align: center;
	text-transform: uppercase;
}
.content-area-b h2.title strong {
	font-weight: 700;
}
.content-area-b .list {
	margin-bottom: 25px;
}
.content-area-b .list p {
	font-size: 16px;
	line-height: 26px;
	color: #000;
}
.content-area-b .list p span {
	display: block;
	font-weight: 700;
}
.content-area-b .list a.btn {
	width: 285px;
	padding: 8px 15px;
}

/* Contact Area C */
.content-area-c .infographic {
	background: #798289;
	padding: 40px 0;
}
.content-area-c .infographic .block {
	background: #fff;
	padding: 0 20px;
}
.content-area-c .infographic .block img {
	margin-top: -20px;
}
.content-area-c .infographic .block h3 {
	line-height: 1.3;
	font-weight: 700;
	color: #6a747c;
	margin: 22px 0 16px;
}
.content-area-c .infographic .block h4 {
	font-weight: 700;
	line-height: 1.3;
	color: #498373;
	margin-bottom: 20px;
}
.content-area-c .infographic .block a.btn {
	margin-bottom: 30px;
}
.content-area-c .audit {
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
    background-position: top center;
	text-align: center;
	padding: 300px 0 40px;
}
.content-area-c .audit h2 {
	font-family: 'Roboto Condensed', Arial, sans-serif;
	font-size: 40px;
	font-weight: 300;
	color: #fff;
	margin-bottom: 20px;
	text-transform: uppercase;
}
.content-area-c .audit p {
	font-size: 18px;
	font-weight: 400;
	color: #fff;
}

/* Contact Area D */
.content-area-d {
	padding: 40px 0;
}
.content-area-d .block {
	margin-bottom: 50px;
}
.content-area-d .block>h3 {
	font-size: 20px;
	font-weight: 700;
	color: #039568;
	text-align: center;
	margin: 0 0 15px 0;
	text-transform: uppercase;
}
.content-area-d .block .img {
	text-align: center;
	margin-bottom: 15px;
}
.content-area-d .block>p {
	line-height: 24px;
	margin-bottom: 10px;
}
.content-area-d .block>a {
	font-weight: 700;
	color: #039568;
}
.content-area-d .block>a:after {
	content: '\f105';
	font-family: FontAwesome;
	margin-left: 10px;
	transition: all 0.5s;
}
.content-area-d .block>a:hover {
	color: #333;
	text-decoration: none;
}
.content-area-d .block>a:hover:after {
	margin-left: 6px;
}

/* Contact Area E */
#content-area-e {
    position: relative;
}
.content-area-e {
	height: 254px;
	background-size: cover;
	background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
}
.content-area-e .overlay {
	height: 254px;
	background-size: cover;
	background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
}

/* Modal */
.skin1 .modal-content {
	border: 4px solid #039568;
	border-radius: 0;
}
.skin1 .modal-header,
.skin1 .modal-footer {
	border: 0;
}
.skin1 .modal-header {
	padding: 20px 20px 5px;
}
.skin1 .modal-body {
	padding: 15px 20px 0;
}
.skin1 .modal-footer {
	padding-top: 0;
	padding-bottom: 10px;
}
.skin1 .modal-footer button.close {
	font-size: 30px;
	opacity: 1;
}
.skin1 h4.modal-title {
	font-family: 'Roboto Condensed', Arial, sans-serif;
	font-weight: 300;
	font-size: 28px;
	line-height: 1.2;
	color: #039568;
	text-align: center;
	text-transform: uppercase;
}

/* ========================================================
   Footer
======================================================== */
.footer .ft-top {
	background: #333;
	padding: 20px 0;
}
.footer img.ft-logo {
	height: 60px;
}
.footer .social-links {
	text-align: right;
	margin-top: 12px;
}
.footer .social-links a {
	color: #fff;
	font-size: 26px;
	margin-left: 18px;
}
.footer .social-links a:hover {
	color: #dedede;
	text-decoration: none;
}

.footer .ft-bottom {
	padding: 20px 0 10px;
	color: #5b6770;
}
.footer p {
	font-size: 13px;
}
.footer p.copyright {
	text-transform: uppercase;
}
.footer p.copyright a {
	display: inline-block;
	margin-left: 20px;
}

/* ========================================================
   Media Queries
======================================================== */
@media (min-width: 1200px) {
	.wrapper {
		padding: 0 65px;
	}

	/* Contact Area A */
	.content-area-a h2.title {
		padding: 0 100px;
	}

	/* Contact Area C */
	.content-area-c .infographic .block {
		padding: 0 100px;
	}
}

@media (min-width: 992px) {
	/* Titles */
	.title {
		font-size: 36px;
		line-height: 1.2;
	}

	/* Contact Area A */
	.content-area-a p {
		font-size: 20px;
	}

	/* Contact Area B */
	.content-area-b {
		padding: 45px 0 30px;
	}
	.content-area-b h2.title {
		font-size: 38px;
	}
	.content-area-b .list p {
		font-size: 18px;
		line-height: 28px;
	}

	/* Contact Area C */
	.content-area-c .infographic {
		padding: 60px 0;
	}
	.content-area-c .audit h2 {
		font-size: 60px;
	}
	.content-area-c .audit p {
		font-size: 20px;
		margin: 0 10px;
	}

	/* Contact Area D */
	.content-area-d {
		padding: 55px 0;
	}
	.content-area-d .block {
		padding: 0 10px;
	}
}

@media (min-width: 768px) {
	/* Form */
	.modal-dialog {
    	width: 700px;
	}
	.formwrapper .row {
    	margin: 0;
	}
	.formwrapper .col-sm-6,
	.formwrapper .col-sm-12 {
    	padding: 0 8px;
	}
}

@media (max-width:1200px) {
	/* Header */
	.header .caption h1 {
		font-size: 48px;
		width: 425px;
	}

	.layer.parallax {
		width: 540px;
		height: 462px;
	}
	#layer-0 {
		background-size: 90%;
	}
	#layer-1 {
		background-position: 32px -10px;
		background-size: 77.5%;
	}
	#layer-2 {
		background-position: 0 bottom;
		height: 540px;
		right: -270px;
	}
	#layer-3 {
		width: 400px;
    	margin-top: 170px;
    	right: -60px;
	}
	#layer-4 {
		width: 417px;
		margin-top: 254px;
    	right: -88px;
	}
	#layer-5 {
		width: 420px;
		margin-top: -146px;
		right: -64px;
	}
	#layer-6 {
		width: 420px;
		margin-top: -434px;
		right: 90px;
	}
	#layer-7 {
		margin-top: -205px;
	}

	/* Contact Area C */
	.content-area-c .infographic .block {
		padding: 0 40px;
	}
	.content-area-c .infographic .block h3 {
		font-size: 20px;
		margin: 20px 0;
	}
	.content-area-c .infographic .block h4 {
		margin-bottom: 15px;
	}
}

@media (max-width:992px) {
	/* Header */
	.header .caption h1 {
    	font-size: 34px;
    	width: 340px;
    	margin: 30px 0;
	}
	.layer.parallax {
	    width: 430px;
    	height: 360px;
	}
	#layer-1 {
    	background-position: 26px -18px;
	}
	#layer-2 {
    	width: 518px;
	    right: -174px;
	    margin-top: -229px;
	}
	#layer-3 {
		width: 310px;
		right: -40px;
		margin-top: 110px;
	}
	#layer-4 {
		width: 328px;
	    margin-top: 178px;
	    right: -65px;
	}
	#layer-5 {
    	width: 335px;
	    margin-top: -137px;
	    right: -52px;
	}
	#layer-6 {
    	margin-top: -360px;
    	right: -10px;
	}
	#layer-7 {
		margin-top: -184px;
	    right: -54%;
	}

	/* Contact Area C */
	.content-area-c .infographic .block img {
		margin-top: 25px;
	}
	.content-area-c .audit {
		padding-top: 240px;
	}

	/* Contact Area D */
	.content-area-d .block>h3 {
		font-size: 18px;
	}
}

@media (max-width:768px) {
	/* Header */
	.header-mob {
		position: absolute;
		right: 0;
		top: -94px;
	    background: url(../images/header-mob-img.png) no-repeat 25px 0;
	    background-size: cover;
	    width: 350px;
	    height: 500px;
	}
	.headerimg {
    	display: none;
	}
	.header .caption h1 {
		font-size: 28px;
		width: 270px;
	}

	/* Contact Area A */
	.content-area-a .block {
		width: 64%;
	}
	
	/* Contact Area C */
	.content-area-c .infographic .block h3 {
		font-size: 20px;
		line-height: 1.3;
	}
	.content-area-c .audit {
		padding-top: 200px;
	}
}

@media (max-width:600px) {
	/* Header */
	.header-mob {
		width: 300px;
		height: 430px;
		background-position: 80px 0;
	}
	.content-area-a p {
		font-size: 16px;
	}

	/* Contact Area A */
	.content-area-a .block {
    	width: 72%;
	}

	.content-area-c .infographic .block {
    	padding: 0 20px;
	}
}

@media (max-width:480px) {
	/* Header */
	.header-mob {
		background-position: 90px 0;
	}
	.header .caption h1 {
		font-size: 24px;
		width: 220px;
	}

	/* Contact Area E */
	.content-area-e {
		height: 200px;
	}
}

@media (max-width:400px) {
	/* Footer */
	.footer img.ft-logo {
		height: 50px;
	}
	.footer .social-links a {
		font-size: 20px;
		margin-left: 12px;
	}
}