/**
	@Author:	Paul Strandoo/Spi-des-ign
	@Date:		Aug 2024 / Jan 2026
	@Notes:		Vincent Installations
*/

@import url("font-awesome.min.css");

:root {
	--body-font: "Saira", sans-serif;
	--display-font: "Saira", sans-serif;

	--display-medium: 500;
	--display-bold: 700;
	--body-light: 300;
	--body-medium: 500;
	--body-bold: 700;

	--primary: #5A2F92;
	--accent: #FF004A;
	--grey-1: #959595;
	--white: #ffffff;
	--black: #212121;
	
	--primary-tint: rgba(90,47,146,0.75);
	
	--grey-3: #777;
	
	--padding-small: 2em;
	--padding-medium: 4em;
	--padding-large: 6em;

	/*
	--header-height: 220px;
    --inner: 1260px;
    --inner-narrow: 960px;
    --inner-large: 1150px;
    --inner-wide: 1500px;
    --inner-very-wide: 1970px;
    --inner-full: 100%;
    */
	}

/**
 * Reset stylesheet to normalize styles across browsers
 */
/* ----- [ Reset ] ----- */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,label,input,textarea,p,blockquote,th,td {  
	margin:0; 
	padding:0; 
	}
table { 
	border-collapse:collapse; 
	border-spacing:0; 
	}
fieldset,img {  
	border:0; 
	}
address,caption,cite,code,dfn,em,strong,th,var { 
	font-style:normal; 
	font-weight:normal; 
	}
ol,ul,li { 
	list-style:none; 
	margin: 0;
	padding: 0;
	}
caption,th { 
	text-align:left; 
	} 
h1,h2,h3,h4,h5,h6 { 
	font-size:100%; 
	font-weight:normal; 
	} 
q:before,q:after { 
	content:''; 
	} 
abbr,acronym { 
	border:0; 
	} 
a {
	text-decoration: none;
	}
img {
	display: block;
	vertical-align: middle;
	max-width: 100%;
	}

/* ----- [ Base ] ----- */
* {
   -moz-box-sizing: border-box;
   -webkit-box-sizing: border-box;
	box-sizing: border-box;
	}

html {
	font-size: 100%;
	height: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 130px; /* for gallery */
	}
body {
	height: 100%;
	margin: 0;
	padding: 0;
	position: relative;
	font-size: 16px;
	line-height: 1.3;
	background: #ffffff;
	}

body, input, textarea, table {
	font-family: var(--body-font);
	font-weight: var(--body-light);
	font-style: normal;
	color: #222;
	}

/* ----- [ Typography ] -------------------------*/
p,
li,
td {
	font-family: var(--body-font);
	font-weight: 400;
	font-style: normal;
	font-size: 1.2rem;
	line-height: 1.6em;
	margin: 0 0 1em;
	}
ul {
	margin: 1em 0;
	}

li {
	margin: 0;
	}
em {
	font-style: italic;
	}
strong, b {
	font-weight: 700;
	}


input,
button,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	}

a {
	color: #222;
	}
a:hover {
	color: #ca3a31;
	text-decoration: underline;
	}
a:focus {
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
	}

/* body links 
.cms-text a {
	text-decoration: none;
	border-bottom: 1px solid #f0c5c6;
	box-shadow: inset 0 -2px 0 #f0c5c6;
	color: inherit;
	transition: background 0.1s cubic-bezier(.33,.66,.66,1);
	}

.cms-text a:hover {
	background: #8d2427;
	background: #f0c5c6;
	color: #000;
	}
*/

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: var(--display-font);
	font-weight: 400;
	font-style: normal;
	line-height: 1.1;
}

h1,.h1 {
	font-family: var(--display-font);
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1em;
	text-transform: uppercase;
	color: #fff;
	background: #222;
	padding: 0.4em 1em 0.3em;
	margin: auto 0 0.6em;
	letter-spacing: 0.05em;
	width: 100%;
	}

h2,.h2 {
	font-family: var(--display-font);
	color: var(--primary);
	font-weight: var(--display-bold);
	font-size: 1.6rem;
	line-height: 1.1em;
	padding: 0;
	margin: 0.3em 0 0.3em;
	margin: 0 0 0.6em;
	background: none;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	}
	
h2:first-of-type {
	margin-top: 0;
	}
	
h3 { 
	/*color: var(--black);*/
	font-size: 1.9rem;
	line-height: 1.1em;
	font-weight: 500;
	margin: 0 0 0.4em;
	}
	
p + h3,
ul + h3 {
	margin-top: 1.2em;
	}

h4 { font-size: 1.8rem; }

h5 { 
	color: #666;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	margin: 0;
	}

h6 { font-size: 10px; }

@media screen and (min-width: 570px) {
	h1 {
		font-size: 3.5em;
		width: 100%;
		}
}
@media only screen and (min-width: 600px) {
	h1,.h1 {
		font-size: 3.5rem;
		}

	h2,.h2 {
		font-size: 2.4rem;
		}
}

/* ----- [ utility ] ----- */
.l-case {
	text-transform: none;
	}
.u-case {
	text-transform: uppercase;
	}
.bold {
	font-weight: var(--body-bold);
	}

figure {
	margin: 0;
	}
img {
	vertical-align: middle;
	display: block;
	max-width: 100%;
	height: auto;
	}
.img-rounded {
	border-radius: 8px;
	}

