/**
	@Author:	Paul Strandoo
	@Date:		1 July 2021
	@Notes:		DLN Electrical Charging
		
	FONTS & COLORS
	-------------
	yellow: var(--teal);
	dark blue: var(--darkblue);
	
	font-family: 'Roboto', sans-serif;
	font-family: 'Roboto', sans-serif;
	available weight: 100, 300, 400, 700;
	inner max-width: 1070px;
*/

@import url('reset.css');
/* @import url('font-awesome.min.css'); */

:root {
	--teal: #82ccd1; /* teal */
	/*--darkblue: #82ccd1; /* teal */
    --darkblue: #09132d;
	--bronze: #96CAD4;
	--silver: #618E9B;
	/*--gold: #101626;*/
	--gold: #ffdc00;
	--lightblue: #daeff2;
	--hoverbutton: #4cadb4; /* newteal */
	--footer: #0f1525;
	--black: #08122b;
    --text-dark: #222;
	}

* {
   -moz-box-sizing: border-box;
   -webkit-box-sizing: border-box;
	box-sizing: border-box;
	}

html {
	font-size: 100%;
	}
body {
	margin: 0;
	padding: 0;
	position: relative;
	font-size: 16px;
	line-height: 1.3;
	background: #ffffff;
	}

body, input, textarea, table {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color: #222;
	}
	
/* ----- [ Typography ] -------------------------*/
p,
li,
td {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-weight: 300;
	font-size: 1em;
	line-height: 1.6em;
	margin: 0 0 1em;
	}
li {
	margin: 0;
	}

em {
	font-family: 'Roboto', sans-serif;
	font-style: italic;
	}
b,
strong {
	font-weight: 700;
	}

a {
	color: inherit;
	text-decoration: underline;
	}
a:hover {
	color: var(--darkblue);
	}
.cms-text a:not(.button) {
	font-weight: 300;
	}

h1,
.h1 {
	font-family: 'Roboto', sans-serif;
	font-weight: 100;
	font-size: 2.4rem;
	color: #fff;
	line-height: 1.15em;
	margin: 0 0 0.5em;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	}

h2,
.h2 {
	font-family: 'Roboto', sans-serif;
	color: var(--text-dark);
	font-weight: 300;
	font-size: 2em;
	line-height: 1.2em;
	margin: 0 0 0.5em;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	}
h3,
.h3 {
	font-family: 'Roboto', sans-serif;
	color: var(--text-dark);
	font-weight: 500;
	font-size: 1.4em;
	line-height: 1.3;
	margin: 0 0 0.6em;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	}
h4 {
	font-family: 'Roboto', sans-serif;
	font-size: 1.1em;
	line-height: 1.4em;
	font-weight: 300;
	color: #222;
	margin: 0 0 0.5em;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	}

.hero-text h2 {
	font-family: 'Roboto', sans-serif;
	font-weight: 100;
	font-size: 2rem;
	color: #fff;
	line-height: 1.15em;
	margin: 0 0 0.5em;
	text-transform: uppercase;
    max-width: 700px;
	}
.hero-text h1 {
	max-width: 700px;
	}
	
.hero-head {
	margin-bottom: 1.2em;
	}

@media only screen and (min-width: 400px) {
	.hero-text h2 {
		font-size: 2.4rem;
		}
}

@media only screen and (min-width: 600px) { 
	h1, .h1 {
		font-size: 3em;
		line-height: 1.2em;
		text-align: left;
		}
	h2, .h2 {
		font-size: 2.4em;
		}
	h3, .h3 {
		font-size: 1.5em;
		}
	.hero-text h2 {
		font-size: 3em;
		line-height: 1.2em;
		text-align: left;
		max-width: 700px;
		}
}

/* Headline Overrides - unused */
.uppercase {
	text-transform: uppercase !important;
	}
.lowercase {
	text-transform: none !important;
	}
.no-margin {
	margin-bottom: 0;
	}
.no-margin + h2 {
	margin-top: 0;
	}

img {
	display: block;
	}

/* Dark and Light -- unused */
.dark,
.dark p,
.dark li,
.dark h2,
.dark h3 {
	color: #fff;
	}
.dark p,
.dark li {
	font-weight: 400;
	}
.dark a {
	color: #fff;
	border-bottom: 1px solid #fff;
	}
