﻿@charset "UTF-8";

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/subset-Poppins-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/subset-Poppins-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/subset-Poppins-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/subset-Poppins-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/subset-Poppins-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

:root {
	--bottom-gap: 100px;
}

html {
    -webkit-text-size-adjust: none;
}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body, div {
  margin: 0;
  padding: 0;
}

body {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: normal;
	text-align: center;
	color: #000;
	line-height: 1.5;
	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: 1340px;
	margin: 0 auto;
}

/* Header */

#header {
	border-bottom: 1px solid #8EAD73;
}

#header .section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 185px;
	padding: 25px 0;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

#header .logo {
	display: block;
	width: 286px;
	margin-top: 15px;
}

#header .logo img {
	display: block;
	width: 100%;
}

#header #navigation {
	margin-left: auto;
	margin-bottom: 25px;
	-ms-flex-item-align: end;
	    align-self: flex-end;
}

#header #navigation ul {
	margin: 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

#header #navigation ul li {
	position: relative;
	margin: 0 0 0 27px;
	padding: 0;
	list-style: none;
	font-size: 18px;
	font-weight: 500;
}

#header #navigation ul li a {
	display: inline-block;
}

#header #navigation ul li:before {
	background-color: #E94F2A;
	bottom: -.2em;
	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;
}

/* Banner */

#banner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-height: 658px;
	margin-bottom: var(--bottom-gap);
}

#banner.forSub {
	min-height: 400px;
}

#banner .text,
#banner .image {
	position: relative;
	width: 50%;
	z-index: 1;
}

#banner .text:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: -o-linear-gradient(348deg, #E94F2A 0%, #DE4B28 100%);
	background: linear-gradient(102deg, #E94F2A 0%, #DE4B28 100%);
	z-index: -1;
}

#banner .text {
	padding-top: 80px;
	padding-bottom: 80px;
}

#banner .text * {
	color: #fff;
}

#banner .text .inner {
	max-width: 670px;
	margin-left: auto;
	padding-right: 100px;
}

#banner .text .inner>:last-child {
	margin-bottom: 0;
}

#banner .image img {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: right center;
	   object-position: right center;
}

/* Content Style 01 */

.contentStyle01 {
	margin-bottom: var(--bottom-gap);
}

.contentStyle01 .section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

.contentStyle01 .text {
	position: relative;
	width: 440px;
	margin-top: 100px;
	padding: 110px 0;
	z-index: 1;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	z-index: 1;
}

.contentStyle01 .text:before {
	content: "";
	position: absolute;
	left: -52px;
	right: -100px;
	top: 0;
	bottom: 0;
	background: #FDE9D0;
	z-index: -1;
}

.contentStyle01 .text:after {
	content: "";
	position: absolute;
	right: -70px;
	bottom: 20px;
	width: 125px;
	height: 131px;
	background: url(../images/brandmark.svg) no-repeat;
	background-size: 100%;
	z-index: -1;
}

.contentStyle01 .text>:last-child {
	margin-bottom: 0;
}

.contentStyle01 .image {
	position: relative;
	width: 100%;
	height: 700px;
}

.contentStyle01 .image .inner {
	position: absolute;
	left: 0;
	right: -47px;
	top: 0;
	bottom: 0;
}

.contentStyle01 .image img {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}

.contentStyle01.alt .image {
	-webkit-box-ordinal-group: 0;
	    -ms-flex-order: -1;
	        order: -1;
}

.contentStyle01.alt .image .inner {
	right: 0;
	left: -47px;
}

.contentStyle01.alt .text {
	right: 52px;
}

/* Content Style 02 */

.contentStyle02 {
	margin-bottom: var(--bottom-gap);
}

.contentStyle02 .stats {
	--gap: 35px;
	margin: 0 calc(var(--gap) * -1);
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.contentStyle02 .stats li {
	margin: 0;
	padding: 0 var(--gap);
	list-style: none;
	border-right: 2px solid #8EAD73;
}

.contentStyle02 .stats li h2 {
	margin-bottom: 0;
}

.contentStyle02 .stats li:last-child {
	border-right: 0;
}

.contentStyle02 .stats li>:last-child {
	margin-bottom: 0;
}

/* Content Style 03 */

.contentStyle03 {
	background: #FDE9D0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: var(--bottom-gap);
}

.contentStyle03 .image,
.contentStyle03 .text {
	position: relative;
	width: 50%;
}

.contentStyle03 .text {
	padding-top: var(--bottom-gap);
	padding-bottom: var(--bottom-gap);
}

.contentStyle03 .text>:last-child {
	margin-bottom: 0;
}

.contentStyle03 .text h2 {
	margin-bottom: 0;
}

.contentStyle03 .image .inner {
	position: absolute;
	left: 0;
	right: 185px;
	top: 0;
	bottom: 0;
}

.contentStyle03 .image .inner img {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: left top;
	   object-position: left top;
}

.contentStyle03 .text .inner {
	margin-left: -34px;
	width: 703px;
}

/* Content Style 04 */

.contentStyle04 {
	margin-bottom: var(--bottom-gap);
}

.contentStyle04 .section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

.contentStyle04 .section>:last-child {
	margin-bottom: 0;
}

.contentStyle04 .text>:last-child {
	margin-bottom: 0;
}

.contentStyle04 .image {
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	width: 225px;
	margin-left: 100px;
	-webkit-filter: brightness(0) saturate(100%) invert(70%) sepia(18%) saturate(668%) hue-rotate(49deg) brightness(91%) contrast(84%);
	        filter: brightness(0) saturate(100%) invert(70%) sepia(18%) saturate(668%) hue-rotate(49deg) brightness(91%) contrast(84%);
}

.contentStyle04 .image img {
	display: block;
	width: 100%;
}

/* Content Style 05 */

.contentStyle05 {
	position: relative;
}

.contentStyle05 img {
	display: block;
	width: 100%;
}

.contentStyle05 .overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 20px;
}

