/*Style Away, No Globals Please*/

@charset "utf-8";
/* CSS Document */

:root {
  --main-color: #e53327;
  --dark-color: #0c69af;
  --light-color: #ebebeb;
  --alt-color: #b6caec;
}

html, body {
	margin:0px;
	padding:0px;
	width: 100%;
	overflow-x: hidden;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

body {
	font-family: 'Barlow', sans-serif;
	position: relative;
	background-color: #fff;
}

* {
  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: 400;
	line-height: 28px;
}

a {
	color: inherit;
	text-decoration: none;
}

*:focus {
	outline: none;
}

h1 {
	font-family: 'Vollkorn', serif;
	color: #1c1c1c;
	font-size: 32px;
	font-weight: 400;
}

h2 {
	font-family: 'Poppins', sans-serif;
	color: var(--main-color);
	font-size: 40px;
	text-transform: uppercase;
	font-weight: 600;
}

h3 {
	font-family: 'Vollkorn', serif;
	text-transform: uppercase;
	color: var(--dark-color);
	font-size: 30px;
	font-weight: 600;
	letter-spacing: 2px;
}

.topbar {
	position: absolute;
	top: 0px;
	width: 100%;
	display: flex;
	justify-content: flex-end;
	z-index: 5;
	padding-top: 40px;
}

i.fa-bars {
	display: none;
}

nav {
	padding-right: 100px;
}

nav ul {
	margin: 0px;
	padding: 0px;
	display: flex;
}

nav ul li {
	list-style: none;
	color: #eeeeee;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: .5px;
	text-transform: uppercase;
	margin-right: 10px;
	position: relative;
	box-shadow: inset 0px 0 0 0 #eee;
	-webkit-transition: box-shadow 0.6s ease;
	   -moz-transition: box-shadow 0.6s ease;
	    -ms-transition: box-shadow 0.6s ease;
	     -o-transition: box-shadow 0.6s ease;
	        transition: box-shadow 0.6s ease;
}

nav ul li:hover {
	box-shadow: inset 0 60px 0 0 #eee;
	color: #353131;
}

nav ul li a {
	display: block;
	padding: 10px 30px;
}

.sub {
	cursor: pointer;
}

nav ul li ul {
	position: absolute;
	top: 50px;
	width: 200px;
	flex-direction: column;
	background-color: #eee;
	display: none;
}

nav ul li ul li {
	display: block;
	color: #414833;
	margin-right: 0px;
	box-shadow: inset 0 0 0 0 #ede0d4;
}

nav ul li ul li:hover {
	box-shadow: inset 200px 0 0 0 var(--light-color);
}

.social {
	padding-right: 40px;
}

.social i {
	font-size: 16px;
	padding: 15px;
	color: #eeeeee;
	border: solid 1px #fff;
	margin-left: 10px;
	box-shadow: inset 0 0 0 0 #eee;
	-webkit-transition: box-shadow .55s ease;
	   -moz-transition: box-shadow .55s ease;
	    -ms-transition: box-shadow .55s ease;
	     -o-transition: box-shadow .55s ease;
	        transition: box-shadow .55s ease;
}

.social i:hover {
	box-shadow: inset 50px 0 0 0 #eee;
	color: #353131;
}

header {
	border-top: solid 10px #fff;
	width: 100%;
	height: 100vh;
	position: relative;
	background-size: cover;
	border-bottom: solid 10px #fff;
}

.vegas {
	height: 100%;
	width: 100%;
	position: absolute !important;
	z-index: 0;
}

header {
	display: flex;
	justify-content: space-between;
}

header div {
	background-position: bottom !important;
}

header::after {
	position: absolute;
	width: 100%;
	height: 100%;
	content: '';
	top: 0px;
	left: 0px;
	background-color: #443f3f;
	opacity: 0.6;
}

.headgrid {
	width: 40%;
	position: relative;
	z-index: 2;
	left: 100px;
	height: 100%;
	padding: 100px 0;
}

.gridrow {
	display: flex;
	height: 25%;
	position: relative;
	width: 100%;
	overflow: hidden;
	border-bottom: solid 1px #eee;
}

.gridcol {
	width: 25%;
	border-right: solid 1px #eee;
	overflow: hidden;
}

.gridrow:last-of-type {
	border-bottom: none;
}

.gridcol:last-of-type {
	border-right: none;
}

.logo {
	background-color: #fff;
	display: flex;
	align-items: center;
}

.logo img {
	padding: 30px;
	margin: 0 auto;
	display: block;
	left: 0px;
	position: relative;
	animation-duration: 2s;
  animation-name: logoanim;
}

@keyframes logoanim {
  from {
  	left: -100%;
  }

  to {
  	left: 0px;
  }
}

.new {
	background-color: var(--dark-color);
}

.faded {
	background-color: rgba(65, 72, 51, 0.6)
}

.one {
  animation-duration: 1s;
  animation-name: fadeone;
  background-color: transparent;
}

@keyframes fadeone {
  from {
  	background-color: var(--dark-color);
  }

  to {
  	background-color: transparent;
  }
}

.two {
  animation-duration: 1s;
  animation-name: fadetwo;
  background-color: transparent;
}

@keyframes fadetwo {
  from {
  	background-color: var(--dark-color);
  }

  10% {
  	background-color: var(--dark-color);
  }

  to {
  	background-color: transparent;
  }
}

.three {
  animation-duration: 1s;
  animation-name: fadethree;
  background-color: transparent;
}

@keyframes fadethree {
  from {
  	background-color: var(--dark-color);
  }

  20% {
  	background-color: var(--dark-color);
  }

  to {
  	background-color: transparent;
  }
}

.four {
  animation-duration: 1s;
  animation-name: fadefour;
  background-color: transparent;
}

@keyframes fadefour {
  from {
  	background-color: var(--dark-color);
  }

  30% {
  	background-color: var(--dark-color);
  }

  to {
  	background-color: transparent;
  }
}

.fourb {
  animation-duration: 1s;
  animation-name: fadefourb;
  background-color: rgba(12, 105, 175, 0.6);
}

@keyframes fadefourb {
  from {
  	background-color: var(--dark-color);
  }

  40% {
  	background-color: var(--dark-color);
  }

  to {
  	background-color: rgba(12, 105, 175, 0.6);
  }
}

.five {
  animation-duration: 1s;
  animation-name: fadefive;
  background-color: transparent;
}

@keyframes fadefive {
  from {
  	background-color: var(--dark-color);
  }

  55% {
  	background-color: var(--dark-color);
  }

  to {
  	background-color: transparent;
  }
}

.six {
  animation-duration: 1s;
  animation-name: fadesix;
  background-color: transparent;
}

@keyframes fadesix {
  from {
  	background-color: var(--dark-color);
  }

  65% {
  	background-color: var(--dark-color);
  }

  to {
  	background-color: transparent;
  }
}

.seven {
  animation-duration: 1s;
  animation-name: fadeseven;
  background-color: transparent;
}

@keyframes fadeseven {
  from {
  	background-color: var(--dark-color);
  }

  75% {
  	background-color: var(--dark-color);
  }

  to {
  	background-color: transparent;
  }
}

.headside {
	width: 40%;
	height: 100%;
	padding-bottom: 200px;
	z-index: 2;
	display: flex;
	justify-content: flex-end;
	flex-direction: column;
}

.headside h1 {
	color: var(--light-color);
	font-size: 40px;
	font-weight: 400;
	font-style: italic;
	padding-right: 150px;
}

.headside h1 span {
	font-family: 'Poppins', sans-serif;
	font-weight: 900;
	text-transform: uppercase;
	font-style: normal;
	color: #fff;
	padding: 0 10px;
}

.headside h1 b {
	text-decoration: underline;
	font-weight: 300;
}

.headcon {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: relative;
	bottom: 100px;
}

.headcon p {
	position: relative;
	font-family: 'Poppins', sans-serif;
	padding: 30px 60px;
	margin: 0px;
	background-color: var(--main-color);
	color: #eee;
	display: inline-block;
	font-size: 30px;
	font-weight: 600;
	z-index: 3;
}

.headcon p:first-of-type {
	font-size: 20px;
}

.headcon p:first-of-type::before {
	position: absolute;
	bottom: 0px;
	height: 1px;
	left: -40px;
	right: -200px;
	content: '';
	background-color: rgba(238,238,238,0.5);
}

.headcon p:last-of-type {
	left: 50px;
	background-color: var(--dark-color);
	z-index: 2;
}

.headcon p:last-of-type::before {
	position: absolute;
	width: 1px;
	left: 0px;
	bottom: -40px;
	top: -120px;
	content: '';
	background-color: rgba(238,238,238,0.5);
}

.headcon p b {
	font-weight: 300;
	color: #eee0d5;
}

.headsmall {
	height: 450px;
}

.hslogo {
	position: relative;
	width: 40%;
	z-index: 2;
	height: 100%;
	left: 200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.hslogo span {
	position: relative;
}

.hslogo span::before {
	position: absolute;
	content: '';
	top: -60px;
	bottom: -60px;
	width: 100%;
	left: 0px;
	border-left: solid 1px #fff;
	border-right: solid 1px #fff;
	pointer-events: none;
}

.hslogo span::after {
	position: absolute;
	content: '';
	left: -60px;
	right: -60px;
	height: 100%;
	top: 0px;
	border-top: solid 1px #fff;
	border-bottom: solid 1px #fff;
	pointer-events: none;
}

.hslogo span img {
	height: 150px;
	background-color: #fff;
	padding: 20px;
}

.wrapper {
	position: relative;
	width: 1920px;
	margin: 0 auto;
}

.home {
	position: relative;
}

.home h2 {
	font-weight: 600;
}

.homeboxes {
	position: relative;
	display: flex;
	align-content: stretch;
	padding-top: 20px;
	padding-bottom: 40px;
}

.hbmain {
	width: 60%;
	padding: 40px 80px;
	background-color: var(--light-color);
	margin-right: 40px;
}

.hbside {
	width: 40%;
	display: flex;
	flex-direction: column;
}

.hbside-top {
	position: relative;
	height: 50%;
	background-color: var(--dark-color);
	margin-bottom: 20px;
}

.hbside-top::before {
	position: absolute;
	top: 20px;
	bottom: 20px;
	left: 20px;
	right: 20px;
	content: '';
	border: solid 1px #eee;
	pointer-events: none;
}

.hbside-btm {
	height: 50%;
	background-color: var(--main-color);
	margin-top: 20px;
	padding: 40px;
}

.hbside-btm p {
	font-family: 'Vollkorn', serif;
	font-size: 26px;
	line-height: 36px;
	color: #eee;
}

.homesmallimg {
	background: url('../images/homesmall.jpg') no-repeat center;
	background-size: cover;
}

.whychoose {
	position: relative;
}

.homewc {
	overflow: hidden;
	position: relative;
}

.homewc::before {
	position: absolute;
	left: -60px;
	bottom: -350px;
	height: 1800px;
	width: 850px;
	content: '';
	background: url('../images/smallpattern.svg') no-repeat left;
	background-size: contain;
	opacity: 0.1;
}

.whychoose h2 {
	margin-top: 0px;
}

.wcimage {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 50%;
	height: 700px;
	content: '';
	background: url('../images/wcimg.jpg') no-repeat top right;
	background-size: cover;
}

.wctxt {
	width: 45%;
	padding-left: 80px;
	padding-bottom: 50px;
}

.wctxt h3 {
	background-color: var(--light-color);
	display: inline-block;
	padding: 10px 20px;
}

.accreds {
	position: absolute;
	bottom: 40px;
	right: 0px;
	background-color: #fff;
	z-index: 2;
	width: 300px;
}

.accreds::after {
	border: solid 1px #fff;
	content: '';
	position: absolute;
	top: -10px;
	bottom: -10px;
	left: -10px;
	right: -10px;
	z-index: 3;
	pointer-events: none;
}

.accreds p {
	font-family: 'Poppins', sans-serif;
	display: block;
	padding: 15px;
	font-size: 22px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--dark-color);
	text-align: center;
	margin: 0px;
	padding: 20px 0;
	margin-bottom: 40px;
}

.accredslider span {
	float: left;
	padding: 0 40px;
}

.accred {
	display: flex !important;
	justify-content: center;
	align-content: center;
}

.accred img {
	max-height: 120px;
}

.wrapper ul li {
	list-style: none;
	font-weight: 500;
	color: #232323;
	line-height: 32px;
	position: relative;
}

.wrapper ul li::before {
	left: -30px;
	font-family: "Font Awesome 5 pro";
	content: '\f352';
	position: absolute;
	color: var(--alt-color);
}

.testfeature {
	position: relative;
	background: url('../images/testbg2.jpg') no-repeat bottom center;
	background-size: cover;
	padding: 220px 80px;
}

.testfeature::after {
	position: absolute;
	z-index: 0;
	background-color: #212121;
	width: 100%;
	height: 100%;
	content: '';
	top: 0px;
	left: 0px;
	opacity: 0.6;
}

.test {
	background-color: var(--light-color);
	padding: 40px;
	position: relative;
	z-index: 2;
	width: 50%;
	margin: 0 auto;
}

.test .stars {
	position: absolute;
	top: -40px;
}

.stars i {
	color: #eee;
	font-size: 20px;
	margin-right: 10px;
}

.test p {
	font-family: 'Vollkorn', serif;
	font-size: 18px;
	line-height: 30px;
	color: #414934;
	font-weight: 400;
	margin: 0px;
}

.testbottom {
	width: 100%;
	bottom: -50px;
	display: flex;
	justify-content: flex-start;
	left: 0px;
}

.testbottom p {
	display: inline-block;
	background-color: var(--dark-color);
	padding: 10px 30px;
	color: #eee;
	font-size: 13px;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
	position: relative;
	padding-left: 40px;
}

.testbottom p.location {
	background-color: var(--alt-color);
}

p.author {
	padding-left: 50px;
}

p.author::after {
	position:absolute;
	content: '';
	right: 0px;
	height: 80px;
	width: 1px;
	background-color: #eee;
	top: 0px;
	z-index: 1;
}

p.location::before {
	font-family: "Font Awesome 5 pro";
	content: '\f3c5';
	position: absolute;
	left: 15px;
	color: #eee;	
	font-size: 16px;
}

p.author::before {
	font-family: "Font Awesome 5 pro";
	content: '\f4a3';
	position: absolute;
	left: 15px;
	color: #eee;	
	font-size: 16px;
}

p.location {
	font-weight: 400;
}

.testfeature .wrapper {
	z-index: 1;
	text-align: center;
	margin-top: 180px;
}

.testfeature .wrapper p {
	color: #eee;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
}

span.btn {
	font-family: 'Vollkorn', serif;
	display: inline-block;
	position: relative;
	background-color: var(--alt-color);
	color: #eee;
	font-size: 22px;
	box-shadow: inset 0 0 0 0 var(--light-color);
	-webkit-transition: box-shadow .5s ease;
	   -moz-transition: box-shadow .5s ease;
	    -ms-transition: box-shadow .5s ease;
	     -o-transition: box-shadow .5s ease;
	        transition: box-shadow .5s ease;
}

span.btn::after {
	position: absolute;
	right: -5px;
	width: 4px;
	height: 100%;
	top: 0px;
	content: '';
	background-color: var(--alt-color);
	z-index: 1;
}

span.btn a {
	padding: 20px 40px;
	display: block;
}

span.btn:hover {
	box-shadow: inset 0 80px 0 0 var(--light-color);
	color: #414934;
}

.testfeature span.btn::after {
	background-color: var(--light-color);
}

.servfeature {
	text-align: center;
	position: relative;
}

.servfeature::before {
	background: url('../images/pattern.svg') no-repeat center;
	background-size: cover;
	opacity: 0.1;
	width: 100%;
	position: absolute;
	left: 0px;
	content: '';
	z-index: -1;
	height: 40%;
	top: 35%;
}

.servfeature .wrapper > p {
	font-family: 'Poppins', serif;
	font-size: 22px;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--dark-color);
	padding: 40px 100px;
}

