/**
	@Author:	Paul Strandoo
	@Date:		01/2026
	@Notes:		MapleTech 3.0
	
.nata-sans-<uniquifier> {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
*/

@import url("font-awesome.min.css");
:root {
	--display-font: "Raleway", sans-serif;
	--body-font: "Raleway", sans-serif;
	
	--display-light: 300;
	--display-regular: 400;
	--display-medium: 500;
	--display-semibold: 600;
	--display-bold: 700;
	--display-extrabold: 800;
	
	--body-light: 300;
	--body-regular: 400;
	--body-medium: 500;
	--body-semibold: 600;
	--body-bold: 700;
	--body-extrabold: 800;
			
	--accent: #70F5A8;

	--text-blue: #114862;
	--light-blue: #F5F9FD;
	--dark-blue: #163E64;
	
	--bg-light: #F5F9FD;
	--bg-medium: #DDE9F7;
	--bg-dark: #163E64;
	
		--grey: #cfcfcf;
	--grey-1: #EBEBEB;
	--grey-2: #f7f7f7;
	
	--dark-grey: #252525;
	--white: #ffffff;	
	--black: #000000;
	
	--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 ] ----- */
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: 160px; /* for gallery */
	}
body {
	height: 100%;
	margin: 0;
	padding: 0;
	position: relative;
	font-size: 16px;
	line-height: 1.3;
	background: #ffffff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
	}

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.2rem;
	line-height: 1.6em;
	margin: 0 0 1em;
	color: var(--text-blue);
	}
	
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(--dark-blue);
	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, 3.6rem);
	line-height: 1.2;  
	letter-spacing: 0.02em;
	margin: 0.25em 0;
	width: 100%;
	text-align: center;
	}

h2,.h2 {
	font-family: var(--display-font);
	font-weight: var(--display-bold);
	color: var(--dark-blue);
	font-size: 1.6rem;
	line-height: 1.3em;
	padding: 0;
	margin: 0 0 1em;
	}
	
h3,.h3 { 
	font-family: var(--body-font);
	font-weight: var(--body-bold);
	color: var(--dark-blue);
	font-size: 2.1rem;
	line-height: 1.1;
	margin: 0 0 0.5em;
	}

h4,.h4 { 
	font-family: var(--body-font);
	font-weight: var(--body-medium);
	font-size: 1.6rem;
	line-height: 1.3;
	margin: 0 0 0.5em;
	}
	
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 {
		}
	
	h2,.h2 {
		font-size: 2.6rem;
		}
	
	h3,.h3 {
		font-size: 2.1rem;
		}
	h4,.h4 { 
		font-size: 1.6rem;
		}
}

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 ] ------- */
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 v0.9 ] ------ */
.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%;
	}
.col.full {
	flex: 1 0 100%;
	}

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

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

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


@media screen and (min-width: 600px) {
	.row,
	.flex-row,
	.flex-col {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		column-gap: 3em;  
		}
	.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-1 {
		flex: 1;
		}
	.flex-2 {
		flex: 2;
		}
		
	.col.t-1of2,
	.col.t-1of3,
	.col.t-1of4 {
		flex: 1;
		}
	.col.t-2of3 {
		flex: 2;
		}
	.col.t-3of4 {
		flex: 3;
		}
}

/* ----- [ Dark Variants ] ----------- */
.dark {
	color: var(--white) !important;
	background: var(--bg-dark);
	}
.dark p,
.dark li,
.dark a {
	color: var(--white);
	}
.dark h2,
.dark h3,
.dark h4,
.dark h2 a,
.dark h3 a {
	color: var(--accent);
	}
.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;
	/* box-shadow: 0 3px 7px rgba(0,0,0,0.1); */
	}
.page-header .inner {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	/* justify-content: flex-start; */
	align-items: center;
	width: 100%;
	max-width: var(--inner-wide);
	margin: 0 auto;
	padding: 10px 30px;
	overflow: visible;
	}

.top-bar-wrapper {
	background: var(--bg-dark);
	}
.top-bar {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	color: var(--accent);
	background: var(--bg-dark);
	max-width: var(--inner-wide);
	padding: 0.3em 30px;
	margin: 0 auto;
	}

.bug-wrapper {
	margin-right: auto;
	height: 100%;
	width: 64px;
	}
	
.top-bar-meta {
	font-size: 1.1rem;
	}
.top-bar-meta a {
	margin-left: 1.5em;
	text-decoration: none;
	text-wrap: nowrap;
	}

.head-logo-wrapper,
.head-meta-wrapper {
	flex: 1;
	}
.head-nav-wrapper {
	flex: 3;
	}
.logo-wrapper {
	display: block;
	max-width: 150px;
	text-decoration: none;
	border: none;
	margin: 0;
	/*margin-right: auto;*/
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	}	
.head-meta-wrapper {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 1em;
	display: none;
	}
.head-phone {
	font-weight: var(--body-medium);
	}
	
.is-small .logo-wrapper {
	/*max-width: 90px;*/
	}
.head-logo {
	transition: all 0.3s ease;
	}
.is-small .head-logo {
	margin-top: -80px;
	opacity: 0;
	}

/* ----- [ Navigation / Search ] ------ */
.head-nav-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 0;
	margin: 0;
	padding: 0 10% 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: unset;
	-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: calc(100vh - 54px );
	opacity: 1;
	overflow: scroll;
	}
	
