/**
	@Author:	Paul Strandoo
	@Date:		11/2025
	@Notes:		W Jarvis
*/

@import url("font-awesome.min.css");
:root {
	--display-font: "Montserrat", sans-serif;
	--body-font: "Montserrat", sans-serif;
	
	--display-light: 300;
	--display-regular: 400;
	--display-medium: 500;
	--display-semibold: 600;
	--display-bold: 700;
	
	--body-light: 300;
	--body-regular: 400;
	--body-medium: 500;
	--body-semibold: 600;
	--body-bold: 700;
			
	--accent: #ef6700;
	--light-blue: #E7ECED;

	--grey: #cfcfcf;
	--grey-1: #EBEBEB;
	--grey-2: #f7f7f7;

	--dark-grey: #252525;
	--white: #ffffff;	
	--black: #000000;
	
	--bg-tint: #F7F6F2;
	
	--section-pad-large: 7em;
	--section-pad-med: 5em;
	--section-pad-small: 3em;
	--section-pad-x-small: 1.5em;
	
	--header-height: 220px;
	
    --inner: 1260px; /* 1320 */
    --inner-narrow: 960px;
    --inner-large: 1150px;
    --inner-wide: 1500px;
    --inner-very-wide: 1970px;
    --inner-full: 100%;
    
    --offset: 60px;
    
    /*--section-default-padding: 70px 0;
    --section-mobile-padding: 40px 0;*/
	}
/**
 * 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%;
	}

* {
   -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: 270px; /* 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-regular);
	font-style: normal;
	color: var(--black);
	}

/* ----- [ Typography ] -------------------------*/
p,
li,
td {
	font-family: var(--body-font);
	font-weight: var(--body-regular);
	font-style: normal;
	font-optical-sizing: auto;
	font-size: 1.1rem;
	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: inherit;
	text-decoration: underline;
	}

a:hover {
	color: var(--accent);
	/*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-medium);
	font-style: normal;
	color: var(--black);
	line-height: 1.1;
	}

h1,.h1 {
	font-family: var(--display-font);
	font-weight: var(--display-bold);
	font-size: 2.2rem;
	font-size: clamp(2rem, 10vw, 5rem);
	line-height: 1.2;  
	letter-spacing: 0.02em;
	margin: 0 0 0.5em;
	width: 100%;
	}

h2,.h2 {
	font-family: var(--display-font);
	font-weight: var(--display-medium);
	color: var(--black);
	font-size: 2rem;
	line-height: 1.3em;
	padding: 0;
	margin: 0 0 0.5em;
	
	font-weight: 600;
	}
	
h3,.h3 { 
	font-family: var(--body-font);
	font-weight: var(--body-medium);
	/*color: var(--accent);*/
	font-size: 1.3rem;
	line-height: 1.3;
	margin: 0;
	font-size: 1.5rem;
	line-height: 1.3;
	margin: 0 0 0.5em;
	}

h4,.h4 { 
	font-family: var(--body-font);
	font-weight: var(--body-semibold);
	font-size: 1.2rem;
	line-height: 1.3;
	margin: 0 0 0.2em;
	}
	
h5,.h5 { 
	font-family: var(--body-font);
	font-weight: var(--body-bold);
	font-size: 1.2rem;
	line-height: 1.6;
	margin: 0 0 0.2em;
	}

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

@media screen and (min-width: 600px) {
	h1,.h1 {
		font-size: 2.4rem;
		}
	h4,.h4 { 
		font-size: 1.3rem;
		}
}

p + h2,
p + .h2,
ul + h2,
ul + .h2 {
	margin-top: 1em;
	}

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

/* ----- [ Structure ] -----------------*/
.page-wrapper {
	display: flex;
	flex-direction: column;
	position: relative;
	background: #fff;
	min-height: 100%;
	min-height: 100vh;
	padding-top: 0;
	/*z-index: 2;*/
	/*overflow: hidden;*/
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}