.servfeature .wrapper > p b {
	color: var(--alt-color);
	font-weight: 600;
}

.servfeature .wrapper > p span {
	color: var(--main-color);
	font-weight: 400;
	text-decoration: underline;
}

.servholder {
	display: flex;
	padding: 40px 0;
	position: relative;
	padding-bottom: 100px;
}

.serv {
	width: 33.3333333%;
	position: relative;
	margin: 20px;
	background-color: #212121;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.serv::before {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 100%;
	height: 100%;
	content: '';
	background-color: var(--light-color);
	z-index: -1;
	-webkit-transition: all .25s ease-In;
	   -moz-transition: all .25s ease-In;
	    -ms-transition: all .25s ease-In;
	     -o-transition: all .25s ease-In;
	        transition: all .25s ease-In;
}

.serv:first-of-type:hover::before {
	width: calc(100% + 20px);
	height: calc(100% + 20px);
	top: 20px;
	right: 20px;
	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}

.serv:last-of-type:hover::before {
	width: calc(100% + 20px);
	height: calc(100% + 20px);
	top: 20px;
	left: 20px;
	right: auto;
	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}

.serv:nth-of-type(2)::before {
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	width: auto;
	height: auto;
	-webkit-transition: all .25s ease-In;
	   -moz-transition: all .25s ease-In;
	    -ms-transition: all .25s ease-In;
	     -o-transition: all .25s ease-In;
	        transition: all .25s ease-In;
}

