@charset "UTF-8";

/* CSS Document */

body {
	margin: 0;
	padding: 0;
	overscroll-behavior: none;
	border: 0;
}

:root {
	--sg-brown: #efece7;
	--sg-grey: #f5f5f5;
	--sg-white: #ffffff;
	--sg-darkgrey: #191919;
	--sg-green: #028807;
	--sg-green2: #2ffd36;
	--sg-midgrey: #555555;
}

@font-face {
	font-family: 'PlayfairDisplay-Regular';
	src: url("_s-files/PlayfairDisplay-Regular.ttf");
}

@font-face {
	font-family: 'Raleway-Regular';
	src: url("_s-files/Raleway-Regular.ttf")
}

h1 {
	font-family: 'PlayfairDisplay-Regular';
	font-size: 62px;
	line-height: 86px;
	font-style: normal;
	font-weight: normal;
	margin: 0;
	letter-spacing: -1.5px;
	color: var(--sg-darkgrey);
}

h2 {
	font-family: 'Raleway-Regular';
	font-size: 16px;
	line-height: 32px;
	font-style: normal;
	font-weight: normal;
	margin: 0;
	color: var(--sg-darkgrey);
}

h3 {
	font-family: 'Raleway-Regular';
	font-size: 18px;
	line-height: normal;
	font-style: normal;
	font-weight: normal;
	margin: 0;
}

h4 {
	font-family: 'Raleway-Regular';
	font-size: 28px;
	line-height: normal;
	font-style: normal;
	font-weight: normal;
	margin: 0;
}

h5 {
	font-family: 'Raleway-Regular';
	font-size: 16px;
	line-height: 32px;
	font-style: normal;
	font-weight: normal;
	margin: 0;
}

