/**
	@Author:	Paul Strandoo
	@Date:		10/2024
	@Notes:		Nemco Utilities
*/

@import url("font-awesome.min.css");
:root {
	--display-font: "SUSE", serif;
	--body-font: "SUSE", serif;
	--display-med: 500;
	--display-bold: 700;
	--body-light: 300;
	--body-med: 500;
	--body-bold: 700;
	
	--accent: #DD3131; /* Accessible Pass */ /* Original:#ED2B2B */
	--logo-blue: #3DAAE1;
	--logo-red: #DD3131; /* Accessible Pass */ /* Original:#ED2B2B */
	--logo-aqua: #52C5D7;
	--logo-orange: #F9A64A;
	--logo-purple: #8973B3;
	--new-blue: #283F4F;
	--light-blue: #EAF5FC; /* text background tint */
	
	--grey-1: #F8F8F8;
	--grey-2: #F5F5F5;	/* rgb(245,245,245) */
	
	--grey: #cfcfcf;
	--white: #ffffff;	
	--black: #363636;
	
	--section-pad-large: 7em;
	--section-pad-med: 5em;
	--section-pad-small: 3em;
	
	--header-height: 220px;
	
    --inner: 1260px; /* 1320 */
    --inner-narrow: 960px;
    --inner-large: 1150px;
    --inner-wide: 1500px;
    --inner-very-wide: 1970px;
    --inner-full: 100%;
	}

/* 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%;
	}

* {
   -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: 156px;
	}
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: var(--black);
	}

/* ----- [ Typography ] -------------------------*/
p,
li,
td {
	font-family: var(--body-font);
	font-weight: var(--body-light);
	font-style: normal;
	font-variation-settings: "wdth" 100;
	font-size: 1.3rem;
	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: var(--logo-blue);
	text-decoration: underline;
	text-decoration: none;
	}

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

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: var(--display-font);
	font-weight: var(--display-bold);
	font-style: normal;
	color: var(--black);
	font-variation-settings: "wdth" 100;
	line-height: 1.1;
	}

h1,.h1 {
	font-family: var(--display-font);
	font-weight: var(--display-bold);
	color: var(--white);
	font-size: 2rem;
	font-size: clamp(2rem, 10vw, 3.3rem);
	line-height: 1.1;  
	letter-spacing: 0.02em;
	margin: 0 0 0.15em;
	/*text-transform: uppercase;*/
	width: 100%;
	}
	
h2,.h2 {
	font-family: var(--display-font);
	font-weight: var(--display-bold);
	font-size: 2.2rem;
	line-height: 1.2;
	padding: 0;
	margin: 0 0 0.8em;
	}
	
h2:first-of-type {
	margin-top: 0;
	}
	
h3,.h3 { 
	font-family: var(--display-font);
	font-weight: var(--display-bold);
	font-size: 1.7rem;
	line-height: 1.3;
	margin: 0 0 0.3em;
	}

h4,.h4 { 
	font-family: var(--display-font);
	font-weight: var(--display-bold);
	font-size: 1.4rem;
	line-height: 1.3;
	margin: 0 0 0.2em;
	}
	
h5,.h5 { 
	font-family: var(--body-font);
	font-weight: var(--body-bold);
	font-size: 1rem;
	line-height: 1.6;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0;
	}
	
h6,.h6 { 
	font-family: var(--body-font);
	font-weight: var(--body-bold);
	font-size: 1rem;
	line-height: 1.6;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0;
	}

.cms-text h2 {
	margin: 0 0 0.2em;
	}
.cms-text h3,
.cms-text h4,
.cms-text h5 {
	margin: 1em 0 0.5em;
	}
.cms-text p + h2,
.cms-text ul + h2 {
	margin-top: 1em;
	}

figure {
	margin: 0;
	}
img {
	vertical-align: middle;
	}

/* ----- [ Structure ] -----------------*/
.page-wrapper {
	position: relative;
	padding-top: 186px;
	background: #fff;
	min-height: 100%;
	/*z-index: 2;*/
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	overflow: hidden;
	}
body.is-fixed {
	position: fixed;
	width: 100%;
	}

.page-overlay {
	position: fixed;
	top: 0;
	left: 0;
	min-height: 100%;
	height: 100%;
	width: 100%;
	visibility: hidden;
	background: var(--grey-1);
	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;
	}

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

header,
section,
footer {
	width: 100%;
	margin: 0;
	position: relative;
	}
section {
	margin: 0;
	padding: var(--section-pad-med) 0;
	position: relative;
	}

.inner {
	max-width: calc(var(--inner) + 32px);
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	overflow: hidden;
	}
.inner-narrow {
	max-width: var(--inner-narrow);
	}
.inner-large {
	max-width: var(--inner-large);
	}
.inner-wide {
	max-width: var(--inner-wide);
	}
.inner-full {
	max-width: 100%;
	/*height: 250px;*/
	margin: 0;
	padding: 0 !important;
	}

@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: 450px) { 
	.inner {
		padding: 0 30px;
		}
}
@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 {
	position: relative;
	flex: 1;
	padding: 0;
	max-width: 100%;
	}

@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;
		}
	.row.padding-40 {
		margin-left: -40px;
		margin-right: -40px;
		}
	.row.padding-50 {
		margin-left: -50px;
		margin-right: -50px;
		}

	.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;
		}
	.padding-40 > .col {
		padding-left: 40px;
		padding-right: 40px;
		}
	.padding-50 > .col {
		padding-left: 50px;
		padding-right: 50px;
		}

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

/* image utilies */
.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;
	}


/* ----- [ Color variants ] ----------- */
.dark {
	color: #fff !important;
	background: var(--new-blue);
	}
.dark h2,
.dark h3,
.dark h4,
.dark p,
.dark li,
.dark a {
	color: #fff;
	}
.dark a:hover {
	}

/* ----- [ Flex Row / Container ] ----------- */
.flex-container,
.flex-row {
	display: block;
	height: 100%;
	height: auto;
	}
.flex-container,
.flex-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	position: relative;
	justify-content: space-between;
	align-items: center;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 0;
	}
.flex-container > * {
	/*width: 100%;*/
	display: block;
	}
	
.flex-row .col {
	flex: 1;
	width: auto;
	}

.col-pad-small { padding: 3%; }
.col-pad-med   { padding: 5%; }
.col-pad-large { padding: 10%; }

@media only screen and (min-width: 600px) { /* 1110px */
	/* Make this a Utility Class */
	.flex-container,
	.flex-row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		position: relative;
		justify-content: flex-start;
		align-items: stretch;
		/* 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; }
	.f-between { justify-content: space-between; }
	.f-stretch { justify-content: stretch; }
	
	.gap-10 { column-gap: 10px; }
	.gap-20 { column-gap: 20px; }
	.gap-30 { column-gap: 30px; }
	
	.col-pad-small { padding: 3%; }
	.col-pad-med   { padding: 5%; }
	.col-pad-large { padding: 10%; }
}

/* ----- [ Page Header / Masthead ] -----------------*/
.page-header {
	/* fixed or not */
	/*position: sticky;*/
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 999;
	background: var(--white);
	/* box-shadow: 0 5px 10px rgba(0,0,0,0.08); */
	-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;
	}
	
.page-header.is-small {
	position: fixed;
	box-shadow: 0 5px 10px rgba(0,0,0,0.08);
	}
	
.page-header .inner {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: stretch;
	align-items: center;
	width: 100%;
	max-width: var(--inner-very-wide);
	margin: 0 auto;
	padding: 0 30px;
	overflow: visible;
	}

.logo-wrap {
	display: block;
	height: auto;
	max-width: 180px;
	margin: 20px auto 20px 0;
	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;
	}
	
.is-small .logo-wrap {
	max-width: 100px;
	}
	
.top-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: left;
	color: var(--white);
	background: var(--accent);
	padding: 10px 30px;
	}
	
.top-bar p,
.top-bar a {
	font-size: 1.1rem;
	font-weight: var(--body-bold);
	margin: 0;
	}
.top-bar a {
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
	margin-left: 0.5em;
	margin-right: 0.5em;
	}
.top-bar a:hover {
	color: #fff;
	text-decoration: underline;
	}
.top-bar a:first-child {
	display: none;
	}

@media screen and (min-width: 650px) {
	.top-bar {
		display: flex;
		justify-content: space-between;
		align-items: center;
		text-align: left;
		}
	.top-bar a:first-child,
	.top-bar a:last-child {
		/*margin-left: auto;*/
		display: inline;
		}
	.top-bar a:last-child {
		text-align: right;
		}
		
	.top-bar p:not(:last-child) {
		display: block;
		}
	.top-bar p:last-child {
		display: none;
		}
}
@media screen and (min-width: 840px) {
	.top-bar a:first-child,
	.top-bar a:last-child {
		display: inline;
		flex: 1;
		flex-basis: 0;
		}
}