.page-overlay {
	position: fixed;
	top: 0;
	left: 0;
	min-height: 100%;
	height: 100%;
	width: 100%;
	visibility: hidden;
	background: var(--grey1);
	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 screen and (min-width: 750px) {
	.page-overlay {
		align-items: center;
		padding: 0.9;
		}
}

/* ----- [ Sections; revisit? ] ------- */
header,
section,
footer {
	width: 100%;
	margin: 0;
	position: relative;
	}
section {
	margin: 0;
	padding: var(--section-pad-small) 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%;
	margin: 0;
	padding: 0 !important;
	}
	
@media screen and (min-width: 450px) { 
	.inner {
		padding: 0 30px;
		}
}

@media screen and (min-width: 600px) {
	section {
		padding: var(--section-pad-med) 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;
	max-width: 100%;
	}

/* grid-removed; see ps-flex-grid.css */
.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;
	}

/* legacy */
@media screen and (min-width: 600px) {
	.row,
	.flex-row,
	.flex-col {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		column-gap: 2em;
		}
	.flex-row {
		justify-content: space-between;
		align-content: flex-start;
		}
	.flex-row > * {
		/*flex: 1;*/
		}
	.flex-col {
		flex-direction: column;
		}
		
	.one-column .col,
	.one-one .col {
		flex: 1;
		}
	.two-one .col:first-child {
		flex: 2;
		}
	.two-one .col:last-child {
		flex: 1;
		}
	.flex-row.padding-20 { column-gap: 20px; }
	.flex-row.padding-30 { column-gap: 30px; }
	.flex-row.padding-40 { column-gap: 40px; }
	
	
	.text-column {
		display: flex;
		flex-direction: column;
		justify-content: center;
		}
}


/* ----- [ Color variants ] ----------- */
.dark {
	color: #fff !important;
	background: #414141;
	}
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark p,
.dark li,
.dark a {
	color: #fff;
	}
.dark a:hover {
	}


/* ----- [ Page Header ] -----------------*/
.page-header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 999;
	background: #fff;
	-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 .inner {
	display: flex;
	flex-direction: row;
	flex-direction: row-reverse;
	justify-content: space-between;
	/* justify-content: flex-start; */
	align-items: center;
	width: 100%;
	max-width: var(--inner-very-wide);
	margin: 0 auto;
	padding: 10px 15px;
	overflow: visible;
	background: #fff;
	}

.head-logo-wrapper,
.head-meta-wrapper {
	flex: 2;
	}
.head-logo-wrapper {
	min-width: 300px;
	}
.head-nav-wrapper {
	flex: 3;
	}

.logo-wrapper {
	display: block;
	max-width: 280px;
	text-decoration: none;
	border: none;
	margin: 0 20px 0 auto;
	-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-wrapper {
	/*max-width: 90px;*/
	}
	
.head-meta-wrapper {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 1em;
	display: none;
	}
.head-phone {
	font-weight: var(--body-medium);
	text-wrap: nowrap;
	}
.page-header .social-icons-wrapper {
	text-wrap: nowrap;
	display: none;
	}

/* ----- [ Navigation / Search ] ------ */
.head-nav-wrapper{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 0;
	margin: 0;
	/*padding: 100px 10% 20px;*/
	display: flex;
	justify-content: center;
	align-items: center;
	align-items: flex-start;
	overflow: unset;
	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;
	}

.is-fixed .head-nav-wrapper {
	min-height: 100vh;
	opacity: 1;
	overflow: scroll;
	}
.main-navigation.is-open {
	margin: 120px 5vw 0 10vw;
	padding: 0 0 40px;
	}
	
.main-navigation ul {
	margin: 0 0.5em;
	}
.level-2 {
	font-weight: var(--body-medium);
	margin: 0.6em 0;  
	text-decoration: none;
	}
	
.menu-item {
	margin: 0.5em 0;
	text-decoration: none;
	}
.menu-link,
.head-phone {
	font-weight: var(--body-medium);
	font-size: 1.6rem;
	line-height: 1.4;
	color: var(--black);
	text-decoration: none;
	}

.menu-link:hover,
.menu-link.on {
	color: var(--black);
	text-decoration: none;
	}
	
span > .menu-link {
	cursor: arrow;
	}
	
.main-navigation .nav-services,
.main-navigation .nav-case-studies {
	margin: 0 0.5em 0 1.5em;
	}
.dropnav .menu-link {
	font-size: 1.4rem;
	}
	
@media screen and (min-width: 500px) { 
	.page-header .inner {
		flex-direction: row;
		}
	.logo-wrapper {
		margin: 0 auto 0 0;
		}
}

@media screen and (min-width: 1180px) {
	.page-header .inner {
		flex-direction: row;
		}
	.logo-wrapper {
		max-width: 280px;
		}

	.head-nav-wrapper {
		position: relative;
		display: block;
		opacity: 1;
		z-index: 1;
		height: auto;
		overflow: unset;
		}
	.main-navigation {
		display: flex;
		flex-direction: row;
		position: relative;
		justify-content: center;
		justify-content: flex-end;
		align-items: center;
		width: auto;
		height: auto;
		margin: 0;
		padding: 0;
		background-color: transparent;
		overflow: visible;
		flex-basis: 34%;
		opacity: 1;
		z-index: 1;
		}
		
	.main-navigation .nav-services,
	.main-navigation .nav-case-studies {
		margin: 0 0.5em;
		}

	.menu-item {
		position: relative;
		display: inline-block;
		margin: 0 1em;
		white-space: nowrap;
		}
	.menu-item.mobile-only {
		display: none;
		}

	.menu-link,
	.head-phone {
		font-size: 1.1rem;
		line-height: 1.2;
		font-weight: var(--body-semibold);
		letter-spacing: 0.03em;
		padding: 0;
		border-bottom: 3px solid transparent;
		/*background-color: transparent;*/
		}

	.menu-link:hover,
	.menu-link.on {
		text-decoration: none;
		border-bottom: 3px solid var(--accent);
		}

	.dropnav {		
		display: block;
		position: absolute;
		width: auto;
		top: 150%;
		left: -20px;
		/* left: -50%; */
		text-align: left;
		background: #fff;
		z-index: 9999;
		visibility: hidden;
		opacity: 0;
		padding: 15px 20px;
		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;
		}
	.menu-item:hover .dropnav {
		top: 120%;
		visibility: visible;
		opacity: 1;
		}
	
	.dropnav ul {
		margin: 0;
		}
	.dropnav .menu-item {
		display: block;
		text-align: left;
		margin: 0;
		padding: 0 0 3px;
		}

	.dropnav .menu-link {
		color: inherit;
		font-weight: var(--body-medium);
		font-size: 1.1rem;
		margin: 0;
		padding: 0;
		text-transform: none;
		text-decoration: none;
		border-bottom: 2px solid transparent;
		}

	.dropnav .menu-link:hover,
	.dropnav .menu-link.on {
		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;
		}

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

@media screen and (min-width: 1300px) { 
	.main-navigation {
		justify-content: center;
		}
	.head-meta-wrapper {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		column-gap: 1em;
		}
}
@media screen and (min-width: 1540px) {
	.page-header .social-icons-wrapper {
		display: block;
		}
}

/* ----- [ Menu Trigger (Hamburger) ] ---- */
.menu-toggle {
	/*position: absolute;
	right: 1em;*/
	position: relative;
	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);
	}

/* was prefaced by 'is-small' class */	
.menu-toggle .menu-icon {
	background-color: #222;
	}
.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: #222;
	}

@media screen and (min-width: 1180px) {
	.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);
		}
}