/* ----- [ Structure ] -----------------*/
.page-overlay {
	position: fixed;
	top: 0;
	left: 0;
	min-height: 100%;
	height: 100%;
	width: 100%;
	visibility: hidden;
	background: #fff;
	z-index: 600;
	opacity: 0;
	overflow-y: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	padding-top: 120px;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
.page-overlay.is-open {
	position: fixed;
	opacity: 1;
	visibility: visible;
	overflow-y: auto;
	}
.page-overlay.is-open + .page-header {
	position: fixed;
	}
/*
.page-overlay.is-open + .trannyfix {
	background: #8d2427;
	background: rgba(141, 36, 39, 1)!important;
	}
*/

@media only screen and (min-width: 750px) {
	.page-overlay {
		align-items: center;
		padding: 0;
		}
}

header,
section,
footer {
	width: 100%;
	}
section {
	margin: 0;
	padding-top: var(--padding-small);
	padding-bottom: var(--padding-small);
	position: relative;
	}
	
.inner,
.inner-med {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
	position: relative;
	}
.inner-small {
	max-width: 960px;
	}
.inner-large,
.inner-wide {
	max-width: 1500px;
	}
.inner-full {
	max-width: 100%;
	/*height: 250px;*/
	margin: 0;
	padding: 0;
	overflow: hidden;
	}

@media only screen and (min-width: 200px) {
	.flex-inner {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		position: relative;
		max-width: 100%;
		height: 100%;
		padding: 0 20px;
		}
}
@media only screen and (min-width: 200px) {
}
@media only screen and (min-width: 974px) {
	.flex-inner {
		margin: 20px 0;
		}
}


/* ----- [ Strandoo Flex Grid System v1 ] ------ */
.row {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	flex-direction: column;
	/*justify-content: stretch;*/
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	position: relative;
	}

.col {
	flex: 1;
	padding: 0;
	}

@media only screen and (min-width: 420px) {
	.col { flex: initial; }
	.row.no-padding,
	.row.padding-0 {
		margin-left: 0;
		margin-right: 0;
		}
	.row.padding-1 {
		margin-left: -1px;
		margin-right: -1px;
		}
	.row.padding-5 {
		margin-left: -5px;
		margin-right: -5px;
		}
	.row.padding-10 {
		margin-left: -10px;
		margin-right: -10px;
		}
	.row.padding-15 {
		margin-left: -15px;
		margin-right: -15px;
		}
	.row.padding-20 {
		margin-left: -20px;
		margin-right: -20px;
		}
	.row.padding-30 {
		margin-left: -30px;
		margin-right: -30px;
		}

	.no-padding > .col,
	.padding-0 > .col {
		padding: 0;
		}
	.padding-1 > .col {
		padding-left: 1px;
		padding-right: 1px;
		}
	
	.padding-5 > .col {
		padding-left: 5px;
		padding-right: 5px;
		}
	.padding-10 > .col {
		padding-left: 10px;
		padding-right: 10px;
		}
	.padding-15 > .col {
		padding-left: 15px;
		padding-right: 15px;
		}
	.padding-20 > .col {
		padding-left: 20px;
		padding-right: 20px;
		}
	.padding-30 > .col {
		padding-left: 30px;
		padding-right: 30px;
		}

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

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

@media only screen and (min-width: 100px) and (max-width: 599px) {
	.base-row.row {
		flex-direction: row;
		}

	.base-row .m-1of2,
	.base-row .m-2of4,
	.base-row .m-50 {
		width: 50%;
		flex: initial;
		}
	.base-row .m-1of3,
	.base-row .m-33 {
		width: 33.3333%;
		flex: initial;
		}
}

@media only screen and (min-width: 600px) { 
	.row {
		flex-direction: row;
		}

	.m-auto {
		width: auto;
		}
	.m-full,
	.m-1of1,
	.m-2of2 {
		width: 100%;
		flex: initial;
		}
	.m-1of2,
	.m-50 {
		width: 50%;
		flex: initial;
		}
	.m-1of3,
	.m-33 {
		width: 33.3333%;
		flex: initial;
		}
	.m-2of3,
	.m-66 {
		width: 66.6667%;
		flex: initial;
		}
	.m-1of4,
	.m-25 {
		width: 25%;
		flex: initial;
		}
	.m-3of4,
	.m-75 {
		width: 75%;
		flex: initial;
		}
	.m-1of5,
	.m-20 {
		width: 20%;
		flex: initial;
		}
		
	.m-hidden { display: none; }
}

@media only screen and (min-width: 770px) {
	.t-auto {
		width: auto;
		}
	.t-full,
	.t-1of1
	.t-2of2,
	.t-3of3,
	.t-4of4,
	.t-5of5 {
		width: 100%;
		flex: initial;
		}
	.t-1of2,
	.t-2of4,
	.t-3of6,
	.t-50 {
		width: 50%;
		flex: initial;
		}
	.t-1of3,
	.t-2of6,
	.t-33 {
		width: 33.3333%;
		flex: initial;
		}
	.t-2of3,
	.t-4of6,
	.t-66 {
		width: 66.6667%;
		flex: initial;
		}
	.t-1of4,
	.t-25 {
		width: 25%;
		flex: initial;
		}
	.t-3of4,
	.t-75 {
		width: 75%;
		flex: initial;
		}
	.t-1of5,
	.t-3of6,
	.t-20 {
		width: 20%;
		flex: initial;
		}
	.t-2of5,
	.t-40 {
		width: 40%;
		flex: initial;
		}
	.t-3of5,
	.t-60 {
		width: 60%;
		flex: initial;
		}
	.t-4of5,
	.t-80 {
		width: 80%;
		flex: initial;
		}
	.t-hidden { display: none; }
}
@media only screen and (min-width: 1200px) { 
	.d-auto {
		width: auto;
		}
	.d-full,
	.d-2of2,
	.d-3of3,
	.d-4of4,
	.d-5of5 {
		width: 100%;
		flex: initial;
		}
	.d-1of2,
	.d-2of4,
	.d-3of6,
	.d-50 {
		width: 50%;
		flex: initial;
		}
	.d-1of3,
	.d-2of6,
	.d-33 {
		width: 33.3333%;
		flex: initial;
		}
	.d-2of3,
	.d-4of6,
	.d-66 {
		width: 66.6667%;
		flex: initial;
		}
	.d-1of4,
	.d-25 {
		width: 25%;
		flex: initial;
		}
	.d-3of4,
	.d-75 {
		width: 75%;
		flex: initial;
		}
	.d-1of5,
	.d-3of6,
	.d-20 {
		width: 20%;
		flex: initial;
		}
	.d-2of5,
	.d-40 {
		width: 40%;
		flex: initial;
		}
	.d-3of5,
	.d-60 {
		width: 60%;
		flex: initial;
		}
	.d-4of5,
	.d-80 {
		width: 80%;
		flex: initial;
		}
	.d-1of6,
	.d-16 {
		width: 16.6666%;
		flex: initial;
		}
		
	.d-hidden { display: none; }
}

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

.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;
	}

/* 600px equivalent breakpoint */
@media only screen and (min-width: 37.5em) { 
	.row,
	.flex-row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		}

	.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%; }
}


.dark {
	color: #fff !important;
	background: var(--primary);
	}
.dark h2,
.dark h3,
.dark h4,
.dark p,
.dark li,
.dark a {
	color: #fff;
	}
.dark a:hover {
	color: var(--accent);
	}

.tint {
	background-color: #f6f6f6;
	}

/* ----- [ Flex Container ] ----------- */
.flex-container {
	display: block;
	height: 100%;
	height: auto;
	}
.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;
	}
.flex-container > * {
	/*width: 100%;*/
	display: block;
	}
	
@media only screen and (min-width: 1110px) {
	/* Make this a Utility Class */
	.flex-container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
		position: relative;
		padding: 0 20px;
		}
	.flex-container > * {
		/*border: 1px solid gold;*/
		}
	
	.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; }
	.f-stretch { align-items: stretch; }
}

/* ----- [ Page Header / Masthead ] -----------------*/
.page-header {
	/* fixed or not */
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	background: var(--white);
	background: rgba(255,255,255,0.9);
	z-index: 999;
	-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;
	}
	