@media screen and (min-width: 920px) {
	.page-header .inner {
		padding: 0 30px;
		align-items: center;
		}
	.logo-wrap {
		max-width: 200px;
		}
	.is-small .logo-wrap {
		max-width: 130px;
		}
}

/* ----- [ Menu Trigger (Hamburger) ] ---- */
.menu-toggle {
	position: absolute;
	position: relative;
	/*right: 1em;*/
	display: block;
	margin: 0 20px 0 0;
	margin: 0;
	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: #000;
	/* 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(0, 0, 0, 0);
	}
.menu-toggle.is-clicked .menu-icon::before, 
.menu-toggle.is-clicked .menu-icon::after {
	background-color: #000;
	}
.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);
	}

/* was prefaced by 'is-small' class */	
.is-small .menu-toggle .menu-icon {
	background-color: #000;
	}
.is-small .menu-toggle.is-clicked .menu-icon {
	background-color: rgba(255, 255, 255, 0);
	}
.is-small .menu-toggle.is-clicked .menu-icon::before, 
.is-small .menu-toggle.is-clicked .menu-icon::after {
	background-color: #000;
	}

@media screen and (min-width: 740px) {
	.menu-toggle {
		margin-right: 30px;
		}
}
	
@media only screen and (min-width: 920px) {
	.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 ] ------ */
/*.nav-wrapper {
	display: flex;
	display: none;
	flex-direction: column-reverse;
	}
*/
.nav-wrapper {
	/*display: none;*/
	position: relative; /* for dropnav */
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	background: rgba(255,255,255,1);
	height: 100vh;
	height: 0;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}

.main-navigation {
/*
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	height: 0;
	margin: 0;
	padding: 200px 10% 100px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	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;
	background: #fff;
	z-index: -1;
	opacity: 0;
*/
	}
.main-navigation {
	/*flex: 0 1 50%;*/
	display: none;
	padding: 0 10%;
	}

.nav-wrapper.is-open {
	/* display: flex; */
	}
.nav-wrapper.is-open {
	height: 100vh;
	padding-bottom: 100px;
	overflow-y: scroll;
	}

.main-navigation.is-open {
	/*min-height: 100vh;
	opacity: 0.95;
	overflow: scroll;*/
	}
.main-navigation.is-open {
	display: block;
	padding-bottom: 100px;
	}
	
.main-navigation ul {
	margin: 0 0.5em;
	}
	
.menu-item {
	margin: 0.5em 0;
	text-decoration: none;
	}

.menu-link {
	font-family: var(--display-font);
	font-weight: var(--display-bold);
	font-size: 1.6rem;
	line-height: 1.4;
	color: var(--black);
	text-decoration: none;
	border-bottom: 4px solid transparent;
	}

.menu-link:hover {
	color: var(--white);
	color: var(--accent);
	text-decoration: none;
	}


.level-2 ul {
	display: none;
	}
.nav-services {
	margin: 0;
	}
.nav-services > li {
	display: block;
	text-align: left;
	margin: 0;
	padding: 0.2em 1em;
	}
.menu-link-2 {
	display: block;
	color: inherit;
	font-weight: var(--display-bold);
	font-size: inherit;
	padding: 5px 0;
	}

@media only screen and (min-width: 920px) { /* 1130px */
	.nav-wrapper {
		position: unset;
		display: flex;
		flex-direction: row;
		}
	.main-navigation {
		display: flex;
		flex-direction: row;
		position: relative;
		justify-content: flex-start;
		align-items: center;
		width: auto;
		height: auto;
		margin: 0;
		padding: 0;
		background-color: transparent;
		overflow: visible;
		flex-basis: 34%;
		opacity: 1;
		z-index: 1;
		}

	.menu-item {
		/*position: relative;*/
		/*position: unset;*/
		display: inline-block;
		margin: 0 0.7em;
		margin: 0;
		line-height: 1;
		white-space: nowrap;
		}
	.menu-item:last-child {
		/*margin-right: 0;*/
		}

	.menu-link {
		color: var(--black);
		font-size: 1.1rem;
		line-height: 1.2;
		font-weight: var(--body-bold);
		letter-spacing: 0.03em;
		padding: 0;
		text-transform: uppercase;
		background: transparent;
		border-bottom: none;
		padding: 4px 15px;
		border-radius: 20px;
		margin-bottom: 10px;
		}

	.menu-link:hover {
		color: #fff;
		background: var(--accent);
		text-decoration: none;
		}
	.menu-link.on {
		color: var(--accent);
		background: none;
		text-decoration: none;
		}
		
	/* dropnav*/
	.dropnav {		
		display: block;
		position: absolute;
		width: 90vw;
		max-width: 1400px;
		top: 100%;
		left: auto;
		right: 5%;
		text-align: left;
		background: #fff;
		visibility: hidden;
		opacity: 0;
		padding: 20px;
		box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
		white-space: nowrap;
		border-radius: 0;
		z-index: 9999;
		-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;
		}

	.menu-item:hover .dropnav {
		/*top: 130%;*/
		top: 100%;
		visibility: visible;
		opacity: 1;
		}

	.nav-services {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		margin: 0;
		}
	.nav-services > li {
		display: block;
		text-align: left;
		margin: 0;
		padding: 0;
		flex: 1;
		}

	.dropnav .menu-item {
		font-family: var(--body-font);
		font-weight: var(--body-med);
		color: #222;
		margin: 0 0 0.4em;
		padding: 0;
		text-transform: none;
		text-decoration: none;
		background-color: transparent;
		border-bottom: 2px solid transparent;
		}
		
	.dropnav .menu-item:hover,
	.dropnav .menu-item.on {
		color: #000;
		text-decoration: none;
		}


	.menu-link-2 {
		display: block;
		color: var(--black);
		color: #fff;
		background: var(--logo-blue);
		font-weight: var(--display-bold);
		font-size: 1rem;
		line-height: 1;
		text-transform: uppercase;
		letter-spacing: 0.05em;
		padding: 10px;
		border-left: 2px solid #fff;
		border-right: 2px solid #fff;
		}

	.menu-link-2:hover {
		color: #fff;
		/* text-decoration: underline;
		filter: saturate(1.5);
		filter: darken(1.5);*/
		}

	.fire-management .menu-link-2 { background: var(--logo-red) }
	.remedials .menu-link-2 { background: var(--logo-aqua) }
	.training .menu-link-2 { background: var(--logo-orange) }
	.specialist .menu-link-2 { background: var(--logo-purple) }

	.level-2 ul {
		display: block;
		margin: 0 4px 0.2em;
		}
		
	.level-3 {
		line-height: 1.2;
		padding: 0;
		border-bottom: 1px solid #ccc;
		}
	.menu-link-3 {
		display: block;
		color: var(--black);
		font-weight: var(--body-light);
		font-size: 1.1rem;
		padding: 10px;
		white-space: wrap;
		}
	.menu-link-3:hover {
		text-decoration: none;
		}
	.water-hygiene .menu-link-3:hover  { background: rgba(61, 169, 224, 0.2) }
	.remedials .menu-link-3:hover  { background: rgba(82, 197, 215, 0.2) }
	.training .menu-link-3:hover   { background: rgba(249, 165, 73, 0.2) }
	.specialist .menu-link-3:hover { background: rgba(136, 114, 179, 0.2) }
	.fire-management .menu-link-3:hover { background: rgb(237, 43, 43, 0.2) }
	
		
	.submenu-toggle {
		position: relative;
		top: -1px;
		z-index: 2;
		display: inline-block;
		height: 12px;
		line-height: 12px;
		font-size: 12px;
		}

	.submenu-toggle:before {
		content: '\f107';
		font-family: 'FontAwesome', sans-serif;
		}
}

/* ----- [ Home Hero ] --------------- */
/* ----- [ split gallery ] ---------- */
.home-hero-section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0 0 50px;
	overflow: hidden;
	column-gap: 15px;
	row-gap: 15px;
	}

.item {
	position:relative;
	flex: unset;
	height: 300px;
	overflow: hidden;
	transition: flex 0.8s ease;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	background-position: center;
	background-size: cover;
	background-repeat: none;
	background-size: cover;
	background-size: 1000px;
	}
.item:first-of-type {
	/*flex: 3.5;*/
	}
	
.item-color-bar {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: auto;
	text-align: left;
	padding: 20px;
	padding: 5px;
	padding: 8px 8px 5px 2em;
	color: #fff;
	background: #f00;
	z-index: 99;
	overflow: hidden;
	text-overflow: ellipse;
	}
	