.main-navigation {
	display:none;
	}
.is-fixed .main-navigation {
	display: block;
	}
.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-regular);
	font-size: 1.6rem;
	line-height: 1.4;
	color: var(--dark-blue);
	text-decoration: none;
	}

.head-phone svg {
	width: 22px;
	height: 22px;
	vertical-align: middle;
	fill: #ffffff;
	}
.head-phone:hover svg {
	fill: var(--accent);
	color: var(--accent);
	}

.menu-link:hover,
.menu-link.on {
	color: var(--black);
	text-decoration: none;
	}

@media screen and (min-width: 600px) {
	.head-meta-wrapper {
		display: block;
		margin-left: auto;
		margin-right: 1em;
		text-align: right;
		}
}

@media screen and (min-width: 1020px) {
	.logo-wrapper {
		max-width: 240px;
		max-width: 160px;
		}
		
	.head-meta-wrapper {
		margin: auto;
		}

	.head-nav-wrapper {
		position: relative;
		display: block;
		opacity: 1;
		z-index: 1;
		height: auto;
		padding: 0;
		}
	.main-navigation {
		display: flex;
		flex-direction: row;
		position: relative;
		justify-content: center;
		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;
		display: inline-block;
		margin: 0 3%;
		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.05em;
		padding: 0;
		border-bottom: 3px solid transparent;
		/*background-color: transparent;*/
		}
	.head-phone {
		color: #fff;
		background: var(--accent);
		padding: 12px 22px;
		border-radius: 25px;
		}

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

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

/* ----- [ 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: 1020px) {
	.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);
		}
}

/* ----- [ Home Hero ] --------------- */
.home-hero {
	margin: 0 auto;
	padding: 0;
	height: auto;
	min-height: 300px;
	min-height: 600px;
	}

@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 (min-width: 600px) {
	.home-hero {
		margin: 0 auto;
		padding: 0;
		height: auto;
		}
}

/* ----- [ Page Templates ] ----------------- */
.page-intro {
	margin-top: 10px;
	}

.page-intro,
.cta-section {
	background: var(--bg-light);
	margin: 0;
	padding: 1em 0;
	}
.cta-section {
	height: auto;
	padding: 0 0 3em;
	}



.cta-section .inner {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	height: 100%;
	min-height: 350px;
	}
.cta-section .inner {
	min-height: 180px;
	}
.cta-text {
	padding: 2em 5px;
	}
	
@media screen and (min-width: 600px) {
	.page-intro,
	.cta-section {
		}
	.cta-text {
		padding: 2em;
		}
}

/* ----- [ Services Page ** ] ----------- */
.service-block {
	border-radius: 20px;
	padding: 2.5em;
	margin: 0 0 30px;
	margin: 0;
	}
.cms-text .service-block ul li {
	list-style-type: none !important;
	}

.service-block li:before {
	content: "";
	position: absolute;
	top: 7px;
	height: 16px;
	width: 26px;
	left: -1.6em;
	background: url('../images/logo-only.png') 50% 50% no-repeat;
	background-size: cover;
	}  

.col .service-block:nth-of-type(odd),
.col:last-child .service-block:nth-of-type(even) {
	background: var(--bg-medium);
	margin-bottom: 2em;
	}
.col .service-block:nth-of-type(even),
.col:last-child .service-block:nth-of-type(odd) {
	background: none;
	}
	
.service-block img {
	height: 50px;
	width: 50px;
	float: left;
	margin: -5px 1em 0 0;
	}

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


/* ----- [ Media/Bio TBD ] -----------------*/
/*
.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 {
	color: var(--dark-blue);
	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 h2 {
	margin-bottom: 0.5em;
	}
	
.cms-text p + h3,
.cms-text ul + h3 {
	margin-top: 1em;
	}

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

.cms-text ul,
.cms-text ol {
	margin: 0 0 1em;
	}
.cms-text ul li {
	list-style-type: disc;
	list-style-position: outside;
	margin: 0 0 0.5em 1.5em;
	position: relative;
	}

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

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

.instagram-feed {
	background: #eee;
	}

/* ----- [ Flex Container ] ----------- */
.flex-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 0 20px;
	position: relative;
	/*height: auto;*/
	}
.flex-container > * {
	/*width: 100%;*/
	display: block;
	}
	
@media screen and (min-width: 600px) {
	/* Make this a Utility Class */
	.flex-container {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding: 0 20px;
		}
	
	.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; }
	.f-top { align-items: flex-start; }
	.f-middle { align-items: center; }
	.f-bottom { align-items: flex-end; }
	
	.c-gap-0 { column-gap: 0 !important; }
	.c-gap-2 { column-gap: 2em !important; }
	.c-gap-3 { column-gap: 2em !important; }
}

/* ----- [ Contact Page ] --------------- */
/* ----- [ Include: Map/Contact Form ] -----------------*/
.map-section {
	padding: 0;
	/*background: var(--dark-blue);*/
	}
	
.address-block {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	align-items: center;
	padding: 30px;
	flex: 2;
	}
.address-block h5,
.address-block strong,
.address-block a {
	color: var(--accent);
	}
