/* F O N T   I N C L U D E S */
@import url('https://fonts.googleapis.com/css?family=Barlow:300,400,600,800&display=swap');
/* G L O B A L   S T Y L E S */
body{font-family: 'Barlow', sans-serif;background-color: #fff;}
*:focus{outline: none;}
a{text-decoration: none;color: inherit;}
ul,ol{list-style: none; margin: 0; padding: 0;}
.nav-toggle {display: none;}

/* C O L O U R S */

/* #04609c */

/*H E A D E R */

.top-bar {
	position: relative;
	padding: 25px 0px;
	text-align: center;
	box-shadow: 0px 5px 10px rgba(0,0,0,0.2);
	background-color: #fff;
	z-index: 100;
}
nav {
	text-align: right;
}
nav ul li {
	display: inline-block;
	padding: 0px 20px;
	line-height: 30px;
	position: relative;
}
nav ul li > a:after {
	content: '\f078';
	color: #04609c;
	margin-left: 6px;
	text-align: center;
	font-family: 'Font Awesome 5 Pro';
	font-weight: 600;
}
nav ul li > a:only-child:after { content: ''; } 
nav ul li a {
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 14px;
	font-weight: 600;
	color: #04609c;
	-webkit-transition: color 0.3s, opacity 0.3s;
	-moz-transition: color 0.3s, opacity 0.3s;
	transition: color 0.3s, opacity 0.3s;
	position: relative;
	opacity: 0.4;
}
nav ul li a::before {
	position: absolute;
	top: 15px;
	left: calc(50% - 3px);
	color: transparent;
	content: '•';
	text-shadow: 0 0 transparent;
	font-size: 1.2em;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: text-shadow 0.3s, color 0.3s;
	-moz-transition: text-shadow 0.3s, color 0.3s;
	transition: text-shadow 0.3s, color 0.3s;
	pointer-events: none;
}
nav ul li a:hover::before,
nav ul li a:focus::before {
	color: #04609c;
	text-shadow: 10px 0 #04609c, -10px 0 #04609c;
}
nav ul li a:hover,
nav ul li a:focus {
	opacity: 1;
}
.active {
	opacity: 1;
}

.sub-menu {
	display: none;
	position: absolute;
	background-color: #fff;
	left: 0;
	z-index: 1;
	padding: 10px 20px;
}
.sub-menu li {
	display: block;
	padding: 0;
	margin: 0;
	text-align: left;
	white-space: nowrap;
	clear: both;
	line-height: 20px;
	transition: ease 0.4s;
}
.sub-menu li a:before {
	display: none;
}
nav ul li:hover .sub-menu, nav ul li .sub-menu .active {
    display: block;
}

/* S P L A S H */

.splash {
	padding: 100px 0px;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.splash:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 120%;
	height: 275px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	background-color: #04609c;
	opacity: 0.85;
	z-index: 1;
}
.faded-slider {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.faded-slider:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	opacity: 0.5;
	z-index: 1;
}
.faded-slider .slide {
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center center;
	height: 650px;
}
.main-slider {
	position: relative;
	z-index: 2;
	overflow: hidden;
	background-color: #fff;
	box-shadow: 3px 3px 20px #111;
}
.main-slider .slide {
	width: 100%;
	height: 450px;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center center;
}
.splash-heading {
	padding-left: 20px;
	position: relative;
	z-index: 3;
}
.splash-heading h1 {
	color: #fff;
	font-weight: 600;
	margin: 0;
	padding: 0;
	line-height: 40px;
	text-shadow: 1px 1px 3px #222;
}
.splash-heading hr {
	border: 0;
	background-color: #fff;
	width: 150px;
	height: 3px;
	margin: 20px 0px;
}
.splash-heading p {
	margin: 0;
	padding: 0;
	color: #fff;
}

/* O T H E R   S P L A S H */

.other-splash .splash-heading {
	padding-left: 0px;
}
.other-splash {
	padding: 140px 0px;
	background-image: url(../images/other-header.jpg);
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center center;	
	position: relative;
}
.other-splash:after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	opacity: 0.2;
	z-index: -1;
}
.other-splash:before {
	height: 225px;
}
.other-splash hr {
	width: 50px;
}

/* D E E T S */