.item-color-bar h3 {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0;
	white-space: nowrap;
	}
.item-color-bar h4 {
	color: #fff;
	font-size: 1.6rem;
	line-height: 1.1;
	font-weight: 300;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
	
.item-color-bar img {
	width: 50px;
	float: right;
	margin-right: -100px;
	opacity: 0;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
.item:hover .item-color-bar img {
	opacity: 1;
	margin-right: 0;
	}
.item-color-bar:hover img {
	transform: scale(1.1);
	}

.item-1 .item-color-bar { background: var(--logo-blue); }
.item-2 .item-color-bar { background: var(--logo-red); }
.item-3 .item-color-bar { background: var(--logo-aqua); }
.item-4 .item-color-bar { background: var(--logo-purple); }
.item-5 .item-color-bar { background: var(--logo-orange); }

.home-hero-section .item-content {
	opacity: 1;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	}

.item-content {
	position: relative;
	top: 10%;
	left: 0;
	width: auto;
	margin: 20px;
	margin: 40px 20px;
	z-index: 10;
	}
.item-text,
.item-content p {
	font-family: 'Roboto Condensed', sans-serif;
	opacity: 0;
	opacity: 1;
	max-width: 500px;
	font-size: 17px;
	color: #fff;
	margin: 1em 0;
	}

.item-logo {
	 height: 60px;
	 }
.item-content p > br {
	display: none;
	}
	 
@media only screen and (min-width: 970px) {
	.home-hero-section {
		flex-direction: row;
		height: 80vh;
		max-height: 700px;
		margin-top: 0;
		}
	
	.home-hero-section:hover .item-content {
		opacity: 0;
		-moz-transition: all 0.5s ease-in-out;
		-ms-transition: all 0.5s ease-in-out;
		-webkit-transition: all 0.5s ease-in-out;
		transition: all 0.5s ease-in-out;
		}
	.home-hero-section:hover .item:hover .item-content {
		display: block;
		opacity: 1;
		}

	.item-button {
		opacity: 0;
		}

	.home-hero-section:hover .item:hover .item-button {
		opacity: 1;
		}
	.home-hero-section:hover .item:hover .item-text,
	.home-hero-section:hover .item:hover .item-content p {
		display:block;
		opacity: 1;
		}
	
	.item {
		border-top: none;
		flex: 1;
		height: 100%;
		}

	.item-content {
		position: absolute;
		top: 55%;
		top: 68%;
		left: 0;
		width: auto;
		margin: 20px;
		z-index: 10;
		}
	.item-color-bar {
		padding: 20px;
		}
	.item:hover {
		flex: 3.5;
		}

	.item .item-color-bar h4 {
		opacity: 0;
		white-space: nowrap;
		}
	.item:hover .item-color-bar h4 {
		opacity: 1;
		}

	.item:hover .item-content {
		left: 30px;
		top: 50%;
		/*top: auto;
		bottom: 8%;*/
		}
	.item:hover > :focus:not(:hover) {
		transform: scale(1.05);
		}
	.item-text,
	.item-content p {
		opacity: 0;
		max-width: 500px;
		}
}

/* ----- [ Home/Page Intro ] --------- */
.page-intro-left {
	padding: 0;
	}
.page-intro-right {
	padding: 0;
	}
.page-intro p {
	/*font-size: 1.5rem;*/
	}
.page-intro blockquote p,
.page-intro-right blockquote p,
blockquote p,
blockquote li {
	font-family: var(--body-font);
	font-weight: var(--body-light);
	color: var(--logo-blue);
	font-size: 2.5rem;
	line-height: 1.2;
	margin-left: 1em;
	position: relative;
	}
.page-intro-right blockquote p:first-child:before,
blockquote p:first-child:before {
	content: "“";
	position: absolute;
	top: 0.1em;
	left: -0.48em;
	font-size: 6rem;
	font-weight: var(--body-med);
	line-height: 0.7;
	}
.page-intro-right blockquote p:after,
blockquote p:after {
	content: "”";
	position: relative;
	font-size: 5rem;
	font-weight: var(--body-med);
	line-height: 0;
	top: 0.32em;
	left: 0.05em;
	}
blockquote.full-quote p {
	font-size: 1.8rem;
	}
blockquote.full-quote p:first-child:before {
	font-size: 4.2rem;
	}
blockquote.full-quote p:last-child:after {
	font-size: 3.5rem;
	}
blockquote.full-quote p:not(:last-child):after {
	content: none;
	}
	
blockquote + p {
	font-size: 1.3rem;
	margin-left: 1.2em;
	}

/* ----- [ Hero Images (not home) and Service Rows  ] ----------------- */
.hero-section {
	height: auto;
	/*height: 200px;*/
	margin: 0;
	padding: 0;
	background: var(--logo-blue);
	/* border-bottom: 22px solid var(--logo-blue); /* comment out to revert to v1 */
	}
	
/* version 1 */
.hero {
	height: 435px;
	}
.water-hygiene-page .hero-section,
.hero-section.water-hygiene-page  { 
	background: var(--logo-blue);
	border-color: var(--logo-blue);
	}
.fire-management-page .hero-section,
.hero-section.fire-management-page {
	background: var(--logo-red);
	border-color: var(--logo-red);
	}
.remedials-page .hero-section,
.hero-section.remedials-page {
	background: var(--logo-aqua);
	border-color: var(--logo-aqua);
	}
.training-page .hero-section,
.hero-section.training-page {
	background: var(--logo-orange);
	border-color: var(--logo-orange);
	}
.specialist-page .hero-section,
.hero-section.specialist-page {
	background: var(--logo-purple);
	border-color: var(--logo-purple);
	}

/* version 2 */
.water-hygiene-page .hero,
.hero.water-hygiene-page { 
	background-color: var(--logo-blue);
	border-bottom: 22px solid var(--logo-blue);
	}
.fire-management-page .hero,
.hero.fire-management-page {
	background-color: var(--logo-red);
	border-bottom: 22px solid var(--logo-red);
	}
.remedials-page .hero,
.hero.remedials-page {
	background-color: var(--logo-aqua);
	border-bottom: 22px solid var(--logo-aqua);
	}
.training-page .hero,
.hero.training-page {
	background-color: var(--logo-orange);
	border-bottom: 22px solid var(--logo-orange);
	}
.specialist-page .hero,
.hero.specialist-page {
	background-color: var(--logo-purple);
	border-bottom: 22px solid var(--logo-purple);
	}
	
.hero .hero-text-wrapper {
	padding: 3em 5% 3em 3vw;
	max-width: 44em;
	}
	
.hero-overlay {				
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center; 
	align-items: center;
	background: transparent;
	background: rgba(0,0,0,0);
	background: rgb(0,0,0);
	background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 60%);
	}

.hero .eyebrow
.hero-section .eyebrow {
	font-size: 1.3rem;
	font-weight: var(--body-med);
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #fff;
	margin: 0 0 1em;
	}
.eyebrow a {
	color: inherit;
	}
	
.hero-section .row {
	min-height: 400px;
	min-height: 350px;
	}

.hero-img-col,
.service-img-col {
	position: relative;
	}
.hero-text-col,
.service-text-col {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	}
.hero-img-wrapper,
.service-img-wrapper {
	}
.hero-image,
.service-image {
	object-fit: cover;
	width: 100%;
	height: 100%;
	}
.hero-text-wrapper {
	color: #fff;
	padding: 10%;
	padding: 3em 5% 3em 10%;
	max-width: 44em;
	}
.hero p,
.hero-section p {
	color: var(--white);
	font-size: 1.8rem;
	line-height: 1.2;
	font-weight: var(--body-med);
	}
	
.service-text-wrapper,
.bg-tint .service-text-wrapper,
.row-reverse .service-text-wrapper {
	padding: 2em 30px;
	margin: 0;
	/* max-width: 44em; */
	}
	
/* Variation: */
/*
.hero-text-wrapper h1:not(.news-page-template h1),
.hero-text-wrapper p:not(.news-page-template p) {
	padding: 20px;
	background: rgba(0,0,0,0.3);
	}
.hero-text-wrapper h1:not(.news-page-template) {
	margin: 0;
	}
.hero-text-wrapper h1 + p:not(.news-page-template p) {
	padding-top: 0;
	}
*/
/* News Articles */
.news-page-template .hero-text-wrapper h1,
.news-page-template .hero-text-wrapper p,
.news-page-template .hero-text-wrapper h1 + p {
	padding: 0;
	background: none;
	margin-bottom: 0.5em;
	}
.news-page-template .hero-text-wrapper h1 {
	margin-bottom: 0.3em;
	}
	
/* contact page variation */
@media screen and (min-width: 768px) { /* 600 */
	.hero-img-wrapper,
	.service-img-wrapper {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		}
	.hero:before {
		bottom: 50px;
		}
}

/* ----- [ Statistics Section (home) ] ------------- */
.statistics {
	padding: 5vw 0;
	background: #fff url('../images/petri-tubes-bg.jpg') 50% 50% no-repeat;
	background-size: cover;
	margin-bottom: 2em;
	}
.statistics .row {
	justify-content: center;
	align-items: space-between;
	/*column-gap: 20px;*/
	}
.statistics .col .stat-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	/*flex: 1;*/
	color: #fff;
	text-align: center;
	background: var(--logo-blue);
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	overflow: hidden;
	/*border: 20px solid rgba(255,255,255,0.5);*/
	}