.contentStyle05 .overlay .section {
	position: relative;
	height: 100%;
	padding-top: 40px;
}

.contentStyle05 h3 {
	display: inline-block;
	position: relative;
}

.contentStyle05 h3:after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	border-bottom: 2px solid #8EAD73;
	width: 9999em;
}

.contentStyle05 .info {
	position: absolute;
	right: 0;
	bottom: 0;
	max-width: 434px;
}

/* Content Style 06 */

.contentStyle06 {
	margin-bottom: var(--bottom-gap);
}

.contentStyle06 .section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.contentStyle06 .col {
	width: 47%;
}

/* Content Style 07 */

.contentStyle07 {
	margin-bottom: var(--bottom-gap);
}

/* Content Style 08 */

.contentStyle08 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-height: 777px;
	margin-bottom: var(--bottom-gap);
	background: #F9B655;
}

.contentStyle08 .text,
.contentStyle08 .image {
	position: relative;
	width: 50%;
}

.contentStyle08 .image img {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center top;
	   object-position: center top;
}

.contentStyle08 .text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 180px 0;
	z-index: 1;
}

.contentStyle08 .text:after {
	content: "";
	position: absolute;
	right: 30px;
	bottom: 30px;
	width: 125px;
	height: 131px;
	background: url(../images/brandmark.svg) no-repeat;
	background-size: 100%;
	-webkit-filter: brightness(0) invert(1);
	        filter: brightness(0) invert(1);
	z-index: -1;
}

.contentStyle08 .text * {
	color: #3A3A3A;
}

.contentStyle08 .text .inner {
	max-width: 670px;
	margin-left: auto;
	padding: 0 90px 0 60px;
}

.contentStyle08 .text .inner>:last-child {
	margin-bottom: 0;
}

.contentStyle08.redColored {
	background-color: #E94F2A;
}

.contentStyle08.redColored * {
	color: #fff;
}

/* Content Style 09 */

.contentStyle09 {
	margin-bottom: var(--bottom-gap);
}

.contentStyle09 h2 {
	text-align: center;
}

.contentStyle09 .cols {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	--gap: 40px;
	margin: 40px calc(var(--gap) * -1) 0;
}

.contentStyle09 .cols .col {
	width: 33.33333333333333%;
	padding: 0 var(--gap);
}

.contentStyle09 .cols .col>:last-child {
	margin-bottom: 0;
}

/* Content Style 10 */

.contentStyle10 {
	margin-bottom: var(--bottom-gap);
	color: #000;
}

.contentStyle10 * {
	color: #000;
}

.contentStyle10 .section {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding-bottom: 177px;
}

.contentStyle10 .section:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 125px;
	height: 131px;
	background: url(../images/brandmark.svg) no-repeat;
	background-size: 100%;
	z-index: -1;
}

.contentStyle10 .col {
	width: 47%;
}

.contentStyle10 .col>:last-child {
	margin-bottom: 0;
}

/* Content Style 11 */

.contentStyle11 {
	margin-bottom: var(--bottom-gap);
}

.contentStyle11 .items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	--gap: 40px;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin: 0 calc(var(--gap) * -1) -50px;
}

.contentStyle11 .items .item {
	width: 33.33333333333333%;
	padding: 0 var(--gap);
	margin-bottom: 50px;
}

.contentStyle11 .items .item .image {
	margin-bottom: 15px;
}

.contentStyle11 .items .item .image img {
	display: block;
	width: 100%;
}

.contentStyle11 .items .item .text h2 {
	margin-bottom: 0;
}

.contentStyle11 .items .item .text h3 span {
	font-size: 26px;
	font-weight: 500;
	white-space: nowrap;
}

/* Content Style 12 */

.contentStyle12 {
	background: #FDE9D0;
	margin-bottom: var(--bottom-gap);
}

.contentStyle12 .coverImage {
	display: block;
	width: 100%;
}

.contentStyle12 .section {
	position: relative;
	padding-top: 140px;
	padding-bottom: 60px;
}

.contentStyle12 .section:before {
	content: "";
	position: absolute;
	right: 21px;
	top: -65px;
	width: 125px;
	height: 131px;
	background: url(../images/brandmark.svg) no-repeat;
	background-size: 100%;
	pointer-events: none;
}

.contentStyle12 .items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	--gap: 30px;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: 0 calc(var(--gap) * -1);
}

.contentStyle12 .items .item {
	width: 33.33333333333333%;
	padding: 0 var(--gap);
	margin-bottom: 15px;
}