.dark a:hover {
	color: #fff;
	}
.dark {
	background: var(--darkblue);
	color: #fff;
	}
.dark h4 {
	color: #fff;
	}

/* global section centering */
.center,
.center p,
.center h2,
.center h3,
.center h4 {
	text-align: center;
	}


/* ----- [ Structure ] --------------------------*/
.page-wrapper {
	position: relative;
	padding-top: 0;
	background: #fff;
	min-height: 100%;
	/*margin-bottom: 600px;*/
	/*padding-top: 110px;*/
	z-index: 2;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}

.page-overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	background: rgba(0,0,0,0.4);
	z-index: 600;
	opacity: 0;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
	
header,
section,
footer {
	background: #ffffff;
	width: 100%;
	margin: 0;
	position: relative;
	}
section {
	padding: 40px 0;
	}
.inner {
	position: relative;
	max-width: 1070px;
	margin: 0 auto;
	padding: 0 5%;
	}
.inner-narrow {
	max-width: 900px;
	}
.inner-full {
	max-width: 100%;
	}

@media only screen and (min-width: 600px) { 
    .inner {
        padding: 0 20px;
    }
}

/* ----- [ Strandoo Simple Grid System v2.8 ] -- */
.row {
	display: block;
	margin: 0 -15px;
	overflow: hidden;
	position: relative;
	}

.stretch {
	align-items: stretch;
	}

.row > .col {
	width: 100%;
	vertical-align: top;
	padding: 0 15px;
	}

.row.no-padding,
.row.padding-0 {
	margin: 0;
	}
.row.padding-1 {
	margin: 0 -1px;
	}
.row.padding-2 {
	margin: 0 -1px;
	}
.row.padding-5 {
	margin: 0 -5px;
	padding-top: 5px;
	}
.row.padding-5 {
	margin: 0 -5px;
	padding-top: 5px;
	}
.row.padding-10 {
	margin: 0 -10px;
	padding-top: 10px;
	}
.row.padding-20 {
	margin: 0 -20px;
	}

.no-padding > .col,
.padding-0 > .col {
	padding: 0;
	}
.padding-1 > .col {
	padding: 1px;
	}
.padding-2 > .col {
	padding: 2px;
	}
.padding-5 > .col {
	padding: 5px;
	}
.padding-10 > .col {
	padding: 10px;
	}
.padding-20 > .col {
	padding: 20px;
	}

.row.text-center > .col {
	text-align: center;
	}

.row > .col.fright {
	float: right;
	}
.row > .col.fleft {
	float: left;
	}

.col > img {
	max-width: 100%;
	}

img.full {
	width: 100%;
	}
img.half {
	width: 50%;
	float: left;
	}

.centered,
.centered p,
.centered h2,
.centered h3 {
	text-align: center;
	}

/* utility */
.row-auto {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	position: relative;
	}
.areas-covered {
	flex-wrap: wrap;
	flex-direction: row;
	}
.areas-covered > .col {
	width: 50%;
	}

@media only screen and (min-width: 600px) { 
	.row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		}
		
	.row-auto {
		flex-wrap: nowrap;
		flex-direction: row;
		/*justify-content: space-between;
		align-items: center;*/
		}
	.row-auto > .col {
		flex: 1 0 auto;
		width: auto;
		}

	.row-2 > .col { width: 50%; }
	.row-3 > .col { width: 33.333%; }
	.row-4 > .col { width: 25%;}
	.row-5 > .col { width: 20%;}
	.row-6 > .col { width: 16.666%;}

	.row-2 .span-2 { width: 100%; }
	.row-3 .span-2 { width: 66.666%; }
	.row-4 .span-2 { width: 50%; }
	.row-4 .span-3 { width: 75%; }
	.row-5 .span-2 { width: 40%; }
	.row-5 .span-3 { width: 60%; }
	.row-5 .span-4 { width: 80%; }
	
	.photo-circles { width: 20% !important; }
}


/* ----- [ Masthead / Page Header ] -------------*/
.page-header {
	position: absolute;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	height: auto;
	margin: 0;
	/*padding: 10px 0;
	padding-bottom: 200px;*/
	z-index: 10;
	/*background: var(--darkblue);*/
	/*background: rgba(0,0,0,0);*/
	height: 80px;
	background: transparent;
	background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
	background: linear-gradient(180deg, rgba(0,0,0,0.7987570028011204) 0%, rgba(0,0,0,0.1516981792717087) 70%, rgba(0,0,0,0) 100%);

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/* Force Hardware Acceleration */
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	}