.map {
	min-height: 400px; 
	position: relative;
	overflow: hidden;
	flex: 3;
	}

.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: 7%;
	background: var(--bg-medium);
	border-radius: 20px;
	max-width: 800px;
	width: 100%;
	}
@media screen and (min-width: 600px) {
	.form-wrapper {
		/*padding: 2em;*/
		}
}

@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%);
		}
}


/* ----- [ 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(--dark-blue);
	font-size: 1rem;
	font-size: 1.3rem;
	line-height: 1;
	text-align: center;
	font-weight: var(--body-bold);
	text-decoration: none !important;
	white-space: nowrap;
	background: var(--accent);
	border: 2px solid var(--accent);
	border-radius: 6px;
	letter-spacing: 0.05em;
	text-overflow: ellipsis;
	overflow: hidden;
	padding: 0.6em 1.2em;
	margin: 0;
	cursor: pointer;
	/* transitions */
	}
.dark .button {
	color: var(--dark-blue);
	}
	
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover,
.button:hover {
	color: var(--dark-blue);
	background: var(--white);
	border: 2px solid var(--accent);
	}
	
.map-section button,
.map-section button:hover {
	border-radius: 0;
	}
	
.button-small {
	font-size: 1.1rem;
	line-height: 1.2;
	border-radius: 6px;
	padding: 0.45em 1.2em;
	}
	
.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 {
	display: inline-block;
	font-size: 1.25rem;
	font-weight: var(--body-bold);
	position: relative;
	text-decoration: none;
	}
.button-text:after {
	content: "";
	position: absolute;
	bottom: 2px;
	margin-left: 7px;
	height: 17px;
	width: 25px;
	background: url('../images/button-arrow.svg') no-repeat 0 0;
	background-size: contain;
	transition: all .3s ease;
	}
.dark .button-text:after {
	background: url('../images/button-arrow-rev.svg') no-repeat 0 0;
	background-size: contain;
	}
.button-text:hover:after {
	content: "";
	/*margin-left: 10px;*/
	stroke: var(--accent);
	color: var(--accent);
	transform: translateX(5px);
	}

.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;
	}
/*
.testimonial-carousel:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('../images/small-hero-bg.png') center bottom no-repeat;
	background-size: cover;
	opacity: 0.15;
	filter: grayscale(0.6);
	z-index: 0;
	}
.testimonial-carousel .rplg-grid {
	display: none;
	}
.rplg .rplg-box:not(.contact-us-page .testimonial-carousel) {
	background: #fff !important;
	}
*/

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

/* ----- [ Testimonials - Slick (Home Rolled) ] --------------- */
.testimonials-section {
	margin: 0;
	overflow: visible;
	padding: var(--section-pad-small) 0;
	}
.testimonials-section .inner {
	/* overflow: visible; */
	}
	
.testimonials-section svg {
	display: inline;
	height: 1.2em;
	vertical-align: middle;
	color: var(--accent);
	}
/*
.testimonials-section svg.star1 { width: 1em; }
.testimonials-section svg.star2 { width: 2em; }
.testimonials-section svg.star3 { width: 3em; }
.testimonials-section svg.star4 { width: 4em; }
.testimonials-section svg.star5 { width: 5em; }
*/

.testimonials .slick-list {
	overflow: visible;
	}
/*
.testimonials-wrapper {
	margin-top: 2em;
	}

.testimonial.slick-slide {
	margin-left: 10px;
	margin-right: 10px;
	opacity: 0.3;
	}
.testimonial.slick-slide.slick-current {
	opacity: 1;
	}
*/
.slick-testimonials {
	width: 100%;
	overflow: hidden;
	}
.testimonial-wrapper {
	display: flex !important; /* overrides slick.css */
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	}
	
.testimonials.slick-initialized .slick-slide {
	/*display: flex;
	height: 100vh;
	max-height: 500px;*/
	}
.testimonials.slick-dotted.slick-slider {
	margin-bottom: 0;
	}

.testimonial {
	padding: 50px 0 20px;
	margin: 0 15px;
	height: auto!important;
	}

.testimonial blockquote {
	padding: 1em 0 2em;
	text-align: left;
	text-align: center;
	}

.testimonial h2,
.testimonial h3,
.testimonial p {
	font-family: var(--body-font);
	font-weight: var(--body-semibold);
	font-size: 1.2rem;
	line-height: 1.2;
	margin-left: 0;
	margin-bottom: 0.35em;
	position: relative;
	text-align: left;
	text-align: center;
	letter-spacing: 0.03em;
	}

.testimonial p:first-child:before,
.testimonial p:first-child:after {
	content: "\f10d";
	font-family: 'FontAwesome';
	position: absolute;
	top: -50px;
	left: 45%;
	font-size: 2.8rem;
	line-height: 0.45;
	color: var(--accent);
	}

.testimonial p:nth-last-child(2):after {
	content: "";
	}

.quote-citation {
	display: block;
	font-size: 2rem;
	font-size: 1.5rem;
	text-align: right;
	text-align: center;
	}

@media screen and (min-width: 600px) {
	.testimonial {
		padding: 10px 5% 3%;
		}
	.testimonial h2,
	.testimonial h3,
	.testimonial p {
		line-height: 1.3;
		}
	.testimonial p:first-child:before {
		top: 10px;
		left: -1.2em;
		}
}