.link {
	display: inline-block;
	cursor: pointer;
	text-decoration: none;
    color: var(--sg-darkgrey);
	-webkit-transition: all 0.3s ease-in-out;
  	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.link:hover {
	color: var(--sg-green);
}

.link::after {
	content: '';
    display: block;
    width: 0;
    height: 1px;
    background: var(--sg-green);
    transition: width .3s;
}

.link:hover::after {
	width: 100%;
}


/* Header */

header { 
	display: block;
	position: fixed;
	width: 100%;
	height: 70px;
	margin: 0;
	top: 0;
	z-index: 100;
	-webkit-transition: all 0.3s ease-in-out;
  	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.shrink {
	margin-top: 0px;
}

.header_active {
	background-color: var(--sg-brown);
}

.header_active .header-logo {
	display: flex;
}

.header_active .header-logo-white {
	display: none;
}

.header-holder {
	position: relative;
	display: flex;
	height: 100%;
	justify-content: center;
	align-content: flex-start;
}

.header_active .header-holder {
	background-image: none;
}

.header-wrapper {
	display: flex;
	flex: 1 1 auto;
	margin: 0 5vw;
	flex-direction: row;
	max-width: 1200px;
}

.header-logo-white {
	flex: 1 1 auto;
	flex-basis: 30%;
	display: flex;
	align-items: center;
	-webkit-transition: all 0.3s ease-in-out;
  	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.header-logo-white img {
	display: block;
	height: 40px;
	float: left;
}

.header-logo {
	flex: 1 1 auto;
	flex-basis: 30%;
	display: none;
	align-items: center;
	-webkit-transition: all 0.3s ease-in-out;
  	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.header-logo img {
	display: block;
	height: 40px;
	float: left;
}

.header-desktop-links {
	flex: 1 1 auto;
	flex-basis: 60%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.header-desktop-links ul {
	margin: 0;
	padding: 0;
	top: 0;
}

.header-desktop-links ul li {
	display: inline-block;
	padding-left: 2vw;
}

.header-desktop-links ul li:nth-child(1) {
	padding-left: 0;
}

.header-desktop-links ul li a {
	text-decoration: none;
	color: var(--sg-white);
	letter-spacing: 0.5px;
	line-height: 32px;
}

.header_active .header-desktop-links ul li a {
	color: var(--sg-darkgrey);
}

.header-desktop-social-links {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.header-desktop-social-links ul {
	margin: 0;
	padding: 0;
	top: 0;
}

.header-desktop-social-links ul li {
	display: inline-block;
	padding-left: 1vw;
}

.header-desktop-social-links ul li a {
	display: flex;
	transition: .3s;
}

.header-desktop-social-links img {
	height: 22px;
}

.header-desktop-social-links svg {
	height: 22px;
	fill: #ffffff;
	transition: .3s;
}

.header-desktop-social-links svg:hover {
	fill: var(--sg-green);
}

.header_active .header-desktop-social-links svg {
	fill: var(--sg-darkgrey);
	transition: .3s;
}

.header_active .header-desktop-social-links svg:hover {
	fill: var(--sg-green);	
}

.header-desktop-social-links ul li:nth-child(1) {
	padding-left: 2vw;
}

.header-mobile-links {
	display: none;
}

nav {
	display: none;
}

.nav-up {
  top: -70px;
	-webkit-transition: all 0.3s ease-in-out;
  	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.nav-down {
	top: 0px;
	-webkit-transition: all 0.3s ease-in-out;
  	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

/* Title Contianers */

.primary-title-container {
	display: block;
	position: relative;
	width: 100%;
	overflow-x: hidden;
}

.primary-title-container-height {
	height: 100vh;
}

.primary-title-image {
	display: flex;
	background-position: center;
	background-size: cover;
	overflow: hidden;
	height: 100%;
	background-image: url("_s-images/Christmas-Image.JPG");
}

.primary-title-image-cover {
	display: flex;
	height: 100%;
	background-color: rgba(0,0,0,0.25);
	width: 100%;
}

.primary-title-image-cover::after {
	height: 70px;
	width: 100%;
	position: absolute;
	background-image: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0));
	content: "";
}

.primary-title-container-holder {
	position: relative;
	display: flex;
	height: 100%;
	align-content: center;
	justify-content: center;
	flex: 100%;
}

.primary-title-container-wrapper {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	margin: 0 10vw;
	justify-content: center;
	align-content: flex-start;
	max-width: 1200px;
}

.primary-title-container-wrapper h1 {
	display: block;
	width: 70%;
	padding-bottom: 2vh;
	color: var(--sg-white);
}

.primary-title-container-wrapper h2 {
	display: block;
}

.primary-title-down-arrow {
	bottom: 10vh;
    display: block;
    z-index: 2;
    position: absolute;
    transition: all 0.25s ease;
    width: 28px;
    cursor: pointer
}
	
.primary-title-down-arrow:hover {
	bottom: 9vh;
}

.secondary-title-container {
	display: block;
	position: fixed;
	width: 100%;
	overflow-x: hidden;
}

.secondary-title-container-height {
	height: 50vh;
}

.secondary-title-image-project {
	display: flex;
	overflow: hidden;
	height: 100%;
}

.secondary-title-image-services {
	display: flex;
	background-position: center;
	background-size: cover;
	overflow: hidden;
	height: 100%;
	background-image: url("_s-images/Services-Page-Banner.jpg");
}

.secondary-title-image-contact {
	display: flex;
	background-position: center;
	background-size: cover;
	overflow: hidden;
	height: 100%;
	background-image: url("_s-images/contact_talk.jpg");
}

.secondary-title-image-landscape {
	display: flex;
	background-position: center;
	background-size: cover;
	overflow: hidden;
	height: 100%;
	background-image: url("_s-images/Landscaping_Header.jpg");
}

.secondary-title-image-maintenance {
	display: flex;
	background-position: top;
	background-size: cover;
	overflow: hidden;
	height: 100%;
	background-image: url("_s-images/Maintanance_Header.jpg");
}

.secondary-title-image-portfolio {
	display: flex;
	background-position: top;
	background-size: cover;
	overflow: hidden;
	height: 100%;
	background-image: url("_s-images/Projects-Page-Banner.jpg");
}

.secondary-title-image-about {
	display: flex;
	background-position: center;
	background-size: cover;
	overflow: hidden;
	height: 100%;
	background-image: url("_s-images/about_header.jpg");
}

.secondary-title-image-policies {
	display: flex;
	background-position: center;
	background-size: cover;
	overflow: hidden;
	height: 100%;
	background-image: url("_s-images/Policies-Page.jpg");
}

.secondary-title-image-cover {
	display: flex;
	height: 100%;
	background-color: hsla(0,0%,10%,0.40);
	width: 100%;
}

.secondary-title-image-cover::after {
	height: 100px;
	width: 100%;
	position: absolute;
	background-image: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0));
	content: "";
}

.secondary-title-container-holder {
	position: relative;
	display: flex;
	height: 100%;
	align-content: center;
	justify-content: center;
	flex: 100%;
}

.secondary-title-container-wrapper {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	margin: 0 10vw;
	justify-content: flex-end;
	align-content: flex-start;
	max-width: 1200px;
}

.secondary-title-container-wrapper h1 {
	display: block;
	width: 80%;
	color: var(--sg-white);
	padding-bottom: 10vh;
}

/* Body Fold */

.main-body {
	width: 100%;
	height: auto;
	z-index: 10;
	margin-top: 95vh;
	background-color: #ffffff;
	position: absolute;
}

.main-body-second {
	width: 100%;
	height: auto;
	z-index: 10;
	margin-top: 50vh;
	background-color: #ffffff;
	position: absolute;
}

.main-body-inner {
	width: 100%;
	height: 100%;
}

/* ImageFade */

.imagefade-contianer {
	display: flex;
	position: fixed;
	width: 100%;
	overflow: hidden;
	justify-content: center;
	border: 0 none;
}

.imagefade-height {
	display: flex;
	height: 95vh;
	flex: 1;
	margin: 0;
	position: relative;
    overflow: hidden;
	border: 0 none;
}

.imagefade-height-404 {
	display: flex;
	height: 100vh;
	flex: 1;
	margin: 0;
	position: relative;
    overflow: hidden;
	border: 0 none;
}

.imagefade-wrapper {
	height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
	border: 0 none;
	z-index: 1;
}

.imagefade-wrapper::after {
	height: 100%;
	width: 100%;
	position: absolute;
	content: "";
}

.imagefade {
	background-position: center;
    background-size: cover;
    height: 100%;
    opacity: 1;
    position: absolute;
    top: 0;
	width: 100%;
	border: 0 none;
	margin: 0;
}

.imagefade::after {
	height: 100px;
	width: 100%;
	position: absolute;
	background-image: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0));
	content: "";
}

.imagefade-textoverlay {
	display: flex;
	flex: 1 1 auto;
	position: relative;
	z-index: 9;
	height: 100%;
	width: 100%;
	align-content: center;
	justify-content: center;
	background-color: hsla(0,0%,10%,0.40);
}

.imagefade-textoverlay-inner {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	margin: 0 10vw;
	justify-content: center;
	align-content: flex-start;
	max-width: 1200px;
}


.imagefade-textoverlay-inner h1 {
	display: block;
	width: 90%;
	max-width: 920px;
	padding-bottom: 2vh;
	color: var(--sg-white);
}

.primary-title-down-arrow {
	bottom: 10vh;
    display: block;
    z-index: 2;
    position: absolute;
    transition: all 0.25s ease;
    width: 28px;
    cursor: pointer
}
	
.primary-title-down-arrow:hover {
	bottom: 9vh;
}




/* Copy Section */

.copy-container {
	display: flex;
	position: relative;
	width: 100%;
	overflow: hidden;
	align-content: center;
	justify-content: center;
}

.copy-container-wrapper {
	display: flex;
	margin: 15vh 10vw;
	flex-wrap: wrap;
	align-content: center;
	justify-content: space-between;
	flex-flow: row wrap;
	max-width: 1200px;
}

.copy-container-inner {
	display: flex;
	flex-direction: column;
}

.copy-container-priamry {
	display: flex;
	flex: 1 1 auto;
	width: 70%;
	padding-bottom: 60px;
}

.copy-container-priamry h4 {
	line-height: 48px;
}

.copy-container-secondary {
	display: flex;
	flex: 1 1 auto;
	width: 60%;
	margin-left: 40%;
}


/* Services Section */

	.service-section {
		display: flex;
		position: relative;
		width: 100%;
		overflow: hidden;
		align-content: center;
		justify-content: center;
	}
	
	.service-section-wrapper {
		display: flex;
		margin: 15vh 10vw;
		flex: 1;
		flex-wrap: wrap;
		align-content: center;
		flex-flow: row wrap;
		max-width: 1200px;
		min-width: 0;
		
	}
	
	.service-section-inner {
		display: flex;
		flex-direction: column;
		flex: 1;
		min-width: 0;
	}
	
	.service-section-row {
		display: flex;
		flex: 1 100%;
		flex-direction: row;
		margin-bottom: 15vh;
		overflow: hidden;
		flex-flow: row wrap;
		min-width: 0;
	}
	
	.service-section-row-reverse {
		display: flex;
		flex: 1 100%;
		flex-direction: row-reverse;
		overflow: hidden;
		flex-flow: row-reverse wrap;
		min-width: 0;
		margin-bottom: 15vh;
	}
	
	.service-picture {
		display: flex;
		height: 80vh;
		flex: 0 0 48%;
		margin-right: 2%;
		min-width: 0;
		overflow: hidden;
		justify-content: center;
		align-content: center;
		
	}

	.service-picture-reverse {
		display: flex;
		height: 80vh;
		flex: 0 0 48%;
		margin-left: 2%;
		min-width: 0;
		overflow: hidden;
		justify-content: center;
		align-content: center;
	}
	
	.service-picture img {
		object-fit: cover;
		width: 100%;
	}

	.service-picture-reverse img {
		object-fit: cover;
		width: 100%;
	}
	
	.service-text-wrapper {
		display: flex;
		height: 80vh;
		flex: 0 0 50%;
		min-width: 0;
	}
	
	.service-text-inner {
		display: flex;
		flex: 1;
		flex-direction: column;
		justify-content: center;
	}
	
	.service-padding-left {
		padding-left: 30%;
	}
	
	.service-padding-right {
		padding-right: 30%;
	}
	
	.service-text-inner h4 {
		padding-bottom: 2vh;
		line-height: 46px;
	}

	.service-text-inner span {
		padding-bottom: 4vh;
	}
	
	.service-text-inner .stage {
		padding-bottom: 0;
	}

	.services-text-inner a {
		text-decoration: none;
		color: var(--sg-darkgrey);
	}
	
	.service-button {
		padding: 10px 30px 10px 30px;
		border: 1px solid;
		border-color: var(--sg-green);
		background-color: transparent;
		transition: 0.3s ease-in-out;
		cursor: pointer;
	}
	
	.service-button:hover {
		background-color: var(--sg-green);
		transition: 0.3s ease-in-out;
	}

	.service-button:hover h2 {
		color: var(--sg-white);
		transition: 0.3s ease-in-out;
	}

.design-section-image {
	display: flex;
	flex: 0 0 48%;
	max-height: 60vh;
	overflow: hidden;
	object-position: 50% 50%;
}

.design-section-image img {
	display: block;
	width: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}


/* Project Section */

.project-section-container {
	display: block;
	position: relative;
	width: 100%;
	overflow-x: hidden;
	background-color: var(--sg-brown);
}

.project-section-height {
	overflow: hidden;
	margin: 15vh 0;
}

.project-section-holder {
	position: relative;
	display: flex;
	height: 100%;
	justify-content: center;
}

.project-section-wrapper {
	display: flex;
	flex: 1 1 auto;
	margin: 0 10vw;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	flex-flow: row wrap;
	max-width: 1200px;
}

.project-row {
	display: flex;
	flex: 100%;
	flex-flow: row wrap;
	justify-content: space-between;
}

.project-single-project {
	display: flex;
	flex: calc(33.3% - 2vw);
	margin-right: 2vw;
	flex-wrap: wrap;
	justify-content: flex-start;
	height: auto;
	margin-bottom: 3vh;
}

.project-single-project:nth-child(3n) {
	margin-right: 0;
}

.project-single-project:nth-last-child(-n+3) {
	margin-bottom: 0;
}

.project-single-project a {
	text-decoration: none;
	color: var(--sg-darkgrey);
	display: flex;
	flex: 1;
}

.project-single-project:hover .image {
	transform: scale(1.1);
}

.project-single-wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
	word-wrap: break-word;
	background-color: var(--sg-grey);
	cursor: pointer;
}

.project-single-wrapper picture {
	display: flex;
	overflow: hidden;
	align-content: center;
	justify-content: center;
}

.project-single-wrapper h4 {
	padding-bottom: 1.5vh;
}

.project-single-wrapper picture img {
	display: flex;
	transition: all 0.3s;
	height: 100%;
}

.project-wrapper-contents {
	display: flex;
	flex-direction: column;
	padding: 3vh 2vw 3vh;
	flex: 1;
	justify-content: space-between;
}

.project-single-wrapper h2 .project-tag {
	padding-bottom: 0;
}

.project-tag {
	color: var(--sg-green);
	display: flex;
	padding: 0;
}

.image {
	width: 100%;
	display: block;
}

.icon {
	width: 50%;
	padding-bottom: 5vh;
}

/* Slider*/

* {
	box-sizing: border-box;
}

.slider {
	width: 100%;
	margin-top: 15vh;
	margin-bottom: 15vh;
	overflow: hidden;
}

.slick-slide {
	margin-right: 5vw;
	overflow: hidden;
	display: block;
	vertical-align: middle;
	align-content: center;
	height: 100%;
}

.slick-slide img {
	max-width: 60vw;
	max-height: 80vh;
	height: auto;
	vertical-align: middle;
}

.slick-slide h2 {
	padding-top: 10px;
	display: block;
	word-break: break-word;
}

.slick-prev:before,
.slick-next:before {
	color: black;
}

.slick-current {
	opacity: 1;
}

.slider ul {
	display: none;
	margin: 0;
}

.slider ul li {
	list-style: none;
}

/* Title */

.contianer-title {
	flex: 1;
	display: flex;
	margin-bottom: 5vh;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
}

/* Contact */

.copy-container-contact {
	display: flex;
	flex: 1 1 auto;
	width: 60%;
	margin-left: 40%;
	flex-direction: column;
}

.contact-container-column {
	display: flex;
	flex-direction: column;
	padding-bottom: 5vh;
}

.contact-container-column:nth-child(3) {
	padding-bottom: 0;
}

.contact-container-column h2 {
	padding-bottom: 2vh;
}

.contact-container-column h4 {
	line-height: 42px;
}

.contact-container-column ul {
	margin: 0;
	padding: 0;
	top: 0;
}

.contact-container-column ul li {
	display: inline-block;
	padding-right: 1.75vw;
}

.contact-container-column ul li:nth-child(3) {
	padding-right: 0;
}

.contact-container-row {
	display: flex;
	flex-direction: row;
	padding-bottom: 5vh;
}

.contact-container-section {
	display: flex;
	width: 49%;
	margin-right: 2%;
	flex-direction: column;
}

.contact-container-section:nth-child(2) {
	margin-right: 0;
}

.contact-container-section h2 {
	padding-bottom: 2vh;
}

.contact-container-section h4 {
	line-height: 42px;
}

/* Accordion */

.accordion-container {
	display: flex;
	position: relative;
	width: 100%;
	overflow-x: hidden;
	background-color: var(--sg-brown);
	margin: 0 auto;
	justify-content: center;
}

.accrodion-container-wrapper {
	display: flex;
	flex: 1 1 auto;
	margin: 15vh 10vw;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	flex-flow: row wrap;
	max-width: 1200px;
}

.accordion-contianer-title {
	display: flex;
	flex: 0 0 47.5%;
	justify-content: flex-start;
	padding-right: 2.5%;
	flex-direction: column;
}

.accordion-contianer-title h1 {
	padding-bottom: 1vh;
}

.accordion-container-section{
	display: flex;
	flex: 0 0 50%;
	justify-content: flex-start;
	flex-direction: column;
	border-bottom: 1px solid;
}

.accordion {
	cursor: pointer;
	width: 100%;
	text-align: left;
	border: 0;
	transition: 0.4s;
	display: wrap;
	margin: 0;
	padding: 15px 10px;
	background-color: Transparent;
    background-repeat:no-repeat;
	border-top: 1px solid;
}

.accordion-null {
	width: 100%;
	text-align: left;
	border: 0;
	transition: 0.4s;
	display: wrap;
	margin: 0;
	padding: 10px 0px;
	background-color: Transparent;
    background-repeat:no-repeat;
	border-top: 1px solid;
}

button:focus {
	outline:0;
}

.accordion:nth-child(1) {
	border-top: 0;
}

.accordion h2 {
	position: relative; 
    float: left;
}
	
.panel {
  	max-height: 0;
 	overflow: hidden;
  	transition: max-height 0.2s ease-out;
	padding-left: 10px;
}

.panel h5 {
	padding-bottom: 15px;
}
	
.accordion:after {
	content: '\02795';
	font-size: 12px;
	float: right;
	margin-left: 5px;
	padding-top: 4px;
	font-family: 'PlayfairDisplay-Regular';
}

.active:after {
	content: "\2796";
	padding-top: 4px;
}

/* Image Wrap */

.image-wrap-image-third {
    flex: 1 1 30%;
    justify-content: flex-start;
    margin-right: 3.333%;
	overflow: hidden;
}
	
.image-wrap-image-third:nth-child(3) {
	margin-right: 0;
}

.image-wrap-image-third img {
	object-fit: cover;
	width: 100%;
	object-position: top;
	height: auto;
}

.image-wrap-about {
	display: flex;
	position: relative;
	width: 100%;
	overflow: hidden;
	justify-content: center;
}


/* Project Imagery */

.image-wrap {
	display: flex;
	position: relative;
	width: 100%;
	overflow: hidden;
	justify-content: center;
	margin-bottom: 15vh;
}

.image-wrap:nth-child(n) {
	margin-top: 15vh;
}
	
.image-wrap-wrapper {
	display: flex;
	flex: 1 1 auto;
	margin: 0 10vw;
	flex-direction: column;
	flex-flow: row wrap;
	max-width: 1200px;
}
	
.image-wrap-section {
	display: flex;
	flex-direction: row;
	width: 100%;
}

.image-full {
	display: flex;
	flex-basis: 100%;
	flex: 1 1 auto;
	height: 80vh;
	overflow: hidden;
}

.image-full img {
	object-fit: cover;
	width: 100%;
	object-position: center center;
}

.image-half {
	flex: 1;
	overflow: hidden;
	padding-right: 3vw;
}

.image-half img {
	object-fit: contain;
	width: 100%;
	object-position: top;
}
	
.image-half:nth-child(2) {
	padding-right: 0;
}

.image-container-fullscreen {
	display: flex;
	position: relative;
	width: 100%;
	height: 90vh;
	margin-bottom: 15vh;
}

.image-container-image {
	display: block;
	height: 100%;
	width: 100%;
}

.image-container-image img {
	display: block;
	object-fit: cover;
	object-position: middle;
	height: 100%;
	width: 100%;
}

.map-container {
	display: flex;
	position: relative;
	width: 100%;
	height: 70vh;
}

/* Projects */

.project-container-wrapper {
	display: flex;
	margin: 15vh 10vw 0 ;
	flex-wrap: wrap;
	align-content: center;
	justify-content: space-between;
	flex-flow: row wrap;
	max-width: 1200px;
	flex: 1;
}

.project-container-inner {
	display: flex;
	flex-direction: row;
	flex: 1;
	flex-basis: 100%;
}

.project-container-priamry {
	display: flex;
	flex: 1 1 auto;
	flex-basis: 60%;
	flex-direction: column;
}

.project-container-priamry h4 {
	display: flex;
	line-height: 42px;
	padding-bottom: 2vh;
}

.project-container-priamry p {
	display: flex;
}

.project-container-secondary {
	display: flex;
	flex: 1 1 auto;
	flex-basis: 35%;
	margin-left: 5%;
	flex-direction: column;
}

.project-container-secondary h5 {
	display: flex;
}

.project-title {
	flex: 1;
	flex-basis: 100%;
    display: flex;
    margin-bottom: 5vh;
    justify-content: space-between;
    align-items: center;
}

.next-project {
	display: flex;
	flex-basis: 100%;
	overflow: hidden;
	position: relative;
	align-content: center;
	justify-content: center;
}

.next-project-wrapper {
	max-width: 1200px;
	display: flex;
	flex-basis: 100%;
	margin: 0 10vw 15vh ;
	flex-direction: row;
	justify-content: flex-end;
}

.next-project-wrapper a h4 {
	display: flex;
}

.next-project-wrapper a {
	text-decoration: none;
	color: var(--sg-darkgrey);
}

/* Footer */

footer {
	background-color: var(--sg-grey);
	display: block;
	position: relative;
	width: 100%;
	overflow-x: hidden;
}

.footer-height {
	overflow: hidden;
	display: block;
}

.footer-holder {
	position: relative;
	display: flex;
	height: 100%;
	justify-content: center;
}

.footer-wrapper {
	display: flex;
	flex: 1 1 auto;
	margin: 10vh 10vw;
	flex-direction: column;
	max-width: 1200px;
}

.footer-top {
	display: flex;
	padding-bottom: 8vh;
}

.footer-top-link {
	display: flex;
	flex: 1 1 100%;
}

.footer-top-link svg {
	-webkit-transition: all 0.15s ease-in-out;
  	-moz-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
	cursor: pointer;
}

.footer-top-link svg:hover {
	fill: var(--sg-green);
}

.footer-arrow-up {
	transition: all 0.25s ease;
    width: 28px;
    cursor: pointer;
}

.footer-contact {
	display: flex;
	padding-bottom: 10vh;
}

.footer-contact-wrapper {
	display: block;
	width: 80%;
}

.footer-links {
	display: flex;
}

.footer-links-wrapper {
	display: flex;
	flex: 1 1 auto;
	flex-direction: row;
}

.footer-links-social {
	flex: 1 1 auto;
	flex-basis: 60%;
	display: flex;
}

.footer-links-social a {
	text-decoration: none;
	color: black;
	padding-right: 2vw;
}

.footer-links-social a:nth-child(2) {
	padding-right: 0px;
}

.footer-links-copywright {
	flex: 1 1 auto;
	flex-basis: 40%;
	display: flex;
	flex-direction: row;
	align-content: flex-end;
	justify-content: flex-end;
}

.footer-links-copywright a {
	text-decoration: none;
	color: black;
	padding-right: 2vw;
}

.arrow {
	cursor: pointer;
	display: flex;
	overflow: auto;
}

.arrow path {
	transition: all 0.25s ease;
}

.arrow:hover path {
	fill: var(--sg-green);
}

/* No-padding */

.no-padding-top {
	margin-top: 0;
	padding-top: 0;
}

.no-padding-bottom {
	margin-bottom: 0;
	padding-bottom: 0;
}

/* Maps */

.gmap_canvas {
	overflow:hidden;
	background:none!important;
	height:100%;
	width:100%;
}

.mapouter {
	position:relative;
	text-align:right;
	height:100%;
	width:100%;
}

/* Screen Change */

@media only screen and (max-width: 900px) {
	
	/* Css Document */
	
	h1 {
		font-family: 'PlayfairDisplay-Regular';
		font-size: 38px;
		line-height: 58px;
		font-style: normal;
		font-weight: normal;
		margin: 0;
	}

	h2 {
		font-family: 'Raleway-Regular';
		font-size: 16px;
		line-height: 28px;
		font-style: normal;
		font-weight: normal;
		margin: 0;
	}

	h3 {
		font-family: 'Raleway-Regular';
		font-size: 42px;
		line-height: normal;
		font-style: normal;
		font-weight: normal;
		margin: 0;
	}
	
	h4 {
		font-family: 'Raleway-Regular';
		font-size: 22px;
		line-height: normal;
		font-style: normal;
		font-weight: normal;
		margin: 0;
	}
	
	/* Header */
	
	.header-desktop-links {
		display: none;
	}
	
	.header-logo-white {
		flex: 1 1 auto;
		flex-basis: 50%;
		display: flex;
		align-items: center;
	}

	.header-logo-white img {
		display: block;
		height: 35px;
		float: left;
	}

	.header-logo {
		flex: 1 1 auto;
		flex-basis: 50%;
		display: none;
		align-items: center;
	}

	.header-logo img {
		display: block;
		height: 35px;
		float: left;
	}

	.header-mobile-links {
		flex: 1 1 auto;
		flex-basis: 50%;
		display: flex;
		justify-content: flex-end;
		align-items: center;
		min-width: 25px; 
	}
	
	.header-nav-icon {
		display: block;
    	width: 30px;
   		height: 16px;
    	cursor: pointer;
    	position: absolute;
	}
	
	.header-nav-icon span {
		display: block;
		width: 100%;
		height: 2px;
		background: var(--sg-white);
		opacity: 1;
		position: absolute;
		border-radius: 1px 1px 1px 1px;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	
	.header_active .header-nav-icon span {
		display: block;
		width: 100%;
		height: 2px;
		background: var(--sg-darkgrey);
		opacity: 1;
		position: absolute;
		border-radius: 1px 1px 1px 1px;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	
	.header-nav-icon span:nth-child(1) {
		top: 0px;
		width: 25px;
		margin-left: 5px;
	}

	.header-nav-icon span:nth-child(2) {
		top: 8px;
	}

	.header-nav-icon span:nth-child(3) {
		top: 8px;
	}

	.header-nav-icon span:nth-child(4) {
		top: 16px;
		width: 25px;
		margin-left: 5px;
	}

	.shrink {
		padding-top: 0px;
	}
	
	.header-desktop-social-links {
		margin-right: calc(5vw + 30px);
		display: none;
		margin-top: 5px;
	}
	
	.header-desktop-social-links svg {
		fill: var(--sg-darkgrey);
	}
	
	.nav-open .header-desktop-social-links {
		display: block;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}

	
	/* Nav */
	
	nav {
		width: 100%;
		height: 100vh;
		position: fixed;
		left: 0;
		top: 0;
		padding: 0;
		display: block;
		color: #161314;
		background: #FFFFFF;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out 0s;
		-o-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
		opacity: 0;
		z-index: -1;
	}
	
	.nav-holder {
		width: 100%;
		height: 100%;
		display: flex;
		position: relative;
		margin: 0;
		padding: 0;
	}
	
	.nav-wrapper {
		display: flex;
		width: 100%;
		flex-wrap: wrap;
		flex-direction: column;
		padding: 0 10vw;
	}
	
	.nav-links {
		height: 100vh;
		display: flex;
		align-items: center;
	}
	
	.nav-links ul {
		margin: 0;
		padding: 0;
		left: 0;
		display: flex;
		flex-direction: column;
	}
	
	.nav-links ul li {
		display: flex;
		padding-bottom: 4vh;
	}
	
	.nav-links ul li:nth-child(5) {
		padding-bottom: 0;
	}
	
	.nav-links ul li a {
		text-decoration: none;
		color: var(--sg-darkgrey);
	}
	
	/* Open Nav */
		
	html .nav-open {
		overflow: hidden;
	}
	
	body .nav-open {
		overflow: auto;

	}

	.nav-open nav {	
		display: block;
		opacity: 1;
		z-index: 50;
	}

	.nav-open .header-nav-icon span {
		background: #161314;
	}
	
	.nav-open .header_active {
		background-color: var(--sg-white);
	}


	body .nav-open {
		 position: fixed;
	}

	.nav-open .header-nav-icon span:nth-child(1) {
		opacity: 0;
	}

	.nav-open .header-nav-icon span:nth-child(2) {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		top: 10px;
	}

	.nav-open .header-nav-icon span:nth-child(3) {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		top: 10px;
	}

	.nav-open .header-nav-icon span:nth-child(4) {
		opacity: 0;
	}
	
	.nav-open .header-logo-white {
		display: none;
	}
	
	.nav-open .header-logo {
		display: flex;
	}
	
	/* Body Fold */

	.main-body {
		width: 100%;
		height: auto;
		z-index: 10;
		margin-top: 100vh;
		background-color: #ffffff;
		position: absolute;
	}

	.main-body-second {
		width: 100%;
		height: auto;
		z-index: 10;
		margin-top: 60vh;
		background-color: #ffffff;
		position: absolute;
	}

	.main-body-inner {
		width: 100%;
		height: 100%;
	}
	
	/* Title Contianers */
	
	.imagefade-textoverlay-inner h1 {
		width: 100%;
	}

	.primary-title-container-wrapper h1 {
		width: 100%;
	}
	
	.primary-title-container-height {
		height: 100vh;
	}

	.primary-title-down-arrow {
		bottom: 20vh;
	}
	
	.secondary-title-container-height {
		height: 60vh;
	}
	
	.secondary-title-container-wrapper h1 {
		width: 100%;
		padding-bottom: 5vh;
	}
	
	/* Copy Section */

	.copy-container-priamry {
		width: 100%;
		padding-bottom: 30px;
	}

	.copy-container-secondary {
		width: 100%;
		margin-left: 0%;
	}
	
	/* Contact */
	
	.copy-container-wrapper {
		margin: 10vh 10vw;
	}

	.copy-container-contact {
		display: flex;
		flex: 1 1 auto;
		width: 100%;
		margin-left: 0;
		flex-direction: column;
	}

	.contact-container-row {
		flex-direction: column;
	}

	.contact-container-section {
		width: 100%;
		margin-right: 0;
		padding-bottom: 5vh; 
	}

	.contact-container-section:nth-child(2) {
		padding-bottom: 0;
	}
	
	
	/* Accordion */

	.accrodion-container-wrapper {
		margin: 10vh 10vw;
	}
	
	.accordion-contianer-title {
		flex: 0 0 100%;
		padding-bottom: 2vh;
		padding-right: 0;
	}

	.accordion-contianer-title h1 {
		padding-bottom: 1vh;
	}

	.accordion-container-section{
		flex: 0 0 100%;
		
	}

	.accordion {
		padding: 15px 10px 15px 0px;
	}
	
	.panel {
		padding-left: 0px;
	}
	
	/* Project Section */
	
	.project-section-wrapper {
		margin: 10vh 10vw;
		flex-direction: column;
	}
	
	.project-section-holder {
		position: relative;
		display: flex;
		height: auto;
		justify-content: center;
		margin-bottom: 0;
	}
	
	.project-single-project {
		width: 100%;
		padding-bottom: 4vh;
		flex: auto;
		height: auto;
		margin-bottom: 0;
		margin-right: 0;
	}
	
	.contianer-title {
		flex: auto;
		flex-direction: column;
		align-items: flex-start;
	}
	
	.contianer-title h1 {
		padding-bottom: 20px;
	}
	
	.project-row {
		display: flex;
		flex: auto;
		flex-flow: column wrap;
		justify-content: center;
	}
	

	.project-single-project:nth-last-child(1) {
		padding-bottom: 0;
	}

	.project-single-wrapper h4 {
		padding-bottom: 1.5vh;
	}
	
	.project-single-wrapper picture {
		display: block;
		height:auto;
		overflow: hidden;
		align-content: center;
		justify-content: center;
	}
	
	.project-wrapper-contents {
		display: flex;
		flex-direction: column;
		padding: 3vh 5vw 3vh;
	}
	
	
	.project-section-height {
		margin: 0 0;
	}
	
	
	.icon {
		width: 40%;
	}
	
	.image {
		width: 100%;
		display: block;
		height: auto;
	}
	
	/* Slider*/

	.slick-slide {
		margin-right: 5vw;
		overflow: hidden;
		display: block;
		vertical-align: middle;
		align-content: center;
		height: 100%;
	}

	.slick-slide img {
		max-width: 100vw;
		max-height: 100vh;
		height: auto;
		vertical-align: middle;
	}
	
	/* Services Section */
	
		.service-section-wrapper {
			margin:  10vh 10vw;
		}

		.service-section-row {
			display: block;
			width: 100%;
			padding-bottom: 10vh;
			overflow: inherit;
			min-width: 0;
			margin-bottom: 0;
		}
		
		.service-section-row-reverse {
			display: block;
			width: 100%;
			overflow: inherit;
			min-width: 0;
			margin-bottom: 0;
			padding-bottom: 10vh;
		}
		
		.service-picture {
			height: 50vh;
			display: flex;
			width: 100%;
			margin-right: 0;
		}
	
		.service-picture-reverse {
			height: 50vh;
			display: flex;
			width: 100%;
			margin-left: 0;
		}
		
		.service-text-wrapper {
			display: flex;
			height: auto;
			width: 100%;
			min-width: 0;
			overflow: auto;
			padding-top: 4vh;
		}
		
		.service-padding-left {
			padding-left: 0;
		}

		.service-padding-right {
			padding-right: 0;
		}
		
		.service-text-inner {
			display: flex;
			flex: 1;
			flex-direction: column;
			justify-content: flex-start;
		}
	
		.service-text-inner h4 {
			padding-bottom: 2vh;
			line-height: 36px;
		}
	
	/* Image Wrap */

	.image-wrap {
		display: flex;
		position: relative;
		width: 100%;
		overflow: hidden;
		justify-content: center;
		margin-bottom: 10vh;
	}

	.image-wrap-wrapper {
		display: flex;
		flex: 1 1 auto;
		margin: 0 10vw;
		flex-direction: column;
		flex-flow: column wrap;
		max-width: 1200px;
	}

	.image-wrap-section {
		flex-direction: column;
	}

	.image-wrap-image-half {
		flex-basis: 50%;
		flex: 1 1 0px;
		display: flex;
		background-repeat: no-repeat;
		box-sizing: border-box;
		object-fit: contain;
		height: 100%;
		padding-bottom: 2vh;
		padding-right: 0;
	}

	.image-wrap-image-half:nth-child(2) {
		padding-bottom: 0;
	}

	.image-wrap-picture {
		max-width: none;
		width: 100%;
		position: relative;
		display: flex;
	}

	.image-wrap-picture img {
		top: 0px;
		left: 0px;
		width: 100%;
		display: block;
	}
	
	.image-half {
		display: block;
		flex-basis: 100%;
		flex: 1;
		overflow: hidden;
		padding-right: 0;
	}
	
	.image-half:nth-child(1) {
		margin-bottom: 10vh;
	}
	
	.image-wrap:nth-child(n) {
		margin-top: 10vh;
	}
	
	.image-wrap-image-third {
		display: block;
		flex: 1 1 auto;
		justify-content: flex-start;
		margin-right: 0;
		overflow: hidden;
		padding-bottom: 5vh;
	}
	
	.image-wrap-image-third:nth-child(3) {
		padding-bottom: 0;
	}

	.icon {
		padding-bottom: 0;
	}
	
	.image-container-fullscreen {
		display: flex;
		position: relative;
		width: 100%;
		height: 90vh;
		margin-bottom: 10vh;
	}
	
	/* Projects */

	.project-container-wrapper {
		display: flex;
		margin: 10vh 10vw 0vh;
		flex-wrap: wrap;
		align-content: center;
		justify-content: space-between;
		flex-flow: row wrap;
		max-width: 1200px;
	}

	.project-container-inner {
		flex-direction: column-reverse;
	}

	.project-container-priamry {
		width: 100%;
		display: block;
	}

	.project-container-secondary {
		flex-basis: 100%;
		margin-left: 0%;
		padding-bottom: 1vh;
	}

	.project-container-secondary h5 {
		display: flex;
	}

	.next-project {
		display: flex;
		flex-basis: 100%;
		overflow: hidden;
		position: relative;
		align-content: center;
		justify-content: center;
	}

	.next-project-wrapper {
		max-width: 1200px;
		display: flex;
		flex-basis: 100%;
		margin: 0 10vw 10vh ;
		flex-direction: row;
		justify-content: flex-end;
	}

	.next-project-wrapper a h4 {
		display: flex;
	}

	.next-project-wrapper a {
		text-decoration: none;
		color: var(--sg-darkgrey);
	}
	
	/* Footer */

	.footer-contact {
		display: flex;
		padding-bottom: 10vh;
	}

	.footer-contact-wrapper {
		display: block;
		width: 100%;
	}

	.footer-links {
		display: flex;
	}

	.footer-links-wrapper {
		display: flex;
		flex: 1 1 auto;
		flex-direction: column;
	}
	
	.footer-contact-wrapper br {
		display: none;
	}

	.footer-links-social {
		flex: 1 1 auto;
		flex-basis: 100%;
		display: flex;
		padding-bottom: 2vh;
	}

	.footer-links-social a {
		text-decoration: none;
		color: black;
		padding-right: 2vw;
	}

	.footer-links-social a:nth-child(2) {
		padding-right: 0px;
	}

	.footer-links-copywright {
		flex: 1 1 auto;
		flex-basis: 100%;
		display: flex;
		flex-direction: row;
		text-align: left;
		align-content: flex-start;
		justify-content: flex-start;
	}

	/* Padding */

	.no-padding-top {
		margin-top: 0;
		padding-top: 0;
	}

	.no-padding-bottom {
		margin-bottom: 0;
		padding-bottom: 0;
	}
	
}