/* Odd Safari bug
  see https://stackoverflow.com/questions/56008366/
.trannyfix {
	background: transparent;
	background: rgba(255,255,255,0);
	}
.is-solid .trannyfix {
	background: #fff;
	background: rgba(255,255,255,1);
	}
*/
	
.page-header .inner {
	width: 100%;
	margin: 0 auto;
	padding: 1em;
	}
	
.page-header .top-bar {
	font-family: var(--body-font);
	color: #fff;
	font-size: 1.1rem;
	background: var(--primary);
	max-width: 100%;
	padding: 5px 30px !important;
	letter-spacing: 0.08em;
	justify-content: center;
	}
	
.head-email {
	display: none;
	}

.logo-wrap {
	display: block;
	max-width: 260px;
	margin: 0;
	/*margin-right: auto;*/
	text-decoration: none;
	border: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	}
.head-logo,
.head-logo-rev {
	width: 100%;
	}
.is-solid .logo-wrap {
	max-width: 180px;
	}
	
.force-left {
	margin-right: auto;
	}
/*
.head-logo,
.is-solid .head-logo-rev {
	display: none;
	}
	
.is-solid .head-logo {
	display: block;
	}

.is-solid .inner:not(.top-bar) {
	background: #fff;
	}
*/
/*
.head-phone {
	color: #fff;
	font-size: 28px;
	font-weight: 300;
	text-align: right;
	margin: 0 0 20px;
	display: none;
	}

@media only screen and (min-width: 800px) {
	.head-phone {
		display: block;
		}
}
*/

@media screen and (min-width: 570px) {
	.page-header .inner {
		padding: 1.5em 1em;
		/*justify-content: space-between;*/
		}
}

@media only screen and (min-width: 620px) {
	.page-header .top-bar {
		justify-content: space-between;
		}
	.head-email {
		display: block;
		}
}

/* ----- [ Menu Trigger (Hamburger) ] ---- */
.menu-toggle {
	position: absolute;
	right: 2em;
	display: block;
	background: transparent;
	width: 44px;
	height: 44px;
	cursor: pointer;
	}
.menu-toggle a {
	display: none;
	}

.menu-toggle .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: 26px;
	height: 2px;
	background-color: #fff;
	/* these are the upper and lower lines in the menu menu */
	}
.menu-toggle .menu-icon::before, 
.menu-toggle .menu-icon:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: inherit;
	left: 0;
	}
.menu-toggle .menu-icon::before {
	bottom: 8px;
	}
.menu-toggle .menu-icon::after {
	top: 8px;
	}
.menu-toggle.is-clicked .menu-icon {
	background-color: rgba(255, 255, 255, 0);
	}
.menu-toggle.is-clicked .menu-icon::before, 
.menu-toggle.is-clicked .menu-icon::after {
	background-color: #fff;
	}
.menu-toggle.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-toggle.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);
	}
	
.is-solid .menu-toggle .menu-icon {
	background-color: #222;
	}
.is-solid .menu-toggle.is-clicked .menu-icon {
	background-color: rgba(255, 255, 255, 0);
	}
.is-solid .menu-toggle.is-clicked .menu-icon::before, 
.is-solid .menu-toggle.is-clicked .menu-icon::after {
	background-color: #222;
	}
	
@media only screen and (min-width: 800px) { /* 1112 */
	.menu-toggle {
		display: none;
		}
	.menu-toggle .menu-text {
		display: inline-block;
		line-height: 70px;
		}
	.menu-toggle .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);
		}
}

/* ----- [ Navigation / Search ] ------ */
.main-navigation {
	display: none;
	overflow: hidden;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	}
	
.main-navigation.is-open {
	max-height: 1000px;
	}

.mobile-menu {
	text-align: left;
	margin: 0;
	margin-top: 2em;
	}
	
.mobile-menu li {
	font-family: var(--body-font);
	position: relative;
	font-size: 1.5rem;
	line-height: 1.2;
	font-weight: 500;
	letter-spacing: 0.12em;
	margin: 0 0 0.5em;
	padding: 0;
	background: transparent;
	text-transform: uppercase;
	vertical-align: middle;
	color: #000;
	}

.menu-link {
	color: var(--grey-1);
	font-size: 1.5rem;
	line-height: 1.2;
	font-weight: var(--body-bold);
	letter-spacing: 0.12em;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	font-weight: 700;
	}
.menu-link:hover,
.menu-link.on {
	color: var(--accent);
	text-decoration: none;
	border-bottom: 2px solid var(--accent);
	}
.menu-link:hover {
	color: var(--accent);
	text-decoration: none;
	border-bottom: 2px solid var(--accent);
	}

.is-solid .menu-link,
.mobile-menu .menu-link {
	color: #222;
	}
.is-solid .menu-link:hover,
.is-solid .menu-link.on {
	color: var(--black);
	text-decoration: none;
	border-bottom: 2px solid #000;
	}
.is-solid .menu-link:hover {
	color: #000;
	text-decoration: none;
	border-bottom: 2px solid var(--accent);
	}

.nav-services {
	margin: 0.5em 0 1.5em 1em;
	}
.mobile-menu .level-2 {
	text-transform: none;
	}

.mobile-menu .head-phone {
	color: #fff;
	letter-spacing: 0.05em;
	}
.is-solid .mobile-menu .head-phone {
	color: #000;
	}


.mobile-menu .head-phone.mobile {
	display: none;
	}

@media only screen and (min-width: 1248px) {
	.main-menu .head-phone.mobile {
		display: inline;
		}
}

@media only screen and (min-width: 1380px) {
	.main-menu .head-phone {
		font-size: 1.2em;
		}
}