.serv:nth-of-type(2):hover::before {
	top: -40px;
	left: 20px;
	bottom: -40px;
	right: 20px;
	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}

.serv img {
	position: relative;
	top: 0px;
	left: 0px;
	opacity: 1;
	z-index: 1;
	-webkit-transition: opacity 0.4s ease;
	   -moz-transition: opacity 0.4s ease;
	    -ms-transition: opacity 0.4s ease;
	     -o-transition: opacity 0.4s ease;
	        transition: opacity 0.4s ease;
}

.serv:hover img {
	opacity: 0.3;
}

.serv p {
	display: inline-block;
	position: absolute;
	margin: 0px;
	z-index: 2;
	color: #eee;
	padding: 20px;
	align-self: center;
	font-size: 20px;
	font-family: 'Vollkorn', serif;
	text-transform: uppercase;
	opacity: 0;
	box-shadow: inset 0 0 0 0 var(--light-color);
}

.serv:hover p {
	opacity: 1;
	box-shadow: inset 0 80px 0 0 #eee;
	-webkit-transition: color, box-shadow 0.7s ease;
	   -moz-transition: color, box-shadow 0.7s ease;
	    -ms-transition: color, box-shadow 0.7s ease;
	     -o-transition: color, box-shadow 0.7s ease;
	        transition: color, box-shadow 0.7s ease;
	transition-delay: 0.5s, 0.3s;
	color: #414934;
}