@media only screen and (min-width: 970px) {  /* 1110 */
	.page-header {
		height: 160px;
		background: transparent;
		background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
		background: linear-gradient(180deg, rgba(0,0,0,0.7987570028011204) 0%, rgba(0,0,0,0.1516981792717087) 70%, rgba(0,0,0,0) 100%);
		}
}

.open .page-header {
	height: 100vh;
	background: #000;
	}

.page-header .inner {
	max-width: 1200px;
	height: auto;
	}

.logowrap {
	width: 200px;
	margin: 15px 0;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
.logowrap img {
	width: 100%;
	height: auto;
	}
	
.menu-trigger,
.logowrap a,
.logowrap a:hover {
	border-bottom: none;
	}

.small,
.home .page-header.small {
	position: fixed;
	height: auto;
	background: var(--darkblue);
	background: var(--footer);
	padding: 5px 0;
	}
.small .logowrap {
	width: 200px;
	margin: 5px auto 5px 0;
	}

.head-meta {
	font-size: 1.3em;
	line-height: 1em;
	font-weight: 700;
	color: #fff;
	text-align: right;
	display: none;
	}
.head-meta a {
	text-decoration: none;
	}
.head-meta a:hover {
	color: var(--gold);
}
	
.small .head-meta {
	display: none;
	}

@media only screen and (min-width: 970px) {  /* 1110 */
	.page-header {
		position: fixed;
		}
	.page-header .inner {
		align-items: flex-end;
		}
	.page-header.small .inner {
		align-items: center;
		}

	.logowrap {
		display: block;
		width: 300px;
		margin: 10px auto 10px 0;
		}
	.logowrap img {
		width: 100%;
		height: auto;
		}
	.logowrap a,
	.logowrap a:hover {
		border: none;
		}
		
	.small {
		position: fixed;
		}
	.small .logowrap {
		width: 200px;
		margin: 5px auto 5px 0;
		}
		
	.head-meta {
		display: block;
		}
}


/* ----- [ Flex Container (Header) ] ----------- */
.flex-container {
	display: block;
	height: 100%;
	}
	
.hero-flex-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	justify-content: flex-start;
	align-items: flex-end;
	padding: 0 20px;
	height: 100%;
	}

.flex-container > *,
.hero-flex-container > * {
	/*width: 100%;*/
	display: block;
	}
	
@media only screen and (min-width: 970px) {  /* 1110 */
	/* Make this a Utility Class */
	.flex-container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		position: relative;
		justify-content: space-between;
		align-items: center;
		padding: 0 20px;
		}

		
	.f-top { align-items: flex-start; }
	.f-middle { align-items: center; }
	.f-bottom { align-items: flex-end; }
	.f-left { justify-content: flex-start; }
	.f-right { justify-content: flex-end; }
	.f-center { justify-content: center; }
}


/* ----- [ Navigation ] ------------------------ */
.main-navigation {
	display: none;
	}
.open .main-navigation {
	display: block;
	margin-top: 40px;
	}

.main-navigation ul {
	text-align: center;
	margin: 0;
	}
.main-navigation li {
	position: relative;
	font-size: 24px;
	margin: 0 0 1em 0;
	}
.main-navigation li a {
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	display: block;
	}
.main-navigation li a:hover,
.main-navigation li a.on {
	color: #fff;
	color: var(--gold);
	}

/*
.main-navigation a.on,
.main-navigation li:hover > a {
	border-bottom: 2px solid var(--teal) !important;
	}
*/

.mobile-only {
	}