@media only screen and (min-width: 800px) { /* 1112 */
	.main-navigation {
		display: block;
		display: flex;
		position: relative;
		justify-content: flex-start;
		align-items: center;
		width: auto;
		margin: 0;
		padding: 0 0 0 1em;
		background-color: transparent;
		overflow: visible;
		flex-basis: 34%;
		}
	.main-navigation:first-of-type {
		justify-content: flex-end;
		padding: 0 1em 0 0;
		}

	.main-navigation li {
		font-family: var(--body-font);
		position: relative;
		display: inline-block;
		margin: 0 1em;
		font-size: 17px;
		white-space: nowrap;
		}
		
	.menu-link {
		font-family: var(--body-font);
		padding: 0;
		background-color: transparent;
		font-size: 1.2rem;
		line-height: 1.2;
		font-weight: var(--body-bold);
		letter-spacing: 0.05em;
		text-transform: uppercase;	
		}
		
	.main-navigation li:hover .dropnav {
		top: 120%;
		visibility: visible;
		opacity: 1;
		}

	.dropnav {		
		display: block;
		position: absolute;
		width: auto;
		top: 210%;
		/* left: -50%; */
		text-align: left;
		background: #fff;
		z-index: 9999;
		visibility: hidden;
		opacity: 0;
		padding: 10px;
		box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
		white-space: nowrap;
		-webkit-transform: none;
		-moz-transform: none;
		-ms-transform: translateX(0px);
		-o-transform: none;
		transform: none;
		-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
		-o-transition: all .3s ease;
		transition: all .3s ease;
		}
		
	.dropnav ul,
	.nav-services {
		margin: 0;
		}
		
	.dropnav li {
		display: block;
		text-align: left;
		margin: 0;
		padding: 5px 15px;
		}
	.main-navigation .level-2 {
		text-transform: none;
		margin: 0;
		}

	.dropnav li > a {
		font-family: var(--body-font);
		color: #222;
		font-size: 1.2rem;
		font-weight: 400;
		letter-spacing: 0.05em;
		text-transform: none;
		text-transform: uppercase;
		background-color: transparent;
		border-bottom: 2px solid transparent;
		}
		
	.dropnav li > a:hover,
	.dropnav li > a.on {
		color: #000;
		text-decoration: none;
		border-bottom: 2px solid var(--accent);
		}		
		
	.submenu-toggle {
		position: relative;
		top: -1px;
		z-index: 2;
		display: inline-block;
		height: 12px;
		line-height: 12px;
		font-size: 12px;
		color: #fff;
		}
	.is-solid .submenu-toggle {
		color: #222;
		}
	.submenu-toggle:before {
		content: '\f107';
		font-family: 'FontAwesome', sans-serif;
		}
}

@media only screen and (min-width: 900px) {
	.main-menu li,
	.main-navigation li {
		margin: 0 2em;
		}
	.main-navigation {
		padding: 0 0 0 2em;
		/*flex-basis: 40%;*/
		}
	.main-navigation:first-of-type {
		padding: 0 2em 0 0;
		}
}

/* ----- [ Hero Images ] -----------------*/
.hero {
	height: 570px;
	height: 75vh;
	max-height: 600px;
	overflow: hidden;
	padding: 0;
	background-size: cover;
	}
.home-page .hero {
	max-height: 800px;
	}
	
/*
.home-hero {
	min-height: 600px;
	height: 720px;
	height: 85vh;
	height: 70vh;
	margin: 0;
	margin-top: 38px;
	}
*/
/*
.home-hero h2 {
	font-weight: 400;
	font-size: 3.5rem;
	line-height: 1em;
	text-transform: uppercase;
	color: #fff;
	background: #222;
	padding: 0.4em;
	margin: auto 0 0.6em;
	margin: 0;
	letter-spacing: 0.2em;
	text-align: center;
	}
	
.home-hero strong {
	position : relative;
	top : -0.10em;
	}
*/
.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-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: flex-start; 
	align-items: flex-start;
	height: 100%;
	padding: 0;
	padding-top: 5%;
	position: relative;
	}

.hero-text {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	color: #fff;
	background: var(--primary-tint);
	text-align: left;
	padding: 3% 3% 3% 0;
	max-width: 50em;
	}
	
.hero-text img {
	max-width: 200px;
	margin: 0 1em 0 0;
	}

.hero-text .h1,
.hero-text h2 {
	color: #fff;
	font-weight: var(--display-bold);
	font-size: 3.2rem;
	line-height: 1em;
	background: none;
	margin: 0;
	padding: 0;
	text-wrap: balance;
	}
.hero-text .h2 {
	font-size: 1.5rem;
	font-weight: var(--display-light);
	text-transform: none;
	letter-spacing: 0;
	}

/*
.hero-text h1:after {
	content: "";
	display: block;
	height: 6px;
	width: 50px;
	text-align: center;
	margin: 20px auto 0;
	background: #fff;
	box-shadow: -56px 0 #fff, 56px 0 #fff;
	-webkit-animation: myAnimation 3s step-end;
	-moz-animation: myAnimation 3s step-end;
	animation: myAnimation 3s step-end;
	}
*/
/*
@keyframes myAnimation {
	25% {
		background-color: #fff;
		box-shadow: -56px 0 #8d2427, 56px 0 #fff;
	}
	50% {
		background-color: #8d2427;
		box-shadow: -56px 0 #fff, 56px 0 #fff;
	}
	75% {
		background-color: #fff;
		box-shadow: -56px 0 #fff, 56px 0 #8d2427;
	}
	100% {
		background-color: #fff;
		box-shadow: -56px 0 #fff, 56px 0 #fff;
	}
}
*/
	
	
.hero-text p {
	color: #fff;
	font-size: 20px;
	margin: 0;
	}

.scroll-down {
	color: #fff;
	position: relative;
	margin: 0 0 20px;
	text-align: center;
	}

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

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

/* ----- [ Home: Services (b) ] -----------------*/	
.service-row {
	margin-top: 40px;
	margin-bottom: 40px;
	display: block;
	}
.service-col,
.service-summary {
	width: 100%;
	}
.service-row:nth-of-type(even) {
	flex-direction: row-reverse;
	}
.service-row:nth-of-type(even) .service-col {
	text-align: right;
	}
.service-image {
	display: block;
	width: 100%;
	}

.service-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center; 
	align-items: center;
	padding: 20px 30px;
	}

.service-summary {
	padding: 50px 5vw;
	}
.service-button {
	display: inline-block;
	}

.service-logo {
	width: 140px;
	margin: 0 auto;
	}

@media screen and (min-width: 768px) {
	.service-row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin-top: 80px;
		margin-bottom: 80px;
		align-items: center;
		justify-content: space-between;
		flex-wrap: nowrap;
		}
	.service-col {
		width: 60%;
		}
	.service-summary {
		width: 40%;
		}
}
@media screen and (min-width: 1024px) {
	.service-col {
		width: 66.666%;
		}
	.service-summary {
		width: 33.333%;
		}
}

/* ----- [ Home: Services Grid Hero ] -----------------*/	
.services-grid {
	padding-top: 0;
	padding-bottom: 50px;
	margin-bottom: 0;
	background: var(--white);
	}