.deets {
	text-align: center;
	background-color: #04609c;
	padding: 10px 0px;
}
.deets a {
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 14px;
	font-weight: 600;
}
.deets a:after {
	content: '|';
	padding: 0px 25px;
}
.deets a:last-of-type:after {
	display: none;
}
.deets i {
	display: none;
}

/* A B O U T */

.about {
	padding: 75px 0px;
	position: relative;
	z-index: 1000;
}
.about .row {
	position: relative;
}
.about-img {
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center center;
	background-image: url(../images/about.jpg);	
	position: relative;
}
.about-blurb {
	padding-left: 50px;
}
.about h2 {
	font-size: 16px;
}

/* M A I N   +   A S I D E */

main {
	background-color: #eee;
	position: relative;
	z-index: 1;
}
.main-inner {
	padding: 75px 0px;
	padding-right: 40px;
}
main h3 {
	font-size: 18px;
	letter-spacing: 1px;
}
main .main-list {
	padding: 5px 0px;
	position: relative;
	font-size: 0;
}
main .main-list li {
	border-radius: 5px;
	display: inline-block;
	background-color: #04609c;
	padding: 0px 15px;
	margin-right: 5px;
	margin-bottom: 5px;
	color: #fff;
	line-height: 30px;
	font-size: 16px;
	position: relative;
	text-transform: capitalize;
}
.other-main .main-inner {
	padding-right: 0px;
}
aside {
	color: #fff;
	background-color: #04609c;
}
.aside-inner {
	padding: 75px 40px;
}
.aside-inner .accreds ~ h3 {
	margin-top: 0px;
}
.accreds img {
	margin-bottom: 30px;
	border-radius: 5px;
}
.aside-list li {
	background-color: rgba(255,255,255,0.1);
	margin-bottom: 10px;
	padding-left: 35px;
	line-height: 30px;
	position: relative;
	border-radius: 5px;
}
.aside-list li:before {
	content: '+';
	position: absolute;
	top: 0;
	left: 0;
	text-align: center;
	width: 35px;
	height: 35px;
}
.aside-button {	
	border-radius: 5px;
	border: solid 1px #fff;
	color: #fff;
	padding: 0px 15px;
	line-height: 30px;
	display: inline-block;
	margin-top: 10px;
	float: right;
}

/* G A L L E R Y   P A G E */

.gallery-thumbs .columns {
	width: 20%;
	float: left;
	margin-bottom: 30px;
}
.gallery-thumbs .columns:nth-child(8n+1){transition-delay: 1s;}
.gallery-thumbs .columns:nth-child(8n+2){transition-delay: 1.1s;}
.gallery-thumbs .columns:nth-child(8n+3){transition-delay: 1.2s;}
.gallery-thumbs .columns:nth-child(8n+4){transition-delay: 1.3s;}
.gallery-thumbs .columns:nth-child(8n+5){transition-delay: 1.4s;}
.gallery-thumbs .columns:nth-child(8n+6){transition-delay: 1s;}
.gallery-thumbs .columns:nth-child(8n+7){transition-delay: 1.2s;}
.gallery-thumbs .columns:nth-child(8n+8){transition-delay: 1.3s;}
.gallery-thumbs .columns:nth-child(8n+6),
.gallery-thumbs .columns:nth-child(8n+7),
.gallery-thumbs .columns:nth-child(8n+8) {
	width: 33.333333%;
	float: left;
	margin-bottom: 30px;
}
.gallery-thumbs .columns img {
	transition: all 0.4s;	
}
.gallery-thumbs .columns img:hover {
	opacity: 0.6;
	transition: all 0.4s;
}

/* T E S T I M O N I A L S */

blockquote {
	margin: 0;
	position: relative;
	background-color: rgba(255,255,255,0.5);
	margin-bottom: 25px;
	z-index: 1;
}
blockquote:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	background-color: #04609c;
	z-index: -1;
}
blockquote .review {
	position: relative;
	z-index: 1;
	display: block;
	padding: 30px;
}
blockquote .review span {
	position: relative;
	display: block;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
	color: #04609c;
	z-index: 1;
}
blockquote .review span:last-of-type {
	font-size: 10px;
	letter-spacing: 2px;
	opacity: 0.6;
}
blockquote .review p {
	margin-bottom: 0px;
	font-style: italic;
}
blockquote .review p:before {
	content: '\f10d';
	font-family: "Font Awesome 5 Pro";
	font-weight: 900;
	padding-right: 10px;
	color: #04609c;
}
blockquote .review p:after {
	content: '\f10e';
	font-family: "Font Awesome 5 Pro";
	font-weight: 900;
	padding-left: 10px;
	color: #04609c;
}
blockquote .review hr {
	border: none;
	height: 2px;
	background-color: rgba(0,0,0,0.2);
	width: 100px;
	margin: 20px 0px;
}

