/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;600;700;800&display=swap');

/* Defaults */
body{
    font-family: 'Barlow', sans-serif;
}
*:focus{outline: none;}
a{text-decoration: none;color: inherit;}
ul,ol{list-style: none; margin: 0; padding: 0;}
.tal{text-align: left;}
.tar{text-align: right;}
.tac{text-align: center;}
.mobileNav {display: none;}
.singleColumn {columns: 1!important}
.bodyBackground {
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100vh;
    background-image: url(../images/body.jpg);
    background-position: center center;
    background-size: cover;
}
.bodyBackground:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #ffffff;
	opacity: 0.7;
	z-index: 1;
}

/* Colors
Primary - 
Secondary - 
*/

/* Social Icons & Deets */

.socialDeets .row {
    background-color: #eeeeee;
    padding: 15px 30px;
}
.socialIcons i {
    opacity: 0.5;
    transition: opacity 0.3s ease-in-out;
    margin: 0px 15px;
}
.socialIcons i:hover {
    opacity: 1;
}
.deets {
    text-align: right;
}
.deets a {
    padding-left: 25px;
    font-weight: 600;
    font-size: 15px;
}
.deets i {
    padding-right: 15px;
    color: #de1f1a;
}

/* Logo & Nav */

.logoNav .row {
    padding: 30px;
    background-color: #ffffff;
}
.logo img {
    width: 80%;
}
.navContainer {
    text-align: right;
}
nav ul li {
    display: inline-block;
    padding-left: 50px;
    position: relative;
    z-index: 1;
}
nav ul li a {
    font-weight: 600;
    letter-spacing: normal;
    font-size: 19px;
}
nav ul li > a:after {
	content: '\f078';
	color: #222222;
	font-size: 14px;
	margin-left: 8px;
	text-align: center;
	font-family: 'Font Awesome 5 Pro';
}
nav ul li > a:only-child:after { content: ''; } 
.sub-menu {
	position: absolute;
	left: 0;
	text-align: left;
	display: none;
	padding: 5px 0px;
}
.sub-menu::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	z-index: -1;
}
.sub-menu li {
	display: block;
	margin: 0;
	text-align: left;
	white-space: nowrap;
	clear: both;
	line-height: 20px;
	transition: ease 0.4s;
    padding-right: 50px;
}
.sub-menu li:hover:before {
    opacity: 0;
}
.sub-menu li a {
    line-height: 30px;
}
.sub-menu li:hover:before {
    opacity: 0;
}
nav ul li:hover .sub-menu, nav ul li .sub-menu .active {
    display: block;
}

/* Splash Slider */

.splashSlider {
    position: relative;
    z-index: 0;
}
.splashSlider .slide:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background-color: #222222;
    opacity: 0.9;
    z-index: 1;
}
.splashText {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 2;
    width: 35%;
    text-align: right;
    padding: 0px 50px;
}
.splashText h2 {
    color: #ffffff;
    font-size: 40px;
    margin: 0;
    padding: 0;
    line-height: 40px;
    text-shadow: 1px 1px 5px #222222;
    margin-bottom: 30px;
}
.splashText p {
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
}
.splashText button {
    background-color: #de1f1a;
    color: #ffffff;
}
.splashText button a {
    display: inline-block;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 18px;
}
.splashSlider div img {
    width: 100%;
}
.otherSplash h2 {
    margin-bottom: 0px;
}

/* Why Stuff */

.whyStuff .row {
    padding: 0px 30px;
    background-color: #ffffff;
}
.whyStuff .row:first-of-type {
    padding-top: 100px;
}
.whyStuff .row:last-of-type {
    padding-bottom: 80px;
}
.whyText div h2 {
    color: #de1f1a;
}

/* Experience / Reviews Block */