.service-link-header {
	/*position: absolute;*/
	display: flex;
	align-items: center;
	text-align: left;
	margin: 0;
	padding: 15px;
	color: #fff;
	background: var(--primary);
	bottom: 0;
	width: 100%;
	overflow: hidden;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
	
.service-link div {
	overflow: hidden;
	}

.service-title,
.services-grid h3,
.services-grid h4 {
	color: var(--white);
	font-size: 1.54rem;
	font-weight: var(--body-bold);
	text-transform: uppercase;
	letter-spacing: 0;
	margin: 0;
	}
.services-grid h4 {
	font-weight: var(--body-light);
	text-transform: none;
	}

.service-link:hover,
.service-link:hover h3,
.service-link:hover h4 {
	text-decoration: none;
	}
	
.case-studies-section {
	padding: 60px 0;
	}
.service-link {
	position: relative;
	display: block;
	overflow: hidden;
	margin-bottom: 20px;
	}

.service-link-img {
	width: 100%;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	}
/*
.service-link:hover .service-link-img {
	-webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    }
*/
.service-link-icon {
	width: 55px;
	float: left;
	margin: 0 0.6em 0 0;
	}

.service-link:hover .service-title {
	/*color: #fff;
	background: var(--accent);*/
	}

/* ----- [ Supply Fit section ] ----- */
.supply-fit-install {
	background: var(--accent);
	}
.icon-row {
	justify-content: center;
	align-items: flex-start;
	padding: 1em;
	}
.icon-wrapper {
	/*flex: 1;*/
	width: 25%;
	}
.icon-wrapper img {
	width: 110px;
	border-radius: 50%;
	background: var(--primary);
	margin: 0 auto 1em;
	}
.icon-wrapper h4 {
	font-size: 1.6rem;
	font-weight: var(--body-medium);
	text-transform: uppercase;
	}



/* ----- [ Home: Video Section - unused ] -----------------*/
.video-section {
	padding: 30px 0 50px;
	}
	
.video-logo {
	width: 300px;
	margin: 0 auto 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #87949a;
	}
.video-logo img {
	max-width: 185px;
	margin-left: -10px;
	}

.video-text p {
	font-size: 2.2em;
	line-height: 1.8em;
	font-weight: 300;
	margin-bottom: 2em;
	}

.TextformatterVideoEmbed {
	margin-bottom: 80px;
	padding-top: 40px;
	border-bottom: 1px solid #87949a;
	}

	


/* ----- [ Sponsor Logos (ce) ] --------------- */
.sponsor-section {
	margin: 0;
	padding: 25px 0;
	background: #fff;
	}
.sponsor-logos {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	position: relative;
	max-width: 100%;
	padding: 0;
	}
.sponsor-logo {
	margin: 0 30px;
	height: 100px;
	}
.sponsor-logo img {
	height: 100%;
	width: 220px;
	object-fit: scale-down;
	}

/* ----- [ Home: Intro ] -----------------*/
.home-headline {
	margin: 100px 0;
	}

.intro-text-section {
	padding: 2em 0 15px;
	}

.intro-text p {
	font-size: 1.2em;
	line-height: 1.8em;
	}

@media screen and (min-width: 570px) {
	.intro-text-section {
		padding: 4em 0 60px;
		}

}

/* ----- [ Service Pages ] -----------------*/
/* See Hero stuff */
.page-intro {
	padding-top: var(--padding-medium);
	padding-bottom: var(--padding-medium);
	}
.page-intro .h2,
.page-intro .sub-head {
	color: var(--accent);
	margin: 0;
	}
.page-intro .sub-head {
	font-size: 1.6rem;
	font-weight: var(--body-medium);
	margin-bottom: 1em;
	}

.page-intro p {
	font-size: 1.8rem;
	font-weight: var(--body-light);
	line-height: 1.4;
	color: var(--primary);
	}





/* ----- [ Flex Pages/Sections (see Spotlight) ] -----------------*/
.flex-sections {
	padding-top: 40px;
	padding-bottom: 80px;
	}

.spot-row {
	margin-top: 20px;
	}
/*
.flex-image {
	text-align: right;
	}
*/
/*
.spotlight:not(:first-child):not(.style4) {
	border-top: 1px solid #000;
	margin-bottom: 30px;
	}
*/
/*
.spotlight.style4 + .spotlight,
.spotlight.style5 + .spotlight {
	border-top: none;
	padding-top: 0;
	}
*/
.cms-text small,
.cms-text small a {
	color: var(--grey-3);
	}
.cms-text small a {
	text-decoration: underline;
	}
.cms-text small a:hover {
	color: var(--black);
	text-decoration: underline;
	}
	
.column-image {
	margin-bottom: 20px;
	}

/* ----- [ CMS Content ] -----------------*/
/* Case Studies: 2 or 3 placed image. New CMS-styles for paragraphs with images */
.cms-text p > img {
	max-width: 100%;
	display: block;
	}

.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:not(.button):not(.accordion dt a):not(small a) {
	color: var(--accent);
	text-decoration: none;
	}
.cms-text a:not(.button):not(.accordion dt a):hover {
	text-decoration: underline;
	}

p.image-row-1,
p.image-row-2,
p.image-row-3 {
	margin: 0 0 20px 0;
	overflow: hidden;	
	}

p.image-row-2 > img,
p.image-row-3 > img {
	float: none;
	width: 100%;
	margin: 0 0 20px 0;
}


.child-links li {
	display: block;
	margin: 0 0 10px;
	}


/* 600px equivalent breakpoint */
@media only screen and (min-width: 37.5em) { 
	/* CMS styles */
	p.image-row-2 > img {
		float: left;
		width: 48.75%;
		margin: 0 2.4% 0 0;
	}
	p.image-row-2 > img:nth-of-type(even) {
		float: right;
		margin-right: 0;
	}

	p.image-row-3 > img {
		float: left;
		width: 31.7%;
		margin: 0 2.4% 0 0;
	}
	p.image-row-3 > img:nth-of-type(3) {
		float: right;
		margin-right: 0;
	}

	p.image-row-4 > img {
		float: left;
		width: 23.2%;
		margin: 0 2.4% 0 0;
	}
	p.image-row-4 > img:nth-of-type(4) {
		float: right;
		margin-right: 0;
	}
}

/* ----- [ Accordion ] ------------ */
.training-page .spot-row {
	overflow: visible;
	}
dl.accordion {
	margin: 0;
	padding: 25px 0 0;
	position: relative;
	border-top: 1px solid #ccc;
	}
dl.accordion > dt {
	font-family: var(--body-font);
	font-size: 1.2rem;
	line-height: 1.3em;
	font-weight: 600;
	list-style: none;
	}

dl.accordion > dt > a {
	color: #000;
	display: block;
	vertical-align: middle;
	position: relative;
	padding-right: 1.5em;
	padding-bottom: 25px;
	text-decoration: none;
	transition: all .2s ease; 
	border-bottom: 1px solid #ccc;
	}

dl.accordion > dt span {
	display: block;
	margin: 0;
	text-transform: none;
	font-weight: 400;
	}

dl.accordion > dt > a:before {
	content: '+';
	color: var(--orange);
	position: absolute;
	right: 0;
	top: -4px;
	font-size: 2.2rem;
	font-size: 1.8rem;
	font-weight: 400;
	}

dl.accordion > dt > a.open {
	border-bottom: none;
	}

dl.accordion > dt > a.open:before {
	content: '−'; /* true minus sign */
	}
dl.accordion dd {
	padding: 0;
	margin: 0 0 25px;
	max-height: 0;
	opacity: 0;
    transition: all .4s ease;
	}
dl.accordion dd.is-open {
	padding: 0 0 15px;
	max-height: 1000px;
	opacity: 1;
	border-bottom: 1px solid #ccc;
	}

dl.accordion > dt > a:hover:before {
	}
	
dl.accordion p {
	line-height: 1.8;
	padding-right: 2em;
	}

/* ----- [ Contact Page ] --------------- */
/* ----- [ Include: Map/Contact Form ] -----------------*/
.contact-section {
	padding: 50px 0;
	}

.contact-row > .col {
	width: 100%;
	}

.contact-meta {
	max-width: 100%;
	margin: 0 auto 50px;
	padding: 0 20px;
	}
	
.contact-meta .fa,
.contact-info .fa {
	width: 30px;
	text-align: center;
	margin: 0 -10px 0 10px;
	}
	
.contact-meta li,
.contact-info li {
	padding: 0 0 0 30px;
	text-indent: -30px;
	}

.map-contact-section {
	padding: 0;
	margin-bottom: 50px;
	}

.map-col {
	padding: 0 !important;
	position: relative;
	border-left: 8px solid #8d2427;
	}
.map-canvas {
	height: 450px;
	width: 100%;
	/*margin: 0 -10px 0 -10px;*/
	}

.map-address {
	position: absolute;
	bottom: 55%;
	left: 50%;
	width: auto;
	padding: 20px;
	background: rgba(255,255,255,0.9);
	z-index: 555;
	-webkit-transform: translate(-50%,0);
	-moz-transform: translate(-50%,0);
	-ms-transform: translate(-50%,0);
	-o-transform: translate(-50%,0);
	transform: translate(-50%,0);
	}
.map-address p {
	line-height: 1.2em;
	}
.map-address p:last-of-type {
	margin-bottom: 0;
	}
	
/* ----- [ Include: Map/Contact Form ] -----------------*/
.map-section {
	padding: 0;
	}
.map {
	height: 500px; 
	position: relative;
	overflow: hidden;
	}


@media only screen and (min-width: 900px) {
	.contact-section {
		padding: 100px 0;
		}
	
	.contact-row > .col {
		width: 50%;
		}

	.contact-meta {
		max-width: 750px;
		margin: 0 0 0 auto;
		padding: 0 30px;
		}

	.map-col {
		padding-right: 0;
		position: relative;
		min-height: 500px;
		border-left: 8px solid #8d2427;
		}
	.map-canvas {
		height: 100%;
		margin: 0;
		}

	.map-address {
		bottom: auto;
		left: 55%;
		top: 45%;
		-webkit-transform: translate(0,-50%);
		-moz-transform: translate(0,-50%);
		-ms-transform: translate(0,-50%);
		-o-transform: translate(0,-50%);
		transform: translate(0,-50%);
		}
}



.contact-form-wrapper {
	margin: 50px 0 0 0;
	}


/* ----- [ Contact form ]----------------------- */
.InputfieldForm {
    display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: stretch;
	flex-wrap: wrap;
	}

.form__item {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	margin: 0;
	padding: 0;
	position: relative;
	}
.form__item--c_name,
.form__item--c_email {
	margin: 0;
	}

form > .form__item--c_contact_consent {
	margin: 0 0 20px;
	}
	
form > .form__item--scf-date {
	width: 100%;
	height: 0;
	}


@media only screen and (min-width: 800px) {
	form > .form__item {
		width: 50%;
		padding: 0 20px 0 0;
		}
		
	form > .form__item--c_terms_consent {
		margin: 0 0 20px;
		}
	
	form > .form__item--forms3 {
		width: 100%;
		}
		
	.form__item--c_name,
	.form__item--c_email {
		margin: 0 0 20px;
		}
	.form__item--c_terms_consent,
	.form__item--c_contact_consent {
		margin: 0 0 20px;
		}
	.form__item--submit {
		margin: 0 auto;
		width: 100%;
		}
}

@media only screen and (min-width: 920px) {
	form > .form__item {
		width: 50%;
		}
	form > .form__item--c_message {
		width: 100%;
		}
	.form__item--c_name,
	.form__item--c_email {
		margin: 0 0 10px;
		}
	.form__item--c_terms_consent,
	.form__item--c_contact_consent {
		margin: 0 0 20px;
		}
	.form__item--submit {
		margin: 0 auto;
		width: 100%;
		}
}


input,
select,
textarea {
    font-size: 1em;
    width: 100%;
    padding: 10px;
    margin: 0 0 10px;
	color: #333;
	background: #fff;
    webkit-appearance: none;
    /*border: 1px solid #ccc;*/
    border: none;
    border-radius: 0;
    border-bottom: 2px solid #e1e1e1;
    }

input:focus, 
textarea:focus {
	background: #fff;
	}

input[type=submit],
input.button {
    -webkit-appearance: none;
    -moz-appearance: none;
	}
input[type="checkbox"] {
	width: auto !important;
	}


.form__item--c_contact_consent,
.form__item--c_terms_consent {
	line-height: 0.9em;
	margin-bottom: 0;
	}

.form__item label {
	font-size: 0.9em;
	line-height: 1.35em;
	}

.field__header--hidden,
.form__item--scf-website {
	display: none;
	}
.field--error--message {
	/*float: right;*/
	color: #f36617;
	font-weight: 400;
	font-size: 0.85em;
	margin: 0;
	position: absolute;
	right: 20px;
	bottom: -15px;
	}
	
	
.form__item--c_terms_consent .field--error--message {
	right: 40px;
	}
	
.form--error--message,
.form--success--message {
	text-align: center !important;
	font-size: 0.95em;
	font-weight: 400;
	color: #f00;
	border: 2px solid #f00;
	padding: 12px;
	margin: 5px 0 20px;
	width: 100%;
	}
	
.form--success--message {
	font-size: 1.2em;
	color: #00355e;
	color: #fff;
	background: #c5d301;
	background: olive;
	border: none;
	}

.FieldtypeCheckbox {
	margin-right: 0.5em;
	}
	
/* checkbox */
input[type=checkbox].FieldtypeCheckbox {
    height: 20px;
    width: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    border: 1px solid #ccc;
    position: relative;
	outline: none;
    background: #f2f2f2;
    background: #fff;
    vertical-align: middle;
    margin: -2px 10px 0 0;
    -webkit-transition: 0.15s;
    cursor: pointer;
    float: left;
	}

input[type=checkbox].FieldtypeCheckbox:hover {
    border:1px solid #ccc;
	}

input[type=checkbox].FieldtypeCheckbox:before, 
input[type=checkbox].FieldtypeCheckbox:checked:before {
    content: '';
    position: absolute;
    top: 1px;
    left: 7px;
    width: 5px;
    height: 11px;
    border-right: 3px solid #000;
    border-bottom: 3px solid #000;
    transform: rotate(45deg);
    opacity: 0;
	}
input[type=checkbox].FieldtypeCheckbox:checked:before {
    opacity: 1;
	}

#wrap_InputfieldSubmit span {
	display: none;
	}
	