/* ----- [ Heros & Home Hero ] --------------- */
.hero {
	height: auto;
	margin: 0;
	padding-block: 50px;
	height: 520px;
	}
.hero-overlay {				
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	}

.home-hero {
	margin: 0 auto;
	padding: 0;
	height: auto;
	height: 80vh;
	min-height: 300px;
	}
.home-hero .hero-overlay {
	background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 45%);
	}

.hero-inner {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	max-width: var(--inner-wide);
	padding: 3% 0;
	margin: 0 auto;
	display: flex;
	/* adjustable */
	justify-content: flex-start;
	align-items: center;
	}
.home-hero .hero-inner {
	padding: 3% 30px;
	}
	
/* hidden h1 */
.home-h1 {
	margin: 0 0 1em;
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
	}

.hero-content {
	max-width: 45em;
	padding: 2em;
	/*min-width: 600px;*/
	}
.hero-content h1,
.hero-content h2 {
	color: var(--white);
	font-size: 2.4rem;
	font-size: 2.2rem;
	font-size: clamp(2.2rem, 1.48125rem + 3.125vw, 3.2rem);
	font-weight: var(--display-bold);
	line-height: 1.1;
	margin-bottom: 0.2em;
	}
.hero-content h3,
.hero-content p {
	color: var(--white);
	font-size: 1.25rem;
	font-size: clamp(1.25rem, 0.964rem + 1.428vw, 1.5rem);
	}
.hero-content p {
	color: var(--white);
	}
	
.hero-content li {
	color: var(--white);
	list-style-type: square;
	list-style-position: outside;
	margin: 0 0 0 1.5em;
	position: relative;
	}
.home-hero .hero-content ul {
	display: none;
	}
.hero-content li::marker {
	color: var(--accent);
	}
.hero-content .button {
	margin-top: 1em;
	padding-block: 1em;
	}
	
@media screen and (max-width: 450px) {
	.home-hero,
	.home-hero.jarallax {
		height: 75vh;
		}
}
@media screen and (min-width: 540px) {
	.home-hero {
		padding-top: 0;
		}
}
@media screen and (max-width: 599px) {
	.hero-overlay {				
		background: rgba(0,0,0,0.4)!important;
		}
}
@media screen and (min-width: 600px) {
	.home-hero {
		margin: 0 auto;
		padding: 0;
		/*padding-top: 20px;*/
		height: auto;
		height: calc(90vh - 100px);
		min-height: 300px;
		max-height: var(--home-hero-max-height);
		}
	.home-hero .hero-content ul {
		display: block;
		}
	.hero-overlay {				
		background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 60%);
		}
		
	.gallery-page-template .hero-overlay,
	.contact-page-template .hero-overlay,
	.service-page-template .hero-overlay,
	.basic-page-template .hero-overlay {
		/* see above */
		/*background: none !important;*/
		}
}
@media screen and (min-width: 1298px) {
/*
	.home-page .hero-inner:after {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		width: 50%;
		height: 100%;
		background: url('../images/tree-only-reversed.png') right 150% no-repeat;
		opacity: 0.8;
		}
*/
}
@media screen and (min-width: 1620px) {
	.hero-inner {
		max-width: 100%;
		margin-inline: 8vw;
		}
}

/* ----- [ Call to Action section TBD ] -------------- */	
.call-to-action {
	text-align: center;
	color: #fff;
	background: var(--black);
	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;
	}
	
@media screen and (min-width: 600px) {  
.call-to-action .inner {
	flex-direction: row;
	}
}
	
/* ----- [ Sponsor Logos TBD ] --------------- */
.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 3%;
	height: 72px;
	}
.sponsor-logo img {
	height: 100%;
	/*width: 200px; */
	max-width: 200px;
	object-fit: scale-down;
	}

/* ----- [ Media/Bio (unused?) ] -----------------*/
.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;
	}

.bio-popup {
	display: none;
	}
.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;
	}


/* ----- [ Map? ] ----- */
#balloon h4,
#balloon p {
	font-size: 1rem;
	line-height: 1.3;
	font-weight: 300;
	}
#balloon h4 {
	font-size: 0.9rem;
	font-weight: 700;
	}
	
.contact-page dd {
	columns: 2;
	}

/* ----- [ CMS Content ] -----------------*/
.large-text {
	font-size: 120%;
	font-weight: var(--body-medium);
	}

.cms-text p > img:not(.align_left) {
	max-width: 100%;
	display: block;
	margin: 0 0 1em;
	}
	
.cms-text h3:not(:first-child),
.cms-text .h3:not(:first-child) {
	margin-top: 1.5em;
	}

.cms-text ul,
.cms-text ol {
	margin: 0 0 1em;
	}
.cms-text ul li {
	list-style-type: square;
	list-style-position: outside;
	margin: 0 0 0.5em 1.5em;
	position: relative;
	}
.cms-text li::marker {
	color: var(--accent);
	}
	
.cms-text ul li:before {
	content: "";
	position: absolute;
	height: 22px;
	width: 22px;
	left: -1.6em;
	top: 5px;
	}
	
.cms-text ol li {
	list-style-type: decimal;
	list-style-position: outside;
	margin: 0 0 0.5em 1.5em;
	}
	
.cms-text a:not(.button) {
	color: var(--accent);
	}
.cms-text a:not(.button):hover {
	color: var(--brand-light);
	}
	
.cms-text hr {
	height: 2px;
	margin: 1em 0;
	border: none;
	background: var(--grey);
	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;
	}
	
.balance {
	text-wrap: balance;
	}

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

