/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;700&family=Merriweather:wght@300;400;700;900&display=swap');

/* Defaults */
body{
    font-family: 'Merriweather', serif;
}
*:focus{outline: none;}
a{text-decoration: none;color: inherit;}
ul,ol{list-style: none; margin: 0; padding: 0;}
.tal {text-align: left!important;}
.tac {text-align: center!important;}
.tar {text-align: right!important;}
.navToggle {display: none;}


/* Header */

.topBar {
    background-color: white;
	position: relative;
	z-index: 100;
    padding: 20px 0px;
}
.logo img {
    width: 150px;
}
nav ul li {
    display: inline-block;
    padding-left: 30px;
}
nav ul li a {
    font-weight: 700;
}
.splashBackdrop {
    padding: 100px 0px;
    background-image: url(../images/backdrop.jpg);
    background-size: cover;
    position: relative;
    z-index: 1;
}
.splashBackdrop:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fe8d68;
    opacity: 0.1;
    z-index: -1;
}
.splashContents {
    position: relative;
    z-index: 1;
}
.splashSlider .slide {
    width: 100%;
    position: relative;
    z-index: 100;
}
.splashSlider .slide:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    opacity: 0.9;
}
.splashText {
    position: absolute;
    bottom: 30px;
    width: 60%;
    left: 50px;
    color: white;
}
.splashText h1 {
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
    color: #fe8d68;
}
.splashText p {
    margin: 0;
    padding: 0;
}
.splashText hr {
    border: none;
    height: 1px;
    width: 75%;
    background-color: white;
    opacity: 0.3;
    margin: 20px 0;
}
.splashText a {
    display: inline-block;
    color: #b2de62;
}
.splashText a:after {
    content: '-';
    margin: 0px 15px;
}
.splashText a:last-of-type:after {
    display: none;
}

/* Home Reviews */

.homeReviews {
    padding: 100px 0px;
}
.homeReviews p:before {
	content: '\f10d';
	font-family: 'Font Awesome 5 Pro';
	font-weight: 900;
	padding-right: 20px;
	color: #fe8d68;
}
.homeReviews p:after {
	content: '\f10e';
	font-family: 'Font Awesome 5 Pro';
	font-weight: 900;
	padding-left: 20px;
	color: #fe8d68;
}

/* Home Boxes */

.homeBoxes {
    background-color: #b2de62;
    padding: 100px 0px;
}
.homeBoxes a {
    margin-top: 50px;
    display: inline-block;
    border: 1px solid #111111;
    background-color: #b2de62;
    padding: 5px 15px;
    font-weight: 700;
    transition: background-color ease 0.4s;
}
.homeBoxes a:hover {
    background-color: rgba(255,255,255,0.3);
    transition: background-color ease 0.4s;
}

/* Home Profile */

.homeProfile {
    padding: 150px 0px;
    background-image: url(../images/profilebg.png);
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 1;
}
.homeProfile:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: 0.95;
    z-index: -1;
}
.profileBlurb {
    padding-left: 30px;
}
.profileBlurb h3 {
    font-size: 24px;
    margin: 0px;
    padding: 0px;
}
.profileBlurb h4 {
    font-size: 16px;
    letter-spacing: 2px;
    margin: 0px;
    padding: 0px;
    color: #fe8d68;
}

/* Main Content */

.mainContent {
    padding: 100px 0px;
}
.mainServices ul {
    columns: 2;
}
.mainServices ul li{
    background-color: rgba(0,0,0,0.05);
	margin-bottom: 15px;
	line-height: 40px;
	border-left: 4px solid #b2de62;
	padding-left: 15px;
	font-weight: 600;
	color: rgba(0,0,0,0.5);
}

/* Gallery Page */

.gallery{
	position: relative;
	z-index: 1;
}
.gallery .columns a{
	width: 100%;
	height: 100%;
	position: relative;
}
.gallery .columns img{
	margin: 0;
	width: 100%!important;
	height: 100%;
	opacity: 0;
}
.gallery .columns{
    overflow: hidden;
    position: relative;
    background-size: cover;
    width: calc(25% - 24px);
    margin: 12px;
    background-position: center center;
    overflow: hidden;
    float: left;
    z-index: 0;
    -webkit-transition: all .15s ease-out;
    -moz-transition: all .15s ease-out;
    transition: all .15s ease-out;
}
.gallery .columns:hover {
	-webkit-transform: scale(1.015);
	-ms-transform: scale(1.015);
	-o-transform: scale(1.015);
	transform: scale(1.015);
}
.gallery .columns:nth-child(14n + 7),.gallery .columns:nth-child(14n + 8){
	width: calc(50% - 24px);
}

/* Reviews Page */