.serv p::before {
	width: 100%;
	position: absolute;
	content: '';
	border-left: solid 1px #eee;
	border-right: solid 1px #eee;
	top: -60px;
	bottom: -60px;
	left: 0px;
	pointer-events: none;
}

.serv p::after {
	height: 100%;
	position: absolute;
	content: '';
	border-top: solid 1px #eee;
	border-bottom: solid 1px #eee;
	top: 0px;
	right: -80px;
	left: -80px;
	pointer-events: none;
}

footer {
	background-color: var(--dark-color);
}

footer div.wrapper {
	display: flex;
	position: relative;
	justify-content: space-between;
	flex-direction: row;
	padding: 80px 0;
}

footer p, footer .wrapper ul li {
	margin: 0px;
	color: var(--light-color);
}

footer .wrapper ul {
	padding: 0px;
	margin: 0px;
}

.fcon p {
	font-family: 'Vollkorn', serif;
	font-size: 32px;
	margin-bottom: 20px;
}

.fcon p.email {
	font-size: 22px;
}

.fsocial {
	padding-bottom: 20px;
}

.fsocial i {
	color: var(--alt-color);
	font-size: 22px;
	margin-right: 20px;
}

.fsocial i:hover {
	color: var(--light-color);
}

.fcopy p {
	margin-bottom: 10px;
}