.contentStyle12 .items .item img {
	display: block;
	height: 64px;
	margin-bottom: 23px;
}

/* Content Style 13 */

.contentStyle13 {
	margin-bottom: var(--bottom-gap);
}

.contentStyle13 .cols {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.contentStyle13 .cols .col {
	width: 47%;
}

.contentStyle13 .cols .col>:last-child {
	margin-bottom: 0;
}

/* Content Style14 */

.contentStyle14 {
	margin-bottom: var(--bottom-gap);
}

.contentStyle14 h2 {
	text-align: center;
}

.contentStyle14 .cols {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding-bottom: 35px;
}

.contentStyle14 .cols:after {
	content: "";
	position: absolute;
	width: 125px;
	right: 0;
	bottom: -50px;
	height: 131px;
	background: url(../images/brandmark.svg) no-repeat;
	background-size: 100%;
}

.contentStyle14 .cols h4 {
	color: #000;
}

.contentStyle14 .cols .col {
	width: 47%;
}

/* Content Style 15 */

.contentStyle15 .items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background: #FDE9D0;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	height: 700px;
}

.contentStyle15 .items .item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100px;
	overflow: hidden;
	-webkit-transition: all 1s;
	-o-transition: all 1s;
	transition: all 1s;
}

.contentStyle15 .items .item .title {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100px;
	background: #F9B655;
	cursor: pointer;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	-webkit-box-shadow: inset -5px 0px 4px 0px rgba(0, 0, 0, 0.25);
	        box-shadow: inset -5px 0px 4px 0px rgba(0, 0, 0, 0.25);
	white-space: nowrap;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	padding-bottom: 25px;
}

.contentStyle15 .items .item .title:after {
	content: "";
	position: absolute;
	bottom: 32px;
	left: 50%;
	width: 34px;
	height: 34px;
	margin-left: -17px;
	background: url(../images/accordion-arrow.svg) no-repeat;
	background-size: 100%;
	-webkit-transition: all 0.6s;
	-o-transition: all 0.6s;
	transition: all 0.6s;
}

.contentStyle15 .items .item.active .title:after {
	-webkit-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg);
}

.contentStyle15 .items .item .title h2 {
	color: #fff;
	-webkit-transform: rotate(-90deg);
	    -ms-transform: rotate(-90deg);
	        transform: rotate(-90deg);
	-webkit-transform-origin: left top;
	    -ms-transform-origin: left top;
	        transform-origin: left top;
	margin: 0 0 0 19px;
	text-transform: uppercase;
}

.contentStyle15 .items .item:nth-child(even) .title {
	background-color: #E94F2A;
}

.contentStyle15 .items .item .desc {
	width: 100%;
	height: 0;
	overflow: hidden;
	-webkit-transition: all 0.5s 0.8s;
	-o-transition: all 0.5s 0.8s;
	transition: all 0.5s 0.8s;
	opacity: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.contentStyle15 .items .item .desc .text {
	width: 59.40212150433944%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 0 44px;
}

.contentStyle15 .items .item .desc .text>:last-child {
	margin-bottom: 0;
}

.contentStyle15 .items .item .desc .image {
	position: relative;
	width: 40.50144648023144%;
	margin-left: auto;
}

.contentStyle15 .items .item .desc .image 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;
	   object-position: center;
}

.contentStyle15 .items .item.active {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}

.contentStyle15 .items .item.active .title {
	-webkit-box-shadow: 5px 0px 4px 0px rgba(0, 0, 0, 0.25);
	        box-shadow: 5px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

.contentStyle15 .items .item.active .desc {
	width: auto;
	height: auto;
	opacity: 1;
}


/* Image Slider */

.imageSlider {
	margin-top: 50px;
	margin-bottom: 20px;
}

.imageSlider .swiper-slide {
	width: 38.19444444444444%;
	overflow: hidden;
}

.imageSlider .swiper-slide img {
	display: block;
	width: 100%;
	-webkit-transition: -webkit-transform 1.5s;
	transition: -webkit-transform 1.5s;
	-o-transition: transform 1.5s;
	transition: transform 1.5s;
	transition: transform 1.5s, -webkit-transform 1.5s;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

.imageSlider .swiper-slide:hover img {
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}

.imageSlider .pagi {
	text-align: center;
	margin: 25px 0;
}

.imageSlider .pagi .swiper-pagination-bullet {
	width: 36px;
	height: 36px;
	margin-left: 6.5px;
	margin-right: 6.5px;
	background: #F9B655;
	outline: none;
	opacity: 1;
}

.imageSlider .pagi .swiper-pagination-bullet-active {
	background-color: #E94F2A;
}

/* Fit Image */

.fitImage {
	margin-bottom: var(--bottom-gap);
}

.fitImage img {
	display: block;
	width: 100%;
}

/* Project Bar */

#projectBar {
	background: -o-linear-gradient(348deg, #E94F2A 0%, #DE4B28 100%);
	background: linear-gradient(102deg, #E94F2A 0%, #DE4B28 100%);
}

#projectBar .section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-height: 263px;
	padding-top: 55px;
	padding-bottom: 55px;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

#projectBar * {
	color: #fff;
}

#projectBar h2 {
	margin: 0 20px 0 0;
}

#projectBar .linkBtn {
	margin: 27px 0 0 auto;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}