@media screen and (min-width: 768px) {
	.testimonial p:first-child:before,
	.testimonial p:first-child:after {
		content: "\f10d";
		font-family: 'FontAwesome';
		position: absolute;
		/*top: -40px;
		left: 0;*/
		font-size: 4rem;
		line-height: 0.45;
		color: var(--accent);
		}
	.testimonial p:nth-last-child(2):after {
		content: "\f10e";
		left: auto;
		top: 20px;
		right: -1.2em;
		}
	
	.testimonial {
		flex-direction: row;
		align-items: flex-start;
		margin: 0;
		}
	.testimonial-photo {
		max-width: 100px;
		}
	.testimonial blockquote {
		padding: 0 2em;
		}
	.testimonial blockquote .icon.fa {
		font-size:4rem;
		color: var(--accent);
		}
	.testimonial p {
		font-size: 1.5rem;
		line-height: 1.4;
		/*margin-left: 2em;*/
		}
}

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

/* fixes round corner image flash */
.slick-slide {
	z-index: 1;
	}

.gallery-section .image-wrapper {
	margin: 0 1em 2em;
	}

/* 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: 0;
	}
	
/* ----- [ 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-medium);
	margin: 1em 0 0;
	}
*/
.gallery-menu {
	position: sticky;
	top: 118px;
	padding-block: 2em;
	background: var(--light-blue);
	z-index: 1;
	}
.gallery-menu .flex-row {
	justify-content: flex-start;
	align-items: flex-start;
	}
	
.gallery-link {
	font-size: 1.2rem;
	font-weight: var(--body-semibold);
	text-decoration: none;
	}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 1.5em;
	margin-bottom: 5em;
	}
.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 {
	}
	
.gallery-link:hover .gallery-icon {
    margin-top: 0;
    opacity: 1;
    visibility: visible
}

/* magnific */
/*
.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;
	}
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;
    width: auto !important;
    height: auto !important;
	}
.mfp-bottom-bar  {
	margin-top: 5px;
	}
.mfp-image-holder .mfp-close {
	margin: -35px -20px 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 {
	clear: both;
	text-align: left;
	margin: 0;
	margin-top: auto;
	padding: 5em 0 0;
	}
.page-footer .inner {
	overflow: visible;
	z-index: 1;
	}
	
.cta-section + .page-footer {
	margin-top: 20px;
	}

.page-footer .flex-row {
	display: unset;
	}
/*
.page-footer .col:not(:first-child) {
	padding-top: 2em;
	}
*/

.footer-navigation {
	display: none;
	}

.page-footer p,
.page-footer li {  
	font-size: 1.15rem;
	font-weight: var(--body-medium);
	}
.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 {
	color: var(--dark-blue);
	text-decoration: none;
	border: none;
	}
.page-footer a:hover {
	color: inherit;
	text-decoration: underline;
	}

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

.footer-text {
	max-width: 21em;
	}
	
.footer-phone {
	font-size: 1.6rem;
	font-weight: var(--body-bold);
	}

.copyright {
	margin: 4em 0 0;
	color: var(--accent);
	background: var(--bg-dark);
	}	
.copyright .inner {
	margin: 0 auto;
	padding-block: 10px;
	font-size: 1rem;
	font-weight: var(--body-medium);
	}
.copyright a {
	color: var(--accent);
	}

@media screen and (min-width: 600px) {
	.footer-logo {
		margin-left: 0;
		}
}
@media screen and (min-width: 768px) {
	.page-footer .flex-row {
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
		column-gap: 20px;
		}
	.page-footer .flex-row .col {
		flex: 1;
		padding-inline: 30px;
		}
	.page-footer .flex-row .col:first-child {
		flex: 2;
		margin-right: auto;
		}
	.page-footer .flex-row .col:last-child {
		text-align: right;
		}

	.page-footer .flex-row .col {
		padding: 0;
		}

	.page-footer-col,
	.page-footer-col p {
		text-align: left;
		}
	.page-footer-col:last-child,
	.page-footer-col:last-child p {
		text-align: right;
		}
	.copyright .inner {
		display: flex;
		justify-content: space-between;
		}
}

@media screen and (min-width: 900px) {
	.footer-navigation {
		display: block;
		columns: 2;
		column-gap: 1em;
		}
	.site-credit {
		display: inline-block;
		}
}

/* ----- [ SVG Social Media Icons ] --------------- */
.social-icons-wrapper .social-icon {
    display: inline-block;
    height: 26px;
	width: 26px;
    margin: 0 0 0 0.5em;
    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%;
	}
	
.social-icons-wrapper.contact-page .social-icon svg {
    fill: #fff;
    }

.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: right;
		}
	.social-icons-wrapper.contact-page {
		text-align: left;
		}
	.social-icons-wrapper.contact-page .social-icon {
		margin: 0 0.5em 0 0;
		}
}

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

.text-balanced {
	text-wrap: balance;
	}

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

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

.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: 0;
	}
.slick-dots li button:before {
	font-size: 1rem;
	color: white;
	color: black;
	}
.slick-dots li.slick-active button:before {
	color: var(--accent);
	}

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

/* ----- [ Home Services ] ---------- */
.home-services {
	padding: var(--section-pad-small) 0;
	padding-bottom: var(--section-pad-med);
	}