blockquote {
	margin: 0;
	margin-bottom: 30px;
    padding: 30px;
	background-color: #eeeeee;
	position: relative;
}
blockquote:last-of-type {
    margin-bottom: 0px;
}
blockquote p {
	margin: 0;
	padding: 0;
}
blockquote p:before {
	content: '\f10d';
	font-family: 'Font Awesome 5 Pro';
	font-weight: 900;
	padding-right: 20px;
	color: #fe8d68;
}
blockquote p:after {
	content: '\f10e';
	font-family: 'Font Awesome 5 Pro';
	font-weight: 900;
	padding-left: 20px;
	color: #fe8d68;
}
blockquote h5 {
	margin: 0;
	padding: 0;
	color: #012741;
	margin-top: 10px;
	font-size: 16px;
	position: relative;
	z-index: 1;
}

/* Contact Page */

.form-box .columns {
	padding: 0!important;
}
.earl-form .columns input {
	width: 100%;
}
.earl-form input[type='text'], .earl-form select{
	letter-spacing: 1px;
	height: 30px;
	font-size: 13px;
	padding-left: 12.5px;
	box-shadow: 0px;
	outline: 0;
	color: #333333;
	font-weight: 500;
	border: 1px solid #b2de62;
	margin-bottom: 20px;
}
.earl-form .columns textarea {
	letter-spacing: 1px;
	color: #333333;
	font-size: 13px;
	width: 100%;
	resize: none;
	padding-top: 15px;
	padding-left: 12.5px;
	border: 1px solid #b2de62;
	height: 200px;
}
#formName, #formContact {
	line-height: 20px;
}
.earl-form button {
	float: right;
	margin-top: 10px;
	background-color: transparent;
	padding: 10px;
	font-size: 13px;
	letter-spacing: 1px;
	cursor: pointer;
	color: #111111;
	background-color: #b2de62;
}
address p {
    display: inline-block;
    font-style: normal;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 30px;
}
address p:after {
    content: '-';
    padding: 0px 20px;
}
address p:last-of-type:after {
    display: none;
}

/* Footer */

footer {
    background-color: #fe8d68;
    padding: 15px 0px;
    font-family: 'Barlow', sans-serif;
}
.privCopy a:after {
    content: '|';
    margin: 0px 15px;
}
.privCopy a:last-of-type:after {
    display: none;
}
.socialIcons i {
    font-size: 20px;
    padding-left: 10px;
}

/* Media Queries */

/* 1366 lAPTOP */
@media screen and (max-width: 1366px) {}

/* 1280 MONITOR */
@media screen and (max-width: 1280px) {}

/* 1024 TABLET */
@media screen and (max-width: 960px) {


.splashText {
    position: relative;
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 30px;
    background-color: #111111;
}
nav ul li {
    display: block;
}
.navToggle {
    display: block;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 40px;
    position: absolute;
    z-index: 100;
}
.navToggle span {
    background-color: #ffffff;
    line-height: 32px;
    display: inline-block;
    padding: 0px 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}
.navToggle i {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 16px;
    text-align: center;
    display: inline-block;
    background-color: #b2de62;
    color: #ffffff;
}
nav {
    top: 0;
    height: 100vh;
    right: -250px;
    padding: 0;
    padding: 30px 40px;
    z-index: 100;
    position: fixed;
    background-color: #111111;
    width: 250px!important;
    text-align: right;
    transition: ease 0.4s;
}
nav ul li {
    display: block;
    margin: 0;
}
nav ul li a {
    color: #ffffff;
    opacity: 1;
    font-size: 17px;
}
nav ul li a::before {
    display: none;
}
.navVisible {
    right: 0!important;
}
.siteContainer {
    right: 0;
    position: relative;
    transition: ease 0.4s;
}
.siteContainerVisible {
    right: 250px!important;
    transition: ease 0.4s;
}
nav ul li > a:after {
    color: #ffffff;
    margin-left: 15px;
}
.sub-menu {
    background-color: transparent;
    right: 0;
    z-index: 1;
    padding: 0;
    position: relative;
}
.sub-menu li {
    display: block;
    padding: 0;
    margin: 0;
    text-align: right;
    white-space: nowrap;
    clear: both;
    line-height: 30px;
    transition: ease 0.4s;
}
.contactPageImg {
    display: none;
}
.gallery .columns {width: calc(50% - 24px);}

}

/* MOBILE PHONES */
@media screen and (max-width: 638px) {


.mainServices ul {
    columns: 1;
}
.profileBlurb {
    margin-top: 20px;
}
.privCopy a {
    display: block;
}
.privCopy a:after {
    display: none;
}
.privCopy, .socialIcons {
    text-align: center!important;
}
.socialIcons {
    margin-top: 15px;
}

}