@media only screen and (min-width: 970px) {  /* 1110 */
	.menu-toggle,
	.mobile-only {
		display: none!important;
		}
		
	.main-navigation {
		display: block;
		position: relative;
		left: auto;
		right: auto;
		top: 0;
		width: auto;
		margin: 0 0 3px;
		padding: 0;
		background: transparent;
		overflow: visible;
		}
	.main-navigation ul {
		text-align: right;
		text-align: right;
		font-size: 1.4em;
		display: block;
		margin: 0;
		}
	.main-navigation li {
		position: relative;
		display: inline-block;
		font-size: 14px; /* 13 */
		font-weight: 300;
		/*text-transform: uppercase;*/
		letter-spacing: 0.05em;
		margin: 0 0 0 2em;
		}

	.main-navigation li a {
		text-decoration: none;
		border-bottom: 2px solid transparent;
		font-weight: 400;
		color: #fff;
		}
	.main-navigation li a:hover,
	.main-navigation li a.on {
		color: #fff;
		border-bottom: 2px solid var(--gold);
		}
}

/* ----- [ Menu Trigger (Hamburger) ] ---------- */
.menu-trigger {
	position: absolute;
	right: 0;
	top: 0;
	max-height: 66px;
	height: 100%;
	width: 70px;
	}
	
.small .menu-trigger {
	max-height: 47px;
	}
	
.menu-trigger:hover {
	border: none;
	}
.menu-trigger .menu-text {
	height: 100%;
	text-transform: uppercase;
	color: #fff;
	display: none;
	}
.menu-trigger .menu-icon {
	/* this span is the central line in the menu menu */
	display: inline-block;
	position: absolute;
	left: 50%;
	top: 50%;
	bottom: auto;
	right: auto;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	width: 22px;
	height: 2px;
	background-color: #fff;
	/* these are the upper and lower lines in the menu menu */
	}
.menu-trigger .menu-icon::before, 
.menu-trigger .menu-icon:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: inherit;
	left: 0;
	}
.menu-trigger .menu-icon::before {
	bottom: 7px;
	}
.menu-trigger .menu-icon::after {
	top: 7px;
	}
.menu-trigger.is-clicked .menu-icon {
    background-color: #fff;
	background-color: rgba(255, 255, 255, 0);
	}
.menu-trigger.is-clicked .menu-icon::before, 
.menu-trigger.is-clicked .menu-icon::after {
	background-color: #fff;
	}
.menu-trigger.is-clicked .menu-icon::before {
	bottom: 0;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	}
.menu-trigger.is-clicked .menu-icon::after {
	top: 0;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	}
	
@media only screen and (min-width: 970px) {  /* 1110 */
	.menu-trigger {
		display: none;
		}
	.menu-trigger .menu-text {
		display: inline-block;
		line-height: 70px;
		}
	.menu-trigger .menu-icon {
		left: auto;
		right: 1.25em;
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
		}
}

/* ----- [ Sections ] -------------------------- */
/* ----- [ Home / Intro ] ---------------------- */
/* ----- [ Hero Images ] -----------------*/
.hero {
	height: 300px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-size: cover;
	}
.home-hero {
	border-top: none;
	height: 620px;
	/*height: 400px;*/
	padding: 0;
	/*height: 100vh;*/
	}
	
.hero-inner {
	height: 100%;
	max-width: 100%;
	width: 100%;
	padding: 0;
	position: relative;
	}

.hero-overlay {				
	/* z-index: 1; */
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	background: transparent;
	background: rgba(0, 0, 0, 0.3);
	}
.hero-overlay {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	height: 100%;
	padding: 0;
	}

.hero-text {
	max-width: 1140px;
	width: 100%;
	padding: 0 20px;
	margin: 0 auto;
	margin-top: 100px;
	}

.hero-angles {
	position: absolute;
	height: 20px;
	left: 0;
	right: 0;
	bottom: 0;
	display: none;
	}
.hero-angles:before {
	content: "";
	position: absolute;
	width: 100%;
	left: 0;
	height: 120px;
	background: var(--darkblue);
	border-top: 15px solid var(--teal);
	border-top: 15px solid var(--gold);
	-webkit-transform: skewY(-3deg);
	-moz-transform: skewY(-3deg);
	-ms-transform: skewY(-3deg);
	-o-transform: skewY(-3deg);
	transform: skewY(-3deg);
	}
.hero-angles:after {
	content: "";
	position: absolute;
	width: 100%;
	left: -300px;
	height: 120px;
	background: var(--darkblue);
	/*border-top: 5px solid var(--teal);*/
	-webkit-transform: skewY(3deg);
	-moz-transform: skewY(3deg);
	-ms-transform: skewY(3deg);
	-o-transform: skewY(3deg);
	transform: skewY(3deg);
	}