/* Contact */

#contact {
	background: #8ead73;
	overflow: hidden;
}

#contact .section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: var(--bottom-gap);
	padding-bottom: var(--bottom-gap);
}

#contact .text,
#contact .form {
	width: 50%;
}

#contact .text {
	position: relative;
	padding-right: 90px;
	padding-bottom: 340px;
	z-index: 1;
}

#contact .text:after {
	content: "";
	position: absolute;
	left: -230px;
	bottom: -300px;
	width: 587px;
	height: 623px;
	background: url(../images/brandmark.svg) no-repeat;
	background-size: 100%;
	-webkit-filter: brightness(0) invert(1);
	        filter: brightness(0) invert(1);
	opacity: 0.6;
	z-index: -1;
	pointer-events: none;
}

#contact .text * {
	color: #fff;
}

#contact .form .fields .field {
	margin-bottom: 30px;
}

#contact .form .fields .field .textbox {
	display: block;
	margin: 0;
	padding: 20px 22px;
	border: 0;
	width: 100%;
	height: 71px;
	font-family: 'Poppins', sans-serif;
	font-size: 26px;
	background: rgba(255, 255, 255, 0.50);
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	     appearance: none;
}

#contact .form .fields .field textarea.textbox {
	height: 210px;
	overflow: auto;
	resize: none;
}

#contact .form .submitBtn {
	margin-left: auto;
}

/* Arrow Links */

.arrowLinks {
	margin: 28px 0;
	padding: 0;
}

.arrowLinks li {
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
}
.arrowLinks li:before {
	content: "";
	position: absolute;
	left: -25px;
	right: -25px;
	bottom: -1px;
	height: 2px;
	background: #8EAD73;
}

.arrowLinks li:last-of-type:before {
	display: none;
}

.arrowLinks li h4 {
	margin: 0;
}
.arrowLinks li a {
	position: relative;
	display: block;
	padding: 28px 40px 28px 0;
	background: url(../images/link-btn-arrow.svg) no-repeat right center;
	background-size: 26px;
}

/* Accordion */

.accordion {
	margin-top: 28px;
	margin-bottom: 28px;
}

.accordion .title {
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none; 
}

.accordion .item {
	position: relative;
}

.accordion .item:before {
	content: "";
	position: absolute;
	left: -25px;
	right: -25px;
	bottom: -1px;
	height: 2px;
	background: #8EAD73;
}

.accordion .item:last-of-type:before {
	display: none;
}

.accordion .item .title {
	position: relative;
	cursor: pointer;
	padding: 28px 40px 28px 0;
}

.accordion .item .title:before {
	content: "";
	position: absolute;
	right: 0;
	top: 34px;
	width: 26px;
	height: 26px;
	background: url(../images/link-btn-arrow.svg) no-repeat;
	background-size: 100%;
	-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(-90deg);
	    -ms-transform: rotate(-90deg);
	        transform: rotate(-90deg);
}

.accordion .item .title h4 {
	position: relative;
	margin: 0;
	-webkit-filter: none;
	        filter: none;
}

.accordion .item .desc {
	display: none;
	padding-bottom: 32px;
}

.accordion .item .desc>:last-child {
	margin-bottom: 0;
}

.accordion .item.opened .desc {
	display: block;
}

/* Footer */

#footer {
	border-top: 4px solid #8EAD73;
}

#footer .top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 60px;
	padding-bottom: 60px;
}

#footer .top .info {
	width: 512px;
}

#footer .top .info>:last-child {
	margin-bottom: 0;
}

#footer .top .contact {
	width: 348px;
	margin-left: 100px;
}

#footer .top .contact>:last-child {
	margin-bottom: 0;
}

#footer .top .logo {
	margin-left: auto;
	width: 250px;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}

#footer .top .logo img {
	display: block;
	width: 100%;
}

#footer .bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	padding-top: 20px;
	padding-bottom: 28px;
	font-size: 14px;
}

#footer .bottom:before {
	content: "";
	position: absolute;
	left: -9999em;
	right: -9999em;
	top: 0;
	border-top: 1px solid #8EAD73;
}

#footer .bottom .copyright {
	margin: 0;
}

#footer .bottom .links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 0 0 auto;
	padding: 0;
}

#footer .bottom .links li {
	margin: 0 0 0 30px;
	padding: 0;
	list-style: none;
}

#footer .bottom .links li a {
	display: inline-block;
}

#footer .bottom .links li a:hover {
	text-decoration: underline;
}

.noBottomMargin {
	margin-bottom: 0 !important;
}

/* Hamburger */

.hamburger {
	display: none;
	position: absolute;
	right: 8px;
	top: 10px;
	overflow: visible;
	margin-top: 5px;
	margin-left: 5px;
	-webkit-transform: scale(0.8);
	    -ms-transform: scale(0.8);
	        transform: scale(0.8);
	-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;
	z-index: 2;
}

.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: #E94F2A;
}

.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: 36px;
	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: #E94F2A;
}

.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-navbar>* {
	background: #E94F2A;
}

.mm-listitem__text {
	padding-left: 10px;
	color: #E94F2A !important;
}