.form__item--label {
	display: none;
	}	
	
li label span {
	display: none;
	}
	
form > .form__item--submit {
	text-align: center;
	width: 100%;
	}

.field--error--message {
	display: none;
	}
.field--required label:after {
	content: '*';
	color: #333;
	}
.field--error.field--required label:after {
	content: '*';
	color: #f00;
	font-size: 1.2em;
	}
.field--error.field--required .InputfieldMaxWidth {
	border: 1px solid #f00;
	}

/* buttons */
input[type="submit"],
input[type="reset"],
input[type="button"],
button,
.button {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
	display: inline-block;
	color: #fff;
	font-size: 1.1rem;
	font-weight: 600;
	text-align: center;
	text-decoration: none !important;
	text-transform: uppercase;
	letter-spacing: 0.125em;
	white-space: nowrap;
	background: var(--accent);
	border: 3px solid var(--accent);
	border-radius: 5px;
	text-overflow: ellipsis;
	overflow: hidden;
	padding: 6px 16px;
	padding: 0.6em 1em;
	margin: 0;
	cursor: pointer;
	/* transitions */
	}

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover,
.button:hover {
	color: var(--accent);
	background: transparent;
	}
	
.button-full {
	display: block;
	width: 100%;
	}

@media only screen and (min-width: 37.5em) { 
	button,
	.button {
		width: auto;
		}
}	