.category-links {
	padding: 40px 0 20px;
	background: var(--darkblue);
	}


@media screen and (min-width: 600px) {
	.home-hero {
		height: 620px;
		}
	.hero-angles {
		display: block;
		}
}

/* ----- [ Notice ] -----------------*/
.notice-text {
	padding: 30px 20px 20px;
	border: 15px solid var(--darkblue);
	}


/* ----- [ Slick Slider ] -----------------*/
.slick-slider,
.story-slider {
	overflow: visible;
	}

.home-slide {
	background-size: cover;
	background-position: 50% 50%;
	/*background-position: 50% 0;*/
	}

.hero-slider,
.hero-slider .slick-track,
.hero-slider .slick-wrapper,
.hero-slider .slick-slide {
	margin: 0;
	height: 100%;
	width: 100%;
	}
/* ----- [ Slick Gallery ] -----------------*/
.slick-gallery img {
	margin: 0 20px 10px 0;
	margin: 10px 15px 10px 0;
	}
.slick-track {
	margin-left: 20px;
	margin-left: 0;
	}
.slick-list,
.slick-track,
.slick-slide {
	height: 100%;
	/*width: 100%;*/
	}


/* ----- [ Programme Section ] ------------------*/
/* ----- [ Pages: About and Services ] -----------------*/
.about-us {
	margin: 60px 0;
	padding: 0;
	}
	
.col .home-zero-badge {
	max-width: 220px;
	margin: 0 auto;
	}
	
.container.services {
	padding: 60px 0;
	}
.services .inner h1 {
    color: var(--text-dark);
    margin-inline: auto;
    text-align: center;
}
	
.service-image {
	display: block;
	width: 100%;
	margin: 0 0 20px;
	}

.service-icon-lg {
	background: var(--darkblue);
	color: #fff;
	padding: 40px;
	margin: 0 auto 15px;
	font-size: 8rem;
	}
	
.service-icon-lg:hover {
	background: var(--gold);
    color: var(--text-dark);
	}

.badges {
	padding: 40px 0 60px;
	}
.badges .inner {
	max-width: 100%;
	}
.footer-badges {
	margin: 20px 0;
	}

.badge {
	text-align: center;
	max-width: 200px;
	max-height: 50px;
	display: inline-block;
	margin: 0 auto 20px;
	margin: 10px;
	vertical-align: middle;
	}
	
@media screen and (min-width: 600px) {
	.badge {
		max-width: 280px;
		max-width: 210px;
		max-height: 80px;
		margin: 20px 3vw;
		}
		
	.page-footer .badge {
		max-width: 220px;
		max-height: 50px;
		margin: 20px 10px;
		}
}

/* ----- [ Price Tiers ]----------------------- */
.price-tier {
	padding: 15px;
	border: 3px solid var(--darkblue);
	height: 100%;
	position: relative;
	}

.price-level {
	color: #fff;
	background: var(--darkblue);
	font-size: 1.1rem;
	text-align: center;
	padding: 8px;
	}

.price-tier h4 {
	font-weight: 700;
	text-transform: none;
	}
.price-tier ul {
	text-align: left;
	font-size: 0.95rem;
	}
.price-img {
	width: 100%;
	margin-bottom: 15px;
	}
	
.price-button {
	position: absolute;
	bottom: -30px;
	left: 0;
	right: 0;
	margin-top: 20px;
	text-align: center;
	}
	
.col:nth-child(2) .price-level {
	background: var(--silver);
	}
.col:nth-child(3) .price-level {
	background: var(--gold);
	}

/* ----- [ Contact form ]----------------------- */
.contact-map {
	position: relative;
	padding: 0;
	}
.contact-form-wrapper {
	position: relative;
	padding: 0;
	margin: 0 auto 40px;
	max-width: 850px;
	}
	
.map-canvas {
	height: 300px;
	}
.gm-style .gm-style-iw {
	font-size: 16px;
	line-height: 1.4em;
	padding: 10px;
	}

@media only screen and (min-width: 850px) {
}

@media only screen and (min-width: 1200px) {
	.map-canvas {
		min-height: 660px;
		/*height: 660px;*/
		/*padding-top: 50%;*/
		}
	.contact-form-wrapper {
		position: absolute;
		top: 20px;
		bottom: 20px;
		right: 4vw;
		padding: 20px;
		z-index: 1;
		width:  100%;
		max-width: 700px;
		margin: 0 auto;
		}
}