.mm-navbar__title>span {
	color: #fff;
}

.mm-panel {
	background: #fff;
	font-size: 20px;
	font-weight: 500;
}

.mm-listitem:after {
	border-color: none;
}

.mm-listitem.active {
	background: #ff8b5d;
}

.mm-listitem.active a {
	color: #fff !important;
}

/* Miscelleneous */

p {
	margin: 0 0 24px;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: 600;
	margin: 0 0 19px;
	line-height: 1.5;
	color: #E94F2A;
}

h2 {
	font-size: 42px;
	font-weight: 600;
	margin-bottom: 16px;
}

h3 {
	font-size: 32px;
	font-weight: 300;
	margin-bottom: 18px;
}

h4 {
	font-size: 26px;
	font-weight: 500;
	margin-bottom: 24px;
}

h5 {
	font-size: 21px;
	font-weight: normal;
	margin-bottom: 24px;
	color: #000;
}

a {
	outline: none;
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: inherit;
}

img {
	border: 0;
	max-width: 100%;
}

ul,
ol {
	padding: 0 0 0 25px;
	margin-bottom: 24px;
}

.linkBtn {
	position: relative;
	display: table;
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	font-weight: 500;
	margin: 1.555555555555556em 0;
	color: #E94F2A;
	border: 0;
	min-height: 26px;
	padding: 0 2.277777777777778em 0 0;
	background: url(../images/link-btn-arrow.svg) no-repeat right center;
	background-size: 1.444444444444444em;
	cursor: pointer;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	     appearance: none;
}

.linkBtn:hover {
	color: #E94F2A;
}

.linkBtn.linkBtnWhite {
	-webkit-filter: brightness(0) invert(1);
	        filter: brightness(0) invert(1);
}

.linkBtn.linkBtnBlack {
	-webkit-filter: brightness(0) saturate(100%) invert(15%) sepia(0%) saturate(4106%) hue-rotate(315deg) brightness(91%) contrast(75%);
	        filter: brightness(0) saturate(100%) invert(15%) sepia(0%) saturate(4106%) hue-rotate(315deg) brightness(91%) contrast(75%);
}

.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;
	}	

	#banner .text .inner {
		max-width: 615px;
		padding-right: 60px;
	}

	.contentStyle01.alt .image .inner {
		left: 0;
	}

	.contentStyle02 .stats {
		--gap: 18px;
	}

	.contentStyle03 .text .inner {
		margin-left: -100px;
		width: 680px;
	}

	.contentStyle08 .text .inner {
		max-width: 615px;
	}

	.contentStyle08 .text .inner {
		padding: 0 56px 0 39px
	}

	.contentStyle09 .cols {
		--gap: 25px;
	}

	.contentStyle11 .items {
		--gap: 15px;
	}

	.contentStyle12 .items {
		--gap: 25px;
	}

	#contact .text {
		padding-right: 40px;
	}
	
	#footer .top .contact {
		margin-left: 58px;
	}
	
}

/* Tablet Screens (Landscape) */

@media only screen and (max-width : 1260px) {
	:root {
		--bottom-gap: 80px;
	}

	.section {
		max-width: 970px;
	}	

	#header .section {
		height: 150px;
	}

	#header .logo {
		width: 245px;
		margin-top: 0;
	}

	#header #navigation {
		margin-bottom: 10px;
	}

	#banner {
		min-height: 530px;
	}

	#banner .text {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	#banner .text .inner {
		max-width: 485px;
		padding-right: 40px;
	}
	
	#banner.forSub {
		min-height: 300px;
	}
	
	.contentStyle01 .text {
		margin-top: 80px;
	}

	.contentStyle01 .image {
		height: 650px;
	}

	.contentStyle02 .stats {
		--gap: 42px;
	}

	.contentStyle03 .text .inner {
		margin-left: -120px;
		width: calc(100% + 60px);
	}

	.contentStyle04 .image {
		width: 180px;
		margin-left: 50px;
	}
		
	.contentStyle05 h3 {
		top: -10px;
	}

	.contentStyle05 .info {
		max-width: 392px;
	}

	.contentStyle06 .col {
		width: 48%;
	}

	.contentStyle08 {
		min-height: 640px;
	}

	.contentStyle08 .text .inner {
		max-width: 485px;
		padding-left: 0;
		padding-right: 30px;
	}

	.contentStyle09 .cols {
		--gap: 20px;
	}

	.contentStyle10 .col {
		width: 48%;
	}

	.contentStyle11 .items {
		--gap: 20px;
	}

	.contentStyle11 .items .item .text h3 span {
		font-size: 22px;
	}

	.contentStyle12 .section {
		padding-top: 100px;
		padding-bottom: 35px;
	}

	.contentStyle12 .items {
		--gap: 20px;
	}

	.contentStyle13 .cols .col {
		width: 48%;
	}

	.contentStyle14 .cols .col {
		width: 48%;
	}

	#projectBar .section {
		padding-top: 35px;
		padding-bottom: 35px;
		min-height: 220px;
	}

	#projectBar .linkBtn {
		margin-top: 18px;
	}

	#contact .form .fields .field .textbox {
		font-size: 22px;
	}

	.contentStyle15 .items .item .desc .text {
		padding-left: 30px;
		padding-right: 30px;
	}

	.contentStyle15 .items .item,
	.contentStyle15 .items .item .title {
		width: 70px;
	}

	.contentStyle15 .items .item .title h2 {
		margin-left: 9px;
	}

	.contentStyle15 .items .item .title:after {
		width: 26px;
		height: 26px;
		margin-left: -13px;
	}

	.accordion .item .title {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.accordion .item .title:before {
		top: 23px;
	}
	
	.arrowLinks {
		margin-top: 10px;
		margin-bottom: 10px;
	}

	.arrowLinks li a {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	#footer .top .info {
		width: 331px;
	}

	#footer .top .contact {
		margin-left: 37px;
		width: 361px;
	}

	#footer .top .logo {
		width: 220px;
	}
	
	h2 {
		font-size: 34px;
	}

	h3 {
		font-size: 26px;
	}

	h4 {
		font-size: 22px;
	}

	h5 {
		font-size: 20px;
	}
	
}