/* E N Q U I R Y   F O R M */

.form-box {
	background-color: #eee;
	padding: 0px;
}
.form-img-box {
	background-image: url(../images/header1.jpg);
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center center;
}
.earl-form .columns input {
	width: 100%;
}
.earl-form input[type='text'], .earl-form select{
	border-radius: 0px;
	height: 30px;
	font-size: 11px;
	padding-left: 12.5px;
	box-shadow: 0px;
	letter-spacing: 2px;
	outline: 0;
	color: #333;
	font-weight: 500;
	text-transform: uppercase;
	border: 1px solid #333;
	margin-bottom: 20px;
}
.earl-form .columns textarea {
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #333;
	font-size: 11px;
	width: 100%;
	border-radius: 0px;
	resize: none;
	padding-top: 15px;
	padding-left: 12.5px;
	border: 1px solid #333;
	height: 200px;
}
#formName, #formContact {
	line-height: 20px;
}
.earl-form button {
	float: right;
	margin-top: 10px;
	background-color: transparent;
	padding: 10px;
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	cursor: pointer;
	color: #333;
	font-weight: 600;
	border: 1px solid #333;
	border-radius: 0;
}

/* M A P */

#map {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}

/* W H Y   B O X E S */

.why {
	background-color: #fff; 
	padding: 75px 0px;
}
.why-inner {
	position: absolute;
	color: #fff;
	bottom: 0;
	left: 0;
	padding: 30px 40px;
	z-index: 1;
}
.why-inner:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #04609c;
	opacity: 0.8;
	z-index: -1;
}
.why-slider {
	z-index: 1000;
}
.why-slider .slide {
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center center;
	position: relative;
	height: 600px;
}
.why h4 {
	position: absolute;
	top: -30px;
	right: 0;
	margin: 0;
	padding: 0;
	background-color: #04609c;
	-webkit-transform-origin: 100% 100%;
	-moz-transform-origin: 100% 100%;
	-ms-transform-origin: 100% 100%;
	-o-transform-origin: 100% 100%;
	transform-origin: 100% 100%;
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
	color: #fff;
	letter-spacing: 2px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 0px 10px;
	line-height: 30px;
}
.why i {
	text-shadow: 1px 1px 3px #111;
	position: absolute;
	text-align: center;
	top: 0;
	left: 0;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 14px;
	background-color: #04609c;
	color: #fff;
}
.why-inner p {
	min-height: 4.8em;
	padding: 0;
	margin: 0;
	line-height: 1.3em;
}

/* A D D R E S S   H O M E P A G E */

.customer-address {
	background-color: #eee;
	margin-bottom: 75px;
	position: relative;
}
.customer-address address p {
	font-style: normal;
	display: inline-block;
	margin: 0;
	padding: 0;
	padding-right: 40px;
	line-height: 60px;
}
.customer-address address p:last-of-type {
	padding-right: 0px;
}

/* F O O T E R */

footer {
	padding: 75px;
	text-align: center;
	background-color: #04609c;
}
.footer-blurb img {
	width: 250px;
}
.footer-blurb p {
	color: #fff;
	padding: 20px 0px;
}
.footer-address p {
	opacity: 0.5;
	font-size: 12px;
	letter-spacing: 2px;
	color: #fff;
	display: inline-block;
}
.footer-address p:after {
	content: '•';
	padding: 0px 25px;
}
.footer-address p:last-of-type:after {
	display: none;
}

/* F E A T U R E D   L I N K S */

