/*Style Away, No Globals Please*/

@charset "utf-8";
/* CSS Document */

:root {
  --dark-color: #272727;
  --light-color: #2a8341;
  --alt-color: #5e5e5e;
  --off-white: #f4f4f4;
}

html, body {
	margin:0px;
	padding:0px;
	width: 100%;
	overflow-x: hidden;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

body {
	font-family: 'Quicksand', sans-serif;
	position: relative;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

p, ul li, ol li {
	color: #646464;
	font-size: 16px;
	font-weight: 300;
	line-height: 28px;
}

a {
	color: inherit;
	text-decoration: none;
}

*:focus {
	outline: none;
}

h1 {
	font-family: 'Quicksand', sans-serif;
	font-weight: 700;
	font-size: 45px;
	color: var(--alt-color);
	position: relative;
	padding-bottom: 10px;
}

.home h1 {
	font-family: 'Quicksand', sans-serif;
	color: var(--alt-color);
	font-size: 25px;
	line-height: 40px;
	font-weight: 300;
	text-transform: uppercase;
}

h2 {
	font-family: 'Quicksand', sans-serif;
	font-weight: 700;
	font-size: 45px;
	color: var(--alt-color);
	line-height: 50px;
	position: relative;
	padding-bottom: 10px;
}

h3 {
	font-family: 'Quicksand', sans-serif;
	color: var(--dark-color);
	font-size: 28px;
	font-weight: 400;
	text-transform: uppercase;
}

.overlay {
	position: fixed;
	z-index: 10;
	height: 100vh;
	width: 100%;
	top: 0px;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-direction: column;
	animation: overlayanim 1s linear;
	animation-fill-mode: forwards;
	animation-delay: 2.2s;
}

.overlaybox {
	position: relative;
	padding: 80px;
	min-width: 800px;
	text-align: center;
}

.overlaybox::before {
	position: absolute;
	width: 0px;
	height: 0px;
	content: '';
	top: 0px;
	left: 0px;
	border-top: solid 1px black;
	border-left: solid 1px black;
	animation: box1 1s linear;
	animation-fill-mode: forwards;
	animation-delay: 0.6s;
	border-top-left-radius: 20px;
}

.overlaybox::after {
	position: absolute;
	width: 0px;
	height: 0px;
	content: '';
	bottom: 0px;
	right: 0px;
	border-bottom: solid 1px black;
	border-right: solid 1px black;
	animation: box2 1s linear;
	animation-fill-mode: forwards;
	animation-delay: 0.6s;
	border-bottom-right-radius: 20px;
}

.ologo {
	position: relative;
	margin: 0 auto;
	display: block;
	height: 150px;
	animation: logoanim 0.8s linear;
	opacity: 1;
	filter: blur(0px);
	top: 0px;
}

.overlay p {
	position: relative;
	letter-spacing: 8px;
	text-transform: uppercase;
	font-size: 11px;
	animation: logoanim2 0.5s linear;
	animation-delay: 0.5s;
	opacity: 0;
	animation-fill-mode: forwards;
}

/* Animation Keyframes*/
@keyframes logoanim {
    0% { opacity: 0; filter: blur(50px); top: -100px; }
    100% { opacity: 1; filter: blur(0px); top: 0px; }
}

/* Animation Keyframes*/
@keyframes logoanim2 {
    0% { opacity: 0; letter-spacing: 20px; }
    100% { opacity: 1; letter-spacing: 8px; }
}

/* Animation Keyframes*/
@keyframes overlayanim {
    0% { top: 0px; }
    100% { top: 100vh; }
}

/* Animation Keyframes*/
@keyframes box1 {
    0% { width: 0px; height: 0px; }
    100% { width: 90%; height: 90%; }
}

/* Animation Keyframes*/
@keyframes box2 {
    0% { width: 0px; height: 0px; }
    100% { width: 90%; height: 90%; }
}

.wrapper {
	position: relative;
	width: 1920px;
	margin: 0 auto;
}

.topbar {
	position: fixed;
	top: 0px;
	background-color: var(--off-white);
	z-index: 5;
	left: 0;
	right: 0;
	border-bottom-right-radius:10px;
	border-bottom-left-radius: 10px;
	filter: drop-shadow(0px 0px 5px #909090);
}

.logo {
	position: relative;
	margin: 0 auto;
	display: block;
	width: 500px;
	padding-bottom: 40px;
}

.logo::before {
	position: absolute;
	top: -50px;
	height: 50px;
	width: 500px;
	content: '';
	background: url('../images/curve.svg') no-repeat bottom center;
	background-size: contain;
}

.logo img {
	height: 100px;
	display: block;
	margin: 0 auto;
	position: relative;
	top: 0px;
}

i.fa-bars {
	display: none;
}

nav {
	display: flex;
	justify-content: center;
}

nav ul {
	padding: 0px;
	margin: 0px;
	text-align: center;
	margin: 0 auto;
	display: block;
}

nav::before {
	position: absolute;
	top: 23px;
	left: 20px;
	right: 20px;
	height: 1px;
	background-color: var(--dark-color);
	content: '';
	opacity: 0.4;
}

nav ul li {
	color: var(--dark-color);
	font-family: 'Quicksand', sans-serif;
	display: inline-block;
	font-weight: 400;
	text-transform: uppercase;
	background-color: var(--off-white);
	z-index: 1;
	float: left;
	position: relative;
	box-shadow: inset 0 0 0 0 var(--dark-color);
	-webkit-transition: box-shadow .45s ease-in-out;
	   -moz-transition: box-shadow .45s ease-in-out;
	    -ms-transition: box-shadow .45s ease-in-out;
	     -o-transition: box-shadow .45s ease-in-out;
	        transition: box-shadow .45s ease-in-out;
}

nav ul li::before {
	display: none;
}

nav ul li:hover {
	box-shadow: inset 0 -48px 0 0 var(--dark-color);
	color: var(--light-color);
}

nav ul li a {
	display: block;
	padding: 10px 20px;
}

.sub {
	cursor: pointer;
	padding-right: 40px;
}

.sub::before {
	position: absolute;
	font: var(--fa-font-solid);
	content: '\f0d7';
	top: 16px;
	right: 15px;
	color: #4c4e4d;
	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}

nav ul li:hover .sub::before, .lion .sub::before {
	color: var(--off-white);
}

.lion {
	background-color: var(--dark-color);
	color: var(--light-color);
}

.subon::before {
	content: '\f0d8';
}

nav ul li ul {
	position: absolute;
	display: none;
	width: 400px;
	top: 48px;
	left: 0px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	overflow: hidden;
}

nav ul li ul li {
	display: block;
	width: 100%;
	text-align: left;
	border-bottom: solid 1px #dbdbdb;
	-webkit-transition: all .45s ease;
	   -moz-transition: all .45s ease;
	    -ms-transition: all .45s ease;
	     -o-transition: all .45s ease;
	        transition: all .45s ease;
}

nav ul li ul li:last-of-type {
	border-bottom: none;
}

nav ul li ul li:hover {
	box-shadow: none;
	background-color: var(--dark-color);
}

header {
	width: 100%;
	height: calc(100vh - 300px);
	position: fixed !important;
	top: 0px;
	left: 0px;
	z-index: -1;
}

header::before {
	position: absolute;
	content: '';
	left: 20px;
	top: 100px;
	width: 3px;
	height: 50%;
	background-color: var(--off-white);
	z-index: 2;
	pointer-events: none;
}

header::after {
	position: absolute;
	content: '';
	right: 20px;
	bottom: 50px;
	width: 7px;
	height: 50%;
	background-color: var(--off-white);
	z-index: 2;
	pointer-events: none;
}

/* Animation Keyframes*/
@keyframes linemove {
    0% { background-position-x: 0px; }
    100% { background-position-x: 2000px; }
}

.home::before {
	height: 5px;
	width: 100%;
	position: absolute;
	top: -15px;
	content: '';
	left: 0px;
	background: url('../images/homeline.png') top left;
	animation: linemove 40s linear;
	animation-iteration-count: infinite;
}

.home {
	position: relative;
	margin-top: calc(100vh - 300px);
	z-index: 3;
	background-color: #fff;
	padding-bottom: 50px;
	background: url('../images/homelines.svg') #fff no-repeat bottom left;
}

.home h1 {
	padding-bottom: 50px;
}

.home .wrapper {
	display: flex;
	align-content: stretch;
	padding-bottom: 50px;
}

.homeleft {
	width: 50%;
}

.homeright {
	width: 50%;
	padding-left: 100px;
}

.homeright img {
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
}

.homecon {
	text-align: right;
	padding-bottom: 10px;
}

.homecon p:first-of-type {
	font-weight: bold;
}

.homecon p.tel {
	font-family: 'Quicksand', sans-serif;
	font-size: 26px;
	text-transform: uppercase;
	font-weight: 600;
	line-height: 15px;
}

.homecon p.email {
	font-family: 'Quicksand', sans-serif;
	font-size: 18px;
}

.homecon p a:hover {
	color: var(--light-color);
}

.homebottom {
	display: flex;
	align-content: stretch;
}

.homesocial {
	width: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.homesocial h3 i {
	padding-right: 20px;
}

.social i {
	font-size: 25px;
	margin-right: 20px;
	color: var(--alt-color);
	padding: 15px;
	border: solid 1px var(--light-color);
	background-color: #fff;
	border-radius: 15px;
	-webkit-transition: background-color .45s ease-in-out;
	   -moz-transition: background-color .45s ease-in-out;
	    -ms-transition: background-color .45s ease-in-out;
	     -o-transition: background-color .45s ease-in-out;
	        transition: background-color .45s ease-in-out;
}

.social i:hover {
	background-color: var(--dark-color);
	color: var(--off-white);
}

.yearsholder {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
}

.homeyears {
	width: 50%;
}

.years {
	font-size: 40px;
	font-family: 'Quicksand', sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	background-color: var(--dark-color);
	color: var(--light-color);
	padding: 25px;
	border-top-left-radius: 20px;
	border-bottom-right-radius: 20px;
}

.yearside {
	font-size: 40px;
	font-family: 'Quicksand', sans-serif;
	font-weight: bold;
	padding-left: 20px;
	color: var(--alt-color);
}

.homeyears p {
	text-align: center;
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 300;
	padding: 0 40px
}

.photoft {
	height: 700px;
	background-color: black;
	display: block;
	position: relative;
	z-index: 1;
}

.photoft-home {
	background: url('../images/homephoto.jpg') no-repeat bottom center;
	background-size: cover;
	animation: photoft 60s linear;
	animation-iteration-count: infinite;
}

/* Animation Keyframes*/
@keyframes photoft {
    0% { background-position-y: top; }
    50% { background-position-y: bottom; }
    100% { background-position-y: top; }
}

.wcuwrapper {
	position: relative;
	background-color: var(--dark-color);
	padding: 50px;
	z-index: 2;
}

/* Animation Keyframes*/
@keyframes linemove2 {
    0% { background-position-x: 0px; }
    100% { background-position-x: -2000px; }
}

.wcuwrapper::before {
	height: 5px;
	width: 100%;
	position: absolute;
	top: 15px;
	content: '';
	left: 0px;
	background: url('../images/homeline.png') top left;
	animation: linemove2 40s linear;
	animation-iteration-count: infinite;
}

.wcuwrapper .wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}

.wcuwrapper h2, .wcuwrapper p {
	color: var(--off-white);
}

.wcuwrapper h3 {
	color: var(--light-color);
}

.wcu {
	position: relative;
	width: 50%;
	padding-right: 100px;
}

.wrapper ul li {
	list-style: none;
	position: relative;
	font-weight: 300;
	font-size: 14px;
}

.wrapper ul {
}

.wrapper ul li::before {
	font: var(--fa-font-solid);
	content: '\f152';
	position: absolute;
	left: -30px;
	top: 7px;
}

.wcu ul li {
	color: var(--off-white);
}

.wcu ul li::before {
	color: var(--light-color);
}

.twocols {
	columns: 2;
}

.servft {
	width: 50%;
	position: relative;
	margin-top: -320px;
	background-color: var(--off-white);
	border-radius: 20px;
	padding: 10px;
	overflow: hidden;
	height: auto !important;
}

.servft h2, .servft p {
	color: var(--alt-color);
	text-align: center;
}

.servft h2 {
	margin: 0px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.servft ul {
	padding: 0px;
	margin: 0px;
}

.servft ul li::befor3e {
	display: none;
}

.servft ul li {
	list-style: none;
	display: block;
	padding: 20px;
	text-align: center;
	background-color: var(--dark-color);
	font-family: 'Quicksand', sans-serif;
	font-size: 22px;
	letter-spacing: 2px;
	color: var(--off-white);
}

.servft ul li:nth-of-type(even) {
	background-color: var(--light-color);
	color: var(--off-white);
}

.servft img {
	margin-top: 10px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}

.wwp {
	display: flex;
	position: relative;
	flex-wrap: wrap;
	align-content: stretch;
	justify-content: space-between;
}

.wwp div {
	position: relative;
	width: calc(25% - 20px);
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
}

.wwp div::before {
	position: absolute;
	width: 100%;
	height: calc(100% - 60px);
	bottom: 0px;
	left: 0px;
	content: '';
	border-radius: 20px;
	border-top-left-radius: 0px;
	border-left: solid 1px var(--off-white);
	border-bottom: solid 1px var(--off-white);
	pointer-events: none;
}

.wwp div::after {
	position: absolute;
	width: calc(100% - 60px);
	height: 100%;
	top: 0px;
	right: 0px;
	content: '';
	border-radius: 20px;
	border-top-left-radius: 0px;
	border-right: solid 1px var(--off-white);
	border-top: solid 1px var(--off-white);
	pointer-events: none;
}

.wwp p {
	text-align: center;
}

.wwp p {
	font-family: 'Quicksand', sans-serif;
	font-size: 18px;
}

.wwp i {
	position: absolute;
	font-size: 30px;
	top: 0px;
	left: 0px;
	color: var(--light-color);
}


span.btn {
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 300;
	display: inline-block;
	border: solid 1px var(--alt-color);
	border-radius: 20px;
	position: relative;
	background-color: var(--off-white);
	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}

span.btn:hover {
	background-color: var(--light-color);
	border-color: transparent;
}

span.btn::after {
	font: var(--fa-font-solid);
	content: '\f054';
	position: absolute;
	right: 20px;
	font-size: 12px;
	color: var(--dark-color);
	top: 26px;
	-webkit-transition: right 0s linear;
	   -moz-transition: right 0s linear;
	    -ms-transition: right 0s linear;
	     -o-transition: right 0s linear;
	        transition: right 0s linear;
	
}

span.btn a {
	position: relative;
	display: block;
	border-radius: 20px;
	padding: 20px;
	padding-right: 60px;
	-webkit-transition: padding .20s ease-in-out;
	   -moz-transition: padding .20s ease-in-out;
	    -ms-transition: padding .20s ease-in-out;
	     -o-transition: padding .20s ease-in-out;
	        transition: padding .20s ease-in-out;
}

.accreds {
	background-color: #fff;
	padding: 20px;
	position: relative;
	text-align: center;
}

.accreds .slick-list {
	overflow: visible;
	overflow-x: hidden;
}

.accred {
	position: relative;
	display: inline-block;
	margin: 20px;
	border-radius: 10px;
	border: solid 1px #c7c7c7;
	display: none !important;
}

.accred a {
	display: block;
	background-color: #fff;
	border-radius: 10px;
	position: relative;
	padding: 20px 40px;
}

.accred::before {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	border-radius: 10px;
	content: '';
	z-index: 0;
	pointer-events: none;
	background-color: var(--light-color);
	-webkit-transition: all .25s ease-in-out;
	   -moz-transition: all .25s ease-in-out;
	    -ms-transition: all .25s ease-in-out;
	     -o-transition: all .25s ease-in-out;
	        transition: all .25s ease-in-out;
}

.accred:hover::before {
	top: -5px;
	bottom: -5px;
	right: -5px;
	left: -5px;
}

.accred img {
	height: 50px;
	position: relative;
	z-index: 2;
	margin: 0 auto;
}

.proj {
	background-color: var(--off-white);
	padding: 100px 0;
}

.proj .wrapper {
	display: flex;
	align-content: stretch;
}

.proj-side {
	width: 400px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.proj-main {
	width: calc(100% - 400px);
	padding-left: 80px;
	padding-right: 40px;
	display: flex;
	flex-direction: row;
	align-content: center;
	align-content: stretch;
}

.proj-main .slick-track {
	display: flex !important;
	flex-direction: row !important;
	align-content: center !important;
	align-content: stretch !important;
}

.proj-main span {
	display: flex !important;
	flex-direction: column;
	justify-content: center;
	width: 25%;
	overflow: hidden;
	padding: 20px;
	border-radius: 10px;
	height: auto !important;
}

.proj-main img {
	border-radius: 10px;
	-webkit-transition: scale 0.55s ease;
	   -moz-transition: scale 0.55s ease;
	    -ms-transition: scale 0.55s ease;
	     -o-transition: scale 0.55s ease;
	        transition: scale 0.55s ease;
}

.proj-main p {
	position: relative;
	padding-top: 10px;
	-webkit-transition: opacity .25s linear 0.5s;
	   -moz-transition: opacity .25s linear 0.5s;
	    -ms-transition: opacity .25s linear 0.5s;
	     -o-transition: opacity .25s linear 0.5s;
	        transition: opacity .25s linear 0.5s;
}

.proj-main p::before {
	position: absolute;
	top: 2px;
	left: 0px;
	width: 100px;
	content: '';
	height: 1px;
	background-color: var(--alt-color);
	content: '';
	opacity: 0.3;
}

.proj-main span:hover img {
	scale: 1.8;
}

.proj-main span:hover p {
	opacity: 0;
	-webkit-transition: opacity 0s linear;
	   -moz-transition: opacity 0s linear;
	    -ms-transition: opacity 0s linear;
	     -o-transition: opacity 0s linear;
	        transition: opacity 0s linear;
}

.testconft {
	position: relative;
	background-color: var(--alt-color);
	display: flex;
	align-content: stretch;
}

.testft {
	width: 50%;
	background-color: #222222;
	padding: 100px;
	position: relative;
}

.conft {
	width: 50%;
	background: url('../images/conft.jpg') no-repeat center;
	background-size: cover;
	padding: 150px;
	position: relative;
}

.fullft {
	width: 100%;
	padding: 150px 25%;
}

.conft::after {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	content: '';
	background-color: #21201e;
	opacity: 0.7;
	pointer-events: none;
}

.conft p {
	font-weight: 200;
	position: relative;
	text-transform: uppercase;
	z-index: 2;
	font-size: 20px;
	letter-spacing: 2px;
	line-height: 30px;
	color: var(--off-white);
}

.conft p a {
	color: var(--light-color);
}

.conft p a:hover {
	color: var(--off-white);
}

.conft span.btn {
	position: relative;
	z-index: 2;
}

.testft .test {
	margin-right: 40px;
}

.test {
	position: relative;
	display: block;
	z-index: 1;
}

.test p {
	color: var(--off-white);
	text-align: center;
}

.stars {
	text-align: center;
}

.stars i {
	margin-right: 10px;
	color: yellow;
}

.testdeets {
	position: relative;
	display: flex;
	width: 600px;
	flex-wrap: wrap;
	margin: 0 auto;
	text-align: center;
	justify-content: center;
}

.testdeets p {
	padding: 10px 40px;
	color: var(--alt-color);
}

p.author {
	position: relative;
	color: var(--off-white);
	text-align: right;
	background-color: var(--light-color);
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	padding-left: 80px;
}

p.author::before {
	position: absolute;
	left: 20px;
	font: var(--fa-font-solid);
	content: '\f4ff';
	top: 16px;
}

p.location {
	position: relative;
	text-align: left;
	background-color: var(--off-white);
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	padding-right: 80px;
}

p.location::before {
	position: absolute;
	right: 20px;
	font: var(--fa-font-solid);
	content: '\f5a0';
	top: 16px;
}

.slick-dots {
	bottom: -100px;
}

.slick-dots li {
	width: auto !important;
	border-radius: 0px !important;
}

.slick-dots li button {
    background-color: var(--light-color);
    text-indent: -9999px;
    overflow:hidden;
    width: 40px;
    height: 0px !important;
    padding: 3px !important;
    border-radius: 10px !important;
    /* more CSS */
}

.slick-dots li.slick-active button {
	background-color: var(--alt-color);
}

.slick-dots li button:hover {
	background-color: #fff;
}

footer {
	position: relative;
	background-color: var(--off-white);
	padding: 40px;
	text-align: center;
}

footer::before {
	position: absolute;
	left: 20px;
	bottom: 20px;
	width: 40%;
	top: 20px;
	content: '';
	pointer-events: none;
	z-index: 1;
	border-left: solid 1px var(--alt-color);
	border-bottom: solid 1px var(--alt-color);
}

footer::after {
	position: absolute;
	right: 20px;
	bottom: 20px;
	width: 40%;
	top: 20px;
	content: '';
	pointer-events: none;
	z-index: 1;
	border-right: solid 1px var(--alt-color);
	border-bottom: solid 1px var(--alt-color);
}

.fcon {
	position: relative;
	padding-bottom: 20px;
}

.fcon p {
	display: inline-block;
	margin: 0 40px;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
}

.fcon p a:hover {
	color: var(--light-color);
}

.fsocial {
	position: relative;
	padding-bottom: 20px;
	padding-top: 20px;
}

.fsocial i {
	font-size: 18px;
	padding: 15px;
	margin: 0 10px;
	border-radius: 15px;
	border: solid 1px var(--light-color);
	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}

.fsocial i:hover {
	background-color: var(--light-color);
}

p.nwdm {
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 10px;
}

.smallheader {
	height: 500px;
	z-index: 0;
}

.headcon {
	position: absolute;
	bottom: 55px;
	right: 40px;
	z-index: 3;
}

.headcon p {
	position: relative;
	z-index: 4;
	background-color: var(--off-white);
	display: inline-block;
	padding: 8px 20px;
	margin-right: 10px;
	border-radius: 5px;
}

.headcon p i {
	display: none;
}

.headcon p a:hover {
	color: var(--light-color);
}

.content {
	position: relative;
	margin-top: 500px;
	z-index: 3;
	background-color: #fff;
	padding-bottom: 50px;
	background: url('../images/homelines.svg') #fff no-repeat bottom left;
}

.nopadding {
	padding-bottom: 0px;
}

.content::before {
  height: 5px;
  width: 100%;
  position: absolute;
  top: -15px;
  content: '';
  left: 0px;
  background: url('../images/homeline.png') top left;
  animation: linemove 40s linear;
    animation-iteration-count: 1;
  animation-iteration-count: infinite;
}

.services {
	display: flex;
	position: relative;
	align-content: stretch;
	flex-wrap: wrap;
	padding: 25px;
	margin-bottom: 40px;
}

.servicetxt, .servside {
	width: 50%;
	padding: 50px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.servicetxt {
	padding-right: 40px;
}

.servicetxtfull {
	width: 100%;
	padding: 40px;
}

.servside {
	padding-left: 40px;
}

.servside img {
	border-radius: 20px;
}

.servside span {
	position: relative;
	display: block;
}

.servside span::before {
	height: 50%;
	left: -40px;
	width: 100%;
	top: 25%;
	content: '';
	background-color: var(--light-color);
	position: absolute;
	border-radius: 20px;
	z-index: -1;
}

.servside span::after {
	width: 50%;
	right: -20px;
	bottom: -20px;
	top: -20px;
	content: '';
	border: solid 2px var(--light-color);
	position: absolute;
	border-radius: 20px;
	z-index: -1;
}

.services:nth-of-type(even) {
	background-color: var(--dark-color);
	border-radius: 20px;
}

.services:nth-of-type(even) .servicetxt {
	order: 1;
	padding-left: 40px;
	padding-right: 0px;
}

.services:nth-of-type(even) .servicetxt h2, .services:nth-of-type(even) .servicetxt h3, .services:nth-of-type(even) .servicetxt ul li::before {
	color: var(--light-color);
}

.services:nth-of-type(even) .servicetxt p, .services:nth-of-type(even) .servicetxt ul li {
	color: var(--off-white);
}

.services:nth-of-type(even) .servside {
	padding-right: 40px;
	padding-left: 0px;
}

.services:nth-of-type(even) .servside span {
	z-index: 0;
}

.services:nth-of-type(even) .servside span::after {
	left: 20px;
	right: -20px;
	height: 100%;
	top: 20px;
	width: auto;
	z-index: -1;
}

.services:nth-of-type(even) .servside span::before {
	display: none;
}

.galleryholder {
	position: relative;
	padding: 10px;
	display: flex;
	flex-direction: column;
	padding-top: 40px;
}

.gallery {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	border-bottom-right-radius: 20px;
	border-bottom-left-radius: 20px;
	overflow: hidden;
}

.gallerytop, .reviewstop {
	text-align: center;
	margin-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	align-content: stretch;
}

.galleryimg {
	width: 20%;
	padding: 1px;
	overflow: hidden;
	-webkit-transition: all .45s ease-in-out;
	   -moz-transition: all .45s ease-in-out;
	    -ms-transition: all .45s ease-in-out;
	     -o-transition: all .45s ease-in-out;
	        transition: all .45s ease-in-out;
}

.galleryimg img {
	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}

.galleryimg:hover {
	padding: 20px;
}

.galleryimg:hover img {
	scale: 1.3;
}

.gtleft, .gtright, .rvleft, .rvright {
	width: 50%;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.gtleft, .rvleft {
	background-color: var(--dark-color);
	border-top-left-radius: 20px;
}

.gtleft h1, .rvleft h1 {
	color: var(--light-color);
}

.gtleft p, .rvleft p {
	color: var(--off-white);
}

.gtright, .rvright {
	border-top-right-radius: 20px;
	border: solid 2px var(--alt-color);
	border-left: none;
	border-bottom: none;
	margin-left: 20px;
	width: calc(50% - 20px);
	background: url('../images/homelines.svg') #fff no-repeat bottom left;
	background-size: 100%;
}

.links {
	display: inline-block;
	position: relative;
}

.links p {
	margin: 0px;
	padding: 5px;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 12px;
}

.links p a:hover {
	color: var(--light-color);
}

.reviews {
	position: relative;
	text-align: center;
	padding-top: 40px;
}

.reviewsholder {
	position: relative;
	background-color: #222222;
	padding: 100px;
	border-bottom-right-radius: 20px;
	border-bottom-left-radius: 20px;
}

.reviewsholder .test {
	margin-bottom: 100px;
	position: relative;
	padding-bottom: 20px;
}

.reviewsholder .test::after {
	position: absolute;
	bottom: 0px;
	content: '';
	width: 50%;
	height: 1px;
	left: 0px;
	right: 0px;
	margin: 0 auto;
	background-color: #777777;
}

.grid {
	margin-top: 20px;
}

.grid-item {
  width: calc(50% - 50px);
  float: left;
  /* vertical gutter */
  margin-bottom: 50px;
}

.grid-sizer {
	width: 40%;
}

.grid::after {
  content: '';
  display: block;
  clear: both;
}

.contact {
	position: relative;
	padding-top: 40px;
	display: flex;
	align-content: stretch;
	flex-wrap: wrap;
	padding-bottom: 40px;
}

.coninfo {
	width: 50%;
	padding-right: 50px;
}

.conno {
	width: 50%;
	text-align: right;
}

.enquiry {
	position: relative;
	background-color: #ededed;
	padding: 60px 0;
}

.enquiry h2 {
	line-height: 50px;
}

.contact p {
	margin: 0px;
	padding-bottom: 5px;
}

.contact p.title {
	font-size: 22px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 10px 0;
}

.contact p.tel {
	font-family: 'Quicksand', sans-serif;
	font-size: 26px;
	text-transform: uppercase;
	font-weight: 600;
	line-height: 15px;
	padding: 15px 0;
}

.contact p.email {
	font-family: 'Quicksand', sans-serif;
	font-size: 18px;
}

.conno p a:hover {
	color: var(--light-color);
}

form {
	position: relative;
}

.formholder {
	display: flex;
	flex-wrap: wrap;
	align-content: stretch;
}

.formleft, .formright {
	width: 50%;
}

.formleft {
	padding-right: 10px;
}

.formright {
	padding-left: 10px;
}

input, textarea {
	padding: 25px !important;
	display: block !important;
	width: 100% !important;
	background-color: #fff !important;
}

textarea {
	resize: none;
	height: 200px;
}

.message {
	display: block;
	width: 100%;
}

.captchaholder {
	display: flex;
	flex-wrap: wrap;
	align-content: stretch;
	padding-bottom: 20px;
}

.captcha, .captxt {
	width: 300px;
}

.captxt {
	font-size: 12px;
	color: #a9a9a9;
}

.captcha img {
	height: 51px;
}

input[type="submit"] {
	border-radius: 10px !important;
	background-color: var(--dark-color) !important;
	color: var(--off-white) !important;
	border: none !important;
	font-family: 'Nanum Myeongjo', serif !important;
	font-size: 18px !important;
}

input[type="submit"]:hover {
	background-color: var(--light-color) !important;
	color: #2b2b2b !important;
}

.map {
	height: 700px;
	position: relative;
	z-index: 2;
}

.map iframe {
	width: 100%;
	height: 100%;
	pointer-events: none;
	filter: brightness(0.6)
}

.slick-prev::before, .slick-next::before {
	color: var(--dark-color);
}

.slick-prev {
	left: 40px !important;
}

.slick-next {
	right: 0px !important;
}





/*Peasant Screens*/
@media screen and (max-width: 1920px) {
	.wrapper {
		width: calc(100% - 80px);
	}
}
/*Big Lappy*/
@media screen and (max-width: 1440px) {
	.home .wrapper {
		flex-wrap: wrap;
	}
	.homeleft {
		width: 100%;
	}
	.homeright {
		width: 100%;
		padding-left: 0px;
	}
	.homeright img {
		border-radius: 20px;
	}
	.homecon {
		text-align: center;
		padding: 60px 0;
	}
	.wwp div {
		width: calc(50% - 20px);
		margin-bottom: 20px;
	}
	.photoft {
		height: 500px;
	}
	.home h1 {
		padding-top: 20px;
	}
	.testft {
		padding: 40px;
	}
	.conft {
		padding: 80px;
	}
	.conft p {
		font-size: 16px;
	}
	.photoft {
		background-size: 1700px auto;
	}
}
/*Basic lappy*/
@media screen and (max-width: 1366px) {
	.reviewsholder {
		padding: 40px;
	}
}
/*iPad Landscape*/
@media screen and (max-width: 1280px) {
	.homeyears p {
		font-size: 16px;
	}
	.servft {
		order: -1;
		width: 70%;
		margin-top: -120px;
	}
	.wcu {
		width: 100%;
		padding-right: 0px;
		padding: 50px 0;
	}
	.wcuwrapper {
		padding: 0px;
	}
	.wcuwrapper .wrapper {
		justify-content: center;
	}
	.testdeets {
		width: 100%;
	}
	.services {
		flex-wrap: wrap;
	}
	.servicetxt, .servside {
		width: 100%;
	}
	.services:nth-of-type(2n) .servside {
		order: 1;
	}
	.servicetxt {
		padding-top: 0px;
	}
	.services:nth-of-type(2n) .servicetxt {
		padding-right: 40px;
	}
	.gtleft, .gtright, .rvleft, .rvright {
		width: 100%;
	}
	.gtleft, .rvleft {
		border-top-right-radius: 20px;
	}
	.gtright, .rvright {
		border-top-right-radius: 0px;
		margin-top: 20px;
		border-top: none;
		border-bottom: solid 2px var(--alt-color);
		border-bottom-right-radius: 20px;
	}
	.gallery {
		border-top-right-radius: 20px;
		border-top-left-radius: 20px;
	}
	.galleryimg {
		width: 25%;
	}
}
/*iPad Landscape*/
@media screen and (max-width: 1024px) {
	header {
		height: 400px;
	}
	.home {
		margin-top: 400px;
	}
	.homeyears, .homesocial {
		width: 100%;
	}
	.proj-side {
		width: 250px;
	}
	.proj-main {
		width: calc(100% - 250px);
	}
	.testconft {
		flex-wrap: wrap;
	}
	.conft, .testft {
		width: 100%;
	}
	.conft {
		text-align: center;	
	}
	.testft {
		padding: 40px 100px;
	}
	.fcon p.email {
		display: block;
		padding-top: 20px;
	}
	.grid-item {
		width: 100%;
	}
	.coninfo, .conno {
		width: 100%;
		text-align: center;
	}
	.coninfo {
		padding-right: 0px;
	}
	.conno {
		padding-left: 0px;
	}
}
/*IPHONE X Landscape*/
@media screen and (max-width: 910px) {
}
/*iPad Portrait*/
@media screen and (max-width: 869px) {
	.twocols {
		columns: 1;
	}
	.photoft {
		background-size: 1000px auto;
	}
}
@media screen and (max-width: 869px) and (orientation:landscape) {
}
@media screen and (max-width: 860px) and (orientation:landscape) {
}
/*Phone*/
@media screen and (max-width: 768px) {
	.photoft {
		height: 300px;
	}
	.servft {
		width: 100%;
		margin-top: -40px;
	}
	.headcon {
	}
	.headcon p {
		font-size: 0px;
		line-height: 1.5;
		display: block;
		margin-top: 10px;
	}
	.headcon a i {
		display: block;
		font-size: 20px;
	}
	.testft {
		padding: 40px;
	}
	.testft .test {
		margin-right: 10px;
		margin-left: 10px;
	}
	p.author {
		border-radius: 20px !important;
		margin-bottom: 0px;
		width: 100%;
		border-bottom-right-radius: 0px !important;
		border-bottom-left-radius: 0px !important;
	}
	p.location {
		border-radius: 20px !important;
		margin-top: 0px;
		width: 100%;
		border-top-right-radius: 0px !important;
		border-top-left-radius: 0px !important;
	}
	.fcon p.email {
		font-size: 11px;
	}
	.ologo {
		height: 70px;
	}
	.overlay p {
		letter-spacing: 2px;
	}
	/* Animation Keyframes*/
@keyframes logoanim2 {
    0% { opacity: 0; letter-spacing: 10px; }
    100% { opacity: 1; letter-spacing: 2px; }
}
}
/*Phone*/
@media screen and (max-width: 680px) {
	nav {
		display: none;
	}
	.topbar {
		text-align: center;
	}
	i.fa-bars {
		display: inline-block;
		position: relative;
		z-index: 1;
		padding: 15px;
		font-size: 24px;
		cursor: pointer;
		margin: 0 auto;
		text-align: center;
		background-color: var(--off-white);
	}
	i.fa-bars:hover {
		color: var(--alt-color);
	}
	nav ul li {
		display: block;
		width: 100%;
		float: none;
	}
	nav {
		border-bottom-right-radius: 10px;
		border-bottom-left-radius: 10px;
		overflow: hidden;
	}
	nav ul li ul {
		position: relative;
		top: 0px;
		left: 0px;
		width: 100%;
		border-bottom-right-radius: 0px;
		border-bottom-left-radius: 0px;
		background-color: #ededed;
	}
	nav ul li ul li {
		background-color: #ededed;
	}
	nav ul li ul li {
		text-align: center;
	}
	.sub {
		padding-right: 20px;
	}
	.testft {
		padding: 40px;
	}
	.proj .wrapper {
		flex-wrap: wrap;
	}
	.proj-side, .proj-main {
		width: 100%;
	}
	.proj-main {
		padding-left: 40px;
	}
	.slick-prev {
		left: 0px !important;
	}
	.proj-side {
		align-items: center;
		padding-bottom: 40px;
	}
	.proj {
		padding: 40px 0;
	}
	.galleryimg {
		width: 50%;
	}
	.formleft, .formright {
		width: 100%;
		padding: 0px;
	}
	.captxt {
		margin-top: 20px;
		width: 100%;
	}
	.captcha {
		width: 100%;
	}
	.captcha img {
  		display: block;
  		margin: 0 auto;
	}
}
/*Phone*/
@media screen and (max-width: 550px) {
	.services {
		padding: 0px;
	}
}
/*Phone*/
@media screen and (max-width: 480px) {
	.home h1 {
		font-size: 20px;
	}

}
/*Phone*/
@media screen and (max-width: 425px) {
}
/*Phone*/
@media screen and (max-width: 395px) { 
}