.expReview .row {    
    background-color: #eeeeee;
}
.experience {
    background-image: url(../images/experience.jpg);
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 1;
    padding: 150px 0px;
}
.experience:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #222222;
    opacity: 0.8;
    z-index: -1;
}
.experience h2 {
    font-size: 30px;
    line-height: 30px;
    color: #ffffff;
}
.experience h2 span {
    display: block;
    font-size: 70px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 1px 1px 5px #222222;
}
.homeReview i {
    font-size: 24px;
    color: #de1f1a;
}
.homeReview h3 {
    font-size: 26px;
    color: #222222;
}
.homeReview h4 {
    margin: 0;
    padding: 0;
}
.homeReview blockquote {
    margin: 0;
    padding: 0;
    padding: 0px 100px;
}

/* Main Area */

.mainArea .row {
    padding: 0px 30px;
    background-color: #ffffff;
}
.mainArea .row:first-of-type {
    padding-top: 100px;
}
.mainArea .row:last-of-type {
    padding-bottom: 100px;
}
.mainArea h2 {
    font-size: 34px;
    line-height: 36px;
    margin: 0;
    padding: 0;
    color: #222222;
}
.mainOpening h2 span {
    color: #de1f1a!important;
}
.mainArea h3 {
    color: #de1f1a;
}
.mainArea h4 {
    color: #222222;
    font-size: 26px;
}
.mainArea p {
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
}
.mainArea ul {
    columns: 2;
}
.mainArea ul li {
    background-color: #222222;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    line-height: 44px;
    padding: 0px 15px;
}
.homeAccreds img {
    filter: drop-shadow(2px 2px 10px rgba(0,0,0,0.3));
}

/* 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);
}

/* Testimonials Page */

blockquote {
    margin: 0;
    background-color: #eeeeee;
    padding: 30px;
    margin-bottom: 30px;
}
blockquote:last-of-type {
    margin-bottom: 0px;
}
blockquote h5 {
    margin: 0;
    padding: 0;
    color: #222222;
    font-size: 20px;
}
blockquote h6 {
    margin: 0;
    padding: 0;
    color: #de1f1a;
    font-size: 16px;
}
blockquote i {
    color: #222222;
    font-size: 30px;
    margin-bottom: 15px;
}

/* Contact Page */

.earl-form .columns input {
	width: 100%;
}
.earl-form input[type='text'], .earl-form select{
	letter-spacing: 1px;
	border-radius: 0px;
	height: 30px;
	font-size: 13px;
	padding-left: 12.5px;
	box-shadow: 0px;
	outline: 0;
	color: #333;
	font-weight: 500;
	border: 1px solid #222222;
	margin-bottom: 20px;
}
.earl-form .columns textarea {
	letter-spacing: 1px;
	color: #333;
	font-size: 13px;
	width: 100%;
	resize: none;
	padding-top: 15px;
	padding-left: 12.5px;
	border: 1px solid #222222;
    border-radius: 0;
	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: #fff;
	background-color: #222222;
    border-radius: 0;
}
.map{
	width: 100%;
	height: 400px;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.map iframe{
	position: absolute;
	width: 100%;
	height: calc(100% + 300px);
	z-index: -1;
	left: 0;
	opacity: 0.8;
	top: -150px;
}

/* Big Bois */

.bigBois .row {
    padding: 100px 30px 100px 30px;
    background-color: #eeeeee;
}
.pageNav {
    background-color: #de1f1a;
}
.pageNavalt {
    background-color: #222222;
}
.pageNav h2 {
    margin: 0;
    padding: 0;
    color: #ffffff;
    line-height: 50px;
    display: inline-block;
    padding-left: 15px;
}
.pageNav i {
    display: inline-block;
    float: right;
    line-height: 51px;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

/* Footer */

footer .row {
    background-color: #222222;
}
.footerBlurb {
    padding: 0px 100px;
}
.footerBlurb button {
    background-color: #de1f1a;
    color: #ffffff;
    margin-top: 15px;
}
.footerBlurb button a {
    display: inline-block;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 18px;
}
.footerDeets {
    padding: 100px 0px 85px 0px;
    background-image: url(../images/map.jpg);
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 1;
}
.footerDeets:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #222222;
    opacity: 0.95;
    z-index: -1;
}
.footerDeets:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #111111;
    opacity: 0.2;
    z-index: -1;
}
footer hr {
    height: 4px;
    border: none;
    background-color: #de1f1a;
    margin: 15px 0;
    width: 25px;
}
.footerDeets hr {
    margin: 15px auto;
}
footer h2 {
    color: #ffffff;
    margin: 0;
    padding: 0;
}
footer address {
    font-style: normal;
    margin: 0;
    padding: 0;
}
footer address p:last-of-type {
    margin-bottom: 0;
}
.footerDeets a,
footer ul li a,
footer p {
    display: inline-block;
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
}
footer address p:after,
footer a:after,
footer ul li:after {
    content: '•';
    color: #ffffff;
    padding: 0px 15px;
}
footer address p:last-of-type:after,
footer a:last-of-type:after,
footer ul li:last-of-type:after {
    display: none;
}
footer ul li {
    display: inline-block;
}