.contact-us-form {
	background: #d64236;
	background: var(--darkblue);
	background: #fff;
	/*color: #fff;*/
	padding: 10px 0;
	padding: 30px;
	padding: 15px;
	border: 15px solid var(--darkblue);
	}

.contact-logo {
	max-width: 300px;
	width: 100%;
	margin: 0 auto 15px;
	}

.contact-us-form p {
	font-size: 18px;
	margin: 0 auto 5px;
	}
.contact-us-form strong {
	font-size: 1.3em;
	font-weight: 300;
	}

.contact-us-form ul {
	margin: 10px 0;
	}
.contact-us-form li strong {
	font-family: 'Roboto', sans-serif;
	font-size: 1.1em;
	font-weight: 400;
	font-variant: small-caps;
	text-transform: uppercase;
	}

form.contact-form {
	/* max-width: 700px; */
	margin: 0 auto;
	}

.contact-form li {
	margin: 0;
	position: relative;
	/*overflow: hidden;*/
	min-height: 30px; /* funky; remove the float? */
	}
.antispam {
	display: none;
	}
.contact-form label {
	display: none;
	}

.check-control {
	font-size: 14px;
	}
.contact-form label.show {
	display: inline-block;
	}

.contact-form li div {
	margin: 10px auto;
	text-align: center;
	}


input,
select,
textarea {
    font-size: 1em;
    width: 100%;
    padding: 6px 8px;
    margin: 0 0 15px;
	color: #333;
	background: var(--lightblue);
    webkit-appearance: none;
    border: 1px solid #fff;
    border-radius: 0;
    }
textarea {
	margin: 0 0 5px;
	}

input[type=submit],
input.button {
    -webkit-appearance: none;
	}

input[type=checkbox] {
	width: auto;
	margin: 0 0 0 10px;
	}
select {
	height: 42px;
	font-size: 1.1;
	padding: 15px 19px;
	border: none;
	border-radius: 0;
	}

.error,
.success {
	padding: 10px;
	color: #fff;
	font-weight: 400;
	background: #f36617;
	margin: 0 0 20px;
	width: auto;
	}
.success {
	color: #00355e;
	background: #c5d301;
	}
.ui-widget-content p {
	text-align: right;
	margin: -1.6em 0 0;
	}
span.ui-state-error {
	color: red;
	}

@media only screen and (min-width: 660px) {

	.contact-us-form {
		/*min-width: 680px;*/
		}
	.contact-form .name {
		float: left;
		width: 49%;
		}
	.contact-form .telephone {
		float: right;
		width: 49%;
		}
}

/* ----- [ Buttons ] --------------------------- */
/* see styles for Dynamic First Aid! */
.hero-text a,
.button {
	display: inline-block;
	padding: 10px 20px;
	color: #222;
	background: #ffdc00;
	cursor: pointer;
	width: auto;
	opacity: 1;
	font-size: 1em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 10px;
	text-decoration: none !important;
	}
.button:hover {
	color: #222;
	background: #f9b728;
	text-decoration: none;
	}

.button-rounded {
	font-size: 1.3em;
	border-radius: 8px;
	padding: 20px;
	background: var(--gold);
	display: block;
	}
.dark .button {
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
}
	
.cross-sell {
	background: var(--gold);
	color: #222;
	text-align: center;
	padding: 20px;
	}
.cross-sell h3 {
	color: #222;
	text-transform: none;
	margin: 0;
	}

.cross-sell-logo {
	max-width: 250px;
	display: inline;
	vertical-align: middle;
	margin: 0 15px;
	}

.approved-line-logo {
	 max-width: 340px;
	 width: 100%;
	 display: inline;
	 margin: 0 0 15px;
	 vertical-align: bottom;
	 }
	 
@media screen and (min-width: 600px) {
	.button-rounded {
		display: inline-block;
		}
	.approved-line-logo {
		margin: 0 10px 8px;
		}
}

/*-------[ Footer ] ---------------------------- */
.page-footer {
	background: var(--darkblue);
	background: var(--footer);
	color: #fff;
	padding: 0;
	text-align: center;
	/* margin-top: 20px; */
	bottom: 0;
	left: 0;
	width: 100%;
	}
	