.statistics p {
	margin: 0 auto;
	font-size: 1.5rem;
	font-weight: var(--body-med);
	line-height: 1.2;
	max-width: 8em;
	}
.statistics strong,
.statistics b {
	/*display: block;*/
	font-size: 4rem;
	}
.statistics em {
	font-style: normal;
	text-transform: uppercase;
	}
.big-number b {
	visibility: none;
	opacity: 0;
	display: none;
	transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
	}
.big-number b.show {
	visibility: visible;
	opacity: 1;
	display: inline;
	}

.statistics .col:first-child .stat-wrapper { background: var(--logo-purple); }
.statistics .col:nth-child(2n) .stat-wrapper { background: var(--accent); }
.statistics .col:last-child .stat-wrapper { background: var(--logo-aqua); }

/* Circular progress ring styling */
.progress-ring {
	position: relative;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	transform: rotate(-90deg);
	}

/* Background circle styling */
.progress-ring__circle-bg {
	fill: none;
	/*stroke: #e0e0e0;*/
	stroke-width: 52;
	}

/* Progress circle styling */
.progress-ring__circle {
	fill: none;
	stroke: #4caf50;
	stroke: rgba(255,255,255,0.5);
	stroke-width: 52;
	stroke-linecap: round;
	stroke-dasharray: 2072; /* Circumference of the circle */
	stroke-dashoffset: 2072; /* Start with a full offset (hidden) */
	}

	
.progress-ring__circle.active {
	animation: progressAnimation 4s linear forwards;
	}

/* Keyframe animation for the circular progress */
@keyframes progressAnimation {
	from {
		stroke-dashoffset: 2072; /* Hidden 440 */
	}
	to {
		stroke-dashoffset: 0; /* Fully visible */
	}
}


@media screen and (max-width: 1200px) {
	.statistics .row {
		max-width: 800px;
		margin-inline: auto;
		}
	.statistics .col.d-1of4 {
		width: 50%;
		margin: 20px 0;
		}
}
@media screen and (max-width: 670px) {
	.statistics .row {
		max-width: 400px;
		margin-inline: auto;
		}
	.statistics .col.d-1of4 {
		width: 100%;
		}
}

/* ----- [ Home Body 2 ] ------------- */
.home-body-2 .inner {
	overflow: visible;
	}
.home-body-2 h2,
.home-body-2 h3 {
	color: var(--white);
	}
.home-body-2 p,
.home-body-2 li {
	color: #fff;
	font-size: 1.5rem;
	font-weight: var(--body-med);
	}
.home-body-2 li {
	margin-bottom: 0important;
	/*list-style: disc;*/
	}
.home-body-2 .row {
	justify-content: center;
	align-items: center;
	}
.home-body-2 .col {
	position: relative;
	height: 100% !important;
	padding: 5%;
	}
.home-body-2 .col:first-child {
	top: -2em;
	bottom: 2em;
	}
.home-body-2 .col:last-child {
	top: 2em;
	bottom: -2em;
	}

.home-body-2 .col:first-child:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: -8em;
	bottom: 0;
	background: url('/site/assets/files/1147/waves-3.jpg');
	background-size: cover;
	z-index: -1;
	}
.home-body-2 .col:last-child:before {
	content: "";
	position: absolute;
	top: 0;
	left: -2em;
	right: 0;
	bottom: 0;
	background: url('/site/assets/files/1147/waves-1.jpg');
	background-size: cover;
	z-index: -1;
	}
	
@media only screen and (min-width: 1292px) {
	.home-body-2 .col:first-child:before {
		left: calc((1292px - 100vw)/2);
		}
	.home-body-2 .col:last-child:before {
		right: calc((1292px - 100vw)/2);
		}
}

.two-toned {
	color: var(--black);
	}
.two-toned span {
	color: var(--accent);
	}

/* ----- [ Icons Section (home-not used) ] ------------- */
.benefit-icons {
	padding-top: 30px;
	}
.benefit-icons .col {
	margin-bottom: 1.5em;
	}
.benefit-icons p {
	margin: 0;
	}
.benefit-icons img {
	margin: 0 0 1em;
	/* filter: invert(95%) sepia(12%) saturate(5237%) hue-rotate(323deg) brightness(95%) contrast(97%); */
	}

/* ----- [ Call to Action section ] -------------- */	
.call-to-action {
	text-align: center;
	color: #fff;
	background: var(--new-blue);
	padding: 40px 30px;
	}
.call-to-action .inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	}

.call-to-action h2,
.call-to-action h3 {
	font-size: 2.8rem;
	color: #fff;
	margin: 0 0.5em 0 0;
	}
.call-to-action p {
	margin: 0 !important;
	font-size: unset;
	line-height: 1;
	}
	
@media only screen and (min-width: 600px) {  
	.call-to-action .inner {
		flex-direction: row;
		}
}

/* ----- [ Page sections ] -----------------*/
.home-page .services-section {
	margin: 0 0 40px;
	padding: 0;
	background: #f1f1f1;
	background: var(--new-blue);
	background: var(--white);
	}
	
.home-page .services-section .row {
	margin: 0;
	}
	
.home-page .services-section .row.tint {
	background: #f1f1f1;
	}

/* ----- [ Services Page ] -----------------*/
.services-page-template .main-content {
	background: var(--light-blue);
	padding-bottom: var(--section-pad-small);
	}

.services-section {
	padding-top: 0;
	padding-bottom: 0;
	margin: 5vw 0;
	margin: 60px 0;
	}

.main-content + .services-section {
	margin-top: 0;
	}	
	
.services-section .inner {
	padding: 0;
	}
.service-row,
.home-service-row {
	margin-top: 30px;
	margin-bottom: 30px;
	padding: 0 20px;
	}

/* ----- utilities -------- */
.bg-tint {
	background: var(--light-blue);
	}
	
h2 strong,
h2 b {
	color: var(--accent);
	}
	
	
.group-logos {
	padding: var(--section-pad-small) 0;
	}
.group-logos .logo-list {
	justify-content: center;
	}
.group-logos .logo-wrapper {
	width: 280px;
	height: 75px;
	margin: auto;
	}
.group-logo .client-logo {
	margin: 0 1em !important;
	}
.group-logos .client-logo:nth-child(2) .logo-wrapper {
	height: 85px;
	}

/* ----- [ Service/s Page offset ] -----------------*/
.slim-intro {
	padding-bottom: 0;
	}
.office-section {
	padding-top: 0;
	padding-bottom: 0;
	}
.contact-intro {
	max-width: 830px;
	}
	
.service-row:nth-of-type(even),
.contact-us-page .service-row:nth-of-type(odd),
.contact-row {
	overflow: visible;
	margin-bottom: 20px;
}

.service-row:nth-of-type(even) .service-text-col,
.contact-us-page .service-row .service-text-col,
.contact-row .text-col {
	background: var(--light-blue);
	margin-top: 30px;
	}

@media screen and (min-width: 768px) {
	.service-row:nth-of-type(even),
	.contact-us-page .service-row:nth-of-type(odd),
	.contact-row {
		overflow: visible;
		margin-bottom: 120px;  
		}

	.service-row:nth-of-type(even) .service-text-col,
	.contact-us-page .service-row .service-text-col,
	.contact-row .text-col {
		margin-top: 3%;
		margin-bottom: -3%;
		}
	
	.service-row:nth-of-type(even) .service-text-col:before,
	.contact-us-page .service-row .service-text-col:before,
	.contact-row .text-col:before {
		content: "";
		position: absolute;
		top: 0;
		left: -70%;
		right: 100%;
		bottom: 0;
		background: var(--light-blue);
		z-index: 0;
		}
}
.contact-us-page .service-row:nth-of-type(odd) .service-text-col:before {
	left: 100%;
	right: -70%;
	z-index: 0;
	}