/* ----- [ About/Team (unused?) ] --------------- */
.media-card {
	margin-bottom: 30px;
	}
.media {
	border-radius: 15px;
	overflow: hidden;
	position: relative;
	}
	
.media .alt-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	visibility: hidden;
	opacity: 0;
	cursor: pointer;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	}

.media:hover .alt-image {
	opacity: 1;
	visibility: visible;
	}
.media-text {
	padding: 15px 0;
	position: relative;
	}

.media-text h3,
.media-text h4 {
	font-size: 1.3rem;
	font-weight: var(--body-medium);
	line-height: 1.3;
	margin: 0 0 0.2em;
	}
.media-text h4 {
	font-size: 1.2rem;
	font-weight: var(--body-light);
	}
.media-text a {
	text-decoration: none;
	}


.section-instagram {
	margin-top: 3em;
	}
.instagram-feed {
	background: #eee;
	}

/* ----- [ 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;
	}
	
.flex-break {
	flex-basis: 100%;
	height: 0;
	height: 3px;
	background: #ccc;
	margin: 2rem 0;
	}
	
@media screen and (min-width: 600px) {
	/* Make this a Utility Class */
	.flex-container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		position: relative;
		justify-content: space-between;
		align-items: center;
		padding: 0 20px;
		}
	
	.f-top { align-items: flex-start; }
	.f-middle { align-items: center; }
	.f-bottom { align-items: flex-end; }
	.f-left { justify-content: flex-start; }
	.f-right { justify-content: flex-end; }
	.f-center { justify-content: center; }
	.f-between { justify-content: space-between; }
	.f-stretch { justify-content: stretch; }
}

/* ----- [ Insta ] ---------------------------- */
.insta-icon-wrapper {
	border-radius: 50%;
	display: inline-block;
	vertical-align: middle;
	padding: 8px;
	background: var(--accent);
	}
.insta-icon {
	display: block;
	height: 28px;
	width: 28px;
	fill: #fff;
	}
.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;
	}
.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;
	}
	
/*------------ Social Page ------------*/
.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-inline: 10px;
    margin-bottom: 2em;
	}
.insta-card {
    aspect-ratio: 1/1;
    /*padding-bottom: 100%;
    padding-bottom: 125%;*/
    position: relative;
	}

.insta-link {
	position: absolute;
	top: 0;
	bottom: 0;
	display: block;
	border-bottom: none;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #f1f1f1;
	}
.insta-link img {
	object-fit: cover;
    max-width: 100%;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
	}
.insta-link:hover img {
	transform: scale(1.05);
	}
.insta-view-more-btn {
	}
@media only screen and (min-width: 600px){
    .insta-grid {
		grid-template-columns: repeat(6, 1fr);
		gap: 15px;
		padding-inline: 15px;
    }
    .insta-view-more-btn {
        grid-column: span 2;
    }
}
@media only screen and (min-width: 780px){
    .insta-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
		padding-inline: 20px;
    }
    .insta-view-more-btn {
        grid-column: span 3;
    }
}

	
/* ----- [ Contact Page ] --------------- */
/* ----- [ Include: Map/Contact Form ] -----------------*/
.contact-left-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	}

.map-section {
	padding: 0;
	margin-bottom: 3em;
	}
.map {
	min-height: 450px; 
	position: relative;
	overflow: hidden;
	flex: 3;
	margin-bottom: 2em;
	}

.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 {
	margin: 0 auto;
	padding: 5% 5%;
	background: var(--light-blue);
	max-width: 800px;
	width: 100%;
	}

.form-wrapper h3 {
	margin-bottom: 1em;
	}

@media 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 (unused?) ]----------------------- */
.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;
	}

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

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover,
.button:hover {
	color: var(--white);
	background: var(--accent);
	background: #e06500;
	border: 2px solid var(--accent);
	}
/*
.cms-text .button:hover {
	}
*/
	
.button-small {
	border-radius: 5px;
	padding: 0.35em 1em;
	}
	
.button-large {
	font-size: 1.3rem;
	line-height: 1;
	padding: 0.4em 1em;
	margin: 0;
	}
	
.button-jumbo {
	font-size: 2rem;
	line-height: 1;
	padding: 0.2em 0.5em;
	margin: 0;
	}
	
.button-full {
	display: block;
	width: 100%;
	}
.button-text {
	font-size: 1.2rem;
	font-weight: var(--body-semibold);
	position: relative;
	text-decoration: none;
	}
.button-text:after {
	content: "";
	position: absolute;
	bottom: 2px;
	margin-left: 7px;
	height: 15px;
	width: 25px;
	background: url('../images/button-arrow.svg') no-repeat 0 0;
	background-size: contain;
	transition: all .3s ease;
	}
.button-text:hover:after {
	content: "";
	/*margin-left: 10px;*/
	stroke: var(--accent);
	color: var(--accent);
	transform: translateX(5px);
	}
/*
.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 screen and (min-width: 600px) { 
	button,
	.button {
		width: auto;
		white-space: nowrap;
		text-align: center;
		}
}	

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

/*
.cms-text p + table {
	margin-top: -1em;
	}
*/

/* ----- [ Testimonials (google/rich media) ] --------------- */
.services-page .services-section {
	padding-bottom: 0;
	}

/* Google Reviews */
.testimonial-carousel {
	background: var(--light-blue);
	margin-bottom: 3em;
	}
.testimonial-carousel .rplg-grid {
    display: none!important;
}

.rplgsw-pagination-bullets {
	display: none;
	}
.testimonial-carousel .rplg .rplg-review-name {
	color: var(--accent)!important;
	}
.testimonial-carousel .rplgsw-pagination-bullet-active {
	background: var(--accent)!important;
	}