/*
.home-services > .flex-row {
	align-items: flex-start;
	column-gap: 1.5em;
	overflow: visible;
	}
.home-services-text {
	flex: 1;
	}
*/
.home-services-grid {
	display: grid;
	/*grid-template-columns: repeat(2, 1fr);*/
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	/*grid-template-rows: repeat(5, 1fr);*/
	gap: 0;
	margin-bottom: 2em;
	/*border: 2px solid #CFD9E3;
	border-radius: 20px;*/
	overflow: hidden;
	overflow: visible;
	}
.services-card {
	/*outline: 2px solid #CFD9E3;*/
	background: var(--white);
	aspect-ratio: 2 / 1.1;
	/* box-shadow: 0 2px 20px rgba(0,0,0,0.15); */
	}
.services-card a {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	padding: 30px;
	overflow: hidden;
	text-decoration: none;
	border: none;
	}

.services-card img {
	display: block;
	width: 100%;
	max-width: 85px;
	height: auto;
	transition: all 0.3s ease;
	}
.services-card-title {
	}
.services-card-title h4 {
	}

.flip-card {
    background-color: transparent;
    perspective: 1500px;
    /* Enables the 3D effect */
	}
.flip-card:hover {
	z-index: 990;
	}
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
	}
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
	}
	
@media (hover: none) {
	.flip-card:hover .flip-card-inner {
		transform: none;
		}
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
	}
.flip-card-front {
	background: #fff;
	outline: 2px solid #CFD9E3;
	}
.flip-card-back {
    transform: rotateY(180deg);
	}
.services-card a.flip-card-back {
	justify-content: flex-start;
	}
.flip-card-back.dark h4 {
	color: var(--accent);
	}
.flip-card-back .button-text {
	margin-top: auto;
	}
	
@media screen and (min-width: 600px) {
	/* depends on layout */
	.flip-card:nth-of-type(1) .flip-card-front,
	.flip-card:nth-of-type(1) .flip-card-back { border-radius: 20px 0 0 0; }
	.flip-card:nth-of-type(3) .flip-card-front,
	.flip-card:nth-of-type(3) .flip-card-back { border-radius: 0 20px 0 0; }
	.flip-card:nth-of-type(7) .flip-card-front,
	.flip-card:nth-of-type(7) .flip-card-back { border-radius: 0 0 0 20px; }
	.flip-card:nth-of-type(9) .flip-card-front,
	.flip-card:nth-of-type(9) .flip-card-back { border-radius: 0 0 20px 0; }
}

/* ----- [ Elephant ] ---------- */
/* ----- [ Book Scroller ] ---------- */
.book-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: 20px;
	margin-bottom: 20px;
	}

.scrolling-wrapper::-webkit-scrollbar {
	/* display: none; */
	}
.book-card {
	max-width: 280px;
	flex: 0 0 auto;
	}
	
.book-card:first-child {
	margin-left: calc((100vw - 1250px)/2);
	margin-left: 20px;
	}
/*	
.row-reverse .book-card:first-child {
	margin-right: calc((100vw - 1250px)/2);
	margin-right: 20px;
	margin-left: 0;
	}
*/	
.book-card.text-box {
	width: 280px;
	}
	
.home-hero + .book-row-section {
	background: #fff url('../images/elephant-logo-light.svg') 3% 30% no-repeat;
	background-size: 360px;
	}

/*
@media screen and (min-width: 1298px) {
	.book-card:first-child {
		margin-left: calc((100vw - 1250px)/2);
		}
	.scrolling-wrapper.row-reverse {
		padding-left: 50px;
		}
	.row-reverse .book-card:first-child {
		margin-left: 20px;
		margin-right: calc((100vw - 1250px)/2);
		}
	.row-reverse .book-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;
	column-gap: 20px;
	justify-content: flex-end;
	}
	
.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-size: contain;
	opacity: 0.2;
	-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-size: contain;
	}
.portfolio-nav .prev:hover,
.portfolio-nav .next:hover,
.scroller-nav .prev:hover,
.scroller-nav .next:hover {
	opacity: 1;
	}
	
/* ----- [ 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;*/
	}

.bg-tint {
	background: var(--bg-light);
	}

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


@media screen and (min-width: 768px) {
	.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;
		}
}
@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: 2em 0;  
	}
		
.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%);
	}

.hero-section .inner {
	min-height: 200px;
	}
.hero-section h2,
.hero-section h3 {
	font-size: 2.5rem;
	line-height: 1.2;
	margin-bottom: 0;
	}
.hero-section p {
	font-size: 1.6rem;
	margin: 0.5em 0;
	}
	
@media screen and (min-width: 600px) {
	.hero-section {
		padding: 4em 2em;  
		}
}



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

/* gallery */
/* ----- [ Gallery/Portfolio ] ----------- */
.filter-button-group {
	text-align: center;
	margin: 0 auto 30px;
	}
.filter-button-group li  {
	display:  inline-block;
	margin: 0 15px 10px;
	}

.portfolio-caption,
.portfolio-overlay {
    z-index: 1;
    width: 100%;
    position: absolute;
	}

.row-portfolio {
    margin-left: -11px;
    margin-right: -11px;
	}