p.seo {
	color: var(--alt-color);
}

footer ul li:hover {
	color: #fff;
}

.contact {
	position: relative;
}

.conboxes {
	display: flex;
	align-content: stretch;
	padding-bottom: 40px;
}

.conboxes div {
	width: 33.3333333%;
	padding: 40px 80px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.conboxes p {
	margin: 0px;
	margin-bottom: 20px;
}

.condeets {
	background-color: var(--light-color);
}

.contwo {
	background-color: var(--dark-color);
}

.contwo p{
	color: var(--light-color);
	text-align: center;
}

p.contitle {
	font-family: 'Vollkorn', serif;
	font-size: 32px;
	font-weight: 600;
	color: var(--main-color);
	margin: 20px 0;
}

p.conno {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 30px;
	text-transform: uppercase;
}

p.conemail {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 22px;
	text-transform: uppercase;
	color: #fff;
}

.conimg {
	background: url('../images/conimg.jpg') no-repeat center;
	background-size: cover;
	margin: 0 40px;
}

.conimg::after {
	position: absolute;
	content: '';
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: #171717;
	opacity: 0.5;
}

.map {
	position: relative;
	height: 500px;
	margin-bottom: 40px;
}

.map iframe {
	width: 100%;
	height: 100%;
	filter: hue-rotate(300deg);
}

.enquiries {
	position: relative;
	padding: 100px 0;
}

.enquiries .wrapper {
	display: flex;
	justify-content: flex-end;
	position: relative;
	z-index: 2;
}

.innerenquiry {
	width: 60%;
	position: relative;
	background-color: var(--main-color);
	padding: 40px;
}

.enquiries h3 {
	color: var(--light-color);
	margin-top: 0px;
}

.enquiries p {
	color: #eee;
}

form a {
	font-size: 14px;
	color: #eee;
}

.formholder {
	display: flex;
	align-content: stretch;
}

.formholder > div {
	width: 50%;
}

form textarea, .formright div {
	height: 100%;
	resize: none;
}

.formleft {
	padding-right: 40px;
}

.formleft div:last-of-type input {
	margin-bottom: 0px;
}

.enquiriesimg {
	background: url('../images/conbg.jpg') no-repeat center;
	position: absolute;
	top: 40px;
	bottom: 40px;
	left: 0px;
	width: 50%;
	content: '';
	z-index: 0;
	background-size: cover;
}

input[type="submit"] {
	font-family: 'Vollkorn', serif;
	display: inline-block;
	position: relative;
	background-color: #232323;
	color: #eee;
	font-size: 22px;
	border: none;
	padding: 20px 40px;
	margin-top: 10px;
	box-shadow: inset 0 0 0 0 var(--light-color);
	-webkit-transition: box-shadow .5s ease;
	   -moz-transition: box-shadow .5s ease;
	    -ms-transition: box-shadow .5s ease;
	     -o-transition: box-shadow .5s ease;
	        transition: box-shadow .5s ease;
}

.captcha {
	padding: 10px 0;
}

input[type="submit"]::after {
	position: absolute;
	right: -5px;
	width: 4px;
	height: 100%;
	top: 0px;
	content: '';
	background-color: var(--alt-color);
	z-index: 1;
}

input[type="submit"]:hover {
	box-shadow: inset 0 80px 0 0 var(--light-color);
	color: var(--dark-color);
}

.reviewswrapper {
	position: relative;
	background-color: var(--main-color);
	padding: 40px 0;
	padding-bottom: 80px;
}

.grid {
	margin-top: 100px;
}

.grid-item {
  width: calc(100% - 50px);
  float: left;
  /* vertical gutter */
  margin-bottom: 20px;
}

.grid-sizer {
	width: 40%;
}

.grid::after {
  content: '';
  display: block;
  clear: both;
}

.reviewswrapper h2 {
	color: var(--light-color);
}

p.revintro {
	color: #eee;
}

.grid .test {
	margin-bottom: 180px;
}

.gallerywrapper {
	position: relative;
	padding-bottom: 40px;
}

.galleryboxes {
	position: relative;
	display: flex;
	align-content: stretch;
	margin-top: 40px;
}

.galleryboxes div {
	width: 50%;
	padding: 40px 80px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.gallerytitle {
	background-color: var(--main-color);
	margin-right: 10px;
}

.gallerytitle h2 {
	color: var(--light-color);
}

.galleryblurb {
	background-color: var(--light-color);
	margin-left: 10px;
}

.gallinks {
	display: inline-flex;
}

.gallinks p {
	margin-right: 40px;
	color: #eee0d5;
	font-weight: 500;
}

.gallinks p a {
	display: inline-block;
	padding: 5px 20px;
	background-color: var(--dark-color);
	padding-left: 40px;
	position: relative;
}

.gallinks p a::before {
	position: absolute;
	left: 10px;
	font-size: 16px;
	font-family: "Font Awesome 5 pro";
	content: '\f352';
}

.gallery {
	position: relative;
	overflow: hidden;
	padding-top: 40px;
}

.galleryimg {
	display: block;
	width: 20%;
	float: left;
	padding: 5px;
	position: relative;
	overflow: hidden;
}

.servicesimg {
	position: absolute;
	left: 0px;
	width: 50%;
	top: 40px;
	bottom: 40px;
	background: url('../images/serv1.jpg') no-repeat center;
	background-size: cover;
	content: '';
	max-height: 900px;
	z-index: -1;
}

.bathroom {
	background-image: url('../images/testbg2.jpg');
}

.servicesholder {
	position: relative;
	padding-bottom: 40px;
	overflow: hidden;
}

.servicesholder::before {
	position: absolute;
	right: -60px;
	top: -100px;
	height: 100%;
	width: 300px;
	content: '';
	background: url('../images/smallpattern2.svg') no-repeat right;
	z-index: -1;
	opacity: 0.2;
}

.servicesholder .wrapper {
	display: flex;
	justify-content: flex-end;
}

.servicestext {
	width: 55%;
	padding: 40px;
	background-color: var(--light-color);
	position: relative;
	margin-top: 120px;
	margin-bottom: 40px;
}

.featuredservices .wrapper {
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-content: stretch;
	padding-bottom: 40px;
}

.fs {
	width: calc(50% - 20px);
	position: relative;
	padding: 40px;
}

.fs p {
	color: #eee;
}

.fs:nth-of-type(even) {
	background-color: var(--alt-color);
}

.fs:nth-of-type(odd) {
	background-color: var(--main-color);
}

.fs:nth-of-type(odd) h3 {
	color: var(--light-color);
}




/*Peasant Screens*/
@media screen and (max-width: 1920px) {
	.headside {
		padding-bottom: 40px;
	}
	.headside h1 {
		font-size: 34px;
		padding-right: 40px;
	}
	.headgrid {
		left: 40px;
		padding-bottom: 40px;
	}
	.wrapper {
		width: calc(100% - 80px);
	}
}
/*Big Lappy*/
@media screen and (max-width: 1440px) {
	.headside h1 {
		font-size: 30px;
	}
	.headcon p {
		font-size: 26px;
	}
	.headgrid {
		width: 50%;
	}
	.testfeature .test {
		width: 75%;
	}
	.hslogo {
		padding-top: 170px;
		height: auto;
	}
	.headsmall {
		display: block;
	}
}
/*Basic lappy*/
@media screen and (max-width: 1366px) {
	.headside h1 {
		font-size: 26px;
	}
	.headcon p {
		font-size: 22px;
	}

}
/*iPad Landscape*/
@media screen and (max-width: 1280px) {
	.gridrow:nth-of-type(2) div.new {
		display: none;
	}
	.logo {
		width: 50%;
	}
	.logo img {
		height: 100%;
	}
	.wcimage {
		position: relative;
		width: calc(100% - 40px);
		margin-bottom: 40px;
	}
	.wctxt {
		width: calc(100% - 40px);
		left: 40px;
		display: flex;
		justify-content: space-between;
		align-content: stretch;
	}
	.accreds {
		position: relative;
		width: 100%;
		padding-top: 40px;
	}
	.accred {
		display: block;
	}
	.accred img {
		max-height: 60px;
	}
	.wctxt div {
		width: calc(50% - 40px);
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	footer .wrapper {
		flex-wrap: wrap;
	}
	.fcon, .fnav, .fadd {
		width: 33.33333333%;
	}
	.fcopy {
		width: 100%;
	}
	.formholder {
		flex-wrap: wrap;
	}
	.formleft {
		padding-right: 0px;
	}
	.formholder > div {
		width: 100%;
	}
	.formleft div:last-of-type input {
		margin-bottom: 20px;
	}
}
/*iPad Landscape*/
@media screen and (max-width: 1024px) {
	.headgrid {
		width: calc(100% - 120px);
		height: 964px;
		left: auto;
		right: auto;
		padding: 0px;
		margin-top: 100px;
	}
	.headside {
		width: 100%;
	}
	header {
		flex-wrap: wrap;
		height: auto;
		justify-content: center;
	}
	.gridrow:nth-of-type(2) div.new {
		display: block;
	}
	.logo {
		width: 25%;
	}
	.logo img {
		height: auto;
	}
	.headside {
		height: auto;
		justify-content: center;
		align-content: center;
		align-items: center;
	}
	.headcon {
		bottom: auto;
		text-align: center;
		width: 80%;
		top: 40px;
	}
	.headside h1 {
		padding: 0 80px;
		padding-top: 120px;
	}
	.homeboxes {
		flex-wrap: wrap;
	}
	.hbmain, .hbside {
		width: 100%;
		margin-right: 0px;
	}
	.hbside {
		margin-top: 40px;
	}
	.hbside-btm, .hbside-top {
		height: auto;
	}
	.homesmallimg {
		height: 500px;
	}
	.wctxt {
		width: 100%;
		left: 0px;
		padding-left: 0px;
	}
	.fcon, .fnav, .fadd, .fcopy {
		width: 50%;
	}	
	.fadd, .fcopy {
		margin-top: 40px;
	}
	.contwo {
		order: -1;
	}
	.conboxes {
		flex-wrap: wrap;
	}
	.condeets, .contwo {
		width: 50% !important;
	}
	.conimg {
		width: 100% !important;
		height: 400px;
		margin: 0px;
		margin-top: 40px;
	}
	.galleryboxes {
		flex-wrap: wrap;
	}
	.galleryboxes div {
		width: 100%;
		height: auto !important;
	}
	.gallerytitle {
		margin-right: 0px;
	}
	.galleryblurb {
		margin-left: 0px;
	}
	.servicestext {
		width: 100%;
		margin-top: 0px;
		margin-bottom: 0px;
	}
	.servicesimg {
		position: relative;
		width: 80%;
		left: 0px;
		height: 400px;
		margin-bottom: 40px;
	}
}
/*IPHONE X Landscape*/
@media screen and (max-width: 910px) {
	nav {
		position: absolute;
		height: 100vh;
		width: calc(100% - 40px);
		left: -100%;
		top: 0px;
		background-color: #fff;
		padding-top: 120px;
		padding-right: 0px;
		-webkit-transition: left .5s ease;
		   -moz-transition: left .5s ease;
		    -ms-transition: left .5s ease;
		     -o-transition: left .5s ease;
		        transition: left .5s ease;
	}
	.navopen {
		left: 0px;
	}
	nav ul {
		flex-direction: column;
		width: 60%;
		margin: 0 auto;
	}
	nav ul li {
		color: #414934;
		text-align: center;
		margin-right: 0px;
	}
	nav ul li ul {
		position: relative;
		top: 0px;
		width: 90%;
		background-color: var(--alt-color);
	}
	nav ul li ul li {
		color: #eee;
	}
	nav ul li:hover {
		box-shadow: inset 0 48px 0 0 var(--light-color);
	}
	nav ul li ul li:hover {
		box-shadow: inset 0 48px 0 0 var(--dark-color);
		color: #eee;
	}
	.headgrid {
		height: 794px;
	}
	i.fa-bars {
		display: block;
		color: #eee;
		position: absolute;
		z-index: 5;
		top: 40px;
		left: 20px;
		font-size: 30px;
		font-size: 16px;
    padding: 15px;
   	color: #414934;
    border: solid 1px #fff;
    margin-left: 10px;
    box-shadow: inset 0 80px 0 0 #eee;
    cursor: pointer;

	}
	i.fa-bars:hover {
		box-shadow: inset 0 0 0 0 #eee;
		color: #eee;
	}
	.darkbars:hover {
		background-color: var(--dark-color);
		color: #eee;
	}
}
/*iPad Portrait*/
@media screen and (max-width: 869px) {
	.wctxt {
		flex-wrap: wrap;
	}
	.wctxt div {
		width: 100%;
	}
	.testfeature {
		padding: 150px 40px;
	}
	.testfeature .test {
		width: 90%;
	}
	.servfeature .wrapper > p {
		padding: 40px;
	}
	.serv {
		float: left;
		width: 100%;
	}
	.servholder {
		display: block;
	}
	.serv img {
		position: relative;
	}
	.serv p {
		position: absolute;
	}
	.serv::before {
		top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    width: auto;
    height: auto;
	}
	.serv:hover::before {
		top: -40px !important;
		left: 20px !important;
		bottom: -40px !important;
		right: 20px !important;
		-webkit-transition: all .25s ease;
		   -moz-transition: all .25s ease;
		    -ms-transition: all .25s ease;
		     -o-transition: all .25s ease;
		        transition: all .25s ease;
	}
	.headgrid {
		height: 753px;
	}
	.grid-item {
		width: 100%;
	}
	.galleryboxes div {
		padding: 40px;
	}
	.gallinks {
		display: flex;
		flex-direction: column;
	}
	.gallinks p {
		margin-top: 0px;
	}
	.galleryimg {
		width: calc(25% - 8px);
	}
	.featuredservices {
		flex-wrap: wrap;
	}
	.fs {
		width: 100%;
		margin-bottom: 40px;
	}
	.fs:last-of-type {
		margin-bottom: 0px;
	}
}
@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) {
	.headgrid {
		height: 652px;
	}
	.condeets, .contwo {
		width: 100% !important;
	}
	.enquiriesimg {
		position: relative;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 300px;
	}
	.enquiries {
		padding: 0px;
	}
	.innerenquiry {
		width: 100%;
		margin: 40px 0;
	}
	.hslogo {
		width: 100%;
		left: 0px;
	}
	.hslogo span {
		display: block;
		margin: 0 auto;
	}
	.conboxes div {
		padding: 20px;
	}
	p.conemail {
		font-size: 16px;
	}
}
/*Phone*/
@media screen and (max-width: 680px) {
	.headgrid {
		height: 564px;
	}
	.gridrow:last-of-type {
		display: none;
	}
	.gridrow div:last-of-type {
		display: none !important;
	}
	.gridrow {
		height: 33.3333333%;
	}
	.gridcol {
		width: 33.33333333%;
	}
	.gridrow .gridcol:nth-of-type(3) {
		border-right: none;
	}
	.gridrow:nth-of-type(3) {
		border-bottom: none;
	}
	footer .wrapper div {
		width: 100%;
		text-align: center;
	}
	.fnav ul {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-content: center;
		align-items: center;
	}
	.fnav ul li {
		display: inline-block;
	}
	.fnav ul li::before {
		display: none;
	}
	.testfeature .test {
		width: 100%;
	}
	.testfeature .test p {
		font-size: 16px;
	}
	.galleryimg {
		width: calc(50% - 8px);
	}
}
/*Phone*/
@media screen and (max-width: 480px) {
	.gridrow:first-of-type, .gridrow:nth-of-type(3) {
		display: none;
	}
	.gridrow .gridcol:first-of-type, .gridrow .gridcol:nth-of-type(3), div.new {
		display: none !important;
	}
	.gridrow:nth-of-type(2) {
		height: 100%;
		overflow: visible;
	}
	.logo {
		width: 100%;
		height: auto;
		overflow: visible;
	}
	.headgrid {
		width: 50%;
		height: 200px;
		margin-top: 150px;
		margin-bottom: 100px;
	}
	.headside h1 {
		text-align: center;
	}
	.hbmain {
		padding: 40px;
	}
	.logo span {
		position: relative;
		display: block;
		height: 100%;
		width: 100%;
		overflow: hidden;
		display: flex;
		align-content: center;
		align-items: center;
	}

	.logo::before {
		position: absolute;
		content: '';
		top: -40px;
		bottom: -40px;
		width: calc(100% + 1px);
		left: 0px;
		border-left: solid 1px #eee;
		border-right: solid 1px #eee;
		pointer-events: none;
		z-index: 2;
	}

	.logo::after {
		position: absolute;
		content: '';
		left: -40px;
		right: -40px;
		height: calc(100% + 1px);
		top: 0px;
		border-top: solid 1px #eee;
		border-bottom: solid 1px #eee;
		pointer-events: none;
		z-index: 2;
	}
	.wrapper {
		width: calc(100% - 40px);
	}
	.hbside-btm p {
		font-size: 22px;
	}
	.hbside-btm {
		padding: 20px;
	}
	.testbottom {
		flex-wrap: wrap;
		bottom: 0px;
		position: relative;
		margin-top: 20px;
	}
	p.author::after {
		display: none;
	}
	.test p {
		font-size: 14px;
	}
	.author, .location {
		width: 100%;
	}
}
/*Phone*/
@media screen and (max-width: 425px) {
	.headcon p {
		padding: 20px;
	}
	.home h2 {
		font-size: 28px;
	}
	.wctxt div:first-of-type {
		padding: 20px;
	}
	.servfeature .wrapper > p {
		font-size: 16px;
		padding: 20px 0px
	}
}
/*Phone*/
@media screen and (max-width: 395px) { 
	.galleryimg {
		width: 100%;
	}
}