@media screen and (min-width: 768px) {
	.service-row:nth-of-type(even) .service-img-wrapper {
		margin-right: 10%;
		z-index: 5;
		}
		
	.service-row:nth-of-type(even) .service-text-wrapper {
		margin-left: -10% !important;
		}
}

.contact-us-page .service-row:nth-of-type(odd) .service-img-wrapper {
	z-index: 1;
	}

.contact-section {
	padding-bottom: 0;
	}

.service-image-wrapper {
	position: relative;
	margin-bottom: 20px;
	}
.service-image {
	display: block;
	width: 100%;
	}
	
.row.dark .service-image-wrapper {
	margin-top: 20px;
	}

@media only screen and (min-width: 600px) { 
	.service-row:nth-of-type(odd) {
		flex-direction: row-reverse;
		}
}

@media screen and (min-width: 768px) {
	.service-row,
	.home-service-row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin-top: 20px;
		margin-bottom: 20px;
		margin-top: 0;
		margin-bottom: 0;
		align-items: stretch;
		justify-content: space-between;
		flex-wrap: nowrap;
		overflow: hidden;
		padding: unset;
		/* background: #f1f1f1; */
		}
		
	.service-row {
		margin: 60px 0;
		}
		
	/* note: compare w/ service-img-wrapper; merge */
	.service-image-wrapper { 
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0
		}
	.service-image-wrapper img {
		object-fit: cover;
		height: 100%;
		}
	.service-text-wrapper {
		margin: 0;
		padding-top: 1em;
		padding-bottom: 1em;
		padding-left: 10%;
		padding-right: 30px;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		}
	.row-reverse .service-text-wrapper,
	.service-row:nth-of-type(odd) .service-text-wrapper  {
		padding-right: 10%;
		padding-left: 30px;
		}
	.bg-tint .service-text-wrapper {
		padding-top: 4em;
		padding-bottom: 4em;
		}
		
	.service-row .service-text-wrapper,
	.contact-row .text-wrapper {
		padding-top: 4em;
		padding-bottom: 4em;
		}
	
	.service-row:nth-of-type(even) .service-text-wrapper,
	.home-service-row:not(.row-reverse) .service-text-wrapper{
		margin: 0 auto 0 0;
		}
}

@media screen and (min-width: 1292px) {
	.service-text-wrapper,
	.service-row:nth-of-type(even) .service-text-wrapper {
		margin-left: 0;
		margin-right: calc((100vw - 1292px) / 2);
		}
	.row-reverse .service-text-wrapper,
	.service-row:nth-of-type(odd) .service-text-wrapper {
		margin-left: calc((100vw - 1292px) / 2);
		margin-right: 0;
		}
}

/* ----- [ General / Service Page ] -----------------*/
.text-image-section {
	padding-top: 0;
	padding-bottom: 0;
	margin: 5vw 0;
	margin: 60px 0;
	margin: 0 0 60px;
	}
.text-image-section .inner {
	padding: 0;
	}

/* ----- [ Media/Bio ] -----------------*/
.media-wrapper {
	display: block;
	position: relative;
	margin: 0 0 16px;
	text-decoration: none;
	border: none;
	overflow: hidden;
	}

.media-wrapper img {
	-webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
	}
.media-link {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0);
	border: 1px solid #000;
	transition: all 0.3s ease-in-out;
	}
.media-wrapper .button {
	position: absolute;
	bottom: 0;
	left: 10px;
	opacity: 0;
	-webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
	}
.media-wrapper:hover .media-link {
	background: rgba(0,0,0,0.6);
	}
.media-wrapper:hover img {
	transform: scale(1.1);
	}
.media-wrapper:hover .button {
	bottom: 10px;
	opacity: 1;
	}
.media-body p {
	line-height: 1.4;
	}
	
.read-bio {
	position: absolute;
	bottom: 0;
	left: auto;
	right: 0;
	margin: 0;
	padding: 5px 15px;
	-webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 0;
	}
.media:hover .read-bio {
	opacity: 1;
	}

.about-us-page .featherlight .featherlight-content {
	max-width: 48em;
	padding: 2.5em 2.5em 0.5em;
	border-radius: 25px;
	}
.about-us-page .featherlight:last-of-type {
	background: rgba(0,0,0,0.65);
	}
.featherlight .featherlight-close-icon {
	top: 15px;
	right: 15px;
	font-size: 1.8rem;
	color: #333;
	}
	
.contact-page dd {
	columns: 2;
	}
	
/* ---- [ Documents Section ] ------- */
.policy-documents {
	background: var(--light-blue);
	}
.policy-documents .row {
	margin-bottom: 1em;
	}
.download {
    padding:20px 0
	}

.download-link, 
.download-link:hover {
    display: block;
    float: left;
    margin: 0 30px 10px 0;
    text-decoration: none;
    border: none
	}
.doc-thumb {
    text-align: right;
    width: auto;
    width: 50px;
    margin: 0;
    background: #fff;
    -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 2px 7px rgba(0, 0, 0, .3);
    box-shadow:0 2px 7px rgba(0, 0, 0, .3)
	}
.download-link:hover .doc-thumb {
	-webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, .6);
    -moz-box-shadow: 0 2px 7px rgba(0, 0, 0, .6);
    box-shadow:0 2px 7px rgba(0, 0, 0, .6)
	}
.download a {
	color: var(--black);
	}

.file-meta {
    font-size:.9em
	}

.download:after,
.download:before {
    content: "";
    position: absolute;
	top: 0;
	left: 15px;
	right: 15px;
	height: 1px;
    background: #9e9e9e;
	}
.download:after {
	top: auto;
	bottom: -1px;
	}

/* ----- [ CMS Content ] -----------------*/
.cms-text p > img {
	max-width: 100%;
	display: block;
	margin-bottom: 1.5em;
	}

.cms-text ul,
.cms-text ol {
	margin: 0 0 1em;
	}
.cms-text ul li {
	/*list-style-type: disc;*/
	list-style-position: outside;
	line-height: 1.6;
	margin: 0 0 0 2em;
	position: relative;
	}
	
.cms-text ul li:before {
	content: "";
	position: absolute;
	/*height: 28px;
	width: 28px;*/
	height: 10px;
	width: 32px;
	left: -2em;
	top: 0.6em;
	/* background: url('../images/circle-check.svg') no-repeat; */
	background: url('../images/pill-bullet.png') no-repeat;
	background-size: cover;
	}
	
.cms-text ol li {
	list-style-type: decimal;
	list-style-position: outside;
	line-height: 1.6;
	margin: 0 0 0 2em;
	}

.sibling-nav a,
.archive-list a,
.location-link a,
.cms-text a:not(.button) {
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
    box-shadow: inset 0 -1px 0 var(--accent);
    color: inherit;
    transition:background .1s cubic-bezier(.33, .66, .66, 1)
	}

.sibling-nav a:hover,
.archive-list a:hover,
.location-link a:hover,
.cms-text a:not(.button):hover {
    background: var(--accent);
    background: rgba(246, 201, 74, .5);
    background: rgba(248, 116, 76, 0.3);
    color:#000;
	}
	
.sibling-nav a,
.archive-list a,
.location-link a {
	border-bottom: none;
    box-shadow: none;
	}

.cms-text hr {
	height: 10px;
	margin: 2em 0;
	border: none;
	background: var(--accent-green);
	clear: both;
	}

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

@media only screen and (min-width: 600px) { 
	/* 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;
	}
	
	ul.two-column {
		column-count: 2;
		column-gap: 3em;
		}
}

/* ----- [ News ] --------------- */
.media-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-bottom: 20px;
	}
.media {
	overflow: hidden;
	position: relative;
	}

.media-text {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	flex: 1;
	color: #fff;
	padding: 15px 15px 20px;
	position: relative;
	background: var(--logo-aqua);
	}

.media-text h4 {
	margin: 0 0 0.8em;
	}
.media-text a {
	text-decoration: none;
	}

.media-end {
	display: flex;
	height: calc(100% - 20px); 
	width: 100%;  
	padding: 15px;
	}

	
.MarkupPagerNav {
    text-align: right;
    margin-right:0
	}
.MarkupPagerNav li {
    display: inline-block;
    font-size: 1.2rem;
    line-height: 1;
    margin:0
	}
.MarkupPagerNav a {
	color: var(--new-blue);
    display: block;
    padding: 6px 10px;
    font-weight: 700;
    border: 3px solid transparent;   
    border-radius: 33px;
    text-decoration: none;
	}
.MarkupPagerNavOn a {
    background: var(--accent);
    color: var(--white);
    border: 3px solid transparent;
	}