.inner.reviews-slider {
	padding-bottom: 5px;
	}
@media screen and (min-width: 800px) { 
	.rplgsw-pagination-bullets {
		display: block;
		}
}

/* ----- [ Call to Action ] -----------------*/
.cta-section {
	text-align: center;
	background: var(--grey-7);
	}
.cta-section h2 {
	margin: 0 auto;
	}



/* ----- [ 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-section .image-wrapper {
	margin: 0 1em 2em;
	}
	
/* Magnific Popup */
.mfp-container button.mfp-arrow,
.mfp-container button.mfp-arrow:hover,
.mfp-image-holder button.mfp-close,
.mfp-image-holder button.mfp-close:hover {
	/*border: none;
	background: none;*/
	cursor: pointer;
	}
.mfp-bg {
	background: var(--white);
	opacity: 1;
	}
img.mfp-img {
	padding: 0;
	border: 15px solid #fff;
	}
.mfp-content {
    padding: 0 !important;
	}
.mfp-container {
    padding: 0 !important;
	}
.mfp-figure:after {
    background: none !important;
    box-shadow: none !important;
	}
.mfp-img {
    max-height: 85vh !important; /* or 80vh, anything you want */
    width: auto !important;
    height: auto !important;
	}
.mfp-bottom-bar  {
	margin-top: 5px;
	}
.mfp-image-holder .mfp-close {
	position: fixed;
	color: var(--text-black);
	font-weight: var(--body-regular);
	font-size: 2.5rem;
	margin: 0;
	top: 10px;
	right: 20px;
	width: auto;
	}
.mfp-image-holder .mfp-close:hover {
	background:none !important;
	border:  none !important;
	}
	
.mfp-title {
	text-align: left;
	line-height: 18px;
	color: var(--black);
	word-wrap: break-word;
	padding-right: 36px;
	}
.mfp-counter {
	color: var(--black);
	}
	
button.mfp-arrow {
	background: #fff url('../images/thin-next.png') 50% 50% no-repeat !important;
	background-size: 50% !important;
	opacity: 0.6;
	}
button.mfp-arrow.mfp-arrow-left {
	background: #fff url('../images/thin-previous.png') 50% 50% no-repeat !important;
	background-size: 50% !important;
	}
button.mfp-arrow:before,
button.mfp-arrow:after {
	content: none;
	background: none;
	}

button.mfp-arrow:hover {
	opacity: 1;
	border: none;}


/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    text-align: center;
	top: calc(50% - 30px);
    left: auto;
    right: -30px;
	bottom: auto;
    display: block;
    width: 60px;
    height: 60px;    
    padding: 0 0 0 2px;
    color: #fff;
    background: var(--white) url('../images/right-arrow.png') 50% 50% no-repeat;
    background-size: 100%;
    border: 1px solid #ccc;
    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: auto;
	left: -30px;
	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) url('../images/right-arrow.png') 50% 50% no-repeat;
    background-size: 100%;
	}

.slick-prev:before,
.slick-next:before {
	content: ""; /* ▸  › */ 
    font-family: 'FontAwesome';
    font-size: 60px;
    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 ] -----------------*/
.gallery {
	padding: 4em 0 6em;
	}
.gallery:first-child {
	padding-top: 0;
	}
	
.gallery-intro {
	max-width: 950px;
	margin: 0 0 2em;
	}

.gallery-menu {
	position: sticky;
	top: 118px;
	padding-block: 2em 0.5em;
	background: var(--light-blue);
	overflow: auto;
	z-index: 1;
	}
.gallery-menu .flex-row {
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: nowrap;
	overflow: auto;
	padding-bottom: 1.5em;
	}
.gallery-menu .flex-row::-webkit-scrollbar {
	display: none;
	}
	
.gallery-link {
	font-size: 1.1rem;
	font-weight: var(--body-semibold);
	text-decoration: none;
	text-wrap: nowrap;
	margin-inline: 2%;
	}
	
.gallery-link:first-child:after {
	content: "|";
	font-weight: 400;
	padding: 0 0em 0 2em;
	}
.gallery-link:first-child:hover:after {
	color: black;
	}

.gallery:nth-of-type(even) {
	background: var(--light-blue);
	/*padding: 2em 0 3em;*/
	box-shadow: -100px 0 0 var(--light-blue),
		100px 0 0 var(--light-blue);
	/*margin-bottom: 2em;*/
	}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 1.5em;
	margin-bottom: 5em;
	margin-bottom: 0;
	}
.gallery-card {
	box-shadow: 0 2px 20px rgba(0,0,0,0.15);
	}
.gallery-card a {
	display: block;
	position: relative;
	overflow: hidden;
	text-decoration: none;
	border: none;
	}
.gallery-card img {
	display: block;
	max-width: 100%;
	height: auto;
	transition: all 0.3s ease;
	}
.gallery-card-title {
	padding: 0.8em 1em;
	background: var(--white);
	}
.gallery-card-title h4 {
	}
	
.magnify {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2.3rem;
	color: white;
	color: var(--accent);
	background: rgba(0,0,0,0.3);
	transition: all .3s ease;
	opacity: 0;
	}
.gallery-card:hover .magnify {
	opacity: 1;
	}

@media screen and (min-width: 600px) {
	.gallery-link {
		margin-inline: 0;
		}
}

@media screen and (min-width: 768px) {
	.gallery:nth-of-type(even) {
		background: var(--light-blue);
		box-shadow: -500px 0 0 var(--light-blue),
			500px 0 0 var(--light-blue);
		}
}
	
/* ----- [ Webinar Form Modal ] ----------------------------- */
.modal {
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 0;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0.75);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1em;
	opacity: 0;
	visibility: hidden;
	}