.page-footer .inner {
	padding: 40px 15px 1px;
	}
.page-footer p,
.page-footer li {
	color: #fff;
	font-size: 0.9em;
	line-height: 1.6em;
	font-weight: 100;
	margin: 0 0 2em;
	}
.page-footer li {
	margin: 0;
	}

.page-footer a {
	color: #fff;
	border-bottom: 1px dotted #fff;
	text-decoration: none;
	}
.page-footer a:hover {
	color: #fff;
	border-bottom: 1px solid #fff;
	}

.footer-logo {
	width: 280px;
	margin: 10px auto 20px;
	} 

.copyright-credits {
	margin: 20px 0 0;
	font-size: 0.75em;
	}
	
.site-credits {
	background: #fff;
	color: #222;
	font-size: 0.9em;
	margin: 0;
	padding: 10px;
	}

/* ----- [ Social Media Icons ] ---------------- */
.social-networks {
	/*display: none;*/
	margin: 0 auto 20px;
	}
.social-networks li {
	display: inline-block;
	margin: 0;
	padding: 5px;
	}
.social-networks a {
	display: block;
	text-indent: -9999px;
	height: 50px;
	width: 50px;
	margin: 0;
	opacity: 1;
	text-decoration: none;
	border: none;
	background: transparent;
	-webkit-transition: opacity 0.3s ease;
	-moz-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	}
.social-networks a.twitter { background: url('../images/ti-twitter.svg') 0 0 no-repeat; background-size: 100%; }
.social-networks a.linked-in { background: url('../images/ti-linkedin.svg') 0 0 no-repeat; background-size: 100%; }
.social-networks a.facebook { background: url('../images/ti-facebook.svg') 0 0 no-repeat; background-size: 100%; }
.social-networks a.instagram { background: url('../images/ti-instagram.svg') 0 0 no-repeat; background-size: 100%; }

.social-networks a:hover {
	opacity: 1;
	border: none;
	}

.top-link {
    position: fixed;
    bottom: 5px;
    right: 5px;
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    -moz-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
    z-index: 9;
	}
.top-link a {
	color: #fff;
	font-size: 36px;
	line-height: 45px;
    background: url('../images/double-up-yellow.png') 50% 50% no-repeat;
    /*background: url('../images/double-up-teal.png') 50% 50% no-repeat;*/
    background-size: 75%;
    display: block;
    height: 50px;
    width: 50px;
    outline: medium none;
    position: relative;
    z-index: 0;
    text-align: center;
    
    }
.top-link a:hover {
	border: none;
	background: url('../images/double-up-dark.png') 50% 50% no-repeat;
	background-size: 80%;
	}
.top-link.show {
	opacity: 1;
	}
	
@media screen and (min-width: 600px) {
	.top-link {
		bottom: 40px;
		right: 5.2%;
		}
}

/* ----- [ CMS Content ] ------------------------*/
.cms-text p > img {
	max-width: 100%;
	display: block;
	}
	
img.inline {
	display: inline !important;
	}

.cms-text ul,
.cms-text ol {
	margin: 0 0 1em;
	}
.cms-text ul li {
	list-style-type: disc;
	list-style-position: outside;
	margin: 0 0 0.5em 1.5em;
	}
.cms-text ol li {
	list-style-type: decimal;
	list-style-position: outside;
	margin: 0 0 0.5em 1.5em;
	}
	
.cms-text a {
	color: inherit;
	text-decoration: underline;
	}
.cms-text a:hover {
	color: var(--darkblue);
	}

/* ----- [ Misc. / Utility Styles ] ------------ */
img.right {
	float: right;
	}
.fright {
	float: right;
	}
.fleft {
	float: left;
	}
.text-left,
.text-left p,
.text-left li,
.text-left h2,
.text-left h3 {
	text-align: left;
	}
.text-right,
.text-right p,
.text-right li {
	text-align: right;
	}
.text-center {
	text-align: center;
	}
.text-small {
	font-size: 1em;
	}

.clearfix:before,
.clearfix:after {
	content: "\0020";
	display: block;
	height: 0;
	overflow: hidden;
	}
.clearfix:after {
	clear: both;
	}