/* ----- [ Service Pages ] --------------- */

@media only screen and (min-width: 800px) {
	.services-text {
		/*padding-right: 5% !important;*/
		}
}

.sidebar-image {
	margin: 0 0 20px;
	}
	
.slick-gallery img {
	margin: 0 20px 10px 0;
	}
.slick-track {
	margin-left: 20px;
	}
	
/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    text-align: center;
    left: auto;
    right: 50px;
    top: -40px;
    display: block;
    width: 40px;
    height: 40px;    
    padding: 0 0 0 4px;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    border: 2px solid #222;
}
.slick-prev {
	right: 100px;
	padding: 0 4px 0 0;
	}

.slick-prev:before,
.slick-next:before {
    font-family: 'FontAwesome';
    font-size: 24px;
    line-height: 36px;
    opacity: .75;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	}

/* ----- [ Gallery Page ] --------------- */
/* ----- [ Gallery Page & Sections / Isotope ] -----------------*/
.gallery-section {
	padding: 30px 0 40px;
	}

.gallery-link {
	display: block;
	opacity: 1;
	transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    }
.gallery-link:hover {
	opacity: 0.8;
	border-bottom: none;
	}

.gallery-icon {
    font-size: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    color: #fff;
    z-index: 999;
    margin-top: 20px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .2s all ease-out;
    -moz-transition: .2s all ease-out;
    -o-transition: .2s all ease-out;
    transition: .2s all ease-out;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
	}
.gallery-link:hover .gallery-icon {
    margin-top: 0;
    opacity: 1;
    visibility: visible;
	}


.filter-button-group {
	text-align: left;
	margin: 0 0 1.5em;
	}
.filter-button-group li {
	display: inline-block;
	margin: 0 1em 0 0;
	font-size: 1.1em;
	}
.is-checked {
	color: #000;
	text-decoration: underline;
	}

.grid-sizer,
.grid-item { 
	/*width: calc(33.333% - 20px);*/
	width: 100%;
	margin: 0 0 20px;
	}

.gutter-sizer {
	width: 2%;
	width: 0;
	width: 20px;
	}

.grid-item img {
	width: auto;
	width: 100%;
	vertical-align: middle;
	}
	
@media screen and (min-width: 570px) {
	.grid-sizer,
	.grid-item,
	.grid-item--width2 { 
		width: calc(33.333% - 20px);
		/*width: 32%;
		width: 33.333%*/
		margin: 0 0 20px;
		}
	.grid-item.width2 {
		width: 66.666%;
		width: calc(66.666% - 20px);
		}
}


/* ----- [ Page Sections / Components ] ------- */
.page-section {
	padding-top: var(--padding-medium);
	padding-bottom: var(--padding-medium);
	}

.text-image-section {
	padding-top: var(--padding-small);
	padding-bottom: var(--padding-small);
	}
	
.text-image-section h2 {
	font-size: 2rem;
	color: var(--primary);
	}
.text-image-section h3 {
	font-size: 1.5rem;
	font-weight: var(--body-medium);
	color: var(--accent);
	margin: 0;
	}
.text-image-section p {
	font-weight: var(--body-light);
	}

.text-image-row {
	display: block;
	}
	

.contact-form-section h3,
.contact-form-section p {
	text-align: center;
	margin: 0 0 0.5em;
	}

@media screen and (min-width: 768px) {
	.text-image-row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: nowrap;
		}
	.image-wrapper {
		width: 100%;
		height: 100%;
		}
	.text-wrapper {
		max-width: 36em;
		padding: 2em 30px 2em 0;
		margin: 0 auto 0 0;
		}
	.row-reverse .text-wrapper {
		padding: 2em 0 2em 30px;
		margin: 0 0 0 auto;
		}
}

/* ----- [ Testimonials ] --------------- */
.testimonials-section {
	margin: 0;
	/*padding: 50px 0 60px;*/
	/*background: #fff url('../images/basement-stairs-bg.jpg') 50% 50% no-repeat;
	background-size: cover;
	background-attachment: fixed;*/
	}
.testimonials-section h5 {
	margin: 0 0 1em;
	}

.quote-icon {
	width: 32px;
	margin: 0 auto 20px;
	}
.testimonial p {
	font-size: 1.2em;
	font-weight: 400;
	margin: 0 1.1em 5px;
	}

.testimonial-name {
	font-size: 1.1em;
	font-style: italic;
	}
.testimonial-title {
	font-size: 1em;
	font-style: italic;
	}
	
.testimonials-section .fa.fa-quote-left {
	font-size: 3em;
	color: #8d2427;
	color: var(--grey-1);
	margin: -10px auto 30px;
	}
	
@media only screen and (min-width: 37.5em) { 
	.testimonials-section blockquote {
		margin: 0 50px;
		}
}

/* ----- [ Hero Sections ] --------------- */
.hero-section {
	position: relative;
	margin-bottom: 5em;
	}
	
.hero-section .inner {
	display: flex;
	flex-direction:row;
	/* alignment by options */
	}
	
.hero-image-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	}
.hero-image-wrapper:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(0,0,0,0.3);
	}
	
.hero-section-image {
	object-fit: cover;
	height: 100%;
	width: 100%;
	}
	
.hero-content {
	width: 100%;
	padding: 3.5rem 3.5rem 1.5rem 3.5rem;
	background-color: inherit;
	background-color: rgba(255,255,255,0.9);
	border-radius: 0.5rem;
	z-index: 1;
	}