.modal.is-open {
	opacity: 1;
	visibility: visible;
	height: 100%;
	overflow: auto;
	}
.modal-body {
	position: relative;
	padding: 0;
	margin: 30px 0;
	border-radius: 1em;
	background: #fff;
	max-width: 780px;
	max-width: 1200px;
	width: 100%;
	width: 90vw;
	max-height: 90vh;
	}
.modal-close-button {
	position: absolute;
	/*position: fixed;*/
	height: 36px;
	width: 36px;
	right: 10px;
	top: 10px;
	padding: 6px;
	border-radius: 50%;
	color: #fff;
	background: #000;
	cursor: pointer;
	}
.modal-close-button.rev {
	color: #000;
	background: #fff;
	
	}
.modal-close-button.rev svg {
	}
.modal-close-button:hover {
	transform: scale(1.1);
	}
	
.modal .TextformatterVideoEmbed {
	margin: 0 !important;
	}
	
	
@media only screen and (min-width: 400px) {
	.modal-body {
		padding: 1.5em;
		margin: 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;
	}

/* extended images */
.extended-left,
.extended-right {
	margin-bottom: 1em;
	max-width: 900px;
	}
.breakout-left,
.breakout-right {
	margin: 0 0 1em;
	}
		
@media screen and (min-width: 1200px) {
	.extended-left {
		margin-bottom: 1em;
		margin-left: calc((1230px - 100vw)/2);
		}
	.extended-right {
		margin-bottom: 1em;
		margin-right: calc((1230px - 100vw)/2);
		}
	.extended-left img,
	.extended-right img,
	.breakout-left img,
	.breakout-right img {
		display: block;
		vertical-align: middle;
		max-width: 100%;
		}
	.breakout-left {
		margin-bottom: 1em;
		margin-left: -120px;
		}
}

/* ----- [ Footer ] --------------- */
.page-footer {
	clear: both;
	text-align: left;
	margin: 0;
	margin-top: auto;
	padding: 3em 0 0;
	background: var(--light-blue);
	background: var(--light-blue) url('../images/tree-only-reversed.png') 75% bottom no-repeat;
	}
.page-footer .inner {
	overflow: visible;
	z-index: 1;
	}

.page-footer .flex-row {
	justify-content: flex-start;
	align-items: flex-start;
	column-gap: 20px;
	}
.page-footer .flex-row .col {
	flex: 1;
	}
.page-footer .flex-row .col:first-child {
	flex: 3;
	margin-right: auto;
	}

.page-footer .col {
	margin-bottom: 2em;
	}

.page-footer p,
.page-footer li {  
	font-size: 1rem;
	font-weight: var(--body-regular);
	margin-bottom: 1em;
	}
.page-footer ul {
	margin: 0 0 1em;
	}
.page-footer li {
	margin: 0;
	}
.page-footer h3,
.page-footer h4 {
	font-size: 1.1rem;
	font-weight: var(--body-medium);
	color: #fff;
	margin: 0 0 1.5em;
	margin: 0 0 1em;
	}
.page-footer .col h4:not(:first-child) {
	margin-top: 3em;
	}

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

.footer-logo {
	max-width: 300px;
	margin: 0 0 20px;
	margin-left: -118px;
	padding: 0;
	}
.footer-logo img {
	margin: 0 auto;
	width: 100%;
	/*filter:hue-rotate(50deg);*/
	}
	
.footer-links {
	display: none;
	}
	
.footer-badge {
	display: inline-block;
	height: 60px;
	margin: 0 20px 15px 0;
	}

.footer-text {
	max-width: 21em;
	}

.page-footer .copyright {
	margin: 0;
	padding: 0.5em 0 0;
	border-top: 1px solid #000;
	}	
.copyright p {
	font-size: 0.85rem;
	}

@media screen and (min-width: 768px) {
	.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: 900px) {
	.page-footer {
		background: var(--light-blue) url('../images/tree-only-reversed.png') top right no-repeat;
		}
	.footer-links {
		display: block;
		}
	.site-credit {
		display: inline-block;
		}
}

/* ----- [ SVG Social Media Icons ] --------------- */
.social-icons-wrapper .social-icon {
    display: inline-block;
    height: 26px;
    height: 2.2em;
	width: 26px;
    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);
    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: 768px) {
	.social-icons-wrapper {
		text-align: left;
		}
}

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

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

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

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

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

.align_left {
	text-align: left;
	}
.align_right {
	text-align: right;
	}
.align_center {
	text-align: center;
	}

img.align_left {
	float: left;
	margin: 0 1em 1em 0;
	}
img.align_right {
	float: right;
	margin: 0 0 1em 1em;
	}

img.align_center {
	text-align: center;
	display: block;
	margin: 2em auto;
	}

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

.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(--grey4);
	}
	
@media screen and (min-width: 600px) {
	.row-reverse {
		flex-direction: row-reverse;
		}
}

/* ----- [ COMPONENTS ] -----------------*/
/* ----- [ Featured Content ] -----------------*/
.featured-content-section a {
	text-decoration: none;
	}
.featured-content-section .col {
	margin-bottom: 2em;
	}
.fc-intro {
	max-width: 42em;
	margin: 0 auto 2em;
	}
.fc-link {
	text-align: center;
	}

.fc-image-wrapper {
	border: 8px solid var(--accent);
	margin: 0 0 1em;
	overflow: hidden;
	}
.fc-image-wrapper img {
	width: 100%;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
.fc-image-wrapper:hover img {
	transform: scale(1.05);
	}
.fc-link:hover h3 {
	color: var(--accent);
	}
	
/* ----- [ Third-party plugins ] -----------------*/
#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;
	}