.clearfix { 
	zoom: 1;
	}

.align_left {
	float: left;
	margin: 0 1em 1em 0;
}
.align_right {
	float: right;
	margin: 0 0 1em 1em;
}
.align_center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1em;
}

#editpage {
	position: fixed;
	bottom: 0;
	left: 0; 
	padding: 5px 6px; 
	background: #db1174; 
	color: #fff; 
	display: block;
	font-weight: bold; 
	z-index: 1000;
	}
#editpage:hover {
	background: #ffffcc;
	color: #000; 
	}


/* PRINT STYLES */
@media print {
	/* If you're going to have a print stylesheet, now's the time */
}

.service-list-wrapper {
	padding: 30px 10px;
	}
.services-list {
	border-top: 1px solid #3b455f;
	border-bottom: 1px solid #3b455f;
	margin: 20px 0 30px;
	padding: 30px 0;
	}
.services-list ul {
	max-width: 980px;
	margin: 0 auto;
	}
.services-list li {
	width: 100%;
	margin: 0.3em 0;
	display: inline-block;
	}
.services-list li a{
	text-decoration: none;
    border: none;
    cursor: pointer;
	}
.services-list li a:hover{
	text-decoration: underline;
	}

@media screen and (min-width: 600px) {
    .service-list-wrapper {
        padding: 50px 10px;
        }
    .services-list li {
        width: 33%;
        }
}

.service-angle-top,
.service-angle-bottom {
    position: absolute;
    height: 80px;
    left: 0;
    right: 0;
    top: 0;
    overflow: hidden;
    }
.service-angle-bottom {
    top: auto;
    bottom: 0;
    }
.service-angle-top:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    height: 80px;
    top: -40px;
    background: #09132d;
    -webkit-transform: skewY(-2.5deg);
    -moz-transform: skewY(-2.5deg);
    -ms-transform: skewY(-2.5deg);
    -o-transform: skewY(-2.5deg);
    transform: skewY(-2.5deg);
    }
.service-angle-bottom:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    height: 80px;
    top: 40px;
    background: #ffdc00;
    -webkit-transform: skewY(2.5deg);
    -moz-transform: skewY(2.5deg);
    -ms-transform: skewY(2.5deg);
    -o-transform: skewY(2.5deg);
    transform: skewY(2.5deg);
    }
    .service-hero {
        min-height: 280px;
        background-position: 50% 50%;
        background-repeat: no-repeat; 
        background-size: cover;
        position: relative;
        background-attachment: scroll;
        }
        @media screen and (min-width: 600px) {
            .service-hero {
                background-attachment: fixed;
                }
        }

.chevron-link {
    font-family: 'Roboto', sans-serif;
    font-size: 1.6em;
    line-height: 1.4em;
    font-weight: 300;
    color: white;
    margin: 0 0 0.5em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}
.chevron-link:hover {
    text-decoration: underline;
    color: white;
}

.category-links > .inner > .row {
    margin-bottom: 1.2rem;
}
.category-links .bi-chevron-double-right {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 900;

}
@media only screen and (max-width: 700px) {
    .category-links > .inner > .row .col {
        display: flex;
        flex-direction: column;
    }
    .chevron-link {
        margin-bottom: 0.6rem;
    }
}
@media only screen and (max-width: 600px) {
    .category-links > .inner > .row .col {
        margin-bottom: 1.2rem;
    }
}

[data-service-id="1369"] {
    visibility: hidden;
}
.service-modal {
    background-color: beige;
    position: fixed;
    z-index: 9000000;
    top: 50vh;
    left: 50vw;
    transform: translate(-50%, -50%);
    min-width: 300px;
    min-height: 300px;
    max-width: min(90vw, 800px);
    max-height: min(90vw, 600px);
    padding-block: 1.5rem;
    padding-inline: min(2rem, 5vw);
    overflow: scroll;
    display: none;
}
.service-modal *{
    color: var(--text-dark) !important;
}
.service-modal-overlay {
    position: fixed;
    z-index: 8000000;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
}

.bi-chevron-double-up {
    color: var(--gold);
    color: transparent;
}

.pure-drive-banner h2 {
    text-align: center;
    margin-bottom: 0px;
}
.pure-drive-banner .inner {
    display: flex;
    justify-content: center;
}