.portfolio-item {
    float: left;
    width: 100%;
    padding: 10px;
	}
.portfolio-item .portfolio-img-wrap {
    background-size: cover;
    background-position: 50%;
    position: relative;
    padding-top: 100%;
	}
.portfolio-wrapper {
    position: relative;
    overflow: hidden;
	}
.portfolio-wrapper .portfolio-img-wrap {
    -webkit-transition: all .3s cubic-bezier(.3,.1,.58,1);
    transition: all .3s cubic-bezier(.3,.1,.58,1);
	}
.portfolio-caption {
    -webkit-transform-origin: left bottom 0;
    transform-origin: left bottom 0;
    -webkit-transition: all .3s cubic-bezier(.3,.1,.58,1);
    transition: all .3s cubic-bezier(.3,.1,.58,1);
    vertical-align: bottom;
    padding: 20px 30px;
    opacity: 0;
    bottom: 0;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /*display: none;*/;
	}
.portfolio-subtitle,
.portfolio-title {
    letter-spacing: .6px;
    color: #fff;
    -webkit-transform: translate(-100%,0);
    transform: translate(-100%,0);
    -webkit-transform-style: preserve-3d!important;
	}
.comment-reply,
.post-tags a,
.tagcloud>a {
    letter-spacing: 1px;
    text-transform: uppercase;
	}
.portfolio-title {
    font-size: 15px;
    margin: 0;
    -webkit-transition: all .3s cubic-bezier(.3,.1,.58,1);
    transition: all .3s cubic-bezier(.3,.1,.58,1);
	}
.portfolio-title {
    font-size: 2rem;
    margin: 0;
    -webkit-transition: all .3s cubic-bezier(.3,.1,.58,1);
    transition: all .3s cubic-bezier(.3,.1,.58,1);
	}
.portfolio-subtitle {
    font-size: 13px;
    display: block;
    opacity: .5;
    -webkit-transition: all .6s cubic-bezier(.3,.1,.58,1);
    transition: all .6s cubic-bezier(.3,.1,.58,1);
	}
.portfolio-overlay {
    /*background: rgba(34,34,34,.85);*/
    background: rgba(192,29,48,0.8);
    opacity: 0;
    left: 0;
    top: 0;
    height: 100%;
    padding: 0;
    margin: 0;
    -webkit-transition: all .3s cubic-bezier(.3,.1,.58,1);
    transition: all .3s cubic-bezier(.3,.1,.58,1);
	}
.portfolio-link {
    position: absolute;
    z-index: 3;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    border: none;
	}
	
.gallery-icon {
	font-size: 2rem;
	}

.portfolio-link:hover {
	border: none;
	}
.portfolio-item: hover .portfolio-img-wrap {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
	}
.portfolio-item:hover .portfolio-caption,
.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
	}
.portfolio-item:hover .portfolio-caption .portfolio-subtitle,
.portfolio-item:hover .portfolio-caption .portfolio-title {
    -webkit-transform: translate(0,0);
    transform: translate(0,0);
	}
.row-portfolio .grid-sizer,
.row-portfolio .portfolio-item {
    width: 33.333333%;
	}
.row-portfolio .grid-sizer.tall .portfolio-img-wrap,
.row-portfolio .portfolio-item.tall .portfolio-img-wrap {
    padding-top: 200%;
    padding-top: calc(200% + 20px);
	}
.row-portfolio .grid-sizer.large,
.row-portfolio .portfolio-item.large {
    width: 66.666666%;
	}
	
.row-portfolio .grid-sizer.wide,
.row-portfolio .portfolio-item.wide {
	/*padding-top: calc(200% + 20px);*/
	width: 66.666666%;
	}
.row-portfolio .grid-sizer.wide .portfolio-img-wrap,
.row-portfolio .portfolio-item.wide .portfolio-img-wrap {
    padding-top: 200%;
    padding-top: calc(50% - 10px);
	}
	
@media (max-width: 991px) {
    .row-portfolio .grid-sizer,
    .row-portfolio .grid-sizer.large,
    .row-portfolio .grid-sizer.wide,
    .row-portfolio .portfolio-item,
    .row-portfolio .portfolio-item.wide,
    .row-portfolio .portfolio-item.large {
        width: 50%
    	}
    .row-portfolio .grid-sizer.tall .portfolio-img-wrap,
    .row-portfolio .portfolio-item.tall .portfolio-img-wrap {
        padding-top: 200%;
        padding-top: calc(200% + 20px);
    	}
    .row-portfolio .grid-sizer.wide .portfolio-img-wrap,
	.row-portfolio .portfolio-item.wide .portfolio-img-wrap {
		aspect-ratio: 1 / 1;
		}
}
@media (max-width: 601px) {
    .row-portfolio .grid-sizer,
    .row-portfolio .grid-sizer.large,
    .row-portfolio .grid-sizer.wide,
	.row-portfolio .portfolio-item.wide,
	.row-portfolio .portfolio-item,
    .row-portfolio .portfolio-item.large {
        width: 100%;
    	}
}

.portrait {
	margin: 0 auto;
	max-height: 100%;
	}
.landscape {
	margin: 0 auto;
	max-width: 100%;
	}
	
/* Modal Version */
.gallery-modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	display: none;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	outline: 0;
	}