/* ----- [ 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;
	/*color: black;*/
	}
.slick-dots li.slick-active button:before,
.slick-dots li:hover button:before {
	color: var(--accent);
	}

.home-slide {
	background-size: cover;
	background-position: 50% 50%;
	height: 100%;
	/*min-height: 80vh;*/
	/*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;
		}
}

/* ---- [ Home Services ] ---------- */
.home-services {
	background: var(--light-blue);
	}
.home-services > .flex-row {
	align-items: flex-start;
	column-gap: 1.5em;
	overflow: visible;
	}
.home-services-text {
	flex: 1;
	}
.home-services-grid {
	flex: 2;
	display: grid;
	/*grid-template-columns: repeat(2, 1fr);*/
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	/*grid-template-rows: repeat(5, 1fr);*/
	gap: 1.5em;
	}
.services-card {
	box-shadow: 0 2px 20px rgba(0,0,0,0.15);
	}
.services-card a {
	display: block;
	position: relative;
	overflow: hidden;
	text-decoration: none;
	border: none;
	}
.services-card a div {
	overflow: hidden;
	}
.services-card img {
	display: block;
	width: 100%;
	height: auto;
	transition: all 0.3s ease;
	}
.services-card:hover img {
	transform: scale(1.05);
	}
.services-card-title {
	padding: 0.8em 1em;
	background: var(--white);
	}
.services-card-title h4 {
	transition: all 0.2s ease;
	}
.services-card:hover h4 {
	color: var(--accent);
	}


/* Alternate Version  (save)
.services-card a {
	display: block;
	position: relative;
	overflow: hidden;
	}
.services-card img {
	display: block;
	width: 100%;
	height: auto;
	transition: all 0.3s ease;
	}
.services-card-overlay h4 {
	font-size: 1.6rem;
	line-height: 1.2;
	font-weight: var(--body-bold);
	}
.services-card-overlay {  
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	color: var(--black);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1em;
	text-align: center;
	opacity: 0;
	transition: all 0.3s ease;
	}
.services-card:hover img {
	opacity: 0.05;
	}
.services-card-overlay:hover {
	opacity: 1;
	}
*/

/* ----- [ Icon Rows ] ---------- */
.home-icons {
	border-top: 20px solid #3D4D23;  
	padding-block: var(--section-pad-small);
	}
.home-icons.dark {
	background: #3D4D23;
	background: #141410;
	}
.icon-row-icon {
	height: 55px;
	width: 55px;
	margin: 0 auto 1em;
	}

.icon-row-icon + h4 {
	text-wrap: balance;
	}

.icon-row-icon svg {
	width: 100%;
	height: 100%;
	fill: var(--accent);
	fill: #3D4D23;
	}
	
@media screen and (max-width: 920px) {
	.icon-row .col {
		min-width: 250px; 
		}
}

/* ---- [ Gallery Scroller ] ---------- */
.scrolling-wrapper::-webkit-scrollbar,
.gallery-row-section .inner::-webkit-scrollbar {
  display: none;
}

.gallery-row-header {
	margin-bottom: 1em;
	align-items: flex-start;
	}
/* horizontal scrollers */
.scrolling-wrapper {
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
	column-gap: 20px;
	scroll-snap-type: x mandatory;
  	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	padding-right: 50px;
	padding-bottom: 40px;  
	margin-bottom: 20px;
	margin-left: 20px;
	}
/* should merge this with services-card */
.gallery-row-card {
	max-width: 350px;
	flex: 0 0 auto;
	box-shadow: 0 2px 20px rgba(0,0,0,0.15);
	}
.gallery-row-card a {
	text-decoration: none;
	}
.gallery-row-card a div {
	overflow: hidden;
	}
.gallery-row-card img {
	display: block;
	width: 100%;
	height: auto;
	transition: all 0.3s ease;
	}
.gallery-row-card:hover img {
	transform: scale(1.05);
	}

.gallery-row-card-title {
	padding: 0.8em 1em;
	background: var(--white);
	}
.gallery-row-card h4 {
	transition: all 0.2s ease;
	}
.gallery-row-card:hover h4 {
	color: var(--accent);
	}
	
.gallery-card-row:first-child {
	margin-left: calc((100vw - 1250px)/2);
	margin-left: 20px;
	}
.gallery-card-row.text-box {
	width: 280px;
	}

@media screen and (min-width: 1284px) {
	.gallery-row-card:first-child {
		margin-left: calc((100vw - 1250px)/2);
		}
	.scrolling-wrapper {
		margin-left: 0;
		}
	.scrolling-wrapper.row-reverse {
		padding-left: 50px;
		}
	.row-reverse .gallery-row-card:first-child {
		margin-left: 20px;
		margin-right: calc((100vw - 1250px)/2);
		}
	.row-reverse .gallery-row-card:last-child {
		border-left: 50px solid #fff;
		max-width: calc(280px + 50px);
		}
	
}

/* Scroller */
figure {
	margin: 0;
	}

/* Navigation */
.product-slider-nav {
	text-align: left;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-block: 1em;
	}
.product-thumb {
	width: 100%;
	height: 70px;
	max-width: 70px;
	text-align: center;
	cursor: pointer;
	overflow: hidden;
	opacity: 0.8;
	border: 1px solid #444;
	}
.product-thumb img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	}

.product-thumb:hover {
	opacity: 1;
	}
.product-image,
.product-thumbnail {
	width: 100%;
	}

.show-hide {
	cursor: pointer;
	}
	
/* left/right arrows */
.portfolio-nav,
.scroller-nav {
	width: 100%;
	padding: 30px 2%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	}
.scroller-nav {
	width: auto;
	padding: 0;
	margin-top: 1em;
	column-gap: 20px;
	justify-content: flex-end;
	display: none;
	}
	