.MarkupPagerNav a:hover,
.MarkupPagerNav a:focus {
	color: #000;
    border: 3px solid var(--accent);
	}

.sibling-nav {
	display: flex;
	justify-content: flex-start;
	align-items: space-between;
	border-top: 5px solid var(--accent);
	margin-top: 2em;
	padding-top: 1em;
	column-gap: 2em;
	clear: both;
	}
.sibling-nav .prev-nav,
.sibling-nav .next-nav {
	text-align:left;
	flex: 1;
	line-height: 1.45;
	}

.sibling-nav .prev-nav {
	text-align: right;
	}
.sibling-nav small {
	font-weight: 700;
	color: #000;
	}

.scroll-hint {
	font-size: 1rem;
	text-transform: uppercase;
	font-weight: var(--body-bold);
	}

/* ----- [ Insta ] ---------------------------- */
.instagram-feed {
	background: #eee;
	}
.instalink {
	position: absolute;
	top: 50%;
	left: 50%;
	/*padding: 30px;*/
	text-align: center;
	background: #fff;
	transform: translate(-50%, -50%);
	}
.instalink h3 {
	font-size: 1.2rem;
	margin: 0;
	}
.insta-icon {
	height: 36px;
	width: 36px;
	display: inline-block;
	vertical-align: -30%;
	}
.insta-post {
	height: 0;
	width: 100%;
	padding-bottom: 100%;
	position:relative;
	overflow: hidden;
	}
.insta-image {
	position:absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width:100%;
	height:100%;
	object-fit: cover;
	/*padding: 5px;*/
	}
	
.vid-icon {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	}
.vid-icon img {
	width: 60px;
	height: 60px;
	opacity: 0.5;
	}
.vid-icon:hover img {
	opacity: 1;
	}

/* ----- [ Contact Page ] --------------- */
.location-link {
	margin: 0 0 0.5em 0;
	}

/* ----- [ Include: Map/Contact Form ] -----------------*/
.map-section {
	padding: 0;
	}
.map {
	height: 500px; 
	position: relative;
	overflow: hidden;
	}

.contact-meta {
	max-width: 100%;
	margin: 0 auto 50px;
	}
	
.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;
	}

.form-wrapper {
	border: 6px solid #b9bec0;
	border-radius: 30px;
	border-radius: 0;
	margin: 0 auto;
	padding: 25px 5%;
	background: rgba(255,255,255,0.7);

	}
.contact-us-page .form-wrapper {
	max-width: 100%;
	}
.form-wrapper h2 {
	margin-bottom: 0.5em;
	}

#balloon h4,
#balloon p {
	font-size: 1rem;
	line-height: 1.3;
	font-weight: 300;
	}
#balloon h4 {
	font-size: 0.9rem;
	font-weight: 700;
	}

@media screen and (min-width: 768px) {	
	.form-wrapper {
		max-width: 460px;
		}
}

@media only screen and (min-width: 900px) {
	.contact-meta {
		max-width: 750px;
		margin: 0 0 0 auto;
		}

	.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-section {
	padding: 50px 0;
	background: #f6f6f6;
	}
.contact-form-section h3,
.contact-form-section p {
	text-align: center;
	margin: 0 0 0.5em;
	}

.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: var(--white);
	font-size: 0.95rem;
	line-height: 1.3;
	text-align: center;
	font-weight: var(--body-med);
	text-decoration: none !important;
	/*white-space: nowrap;*/
	background: var(--accent);
	border: 2px solid var(--accent);
	border-radius: 28px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	text-overflow: ellipsis;
	overflow: hidden;
	padding: 1em 1.2em;
	margin: 0;
	cursor: pointer;
	/* transitions */
	}

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover,
.button:hover {
	color: var(--black);
	background: var(--white);
	border: 2px solid var(--accent);
	}
	
.button-small {
	/*border-radius: 5px;*/
	padding: 0.35em 1em;
	}
.button-x-small {
	font-size: 1.1rem;
	font-weight: med;
	padding: 0.35em 1em;
	text-transform: none;
	}
	
.button-large {
	font-size: 1.3rem;
	line-height: 1;
	padding: 0.4em 1em;
	margin: 0;
	}
	
.button-jumbo,
.call-to-action .button {
	font-size: 2rem;
	line-height: 1;
	padding: 0.2em 0.5em;
	margin: 0;
	}
	
.button-full {
	display: block;
	width: 100%;
	}
	
.button-clear {
	background: inherit;
	border-color: #fff;
	text-decoration: none !important;
	white-space: nowrap;
	}
	
.top-auto {
	margin-top: auto;
	}

.gm-style button {
	border-radius: 0;
	}

/*
.dark .button {
	background: transparent;
	border: 2px solid var(--white);
	}
.dark .button:hover {
	color: var(--black);
	border: 2px solid var(--white);
	}
*/

.button .fa {
	margin: 0 0.5em 0 -0.3em; 
	}

@media only screen and (min-width: 600px) { 
	button,
	.button {
		width: auto;
		white-space: nowrap;
		text-align: center;
		}
}	

table {
	border-top: 1px solid var(--black);
	margin-bottom: 20px;
	}
td,th {
	border-bottom: 1px solid var(--black);
	padding: 10px 10px 10px 0;
	vertical-align: top;
	}
	
.cms-text table {
	border: none;
	border-top: 1px solid var(--black);
	width: 100%;
	}
	
.cms-text td,
.cms-text th {
	line-height: 1.4;  
	padding: 12px 0;
	border: none;
	border-bottom: 1px solid var(--black);
	}
	
td > img {
	padding-right: 8px;
	}

/* ----- [ Testimonials ] --------------- */
.testimonial-carousel::not(.contact-us-page .testimonial-carousel) {
	background: var(--grey-2);
	}

.testimonial-carousel .rplg-grid {
	display: none;
	}
.rplg .rplg-box:not(.contact-us-page .testimonial-carousel) {
	background: #fff !important;
	}

.testimonials-section {
	margin: 0;
	overflow: hidden;
	}

.slick-testimonials {
	width: 100%;
	max-width: 35em;
	max-width: 55em;
	}
	
.testimonial-wrapper {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex: 1 1 auto;
	color: #000;
	}
	
.testimonials.slick-initialized .slick-slide {
	display: flex;
	}

.testimonial blockquote {
	padding: 1em 0 2em;
	}

.testimonial p {
	font-family: var(--body-font);
	font-weight: var(--body-light);
	font-size: 1.2rem;
	line-height: 1.5;
	font-style: italic;
	margin-left: 2em;
	position: relative;
	}
.testimonial p:first-child:before {
	content: "”";
	position: absolute;
	top: 0.2em;
	left: -0.4em;
	font-size: 8rem;
	line-height: 0.2;
	color: var(--accent-green);
	}

@media screen and (min-width: 770px) {
	.testimonial blockquote {
		padding: 1em 3em;
		}
	.testimonial p {
		font-size: 1.5rem;
		}
}

/* ----- [ Slick Slider ] -----------------*/
.slick-slider .slick-list,
.slick-slide > div {
	height: 100%;
	}

/* fixes round corner image flash */
.slick-slide {
	z-index: 1;
	}
	
/*	
.home-slide {
	background-size: cover;
	background-position: 50% 50%;
	height: 100%;
	}

.hero-slider,
.hero-slider .slick-track,
.hero-slider .slick-wrapper,
.hero-slider .slick-slide {
	margin: 0;
	height: 100%;
	width: 100%;
	}
*/

/* Gallery */
.gallery-section {
	padding-top: 0;
	}
	
.gallery-section .image-wrapper {
	margin: 0;
	}
.gallery-section .padding-5 .image-wrapper, .gallery-section .padding-5 .gallery-link { margin-bottom: 10px; }
.gallery-section .padding-10 .image-wrapper, .gallery-section .padding-10 .gallery-link { margin-bottom: 20px; }
.gallery-section .padding-20 .image-wrapper, .gallery-section .padding-20 .gallery-link { margin-bottom: 40px; }

.gallery-link {
	position: relative;
	display: block;
	margin-left: 10px;
	margin-right: 10px;
	}
	
@media screen and (min-width: 600px) {
	.gallery-link {
		position: relative;
		display: block;
		margin-left: unset;
		margin-right: unset;
		}
	}
	
.gallery-link:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: rgba(0,0,0,0.3);
	opacity: 0;
    -webkit-transition: .2s opacity ease-out;
    -o-transition: .2s opacity ease-out;
    transition: .2s opacity ease-out;
	}
.slick-slide .gallery-link:after {
	right: 15px;
	}

.gallery-link:hover:after {
	opacity: 1;
	}
	