.gallery-modal h3,
.gallery-modal p,
.gallery-modal a {
	color: #fff;
	}
.gallery-modal h3 {
	font-weight: 300;
	margin-bottom: 0;
	}
.caption-more,
.caption-less {
	opacity: 0.8;
	margin: 10px 0 0;
	}
.caption-more:hover {
	opacity: 1;
	}
	
.modal-caption {
	padding: 0;
	}
.caption-body {
	}
.caption-body.is-open {
	height: auto;
	margin-top: 20px;
	visibility: visible;
	display: block !important;
	}
	
.caption-body p {
	font-weight: 300;
	}
	
.gallery-slider {
	height: 100%;
	}
.slide-holder {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	position: relative;
	}

.gallery-modal-bottom {
	position: absolute;
	top: 0;
	left:0;
	right:0;
	color:#fff;
	padding: 10px 0;
	background:rgba(0,0,0,0.8);
	z-index: 10;
	}

.modal-close {
	position: absolute;
	top: -10px;
	right: 5px;
	font-size: 50px;
	line-height: 1;
	margin: 0 0 0 auto;
	}
.modal-close .close,
.modal-close .close:hover {
	text-decoration: none;
	}

@media screen and (min-width: 768px) {
	.gallery-modal-bottom {
		position: absolute;
		top: auto;
		bottom: 0;
		padding: 15px 30px;
		}
		
	.modal-close {
		position: absolute;
		bottom: 10px;
		top: auto;
		right: 20px;
		font-size: 50px;
		line-height: 1;
		margin: 0 0 0 auto;
		}

	.caption-more,
	.caption-less {
		opacity: 0.8;
		margin: 0 0 0 2em;
		}
	.modal-caption {
		padding: 0 10em 0 3em;
		}
	.caption-body {
		column-count: 2;
		column-gap: 40px;
		orphans: 4;
  		column-fill: auto;
		}
	.caption-body.is-open {
		min-height: 140px;
		}
}


/* From Existing */
.hero,
.home .hero {
    position: relative;
    width: 100%;
    height: 500px;
    height: 80vh;
    min-height: 700px;
    background-color: rgb(var(--clr-neutral));
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    /*border-top: 6px solid var(--clr-fresh-dew);*/
    display: flex;
    justify-content: center;
    align-items: center;
}

.home .topnav {
	position: sticky;
	top: 0;
	}

/* hero removal 19 Feb 2025 */
.hero {
	min-height: 50px;
	height: 168px;
	background-position: top 50%;
	display: none;
	}
	
.hero-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	padding: 4em 3vw;
	padding: 4em 30px;
	margin-inline: auto;
	row-gap: 2em;
	max-width: var(--inner-wide);
	}
	
.hero-wrapper > div {
	flex: 1;
	}
.hero-text-wrapper {
	width: 100%;
	max-width: 1200px;
    padding: 0 0 0 4%;
    padding: 0;
    /*display: flex;
    flex-direction: column;
    justify-content: flex-start;*/
    transition: transform 1.3s;
	}
.hero-headline {
	/*color: var(--clr-jade) !important;*/
	color: var(--dark-blue);
	font-size: 2.2rem;
	font-size: clamp(2.2rem, 0.6601562502rem + 2.812496vw, 4rem) !important;
	font-weight: var(--display-bold);
	line-height: 1.1;
	text-align: left;
	padding-right: 1rem;
	margin-bottom: 1rem;
	max-width: 1000ch;
	}
.hero-image {
	padding-inline: 1%;
	}
.hero-image img {
	box-shadow: 0 10px 25px rgba(0,0,0,0.25);
	border-radius: 8px;
	}
	
@media screen and (min-width: 874px) {
	.hero-wrapper > div {
		flex: unset;
		}
	.hero-text-wrapper {
		width: 44%;
		}
	.hero-image {
		width: 56%;
		}
	.hero-wrapper {
		flex-direction: row;
		}
	.hero-headline {
		max-width: 18ch;
		}
}

.home-hero + .text-section-1 {
	margin-top: 6rem;
	}
/*	
.hero-text-wrapper h2,
.hero-text-wrapper h1,
.hero-text-wrapper .h1 {
    margin-bottom: 2rem;
    color: rgb(var(--clr-text-light));
    font-size: 3.5rem;
	font-size: 2rem;
	font-size: clamp(2rem, 0.5714285714285714rem + 5.714285714285714vw, 3.5rem);
    text-align: left;
    max-width: 18em;
    display: none;
}
.p--home .hero-text-wrapper h2,
.p--home .hero-text-wrapper h1,
.p--home .hero-text-wrapper .h1 {
    margin-bottom: 2rem;
    color: rgb(var(--clr-text-light));
    display: block;
}
*/


/* ----- [ News Index/Case Studies ] --------------- */
.news-grid {
	display: grid;
	/*grid-template-columns: repeat(2, 1fr);*/
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	/*grid-template-rows: repeat(5, 1fr);*/
	gap: 2em;
	margin-bottom: 2em;
	}
	
@media screen and (max-width: 400) {
	.news-grid {
		grid-template-columns: repeat(auto-fit, minmax(1fr));
		}
}

.media-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	justify-content: center;
	align-items: stretch;
	overflow: hidden;
	margin: 0;
	/* height: auto; */
	border-radius: 30px;
	background: var(--bg-medium);
	/*-webkit-mask-image: -webkit-radial-gradient(white, black);*/
	}