/* fixed bg */
.hero-section.fixed-bg .hero-image-wrapper {
	background-attachment: fixed;
	background-repeat: none;
	background-size: cover;
	}
.hero-section.fixed-bg .hero-section-image {
	display: none;
	}


/* ----- [ Section: Gallery (Featherlight) ] --------  */
		.featherlight-next,
		.featherlight-previous {		
			display: block;
			position: absolute;
			top: 25px;
			right: 25px;
			bottom: 0;
			left: 80%;
			cursor: pointer;
			-webkit-touch-callout: none;
			-webkit-user-select: none;
			-khtml-user-select: none;
			-moz-user-select: none;
			-ms-user-select: none;
			user-select: none;
			/*background: rgba(0, 0, 0, 0);*/
			background: none;
			opacity: 0;
			-webkit-transition: all 0.3s ease;
			-moz-transition: all 0.3s ease;
			-o-transition: all 0.3s ease;
			transition: all 0.3s ease;
			}
		.featherlight-previous {
			right: 80%;
			left: 25px;
			}
		.featherlight-next span,
		.featherlight-previous span {
			display: block;
			position: absolute;
			top: 50%;
			left: 8%;
			width: 60px;
			height: 60px;
			margin-top: -30px;
			background-image: url('../images/arrow-left.png');
			background-size: 100%;
			text-indent: -9999px;
			opacity: 0.8;
			}
		.featherlight-next span {
			left: auto;
			right: 8%;
			background-image: url('../images/arrow-right.png');
			background-size: 100%;
			}
		.featherlight-next:hover,
		.featherlight-previous:hover {
			background: none;
			opacity: 0.8;
			}
		.featherlight-next span:hover,
		.featherlight-previous span:hover {
			opacity: 1;
			}


		.service-gallery-section {
			background: #f6f6f6;
			padding: 50px 0;
			}
		.view-larger {
			position: absolute;
			bottom: 20px;
			left: -100%;
			background: #fff;
			padding: 20px;
			}

/* ----- [ Site Map ] --------------- */
		.sitemap li {
			list-style: none;
			margin:  0;
			font-size: 16px;
			line-height: 1.2em;
			padding: 0 0 0 1em;
			}
		.sitemap li li {
			list-style: disc;
			}
		.sitemap li li li {
			list-style: circle;
			}
		.sitemap li li li li {
			list-style: square;
			}


/* ----- [ Call to Action ] --------------- */
.pre-footer-cta {
	color: var(--white);
	padding-top: var(--padding-small);
	padding-bottom: var(--padding-small);
	background: var(--accent) !important;
	}
.pre-footer-cta .row {
	justify-content: center;
	align-items: center;
	}
.pre-footer-cta p {
	font-weight: var(--display-medium);
	font-size: 1.8rem;
	line-height: 1.35;
	margin: 0;
	}
.pre-footer-cta h3 {
	margin: 0;
	}
.pre-footer-cta h3 a {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-transform: uppercase;
	}
.pre-footer-cta a:hover {
	color:#fff;
	}

/* ----- [ Footer ] --------------- */
.page-footer {
	clear: both;
	text-align: left;
	margin: 0;
	padding-top: var(--padding-medium);
	border-top: 14px solid var(--primary); 
	}
.page-footer h5 {
	}
.page-footer p,
.page-footer li {
	}
.footer-links {
	margin: 0 0 1em;
	}

.page-footer a {
	text-decoration: none;
	}
.page-footer a:hover {
	border-bottom: 1px solid #fff;
	border-bottom: 1px solid var(--accent);
	}

.footer-logo {
	max-width: 300px;
	margin: 0;
	}

.site-copyright {
	color: #fff;
	padding: 10px 30px;
	clear: both;
	background: var(--primary);
	}
.site-copyright p {
	color: #fff;
	font-size: 0.95rem;
	margin: 0 auto;
	}
.site-copyright a {
	color: #fff;
	}

@media screen and (min-width: 800px) {
	.footer-meta {
		margin: 0 auto;
		padding: 0 0 20px;
		}
}
@media screen and (min-width: 900px) {
	.site-credit {
		display: inline-block;
		}
}

/* ----- [ SVG Social Media Icons ] --------------- */
.social-icons-wrapper {
	margin: 5px auto 30px;
	}
.social-icons-wrapper .social-icon {
    display: inline-block;
    height: 24px;
	width: 24px;
    margin: 0 10px 10px 0;
	}

.social-icons-wrapper .social-icon:last-of-type {
	margin-right: 0;
	}

.social-icons-wrapper .social-icon a,
.social-icons-wrapper .social-icon a:visited {
    opacity: 1;
    border: none;
	}
.social-icons-wrapper .social-icon a:hover,
.social-icons-wrapper .social-icon a:active {
    color: olive;
    color: var(--accent);
    opacity: 1;
    border: none;
	}

.social-icons-wrapper .social-icon svg {
    fill: currentColor;
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
	}

.social-icons-wrapper .social-icon svg:hover {
	fill: var(--accent);
	}

.top-link {
	display: none;
    position: fixed;
    bottom: -20px;
    right: 2%;
    opacity: 0;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    z-index: 9;
	}
.top-link a {
	color: #fff;
	font-size: 20px;
	line-height: 30px;
    background: #8d2427;
    display: block;
    height: 30px;
    width: 30px;
    outline: medium none;
    position: relative;
    z-index: 0;
    text-align: center;
    }
.top-link a:hover {
	border: none;
	background: #8d2427;
	}
.top-link.show {
	opacity: 1;
	bottom: 20px;
	}
	
.top-link .fa {
	margin: 0 0 0 2px;
	line-height: 25px;
	}

/* ----- [ Utility ] --------------- */
.row-reverse {
	flex-direction: row-reverse;
	}

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

.hidden {
	display: none;
	}

/**
 * The edit link that appears when you are logged in.
 * It is recommended that you implement an edit button 
 * in your templates to make it easy to switch to and
 * from the admin control panel when editing pages. 
 *
 */

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

.quickedit {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 99;
	}

/**
 * Alignment styles that are used by the InputfieldTinyMCE for 
 * positioning images in bodycopy. If you are using this field type, 
 * you may want to include these or similar styles in your site.
 *
 */
 
.align_left {
	text-align: left;
	}
.align_right {
	text-align: right;
	}
.align_center {
	text-align: center;
	}

img.align_left {
	float: left;
	margin: 0 5% 0.25em 0;
	}
img.align_right {
	float: right;
	margin: 0 0 0.25em 5%;
	}
img.align_center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	}


/**
 * WireFatalError is a class that ProcessWire will use to output
 * fatal errors in the design, but only if debug mode is on, or if
 * you are logged in as a superuser. 
 *
 */

.WireFatalError {
	background: #a30000; 
	color: #fff; 
	padding: 1em; 
	position: relative;
	z-index: 9999;
	}


/* New Section Pages */