.gallery-icon {
    font-size: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    color: #fff;
    color: var(--accent);
    z-index: 999;
    margin-top: 20px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .2s all ease-out;
    -o-transition: .2s all ease-out;
    transition: .2s all ease-out;
	}

.pb_hover-zoom:hover {
    outline: none
	}

.gallery-link:hover .gallery-icon {
    margin-top: 0;
    opacity: 1;
    visibility: visible
	}

/* magnific pop-up */
.mfp-content {
	/*height: calc(100vh - 40px);*/
	}
.mfp-container button,
.mfp-container button:hover {
	background: none;
	border: none;
	}
img.mfp-img {
	padding: 0;
	border: 15px solid #fff;
	}
.mfp-bottom-bar  {
	margin-top: 5px;
	}
.mfp-image-holder .mfp-close {
	margin: -35px -20px 0 0;
	}

/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    text-align: center;
	top: auto;
    left: auto;
    right: 20px;
	bottom: -10px;
    display: block;
    width: 42px;
    height: 42px;    
    padding: 0 0 0 2px;
    color: #fff;
    background: var(--brand-light);
    border-radius: 50%;
    -webkit-transform: translate(0,0);
    -moz-transform: translate(0,0);
    -ms-transform: translate(0,0);
    -o-transform: translate(0,0);
    transform: translate(0,0);
    cursor: pointer;
    z-index: 9;
}
.slick-prev {
	right: 70px;
	padding: 0 2px 0 0;
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
	}

.slick-prev:hover,
.slick-next:hover {
	background: var(--accent-green);
	}

.slick-prev:before,
.slick-next:before {
	content: "▸";
    font-family: 'FontAwesome';
    font-size: 36px;
    line-height: 0.5;
    opacity: 1;
    color: #414141;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	}
.slick-prev:before {
	}
	
.slick-dots {
	bottom: 20px;
	}
	
/* ----- [ Gallery Page & Sections / Isotope ] -----------------*/
.slick-gallery {
	margin-bottom: 60px;
	}
.gallery-image {
	border-radius: 36px;
	overflow: hidden;
	margin: 0;
	box-shadow: 0px 30px 40px -24px rgba(0,0,0,0.2);
	}
.slick-gallery .caption {
	font-weight: var(--body-med);
	margin: 1em 0 0;
	}

/* ----- [ 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;
	}

/* ----- [ Footer ] --------------- */
.page-footer {
	color: #fff;
	clear: both;
	text-align: left;
	margin: 0;
	padding: 4em 0 0;
	background: url('../images/city-background.jpg') 50% 50% no-repeat;
	background-size: cover;
	}

.page-footer .inner {
	overflow: visible;
	}

.page-footer .copyright {
	margin: 2em 0 0.5em;
	opacity: 0.7;
	}

.page-footer p,
.page-footer li {
	font-size: 1.05rem;
	font-weight: var(--body-light);
	letter-spacing: 0.05em;
	}
.page-footer ul {
	margin: 0 0 1em;
	}
.page-footer li {
	margin: 0;
	}
.page-footer h3,
.page-footer h4 {
	font-size: 1.1rem;
	line-height: 1.5em;
	font-weight: var(--display-med);
	color: #fff;
	margin: 0;
	}

.page-footer a {
	text-decoration: none;
	border: none;
	}
.page-footer a:hover {
	color: var(--white);
	text-decoration: underline;
	}

.footer-logo {
	max-width: 200px;
	min-width: 160px;
	margin: 0 auto 50px 0;
	padding: 0;
	}
.footer-logo img {
	margin: 0 auto;
	width: 100%;
	/*filter:hue-rotate(50deg);*/
	}
	
.page-footer .fa {
	font-size: 1.2rem;
	color: var(--white);
	}
	
p.site-copyright2 {
	margin: 0 auto!important;
	padding: 8px 0;
	font-size: 0.8rem;
	font-weight: var(--body-med);
	}
	
@media screen and (min-width: 600px) {
	.page-footer .row {
		justify-content: flex-end;
		}
	.page-footer .col {
		width: 33.333%;
		}
	.page-footer .col.logo-col {
		width: 33.333%;
		}
	.page-footer .col.copyright {
		width: 100%;
		}
}

@media screen and (min-width: 770px) {
	.page-footer-col,
	.page-footer-col p {
		text-align: left;
		}
	.page-footer-col:last-child,
	.page-footer-col:last-child p {
		text-align: right;
		}
}

@media screen and (min-width: 880px) {
	.page-footer .row {
		justify-content: flex-end;
		}
	.page-footer .col {
		width: 22%;
		}
	.page-footer .col.logo-col {
		width: 34%;
		}
	.page-footer .col.col-5 {
		width: 66%;
		}
	.page-footer .col.copyright {
		width: 100%;
		}
}
@media screen and (min-width: 1100px) {
	.page-footer .row {
		justify-content: flex-end;
		justify-content: space-between;
		}
	.page-footer .col {
		width: 18%;
		}
	.page-footer .col.logo-col {
		width: 22%;
		margin-right: auto;
		}
	.page-footer .col.col-5 {
		width: 18%;
		}
	.page-footer .col.copyright {
		width: 100%;
		}
}

@media screen and (min-width: 900px) {
	.site-credit {
		display: inline-block;
		}
}

/* ----- [ SVG Social Media Icons ] --------------- */
.social-icons-wrapper {
	margin: 1em 0 !important;
	}
.social-icons-wrapper .social-icon {
    display: inline-block;
    height: 22px;
	width: 22px;
    margin: 0 0.8em 0 0;
    white-space: nowrap;
	}

.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: var(--accent-green);
    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);
	}

.social-icon span {
	display: none;
	}

.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;
	}
	
@media screen and (min-width: 770px) {
	.social-icons-wrapper {
		text-align: left;
		}
}

/* ----- [ Logo Slider ] --------------- */
/*
.logo-slider {
	display: flex;
	justify-content: center;
	align-items: space-between;
	}
.logo-slider img {
	max-width: 200px;
	width: 100%;
	max-height: 100px;
	}
*/

/* ----- [ Utility ] --------------- */
.bg-blue, .bg-water-hygiene { background: var(--logo-blue)!important; }
.bg-red, .bg-fire-management { background: var(--logo-red)!important; }
.bg-aqua, .bg-remedials { background: var(--logo-aqua)!important; }
.bg-orange, .bg-training { background: var(--logo-orange)!important; }
.bg-purple, .bg-specialist { background: var(--logo-purple)!important; }


.no-form {
	display: none;
	}

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

.hidden {
	display: none;
	}

.full-height {
	height: 100%;
	}
.cover-image,
.object-fit-cover {
	object-fit: cover;
	height: 100%;
	width: 100%;
	}
	
.overflow-visible {
	overflow: visible;
	}
.overflow-hidden {
	overflow: hidden;
	}
	
.text-right {
	text-align: right;
	}
.text-left {
	text-align: left;
	}
	
.nobreak {
	white-space: nowrap;
	overflow: ellipse;
	margin: 0 0 0.5em;
	}
.page-footer .fa {
	display: inline-block;
	line-height: 0.7;
	vertical-align: middle;
	}
.page-footer .fa-envelope {
	font-size: 1.1rem;
	/*margin-right: 0.3em;*/
	}
.page-footer .fa-phone {
	font-size: 1.4rem;
	/*margin-right: 0.4em;*/
	}
.page-footer .fa-mobile {
	font-size: 1.8rem;
	margin: 0 0.4em 0 0.1em;
	}

hr {
	border: none;
	height: 1px;
	background: #ccc;
	margin: 1.5em 0 1em;
	}
	
.show_hide {
	display: inline-block;
	margin-bottom: 1em;
	}

p.dropcap:first-child:first-letter {
	font-family: var(--display-font);
	float: left;
	font-size: 3rem;
	line-height: 1;
	padding-top: 0;
	padding-right: 5px;
	padding-left: 2px;
	}

.whatsapp-button {
	position: fixed;
	bottom: 20px;
	right: 20px;
	height: 60px;
	width: 60px;
	z-index: 99;
	}
.whatsapp-button:hover img {
	transform: scale(1.05);
	}

#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;
	opacity: 0.5;
	}

.align_left {
	float: left;
	margin-right: 1.5em;
	}
.sidebox .align_left {
	float: none;
	margin: 0 auto 1em;
	text-align: center;
	}

.align_right {
	float: right;
	margin-left: 1.5em;
	}

.align_center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin: 2em auto;
	}

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

@media screen and (min-width: 600px) {
	.row-reverse {
		flex-direction: row-reverse;
		}
}
@media only screen and (min-width: 1015px) {
	.sidebox .align_left {
		float: none;
		margin: 0 0.8em 0 0;
		}
}