/* Tablet Screens (Portrait) */

@media only screen and (max-width : 991px) {
	:root {
		--bottom-gap: 70px;
	}

	.section {
		max-width: 750px;
		padding-left: 15px;
		padding-right: 15px;
	}	

	#header .section {
		height: 115px;
		padding-left: 15px;
		padding-right: 15px;
	}

	#header #navigation {
		margin-bottom: 0;
	}

	#header .logo {
		width: 240px;
	}

	#header #navigation ul li {
		margin: 0 0 0 20px;
	}

	#banner {
		min-height: 463px;
	}

	#banner.forSub {
		min-height: 276px;
	}
	
	#banner .text .inner {
		padding-left: 15px;
		padding-right: 20px;
		max-width: 375px;
	}

	.contentStyle01 .text {
		width: 280px;
		padding-top: 53px;
		padding-bottom: 53px;
	}

	.contentStyle01.alt .text {
		right: 0;
	}

	.contentStyle01 .text:before {
		right: -40px;
		left: -40px;
	}

	.contentStyle01 .text:after {
		right: -27px;
		bottom: -27px;
		width: 90px;
	}

	.contentStyle02 .stats {
		--gap: 28px;
	}

	.arrowLinks li:before {
		left: -15px;
		right: -15px;
	}

	.contentStyle03 .text .inner {
		margin-left: -140px;
		width: calc(100% + 95px);
	}

	.contentStyle04 .image {
		margin-top: 12px;
	}

	.contentStyle05 h3 {
		top: -22px;
	}

	.contentStyle05 .info {
		max-width: 300px;
		bottom: -26px;
		font-size: 14px;
	}

	.contentStyle08 {
		min-height: 500px;
	}

	.contentStyle08 .text {
		padding-top: 100px;
		padding-bottom: 100px;
	}

	.contentStyle08 .text .inner {
		max-width: 360px;
	}

	.contentStyle08 .text:after {
		width: 90px;
		height: 95px;
		right: 15px;
		bottom: 15px;
	}

	.contentStyle09 .cols {
		--gap: 15px;
		margin-top: 30px;
	}

	.contentStyle10 .section {
		padding-bottom: 130px;
	}

	.contentStyle10 .section:after {
		width: 90px;
		height: 95px;
		left: 15px;
	}

	.contentStyle11 .items {
		--gap: 14px;
	}

	.contentStyle11 .items .item .text h3 span {
		font-size: 18px;
	}

	.contentStyle12 .section:before {
		width: 90px;
		height: 95px;
		right: 16px;
		top: -47px;
	}

	.contentStyle12 .items {
		--gap: 15px;
	}

	.contentStyle12 .section {
		padding-top: 80px;
	}

	.contentStyle14 .cols:after {
		width: 90px;
		height: 95px;
	}

	.contentStyle15 .items {
		height: 770px;
	}

	.contentStyle15 .items .item, .contentStyle15 .items .item .title {
		width: 60px;
	}

	.contentStyle15 .items .item .title:after {
		width: 20px;
		height: 20px;
		margin-left: -11px;
	}

	.imageSlider .swiper-slide {
		width: 50%;
	}

	.imageSlider .pagi .swiper-pagination-bullet {
		width: 24px;
		height: 24px;
	}

	#projectBar .section {
		min-height: 175px;
		padding-top: 28px;
		padding-bottom: 28px;
	}

	#projectBar .linkBtn {
		margin-top: 10px;
	}

	#contact .form .fields .field {
		margin-bottom: 17px;
	}

	#contact .text {
		padding-bottom: 320px;
	}

	#contact .text:after {
		left: -143px;
		bottom: -323px;
		width: 473px;
	}
	
	#contact .form .fields .field .textbox {
		font-size: 18px;
		height: 60px;
	}

	.accordion .item:before {
		left: -15px;
		right: -15px;
	}

	.accordion .item .title:before {
		top: 20px;
	}

	#footer .top {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		padding-top: 50px;
		padding-bottom: 50px;
	}

	#footer .top .info {
		width: 47%;
	}

	#footer .top .contact {
		margin-left: auto;
		width: 47%;
	}

	#footer .top .logo {
		margin: 24px auto 0;
		width: 270px;
	}
	
	h2 {
		font-size: 27px;
	}

	h3 {
		font-size: 22px;
	}

	h4 {
		font-size: 18px;
		margin-bottom: 17px;
	}
	
	h5 {
		font-size: 17px;
	}
}