/* Copyright Stuff */

.copyrightNW .row {
    background-color: #eeeeee;
    padding: 5px 0px;
}
.copyrightNW i {
    padding-right: 10px;
}
.copyrightNW a,
.copyrightNW p {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-weight: 600;
}
.copyrightNW a:after,
.copyrightNW p:after {
    content: '|';
    padding: 0px 30px;
}
.copyrightNW a:last-of-type:after {
    display: none;
}

/* 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: 1160px) {}

/* MOBILE PHONES */
@media screen and (max-width: 630px) {

.formBox {
    margin-bottom: 40px;
}
.gallery .columns {width: calc(50% - 24px);}
.bodyBackground {
    display: none;
}
.socialDeets {
    text-align: center;
}
.socialIcons {
    display: none;
}
.deets {
    text-align: center;
}
.deets a {
    display: block;
    font-size: 16px;
    margin: 5px 0px;
}
.logo img {
    width: 100%;
}
.mobileNav {
    display: inline-block;
    background-color: #222222;
    padding: 5px 15px;
    color: #ffffff;
}
.mobileNav span {
    font-weight: 600;
}
.mobileNav i {
    padding-left: 10px;
}
nav {
    position: relative;
    z-index: 1000;
}
nav ul {
    margin-top: 30px;
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #222222;
    padding: 10px 10px 10px 30px;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.5);
}
nav ul li {
    display: block;
    padding-left: 0;
}
nav ul li a {
    opacity: 1;
    color: #ffffff;
    line-height: 30px;
}
nav ul li > a:after {
	display: none;
}
.sub-menu {
    position: relative;
    right: 0;
    padding: 0;
	text-align: right;
    box-shadow: none;
}
.sub-menu {
    margin-top: 0px;
}
.sub-menu li {
    display: block;
    text-align: right;
    padding: 0;
}
.splashSlider {
    position: relative;
    z-index: 0;
}
.splashSlider .slide:before {
    display: none;
}
.splashText {
    position: relative;
    width: 100%;
    text-align: left;
    top: 0;
    transform: none;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #222222;
}
.whyImages .columns {
    margin-bottom: 30px;
}
.homeReview {
    padding: 100px 45px;
}
.homeReview blockquote {
    padding: 0;
}
.mainOpening {
    margin-bottom: 30px;
}
.mainArea .row:last-of-type {
    padding-bottom: 80px;
}
.homeAccreds .columns {
    margin-bottom: 20px;
}
.bigBois .row {
    padding: 100px 30px 80px 30px;
}
.bigBois .columns {
    margin-bottom: 40px;
}
.footerBlurb {
    padding: 80px 45px;
    border-bottom: 40px solid #ffffff;
}
.footerDeets {
    padding: 80px 45px;
}
.footerContact,
.footerNav {
    display: none;
}
.footerDeets a,
footer ul li a,
footer p {
    display: block;
}
footer address p:after,
footer a:after,
footer ul li:after {
    display: none;
}
.copyrightNW a,
.copyrightNW p {
    display: none;
}
.newWorld {
    display: block!important;
}
.copyrightNW a:after,
.copyrightNW p:after {
    display: none;
}
.mainArea ul {
    columns: 1;
}

}