.image {
	border: 0;
	border-radius: 4px;
	display: inline-block;
	position: relative;
	}

.image img {
	display: block;
	border-radius: 4px;
	}

.image.left, 
.image.right {
	width: 40%;
	max-width: 10rem;
	}

.image.left img, 
.image.right img {
	width: 100%;
	}

.image.left {
	float: left;
	margin: 0 1.5rem 1rem 0;
	top: 0.25rem;
	}

.image.right {
	float: right;
	margin: 0 0 1rem 1.5rem;
	top: 0.25rem;
	}

.image.fit {
	display: block;
	margin: 0 0 2rem 0;
	width: 100%;
	}

.image.fit img {
	width: 100%;
	}

.image.main {
	display: block;
	margin: 0 0 3rem 0;
	width: 100%;
	}

.image.main img {
	width: 100%;
	}
	
.bg-grey {
	background: var(--grey-4);
	}

#termly-code-snippet-support p,
#termly-code-snippet-support li,
#termly-code-snippet-support td {
	font-size: 1em;
	line-height: 1.3;
	}
#termly-code-snippet-support img {
	display: inline;
	}

/* ----- [ mouse icon ] ------ */
.mouse {
	max-width: 2rem;
	width: 100%;
	height: auto;
	}

.scroll-link {
	position: absolute;
	bottom: 40px;
	left: 50%;
	border: none;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	}

.scroll {
  -webkit-animation-name: scroll;
          animation-name: scroll;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-timing-function: cubic-bezier(0.65, -0.55, 0.25, 1.5);
          animation-timing-function: cubic-bezier(0.65, -0.55, 0.25, 1.5);
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-transform-origin: 50% 20.5px;
          transform-origin: 50% 20.5px;
  will-change: transform, opacity;
  opacity: 1;
}
@-webkit-keyframes scroll {
  0%, 20% {
    -webkit-transform: translateY(0) scaleY(1);
            transform: translateY(0) scaleY(1);
  }
  100% {
    -webkit-transform: translateY(36px) scaleY(2);
            transform: translateY(36px) scaleY(2);
    opacity: 0;
  }
}
@keyframes scroll {
  0%, 20% {
    -webkit-transform: translateY(0) scaleY(1);
            transform: translateY(0) scaleY(1);
  }
  100% {
    -webkit-transform: translateY(36px) scaleY(2);
            transform: translateY(36px) scaleY(2);
    opacity: 0;
  }
}


/* ----- [ Hero Images ] -----------------*/
/* ----- [ Slick Slider ] -----------------*/
.slick-slider .slick-list,
.slick-slide > div {
	height: 100%;
	}

/* basic page slider */
.slick-dots {
	bottom: 20px;
	}
.slick-dots li button:before {
	font-size: 1rem;
	color: white;
	}
.slick-dots li.slick-active button:before {
	color: var(--accent-green);
	}

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

.hero-slider,
.hero-slider .slick-track,
.hero-slider .slick-wrapper,
.hero-slider .slick-slide {
	margin: 0;
	height: 100%;
	width: 100%;
	}

@media all and (max-width:599px){
	.product-img-col {
		display: block;
		}
}
	
.hero-slider .slick-prev,
.hero-slider .slick-next {
	position: absolute;
	top: 50%;
	width: 50px;
	height: 80px;
	margin-top: -20px;
	padding: 0;
	left: 0;
	color: transparent;
	font-size: 0;
	line-height: 0;
	transform: translate(0, -50%);
	cursor: pointer;
	border: none;
	border-radius: 0;
	outline: none;
	background: rgba(255,255,255,0.5) url('../images/thin-previous.png') 35% 50% no-repeat;
	background-size: 70%;
	z-index: 5;
	opacity: 0.5;
	}
	
.hero-slider .slick-prev:before,
.hero-slider .slick-next:before {
	content: "";
	}
.hero-slider .slick-next {
	position: absolute;
	right: 0;
	left: auto;
	background: rgba(255,255,255,0.5) url('../images/thin-next.png') 65% 50% no-repeat;
	background-size: 70%;
	}
.hero-slider .slick-prev:hover,
.hero-slider .slick-next:hover {
	opacity: 1;
	}

/* ---- [ Specifics ] ---------- */
@media screen and (max-width: 780px) {
	.home .section-image2 {
		margin-bottom: 2em !important;
		}
}
 

/* ----- [ Print ] ----- */
@media print {
    header, footer, aside, form {
        display: none;
    	}
	section {
		width:100%!important;
		padding:0!important;
		margin:0!important;
		width: 800px!important;
		}
	img {
		max-width: 500px !important;
		max-height: 300px !important;
		}
	h1 {
		font-size: 24pt;
		margin: 0 !important;
		padding: 0 !important;
		}
	.hero {
		min-height: 100px!important;
		height: auto;
		}
	.image {
		display: none;
		}
}
@page {
	margin: 2cm;
}
@page:first {
    margin: 0cm;
}
@page:last {
    margin: 5cm;
}
@page:left {
    margin: 2cm 1.5cm 2cm 2cm;
}
@page:right {
    margin: 2cm 2cm 2cm 1.5cm;
}
@media print {
  a:after {
    content: "("attr(href)")";
  }
}

.news-section2 {
	padding: var(--section-pad-small) 0;
	}

.news-section2 .row {
	flex-direction: row !important;
	width: 125%;
	padding-left: calc((100vw - 1232px) / 2);
	}
.news-box {
	display: flex;
	min-height: 150px;
	}
.home-page .news-box {
	max-width: 313px;
	}

@media screen and (max-width: 420px) {
	.news-section2 .news-box {
		margin-right: 15px;
		}
}

@media screen and (min-width: 760px) {
	.home-page .news-box {
		max-width: 313px;
		}
}
@media screen and (max-width: 1230px) {
	.news-section2 .inner-full {
		padding-left: 20px!important;
		}
}

/* ----- [ CTA Pill section ] --------- */
.cta-pill-section {
	padding: var(--section-pad-small) 0;
	}

.cta-pill-section .inner {
	overflow: visible;
	}
.cta-pill-section .cta-text {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	/*color: #fff;
	border-radius: 100px 0 0 100px;
	background: var(--accent);
	margin-right: calc((1232px - 100vw) / 2);
	margin-right: -30px;*/
	}
.cta-text h2,
.cta-text h3,
.cta-text p {
	margin-bottom: 0.5em;
	text-align: center;
	/*color: #fff;
	margin: 0;
	vertical-align: middle;*/
	line-height: 1;
	}
.cta-text p {
	margin: 0;
	}
.cta-pill-section .button {
	font-size: 1.35rem;
	padding: 20px 1em;
	border: 4px solid var(--accent);
	border-radius: 40px;
	/*font-size: inherit;
	color: inherit;
	font-size: 1.8rem !important;
	font-weight: var(--body-bold);
	border: 10px solid #fff;
	border-radius: 100px;
	margin-right: 1em;
	margin: -10px 2em -10px -15px;*/
	}
.cta-pill-section .button:hover {
	/*color: var(--accent);
	background: #fff;
	border: 10px solid var(--accent);*/
	border: 4px solid var(--accent);
	}
	
@media screen and (min-width: 1280px) {
	.cta-pill-section .cta-text {
		flex-direction: row-reverse;
		justify-content: center;
		}
	.cta-pill-section h2,
	.cta-pill-section h3 {
		color: #fff;
		background: var(--accent);
		margin: 0;
		height: 70px;
		line-height: 70px;
		padding: 0 50px;
		margin-left: -40px;
		border-radius: 0 40px 40px 0;
		}
	.cta-pill-section .button {
		font-size: 1.5rem;
		padding: 0 1em;
		height: 70px;
		line-height: 62px;
		border-color: #fff;
		}
}
.cms-text a.external-link {
	position: relative;
	padding-right: 10px;
	}
.cms-text a.external-link:after {
	content: '\2197';
	position: absolute;
	/*right: 0px;*/
	}

.solutions-heading {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	color: #fff;
	border-radius: 100px 0 0 100px;
	background: var(--accent);
	margin-right: -30px;
	margin: 0 0 3em;
	padding: 0;
	}

.solutions-heading h2 {
	color: #fff;
	margin: 0;
	vertical-align: middle;
	font-size: 2.5rem;
	display: inline-block;
	border: 10px solid white;
	padding: 25px 1em;
	border-radius: 60px;
	margin: -10px;
	}

@media all and (min-width: 1292px){
	.cta-text,
	.solutions-heading {
		margin-right: calc((1232px - 100vw) / 2);
		}
}
@media screen and (max-width: 760px) {

}