.media {
	position: relative;
	overflow: hidden;
	z-index: 1;
	}
.media img {
	transition: all 0.3s ease-in-out; 
	}
.media-card:hover img:not(.logo) {
	transform: scale(1.04);
	}
/*
.case-study-image { 
	object-fit: cover; 
	height: 100%; 
	width: 100%; 
	transition: all 0.3s ease-in-out; 
	}
*/
.media-text {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	color: var(--dark-blue);
	background: var(--bg-medium);
	padding: 1.2em 2em 1.5em;
	flex: 1;
	z-index: 2;
	}
.media-text .post-date {
	font-size: 1.1rem;
	font-weight: var(--body-bold);
	margin: 0 0 0.6em;
	}
.media-text h2 {
	font-weight: var(--display-bold);
	}
.media-text a {
	margin-top: auto;
	text-decoration: none;
	}

.media-card.dark,
.dark .media-text {
	background: var(--bg-dark);
	}
	
.media-text h3,
.media-text .h3 {
	font-size: 1.75rem;
	}
.media-text h4,
.media-text .h4 {
	font-size: 1.4rem;
	font-weight: 500;    
	}
.media-text.news-item .button-text {
	text-align: right;
	padding-right:1em;
	}
		
.bio-text h2,
.bio-overlay h2 {
	margin-bottom: 0;
	}
	
.bio-overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: 100%;
	padding: 40px 30px;
	/* background: rgba(22,62,100,0.9); */
	z-index: 9;
	opacity: 0;
	transition: all 0.3s ease-in-out;
	overflow: auto;
	}
.media-card:hover .bio-overlay {
	top: 0;
	opacity: 1;
	}
.bio-overlay h3 {
	color: #fff;
	}

@media screen and (min-width: 768px) {
	.case-study { 
		height: 100%; 
		border-radius: 40px; 
		width: calc(100% + 40px); 
		overflow: hidden; 
		z-index: 1; 
		position: relative; 
		}
	.case-study-image { 
		object-fit: cover; 
		height: 100%; 
		width: 100%; 
		transition: all 0.3s ease-in-out; 
		}
	.case-study-text { 
		width: calc(100% + 40px); 
		margin-left: -40px;
		margin-top: 0;
		display: flex; 
		flex-direction: column; 
		justify-content: center; 
		align-items: flex-start; 
		}
	.case-study-text h3 { 
		margin: 0 0 0.5em;
		}
}

.news-article,
.news-article .row {
	overflow: unset;
	}
	
.news-article .post-date {
	font-size: 1rem;
	font-weight: var(--body-bold);
	/* margin-bottom: 4em; */
	}
	
.news-article .cms-text p > img,
.news-article .cms-text li > img {
	border-radius: 40px;
	margin-bottom: 1.5em;
	}
	
.news-article .cms-text figure {
	margin-bottom: 2em;
	}
.news-article .cms-text figcaption {
	/* margin-left: 2em; */
	}
.news-article .cms-text figure > img {
	border-radius: 40px;
	margin-bottom: 1em;
	}

.MarkupPagerNav {
    text-align: center;
    margin-right:0
	}
.MarkupPagerNav li {
    display: inline-block;
    font-size: 1.5rem;
    line-height: 1;
    margin: 0 5px
	}
.MarkupPagerNav a {
	color: var(--white);
    display: block;
    padding: 6px 10px;
    font-weight: 700;
    border: 3px solid transparent;
    border-radius: 7px;
    text-decoration: none;
    background: #84ABB8;
    background: var(--bg-dark);
	}
.MarkupPagerNavOn a {
	color: var(--dark-blue);
    background: var(--accent);
    border: 3px solid transparent;
	}
.MarkupPagerNav a:hover,
.MarkupPagerNav a:focus {
	color: var(--dark-blue);
    border: 3px solid var(--accent);
    background: var(--accent);
	}
	
.MarkupPagerNav a {
	/*font-feature-settings: lnum;*/
    font-variant-numeric: lining-nums;
    }

.sibling-nav {
	display: flex;
	justify-content: flex-start;
	align-items: space-between;
	border-top: 5px solid var(--accent);
	margin: 2em 0;
	padding-top: 1em;
	}
.sibling-nav > div {
	flex: 1;
	font-size: 1.2rem;
	line-height: 1.6;
	}
.sibling-nav div:last-child {
	text-align: right;
	}
.sibling-nav a:not(.button) {
	text-decoration: none;
	border-bottom: none;
	box-shadow: none;
	}

.sidebox.sticky {
	position: sticky;
	top: 180px;
	background: var(--bg-light);
	border-radius: 25px;
	padding: 25px;
	}
	
/* ----- [ Home Rotator ] ------- */
/*.advert-wrapper {*/
.advert-card img {
	max-width: 360px;
	margin: 0 auto;
	}
.ad-rotator {
	padding: 1em 2em;
	text-align: center;
	}
.ad-rotator p {
	font-size: 3.2rem; /* clamp */
	line-height: 1;
	}
.ad-rotator strong {
	font-size: 4rem;
	}
.ad-rotator .slick-dots {
	width: calc(100% - 4em);
	}