.copyright {
	background-color: #04609c;	
	text-align: center;
	z-index: 1;
	position: relative;
}
.copyright:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #111;
	opacity: 0.5;
	z-index: -1;
}
.copyright a {
	line-height: 30px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 10px;
	display: inline-block;
	padding-right: 50px;
}
.copyright a:last-of-type {
	padding-right: 0px;
	position: relative;
}
.copyright a:after {
	content: '-';
	position: absolute;
	width: 55px;
	height: 30px;
	line-height: 30px;
}
.copyright a:last-of-type:after {
	display: none;
}

/* LAPTOP 1366 */
@media screen and (max-width: 1366px) {}
 
/* SALES 1280 */
@media screen and (max-width: 1280px) {}
 
/* IPAD 1024 */
@media screen and (max-width: 1024px) {

.splash:before {
	height: 300px;
}
.splash h1 {
	font-size: 22px;
}
 
/* IPAD 768 */
@media screen and (max-width: 768px) {

.splash:before {
	height: 350px;
}
 
/* PHONES 768 */
@media screen and (max-width: 638px) {

.deets {
	margin-top: 30px;
}
.deets a {
	padding: 0px 40px;
	display: block;
}
.deets a:first-of-type {
	padding-bottom: 10px;
}
.deets i {
	display: inline-block;
	padding-right: 20px;
	font-size: 18px;
}
.deets a:after {
	display: none;
}
.email-mobile {
	display: none!important;
}
.top-bar {
	padding: 30px 40px;
}
.nav-toggle {
	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;
}
.nav-toggle span {
	background-color: #fff;
	line-height: 32px;
	display: inline-block;
	padding: 0px 15px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
	color: #04609c;
}
.nav-toggle i {
	width: 32px;
	height: 32px;
	line-height: 32px;
	font-size: 16px;
	text-align: center;
	display: inline-block;
	background-color: #04609c;
	color: #fff;
}
nav {
	top: 0;
	height: 100vh;
	right: -250px;
	padding: 0;
	padding: 30px 40px;
	z-index: 100;
	position: fixed;
	background-color: #04609c;
	width: 250px!important;
	text-align: right;
	transition: ease 0.4s;
}
nav ul li {
	display: block;
	margin: 0;
}
nav ul li a {
	color: #fff;
	opacity: 1;
	font-size: 17px;
}
nav ul li a::before {
	display: none;
}
.nav-visible {
	right: 0!important;
}
.site-container {
	right: 0;
	position: relative;
	transition: ease 0.4s;
}
.site-container-visible {
	right: 250px!important;
	transition: ease 0.4s;
}
nav ul li > a:after {
	color: #fff;
	margin-left: 15px;
}
nav ul li:hover .sub-menu, nav ul li .sub-menu .active {
    display: none;
}
.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;
}
.splash h1 {
	font-size: 28px;
}
.splash {
	padding: 40px;
}
.splash:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 120%;
	height: 50%;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	background-color: #04609c;
	opacity: 0.85;
	z-index: 1;
}
.other-splash:before {
	top: 35px;
	height: calc(100% - 70px);

}
.splash-heading {
	padding-left: 0px;
	padding: 30px 0px;
}
.faded-slider .slide {
	height: 100vh;
}
.about {
	padding: 75px 40px;
}
.about-img {
	height: 300px;
	margin-bottom: 20px;
}
.about-blurb {
	padding-left: .9375rem;;
}
main {
	padding: 0px;
}
.main-inner, .other-main .main-inner {
	padding: 75px 40px;
}
.gallery-thumbs .columns:nth-child(8n+1),
.gallery-thumbs .columns:nth-child(8n+2),
.gallery-thumbs .columns:nth-child(8n+4),
.gallery-thumbs .columns:nth-child(8n+7),
.gallery-thumbs .columns:nth-child(8n+8),
.gallery-thumbs .columns:nth-child(8n+5){
	width: 50%;
}
.gallery-thumbs .columns:nth-child(8n+3),
.gallery-thumbs .columns:nth-child(8n+6) {
	width: 100%;
	margin-bottom: 30px;
}
.aside-inner {
	padding: 50px 40px 125px 40px;
}
.why {
	padding: 75px 40px;
}
footer {
	padding: 75px 40px;
}
.footer-address p {
	display: block;
}
.footer-address p:after {
	display: none;
}
.copyright a:first-of-type {
	display: none;
}
#map {
	margin-top: 30px;
	height: 400px;
}

}