/* Mobile Screens */

@media only screen and (max-width : 767px) {
	.hamburger {
		display: block;
	}

	:root {
		--bottom-gap: 40px;
	}

	#header {
		border-top: 6px solid #E94F2A;
	}

	#header .section {
		height: 150px;
	}

	#header #navigation {
		display: none;
	}

	#header .logo {
		margin: 0 auto;
	}

	#banner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}

	#banner .text {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	#banner .text, #banner .image {
		width: 100%;
	}

	#banner .text .inner {
		max-width: 100%;
		text-align: center;
		padding: 0 15px;
	}

	#banner .image {
		-webkit-box-ordinal-group: 0;
		    -ms-flex-order: -1;
		        order: -1;
		height: 70vw;
	}

	.contentStyle01 .section {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}

	.contentStyle01 .text {
		width: 100%;
		margin-top: 28px;
		padding-top: 77px;
		padding-bottom: 40px;
		text-align: center;
	}

	.contentStyle01 .text:after {
		position: static;
		display: block;
		margin: 27px auto 0;
		width: 70px;
		height: 73px;
	}

	.contentStyle01 .image {
		-webkit-box-ordinal-group: 0;
		    -ms-flex-order: -1;
		        order: -1;
		height: 70vw;
		margin-bottom: -75px;
		z-index: 2;
	}

	.contentStyle01 .image .inner {
		right: 0;
	}

	.contentStyle02 {
		text-align: center;
	}

	.contentStyle02 .stats {
		display: block;
		--gap: 0;
	}
	
	.contentStyle02 .stats li {
		margin-bottom: 30px;
		border: none;
	}

	.contentStyle03 {
		display: block;
	}

	.contentStyle03 .image, 
	.contentStyle03 .text {
		width: 100%;
	}

	.contentStyle03 .text .inner {
		margin-left: 0;
		width: 100%;
		padding-left: 15px;
		padding-right: 15px;
		text-align: center;
	}

	.contentStyle08 {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		min-height: 1px;
	}

	.contentStyle08 .image {
		-webkit-box-ordinal-group: 0;
		    -ms-flex-order: -1;
		        order: -1;
		height: 90vw;
	}

	.contentStyle08 .text,
	.contentStyle08 .image {
		width: 100%;
		text-align: center;
	}

	.contentStyle08 .text {
		display: block;
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.contentStyle08 .text:after {
		position: static;
		display: block;
		margin: 27px auto 0;
		width: 70px;
		height: 73px;
	}

	.contentStyle08 .text .inner {
		max-width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}

	.contentStyle09 .cols {
		display: block;
		text-align: center;
		margin-top: 20px;
	}

	.contentStyle09 .cols .col {
		width: 100%;
		margin-bottom: 25px;
	}

	.contentStyle10 .section {
		display: block;
		text-align: center;
	}

	.contentStyle10 .col {
		width: 100%;
	}

	.contentStyle10 .col:first-of-type {
		margin-bottom: 30px;
	}
	
	.contentStyle10 .section {
		padding-bottom: 0;
	}

	.contentStyle10 .section:after {
		position: static;
		display: block;
		width: 70px;
		height: 73px;
		margin: 27px auto 0;
	}

	.contentStyle12 {
		text-align: center;
	}
		
	.contentStyle12 .section {
		padding-top: 37px;
		padding-bottom: 20px;
	}

	.contentStyle12 .section:before {
		width: 70px;
		height: 73px;
		right: 15px;
		top: -36px;
	}

	.contentStyle12 .items {
		display: block;
	}

	.contentStyle12 .items .item {
		width: 100%;
		margin-bottom: 35px;
	}

	.contentStyle12 .items .item:last-child {
		margin-bottom: 0;
	}

	.contentStyle12 .items .item img {
		margin-left: auto;
		margin-right: auto;
	}
	
	.contentStyle13 {
		text-align: center;
	}
	
	.contentStyle13 .cols {
		display: block;
	}

	.contentStyle13 .cols .col {
		width: 100%;
	}

	.contentStyle14 {
		text-align: center;
	}

	.contentStyle14 .cols {
		display: block;
		padding-bottom: 0;
	}

	.contentStyle14 .cols .col {
		width: 100%;
	}

	.contentStyle14 .cols:after {
		display: block;
		position: static;
		width: 70px;
		height: 73px;
		margin: 27px auto 0;
	}

	.contentStyle15 .items {
		display: block;
		height: auto;
	}

	.contentStyle15 .items .item {
		display: block;
		text-align: center;
	}

	.contentStyle15 .items .item, .contentStyle15 .items .item .title {
		width: 100%;
	}

	.contentStyle15 .items .item .title {
		display: block;
		white-space: normal;
		padding: 13px 10px 10px;
	}

	.contentStyle15 .items .item .title h2 {
		-webkit-transform: none;
		    -ms-transform: none;
		        transform: none;
	}

	.contentStyle15 .items .item .title:after {
		display: none;
	}

	.contentStyle15 .items .item .desc {
		width: 100%;
		-webkit-transition: all 0.5s;
		-o-transition: all 0.5s;
		transition: all 0.5s;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}

	.contentStyle15 .items .item .desc .image {
		-webkit-box-ordinal-group: 0;
		    -ms-flex-order: -1;
		        order: -1;
		width: 100%;
		height: 92vw;
		margin-bottom: 20px;
	}

	.contentStyle15 .items .item .desc .text {
		width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}

	.contentStyle15 .items .item.active .desc {
		height: auto;
	}

	.imageSlider .swiper-slide {
		width: 65%;
	}

	.imageSlider .pagi {
		margin: 20px 0;
	}

	.imageSlider .pagi .swiper-pagination-bullet {
		width: 20px;
		height: 20px;
	}

	#projectBar .section {
		display: block;
		text-align: center;
		min-height: 1px;
	}

	#projectBar .linkBtn {
		margin: 10px auto 0;
	}

	#contact .section {
		position: relative;
	}
	
	#contact .section:after {
		content: "";
		display: block;
		width: 130px;
		height: 140px;
		margin: 0 auto;
		background: url(../images/brandmark.svg) no-repeat;
		background-size: 100%;
		-webkit-filter: brightness(0) invert(1);
		        filter: brightness(0) invert(1);
		opacity: 0.6;
		pointer-events: none;
		z-index: -1;
	}

	#contact .text {
		padding-bottom: 10px;
	}

	#contact .text:after  {
		display: none;
	}

	#contact .form {
		margin-bottom: 30px;
	}

	#contact .form>:last-child {
		margin-bottom: 0;
	}
	
	.accordion {
		margin-top: 20px;
		margin-bottom: 20px;
	}

	.accordion .item {
		text-align: left;
	}

	.accordion .item:before {
		left: 0;
		right: 0;
	}

	.arrowLinks {
		margin-top: 0;
		margin-bottom: 0;
	}

	.arrowLinks li:before {
		left: 0;
		right: 0;
	}

	.arrowLinks li {
		padding-bottom: 20px;
	}

	.arrowLinks li:last-child {
		padding-bottom: 0;
	}

	.arrowLinks li a {
		background-position: center bottom;
		padding-bottom: 35px;
		padding-right: 0;
	}

	.contentStyle03 .image {
		padding-bottom: 50vw;
	}

	.contentStyle03 .image {
		padding-bottom: 79vw;
	}

	.contentStyle03 .image .inner {
		right: 0;
	}

	.contentStyle04 .section {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		text-align: center;
	}

	.contentStyle04 .image {
		width: 164px;
		margin: 0 auto 30px !important;
		-webkit-box-ordinal-group: 0;
		    -ms-flex-order: -1;
		        order: -1;
	}

	.contentStyle05 {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		text-align: center;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		border-top: 3px solid #8EAD73;
	}

	.contentStyle05 img {
		width: 142%;
		max-width: 9999em;
	}

	.contentStyle05 .overlay {
		position: static;
		-webkit-box-ordinal-group: 0;
		    -ms-flex-order: -1;
		        order: -1;
	}

	.contentStyle05 .overlay .section {
		padding-top: 33px;
	}

	.contentStyle05 .info {
		position: static;
		max-width: 100%;
	}

	.contentStyle05 h3 {
		top: 0;
		margin-bottom: 30px;
	}

	.contentStyle05 h3:after {
		width: 100%;
		bottom: -5px;
	}

	.contentStyle06 .section {
		display: block;
		text-align: center;
	}

	.contentStyle06 .col {
		width: 100%;
	}

	.contentStyle07 {
		text-align: center;
	}

	.contentStyle11 {
		text-align: center;
	}

	.contentStyle11 .items {
		display: block;
		margin-bottom: 0;
	}

	.contentStyle11 .items .item {
		width: 100%;
		margin-bottom: 40px;
	}

	.contentStyle11 .items .item .image {
		max-width: 390px;
		margin: 0 auto 20px;
	}

	.contentStyle13 .cols .col {
		margin-bottom: 30px;
	}

	.imageSlider {
		margin-top: 25px;
		margin-bottom: 0px;
	}
	
	#contact .section {
		display: block;
		text-align: center;
	}

	#contact .text {
		padding-right: 0;
	}

	#contact .text, 
	#contact .form {
		width: 100%;
	}
	
	.linkBtn {
		margin-left: auto;
		margin-right: auto;
	}

	#footer {
		text-align: center;
	}

	#footer .top {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		padding-top: 40px;
		padding-bottom: 40px;
	}

	#footer .top .info {
		width: 100%;
		margin-bottom: 10px;
	}

	#footer .top .contact {
		width: 100%;
		-webkit-box-ordinal-group: 0;
		    -ms-flex-order: -1;
		        order: -1;
		margin-bottom: 40px;
	}

	#footer .top .logo {
		width: 230px;
	}

	#footer .bottom {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}

	#footer .bottom .links {
		-webkit-box-ordinal-group: 0;
		    -ms-flex-order: -1;
		        order: -1;
		margin: 0 0 10px;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}

	#footer .bottom .links li {
		margin: 0 10px;
	}

}

@media only screen and (max-width : 479px) {

}