.portfolio-nav .prev,
.portfolio-nav .next,
.scroller-nav .prev,
.scroller-nav .next {
	width: 42px;
	height: 34px;
	background: url('../images/left-arrow.png') 50% 50% no-repeat;
	background: url('../images/button-arrow.svg') 50% 50% no-repeat;
	background-size: contain;
	opacity: 0.2;
	opacity: 1;
	transform: rotate(180deg);
	/*-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;*/
	text-indent: -5em;
	overflow: hidden;
	}
.portfolio-nav .next,
.scroller-nav .next {
	background: url('../images/right-arrow.png') 50% 50% no-repeat;
	background: url('../images/button-arrow.svg') 50% 50% no-repeat;
	background-size: contain;
	transform: rotate(0deg);
	}
.portfolio-nav .prev:hover,
.portfolio-nav .next:hover,
.scroller-nav .prev:hover,
.scroller-nav .next:hover {
	opacity: 1;
	/* fill: var(--accent); */
	filter: brightness(0) saturate(100%) invert(52%) sepia(64%) saturate(5169%) hue-rotate(8deg) brightness(99%) contrast(105%);
	}

/* ----- [ Text/Images section ] -------------- */	
.text-image-section {
	padding-top: 0;
	padding-bottom: 0;
	margin: 5vw 0;
	margin: 60px 0;
	margin: 0;
	}
.text-image-section .inner {
	padding: 0;
	}
.text-image-section .col {
	position: relative;
	}
	
.flex-img-col {
	/*flex: 1 0 auto;*/
	flex: 1;
	}
.flex-text-col {
	/*flex: 0 0 50%;*/
	/*padding-inline: 30px !important;*/
	}

.text-image-row {
	padding: 3em 30px;
	flex-direction: column;
	}
.text-image-text {
	}

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

.bg-tint {
	background: var(--bg-tint);
	}
.bg-blue,
.text-image-section .bg-tint {
	background: var(--light-blue);
	}

/* Section Spacers/Margin */
.spacer-none { margin-bottom: 0; }
.spacer-small { margin-bottom: 3em; }
.spacer-medium { margin-bottom: 5em; }
.spacer-large { margin-bottom: 7em; }


.case-study-row {
	position: relative;
	}
.cs-gallery {
	display: none;
	}


@media screen and (min-width: 768px) {
	.scroller-nav {
		display: flex;
		}
	.service-text-wrapper {
		margin: 0;
		padding: 6em 30px 6em 8%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		}

	.row-reverse .service-text-wrapper  {
		padding: 6em 8% 6em 30px;
		}
		
	.service-image-wrapper {
		/* position: absolute; */
		height: 100%;
		margin-bottom: 20px;
		}
	.service-image-wrapper img {
		object-fit: cover;
		height: 100%;
		width: 100%;
		}

	.text-image-row {
		flex-direction: row;
		padding: 3em 30px;
		}
	.text-image-row:nth-of-type(even),
	.text-image-row.row-reverse {
		/*background: var(--light-blue);*/
		flex-direction: row-reverse;
		/*box-shadow: -780px 0 0 var(--light-blue),
			780px 0 0 var(--light-blue);*/
		}
	.text-image-row .quickedit {
		top: 60px;
		left: -20px;
		}
	
}
@media screen and (min-width: 1298px) {
	.service-text-wrapper {
		padding: 6em 10%;
		margin-left: 0;
		margin-right: calc((100vw - 1248px) / 2 - 10%); /* var? */
		}
	.row-reverse .service-text-wrapper {
		padding: 6em 10%;
		margin-left: calc((100vw - 1248px) / 2 - 10%);
		margin-right: 0;
		}
}

/* ----- [ Hero Sections ] ----- */
.hero-section {
	position: relative;
	/*min-height: 30vh;*/
	padding: 4em 0 3em;
	}

.hero-section .inner {
	display: flex;
	min-height: 340px;
	}

.hero-section-text {
	flex: 1;
	display: flex;
	}

.hero-section h2,
.hero-section h3 {
	font-size: 2.1rem;
	font-size: clamp(2.1rem, 1.9rem + 1vw, 3.1rem);
	margin-bottom: 0.5em;
	}
	
.hero-section-extras {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	}
.hero-section-extras p {
	text-wrap: nowrap;
	margin: 0;
	}
.hero-section-extras p:last-child {
	margin-top: 3em;
	}
.hero-section-extras .button {
	margin: 0 0 0 1em;
	}
	
@media (hover: none) {
   .hero-section {
	   background-attachment: initial !important;
   }
}
	
@media screen and (min-width: 1298px) {
	.hero-section-extras {
		display: flex;
		}
}

/* includes top hero? */
/*
.hero-overlay {				
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	background: rgb(0,0,0);
	background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 60%);
	}
*/
	
/* ----- [ Multi-columns Sections ] ----- */
.multi-columns-section h2 {
	font-size: 2.2rem;
	font-weight: 600;
	margin-bottom: 1.5em;
	}

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



/** HeroText Animation **/
@-webkit-keyframes fadeInUpSD {
	0% {
		opacity: 0;
		-webkit-transform: translateY(100px);
		transform: translateY(100px);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes fadeInUpSD {
	0% {
		opacity: 0;
		-webkit-transform: translateY(100px);
		transform: translateY(100px);
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.fadeInUpSD {
	-webkit-animation-name: fadeInUpSD;
	animation-name: fadeInUpSD;
	}

.slick-active .hero-content {
	animation-name: fadeInUpSD;
	animation-duration: 1s;
	opacity: 1;
	width: 100%;
	padding: 10px 20px 30px 0;
	}

/* Text Animation End **/
