/**
	@Author:	Paul Strandoo
	@Date:		07 Nov 2023
	@Notes:		Bowen
		
	FONTS & COLORS
	-------------
	green: #9daf91; rgba(157,175,145,1);
	navy: #231e45;

	Font-family: 'Nunito Sans', sans-serif;
	available weight: 300, 300i, 500, 500i, 700, 800;
	inner max-width: 1070px;

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

:root {	
	--light-blue: #CAE6F9;
	--light-blue: #EDF8FE; /* xd */
	--med-blue: #0881B9;
	--dark-blue: #0A4E6E;
	--footer-blue: #0A4E6E;
	--accent: #F88805;
		
	--tint-50: rgba(157,175,145,0.5);
	--tint-30: rgba(157,175,145,0.3);
	--tint-20: rgba(157,175,145,0.2);
	--tint-10: rgba(157,175,145,0.1);
	
	--tint-1: #f6f0e7;
	
	--display-font: 'Nunito Sans', serif;
	--body-font: 'Nunito Sans', sans-serif;
	
	--display-light: 300;
	--display-med: 500;
	--display-bold: 700;
	--display-xbold: 800;
	--body-light: 300;
	--body-med:	500;
	--body-bold: 700;
	--body-xbold: 800;
	
	--grey0: #575656;
	--grey1: #ebebeb;
	--grey2: #9f9f9f;
	--grey3: #939393;
	--grey4: #f6f6f6;
	--white: #ffffff;
	--black: #000000;

	--top-margin: 143px;
	--top-margin: 122px;
	--top-margin-m: 142px;
	
    --inner: 1180px;
    --inner-narrow: 900px;
    --inner-large: 1400px;
    --inner-wide: 1600px;
    --inner-full: 100%;
    
    --section-default-padding: 70px 0;
    --section-mobile-padding: 40px 0;
	}

/**
 * Reset stylesheet to normalize styles across browsers
 */

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: var(--top-margin);
	}
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-med);
	font-style: normal;
	color: #212121;
	}
	
/* ----- [ Typography ] -------------------------*/
p,
li,
td {
	font-family: var(--body-font);
	font-weight: var(--body-light);
	font-size: 1.2rem;
	line-height: 1.5;
	margin: 0 0 1em;
	}
li {
	margin: 0;
	}

em {
	font-family: var(--body-font);
	font-style: italic;
	}
b,
strong {
	font-weight: var(--body-bold);
	}

a {
	color: #222;
	/*border-bottom: 2px solid var(--accent);*/
	}
a:hover {
	color: var(--accent); /* ginger */
	}

h1,h2,h3,h4 {
	font-family: var(--display-font);
	font-weight: var(--display-med);
	margin: 0 0 0.5em;
	color: #222;
	position: relative;
	/*-webkit-font-smoothing: antialiased;*/
	}
h1 {
	color: var(--med-blue);
	font-family: var(--display-font);
	font-weight: var(--display-bold);
	font-size: 2.8rem;
	font-size: clamp(2.2rem, 0.84rem + 4.8vw, 3rem);
	line-height: 1.2;
	margin: 0 0 0.4em;
	text-align: center;
	position: relative;
	color: #fff;
	text-align: left;
	max-width: 16em; 
	}

h2 {
	font-family: var(--display-font);
	font-weight: var(--display-med);
	color: var(--med-blue);
	color: var(--black);
	font-size: 2.4rem;
	line-height: 1;
	margin: 0 0 0.3em;
	margin: 0 0 0.8em;
	}
h3 {
	font-family: var(--display-font);
	font-weight: var(--display-med);
	color: var(--med-blue);
	font-size: 2rem;
	line-height: 1.1;
	margin: 0 0 0.5em;
	}
h4 {
	font-family: var(--body-font);
	font-weight: var(--body-bold);
	font-size: 1rem;
	line-height: 1.4em;
	color: #222;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	}
	
h4 + p {
	margin-top: 4px;
	}

img {
	display: block;
	}

/* Dark and Light */
.dark,
.dark p,
.dark li,
.dark h2,
.dark h3 {
	color: #fff !important;
	}
.dark p,
.dark li {
	font-weight: var(--body-med);
	}
.dark a {
	color: #fff;
	border-bottom: 1px solid #fff;
	}
.dark a:hover {
	color: #fff;
	}
.dark {
	background: #231e45;
	color: #fff;
	}
.dark h4 {
	color: #fff;
	}

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


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

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

@media only screen and (min-width: 750px) {
	.page-overlay {
		align-items: center;
		padding: 0;
		}
}
	
header,
section,
footer {
	background: #ffffff;
	width: 100%;
	margin: 0;
	position: relative;
	}
section {
	padding: var(--section-mobile-padding);
	overflow: hidden;
	}
.inner {
	position: relative;
	max-width: var(--inner);
	margin: 0 auto;
	padding: 0 20px;
	}
.inner-narrow {
	max-width: var(--inner-narrow);
	}
.inner-wide {
	max-width: var(--inner-wide);
	}
.inner-full {
	max-width: var(--inner-full);
	padding: 0;
	}

.basic-intro {
	padding: 70px 0 0;
	}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/* ----- [ Flex Container ] ----------- */
.flex-container {
	height: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	/*justify-content: space-between;
	align-items: center;*/
	padding: 0 20px;
	}
.flex-container > * {
	/*width: 100%;*/
	display: block;
	}

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

@media only screen and (min-width: 1110px) {
	.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 > * {
		/*border: 1px solid gold;*/
		}
	
	.f-top { align-items: flex-start; }
	.f-middle { align-items: center; }
	.f-bottom { align-items: flex-end; }
	.f-left { justify-content: flex-start; }
	.f-right { justify-content: flex-end; }
	.f-center { justify-content: center; }
}

/* ----- [ Page Header / Masthead ] -----------------*/
/* ----- [ Page Header / Masthead ] -----------------*/
.page-header {
	/* fixed or not */
	position: fixed;
	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 {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;

	width: 100%;
	max-width: var(--inner-wide);
	max-width: 1800px;
	margin: 0 auto;
	padding: 0 15px;
	}

.top-bar {
	background: #CAE6F9;
	}
.top-bar-inner {
	display: flex;
	max-width: var(--inner);
	margin: 0 auto;
	}
.top-bar-inner > div { background: #0881B9; height: 8px; flex: 1; }
.top-bar-inner > div:nth-child(2n) { background: #80BBE6; }
.top-bar-inner > div:nth-child(3n) { background: #30A7E0; }
	
.head-email {
	/*display: none;*/
	}

.logo-wrap {
	display: block;
	max-width: 160px;
	max-width: 216px; /* 05.2025 */
	margin: 10px 0;
	text-decoration: none;
	border: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	}
.small .logo-wrap {
	max-width: 180px;
	}
	
/* New for 2025 */
.header-right {
	display: flex;
	flex-direction: column-reverse;
	justify-content: space-between;
	align-items: flex-end;
	padding: 10px 0;
	}
	
.head-meta {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	padding: 5px 20px;
	}
.menu-item.head-phone {
	margin: 0;
	font-weight: var(--body-bold);
	display: none;
	}
.head-phone .menu-link {
	font-weight: var(--body-bold);
	display: none;
	}
	
.portal-link {
	margin: 0 1em 0 2em;
	margin: 0 0 0 1em;
	}
.portal-link a {
	margin: 0;
	}

@media screen and (min-width: 570px) {
	/*
	.page-header .inner:not(.top-bar) {
		padding: 0 30px;
		justify-content: flex-end;
		}
	*/
}

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

@media screen and (min-width: 1150px) {
	.page-header .inner {
		padding: 0 30px;
			align-items: stretch;
		}
	.head-meta {
		position: relative;
		display: flex;
		flex-direction: row;
		justify-content: flex-end;
		align-items: flex-end;
		padding: 5px 0;
		}
	.menu-item.head-phone,
	.head-phone .menu-link {
		display: block;
		}
}

@media screen and (min-width: 1070px) {
	.logo-wrap {
		display: block;
		/* max-width: 220px; */ /* 2023 logo */
		max-width: 160px; /* 2024 logo */
		max-width: 220px; /* 05.2025 */
		}
}

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

/* ----- [ Menu Trigger (Hamburger) ] ---- */
.menu-toggle {
	position: relative;
	margin: 8px 0 0 0;
	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-solid' 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 only screen and (min-width: 1150px) { /* 1020px */
	.head-meta {
		display: flex;
		}
	.menu-toggle {
		display: none;
		}
	.menu-toggle .menu-text {
		display: inline-block;
		line-height: 70px;
		}
	.menu-toggle .menu-icon {
		left: auto;
		right: 1.25em;
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
		}
}

/* ----- [ Navigation / Search ] ------ */
.main-navigation {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	height: 0;
	margin: 0;
	padding: 0 10% 10%;
	padding: 160px 10% 80px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	overflow: scroll;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	/*background: #fff;*/
	z-index: -1;
	opacity: 0;
	}
	
.main-navigation.is-open {
	height: 100vh;
	opacity: 1;
	}
	
.menu-item {
	margin: 0.5em 0;
	}
.menu-link {
	font-weight: var(--body-med);
	font-size: 1.6rem;
	line-height: 1.4;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	border-bottom: 4px solid transparent;
	}
.menu-link:hover,
.menu-link.on {
	text-decoration: none;
	border-bottom: 4px solid var(--accent);
	}
.menu-link:hover {
	color: var(--navyblue);
	text-decoration: none;
	border-bottom: 4px solid var(--accent);
	}
	
.dropnav .menu-item {
	display: block;
	font-size: 1.3rem;
	color: #fff;
	margin: 0.8em 0;
	border: none;
	}
.dropnav .menu-item:hover,
.dropnav .menu-item:active {
	color: var(--black);
	}
	
.dropnav li {
	padding-left: 1em;
	}

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

	.menu-item {
		position: relative;
		display: inline-block;
		margin: 0.25em 0.5em;
		white-space: nowrap;
		}

	.menu-link {
		font-size: 1rem;
		line-height: 1.2;
		font-weight: var(--body-med);
		color: var(--black);
		letter-spacing: 0.05em;
		padding: 0;
		background-color: transparent;
		}
		
	.menu-item:hover .dropnav {
		top: 130%;
		visibility: visible;
		opacity: 1;
		}

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

	.dropnav .menu-item {
		display: inline;
		font-family: var(--body-font);
		color: #222;
		font-size: 1.1rem;
		line-height: 1.2;
		font-weight: 400;
		margin: 0 0.2em 0.4em;
		padding: 0;
		text-transform: none;
		text-decoration: none;
		letter-spacing: 0.05em;
		background-color: transparent;
		border-bottom: 2px solid transparent;
		}
		
	.dropnav .menu-item:hover,
	.dropnav .menu-item.on {
		color: #000;
		text-decoration: none;
		border-bottom: 2px solid var(--accent);
		}		
		
	.submenu-toggle {
		position: relative;
		top: -1px;
		z-index: 2;
		display: inline-block;
		height: 12px;
		line-height: 12px;
		font-size: 12px;
		}

	.submenu-toggle:before {
		content: '\f107';
		font-family: 'FontAwesome', sans-serif;
		}
}
@media only screen and (min-width: 1520px) {
	.main-navigation {
		flex-basis: 34%;
		flex-wrap: nowrap;
		}
	.menu-item {
		margin: 0 1em;
		}
}

/* ----- [ Page Hero Images ] ----------------------- */	
.hero {
	color: #fff;
	margin: 0 auto;
	padding: 0;
	padding-top: 20px;
	background: #eee;
	height: auto;
	min-height: 300px;
	}

/* main pages */
.hero-full {
	max-height: 600px;
	height: 96vh;
	}


.hero-small .inner {
	min-height: 160px;
	padding-top: 15px;
	padding-bottom: 15px;
	}
.hero-small h1 {
	margin-bottom: 0;
	}
.hero-small hr {
	display: none;
	}

/* All heros */	
.hero .inner {
	position: relative;
	height: 100%;
	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: center;
	align-items: flex-start;
	}

.hero-overlay {
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	background: transparent;
	background: rgba(0, 0, 0, 0.3);
	}

.hero-text {
	width: 100%;
	}
.hero hr {
	border: none;
	background: #fff;
	height: 2px;
	margin: 0 0 2em;  
	}
	
.hero-text p,
.hero-text h2 {
	font-weight: var(--body-med);
	font-size: 1.3rem;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	max-width: 32em;
	margin-bottom: 0;
	}
	
.home-page .hero-text p {
	max-width: 48em; 
	}

.hero-text a {
	display: inline-block;
	margin-top: 20px;
	border-bottom: 3px solid transparent;
	text-decoration: none;
	}
.hero-text a:hover {
	color: var(--med-blue);
	text-decoration: underline;
	}

.hero {
	padding-top: 0;
	border-top: var(--top-margin) solid #fff;
	}

/* check if mobile */
@media (pointer: coarse) {
	.hero-section {
	 	background-attachment: initial !important;
		}
}
@media only screen and (min-width: 350px) {
	.hero-full {
		height: 82vh;
		}
}
@media only screen and (min-width: 540px) {
	.hero {
		padding-top: 0;
		border-top: var(--top-margin) solid #fff;
		}
}


.notice-section {
	background: var(--dark-blue);
}


/* ----- [ Basic Page Sections ] ------------------*/
.image-wrapper {
	margin-bottom: 2em;
	}
.bg-tint {
	background: var(--light-blue);
	}
	
.page-section.bg-tint + .bg-tint {
	padding-top: 0;
	}
	
.clear-row,
.clear-row-section .row {
	overflow: visible;
	}
.clear-row img,
.clear-row-section img {
	border-radius: 50px;
	box-shadow: 0 10px 20px rgba(0,0,0,0.2);
	}

.clear-row .text-col,
.clear-row-section .text-col {
	padding: 0 3% 0 7%;
	}
	
.rounded-row-section .row,
.rounded-row {
	border-radius: 50px;
	margin: 0 auto 50px;
	margin: 0 auto;
	/*background: var(--light-blue);*/
	background: #fff;
	box-shadow: 0 10px 20px rgba(0,0,0,0.2);
	}
	
.rounded-row-section .inner {
	max-width: calc(var(--inner) + 160px);
	}

.rounded-row + .rounded-row {
	margin-top: 50px;
	}
.rounded-row:last-child {
	margin-bottom: 50px;
	}
.rounded-row {
	background: var(--light-blue);
	}
.rounded-row.dark {
	background: var(--dark-blue);
	}
.rounded-row:nth-child(3n) {
	background: var(--med-blue);
	}

.rounded-row-section .text-col,
.rounded-row .text-col {
	padding: 7%;
	padding: 0;
	}
.rounded-row-section .text-wrapper,
.rounded-row .text-wrapper {
	padding: 7%;
	}

.rounded-row-section .image-col img,
.rounded-row .image-col img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	}
	
.rounded-row-section .image-wrapper {
	height: 100%;
	}
.no-image .text-wrapper {
	max-width: 50em;
	margin-left: auto;
	margin-right: auto;
	}
	
/* training module sections - similar to above */
.course-navigation { display: none; }

@media only screen and (min-width: 900px) {
	.course-navigation {
		position: absolute;
		width: 100%;
		max-width: calc(var(--inner) + 130px);
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: center;
		color: #fff;
		background: var(--med-blue);
		margin: 0 auto 20px;
		padding: 1.5em 3em;
		border-radius: 30px;
		top: auto;
		bottom: 0;
		left: 0;
		right: 0;
		}
	.course-navigation.is-fixed  {
		position: fixed;
		margin-top: calc(var(--top-margin) - 25px);
		top: 0;
		bottom: auto;
		left: 0;
		right: 0;
		z-index: 99;
		}
	.course-link {
		font-size: 1.4rem;
		font-weight: var(--body-bold);
		color: #fff;
		/* may need this...
		max-width: 7.5em;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
		*/
		}
}

.module-section {
	padding: 0;
	background: var(--light-blue);
	padding: var(--section-default-padding);
	overflow: hidden;
	}
.module-section .inner {
	max-width: calc(var(--inner) + 160px);
	}
.module-section .row {
	border-radius: 50px;
	margin: 0 auto 50px;
	margin: 0 auto;
	/*background: var(--light-blue);*/
	background: #fff;
	box-shadow: 0 10px 20px rgba(0,0,0,0.2);
	}
	
.module-section .image-wrapper {
	height: 100%;
	/*border-radius: 50px;
	box-shadow: 0 10px 20px rgba(0,0,0,0.2);*/
	}

.module-section .text-col {
	padding: 5% 5% 2em;
	}

.upcoming-courses {
	padding: 2em 7% 5%;
	margin-top: -2em;
	background: var(--light-blue);
	}
.bg-tint .upcoming-courses {
	background: #fff;
	}

.courses-table {
	width: 100%;
	margin: 0 0 1em;
	border-top: 1px solid var(--dark-blue);
	}
.courses-table td,
.courses-table th {
	border-bottom: 1px solid var(--dark-blue);
	padding: 8px 8px 8px 0;
	}
.courses-table th {
	font-size: 1.15rem;
	font-weight: var(--body-bold);
	}


/* call to action sections */
.call-to-action {
	position: relative;
	padding-top: 0;
	padding-bottom: 0;
	}
.call-to-action .row {
	border-radius: 50px;
	padding: 4% 7%;
	background: var(--med-blue);
	}
.call-to-action h2,
.call-to-action p {
	line-height: 1.15;
	margin: 0;
	position: relative;
	}
.call-to-action h2:after,
.page-intro h2:after {
	content: "";
	position: absolute;
	bottom: -0.4em;
	left: 0;
	height: 6px;
	width: 100px;
	background: var(--accent);
	}
.call-to-action .button-col {
	display: flex;
	justify-content: center;
	align-items: center;
	}
.call-to-action .button {
	font-size: 1.7rem;
	padding: 0.6em 1.2em;
	margin: 0;
	background: var(--dark-blue);
	text-decoration: none;
	border: 3px solid #fff;
	}
.bg-tint + .call-to-action:before {
	content: "";
	position: absolute;
	background: var(--light-blue);
	top: 0;
	left: 0;
	right: 0;
	height: 50%;
	z-index: 0;
	}


.quickedit {
	position: absolute;
	right: 0;
	top: 0;
	opacity: 0.4;
	}
	
.signup-form-section {
	background: var(--light-blue);
	}
.signup-form-section .outer-row {
	justify-content: flex-start;
	align-items: flex-start;
	}
.signup-form-section .text-col {
	margin-top: 3em;
	}

.signup-form-wrapper {
	border-radius: 50px;
	margin: 0 auto 50px;
	margin: 0 auto;
	padding: 5% 3%;
	background: #fff;
	background: var(--light-blue);
	box-shadow: 0 10px 20px rgba(0,0,0,0.2);
	}
.signup-form-wrapper {
	background: #fff;
	padding: 7% 7% 3%;
	}
	

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

/* ----- [ Downloads/Prospectus/CPD Files ] ------------------*/
.download {
	overflow: hidden;
	margin: 0 0 1em;
	}
.download-link {
	display: block;
	width: 150px;
	border: 1px solid #dedede;
	float: left;
	margin: 0 1em 1em 0;
	box-shadow: 0 3px 10px rgba(0,0,0,0.1);
	clear: both;
	}
.download-link:hover {
	border-color: var(--accent);
	}
.pdf-thumb {
	width: 100%;
	}
	
.cpd-files {
	margin-top: 80px;
	}
.cpd-files .row {
	border-top: 1px solid #ccc;
	padding-top: 15px;
	}
.cpd-files .download {
	border-bottom: 1px solid #ccc;
	}
.cpd-files .download-link {
	width: 100px;
	}


/* ----- [ Intructors/Trainers ] ------------------*/
.instructors-section {
	padding-top: 0;
	}
.instructor {
	margin: 30px auto;
	/*padding: 50px 30px;*/
	}
.instructor .inner {
	padding: 3%;
	border-radius: 50px;
	}
.instructor:nth-of-type(odd) .inner {
	background: var(--light-blue);
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
	}
.instructor h3 + h4 {
	margin-top: 0;
	margin-bottom: 2em;
	position: relative;
	}
.bio-image {
	max-width: 100%;
	border-radius: 50%;
	overflow: hidden;

	}
.instructor:nth-of-type(even) .bio-image {
	box-shadow: 0 10px 20px rgba(0,0,0,0.2);
	}

.bio-contact {
	font-size: 1.1rem;
	font-weight: var(--body-med);
	}
	
.read-more-link {
	font-size: 1rem;
	font-weight: var(--body-bold);
	}


/* ----- [ Training Sections ] ------------------*/
.duration-fee,
.rounded-row h3 {
	font-weight: var(--body-bold);
	text-transform: uppercase;
	font-size: 1.2rem; 
	}
h2 + .duration-fee,
.rounded-row h2 + h3 {
	margin-top: -1em;
	margin-bottom: 2em;
	position: relative;
	}
.rounded-row h2 + h3:after {
	content: "";
	position: absolute;
	bottom: -0.7em;
	left: 0;
	height: 6px;
	width: 80px;
	background: var(--accent);
	}

/* ----- [ FAQ ] ------------------------- */
/* ----- [ Accordion ] ------------ */
dl.accordion {
	margin: 0;
	padding: 25px 0 0;
	position: relative;
	border-top: 2px solid #ccc;
	overflow: hidden;
	}
dl.accordion > dt {
	list-style: none;
	}

dl.accordion > dt > a {
	color: #000;
	display: block;
	vertical-align: middle;
	position: relative;
	padding-right: 1.5em;
	padding-bottom: 15px;
	text-decoration: none;
	transition: all .2s ease; 
	border-bottom: 2px solid #ccc;
	}
	
.accordion h3 {
	/*font-size: 1.2rem;*/
	/*font-size: clamp(1.45rem, 5vw, 2rem);*/
	margin-bottom: 0;
	padding-right: 2em;
	}

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

dl.accordion > dt > a:before {
	content: '';
	position: absolute;
	height: 20px;
	width: 20px;
	/* background: url('../images/arrow.svg') center center no-repeat; */
	background: url('../images/arrow-right-2.png') center center no-repeat;
	background-size: cover;
	transform: rotate(90deg);
	transition: all .3s ease;
	right: 0;
	top: 5px;
	font-size: 2.2rem;
	font-size: 1.8rem;
	font-weight: 400;
	text-decoration: none;
	border: none;
	}

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

dl.accordion > dt > a.open:before {
	content: ''; /* true minus sign */
	background: url('../images/arrow-right-2.png') center center no-repeat;
	background-size: cover;
	transform: rotate(-90deg);
	}
dl.accordion dd {
	padding: 0;
	margin: 0 0 15px;
	max-height: 0;
	opacity: 0;
    transition: all .4s ease;
    overflow: hidden;
	}
dl.accordion dd.is-open {
	padding: 0 0 15px;
	max-height: 10000px;
	opacity: 1;
	border-bottom: 2px solid #ccc;
	}
	
dl.accordion p {
	/*font-size: clamp(1.2rem, 5vw, 1.4rem);
	line-height: 1.5;
	line-height: clamp(1.5, 5vw, 1.8);*/
	}
	
dd > h3 {
	font-size: 1.2rem;
	}
	
@media only screen and (min-width: 600px) {
	dl.accordion > dt > a {
		padding-bottom: 25px;
		}
	dl.accordion dd {
		margin: 0 0 25px;
		}
	.accordion a h3 {
		font-size: 1.6rem;
		margin-bottom: 0;
		}
	dl.accordion > dt > a:before {
		height: 30px;
		width: 30px;
		}
	dd > h3 {
		/*font-size: 1.7rem;*/
		}
	dl.accordion p {
		padding-right: 2em;
		}
}


/* ----- [ CPD Pages / Home News ] ------------------*/
.media-col {
	margin-bottom: 40px;
	}
.media-card {
	border-radius: 40px;
	margin: 0 auto;
	background: #fff;
	box-shadow: 0 10px 20px rgba(0,0,0,0.2);
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	}
.media-text {
	padding: 20px 30px 30px;
	padding: 20px 30px 0;
	}
.media-text h3 {
	font-size: 1.5rem;
	font-weight: var(--display-med);
	}
.media-text p {
	font-size: 1.1rem;
	line-height: 1.3;
	}
/*	
.media-text a {
	text-decoration: none;
	border: none;
	}
*/
.media-text + a {
	text-decoration: none;
	border: none;
	margin: 0 30px 30px;  
	margin-top: auto;
	}

.cpd-sidebar {
	border-radius: 30px;
	margin: 3em auto 50px;
	padding: 20px;
	background: #fff;
	box-shadow: 0 10px 20px rgba(0,0,0,0.2);
	overflow: hidden;
	}
	
/* ----- [ Catalogue/downloads PDF Pages ] -----------------*/



/* ----- [ Testimonials Section ] ------------------*/
/* Rich Plugins */
.testimonial-carousel {
	background: #f6f6f6;
	}
.rplg .rplg-box {
	background-color: #ffffff!important;
	}

.slick-testimonials {
	width: 100%;
	max-width: 35em;
	max-width: 55em;
	padding: 30px;
	background: rgba(255,255,255,0.8);
	}
.testimonial-wrapper {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex: 1 1 auto;
	color: #000;
	}
	
.testimonial {
	margin-left: 6em;
	position: relative;
	}
.testimonial:before {
	content: "“";
	position: absolute;
	top: 0;
	left: -0.35em;
	font-family: var(--display-font);
	font-size: 12rem;
	line-height: 0.7;
	color: var(--med-blue);
	opacity: 0.7;
	}

.testimonials .slick-slide {
	margin-right: 20px;
	}
.testimonials.slick-initialized .slick-slide {
	display: flex;
	}
	
.testimonials .slick-prev, 
.testimonials .slick-next {
	width: 40px;
	height: 40px;
	left: -50px;
	opacity: 0;
	transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
	}
.testimonials .slick-next {
	left: auto;
	right: -50px;
	}
	
.testimonials-section:hover .slick-prev, 
.testimonials-section:hover .slick-next {
	opacity: 1;
	}

.testimonials .slick-prev:before, 
.testimonials .slick-next:before {
	width: 40px;
	height: 40px;
	font-size: 40px;
	}
.testimonials .slick-dots {
	position: relative;
	bottom: -15px;
	}

.testimonial-wrapper strong,
.testimonial-wrapper span {
	font-weight: var(--body-light);
	/*padding-left: 0.5em;*/
	}
.testimonial-wrapper strong {
	font-weight: var(--body-med);
	}

.head-shot {
	display: none;
	}
.head-shot img {
	width: 100%;
	}
	
@media only screen and (min-width: 400px) {
	.head-shot {
		margin: 0 15px 0 0;
		border-radius: 50%;
		border: 5px solid #fff;
		overflow: hidden;
		flex: 0 0 100px;
		display: block;
		}
}
@media only screen and (min-width: 600px) {
	.head-shot {
		margin: 0 30px 0 0;
		border-radius: 50%;
		flex: 0 0 120px;
		}
}

	
/* ----- [ Hero Sections ] ------------------*/
.hero-section-text {
	color: #000;
	max-width: 44em;  
	padding: 30px 35px 25px;
	background: rgba(255,255,255,0.85);
	color: var(--med-blue);
	}
.hero-section-text p {
	font-size: 1.3rem;
	line-height: 1.6;
	font-weight: var(--body-med);
	}
.hero-section-text h2,
.hero-section-text h3 {
	font-weight: var(--display-bold);
	}
	
/* ----- [ Badges Section ] --------------- */
.sponsor-section {
	margin: 0;
	padding: 50px 0;
	background: #fff;
	}
.sponsor-section .inner {
	overflow: scroll;
	}
.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 0 20px;
	}
.sponsor-logo {
	margin: 0 10px;
	height: 70px;
	}
.sponsor-logo img {
	height: 100%;
	width: 180px;
	object-fit: scale-down;
	}
	
/* ----- [ Section: Gallery (Featherlight) ] --------  */
/* ----- [ Gallery Page & Sections / Isotope ] -----------------*/
.recent-projects-section {
	/* background: #f6f6f6; */
	padding: 120px 0 50px;
	overflow: hidden;
	}
	
.recent-projects-section h2 {
	margin-bottom: 0.5em;
	}
	
.recent-projects-section .inner,
.recent-projects-section .slick-list {
	overflow: visible;
	}

.recent-projects-section .slick-slide {
	margin-right: 20px;
	}

.view-larger {
	position: absolute;
	bottom: 20px;
	left: -100%;
	background: #fff;
	padding: 20px;
	}

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

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


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

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

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

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


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



/* ----- [ Pages: About Us and Services ] -----------------*/
/* ----- [ Portfolio Section ] ------------------*/
.section-portfolio {
	scroll-margin-top: 120px;
	}

/* the other one */
.gallery-item {
	display: block;
	margin-bottom: 30px;
	overflow: hidden;
	text-decoration: none;
	border-bottom: none;
	}
.gallery-item:hover {
	color: #222;
	}
.gallery-image-wrapper {
	position: relative;
	overflow: hidden;
	margin-bottom: 0.5em;
	}

.gallery-img {
	box-shadow: 0 3px 10px rgba(0,0,0,0.1);
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
	}
.gallery-item:hover .gallery-img {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
	}

.product-button {
	margin-bottom: 0;
	}

.product-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0,0,0,0.5);
	background: rgba(255,255,255,0.7);
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
	}

.gallery-item:hover .product-overlay {
	opacity: 1;
	}

.product-price {
	font-weight: 400;
	font-size: 1.1rem;
	color: var(--grey3);
	}


/* ----- [ Call to Action Section ] --------------- */
.section-cta h3 {
	line-height: 2;
	margin-bottom: 0;
	}
.section-cta .button-col {
	display: flex;
	justify-content: center;
	align-items: center;
	}
.section-cta .button {
	font-size: 1.4rem;
	margin: 0 1em;
	}


/* ----- [ Basic Pages ] --------------------------- */
.page-intro {
	max-width: 50em;
	margin-bottom: 2em;
	}

.intro-section .inner {
	max-width: 1100px;
	}
.intro-text h2 {
	font-size: 2.4rem;
	line-height: 1.4;
	color: var(--dark-blue);
	text-align: right;
	}
.intro-text p {
	font-family: var(--body-font);
	font-weight: var(--body-light);
	font-size: 1.2rem;
	line-height: 1.4;
	position: relative;
	}
	
.intro-text p:first-child {
	margin-top: 0.45em;
	}
/*.intro-text p:last-child:after,*/
.accent-rule-below:after {
	content: "";
	position: absolute;
	bottom: -1em;
	left: 0;
	height: 6px;
	width: 100px;
	background: var(--accent);
	}

.single-centered {
	max-width: 52em;
	margin: 0 auto;
	}

.body-column {
	padding: 30px;
	margin: 0 -20px;
	max-width: 40em;
	background: var(--tint-1);
	}
.body-column h2 {
	margin: 0 0 0.6em;
	}
.body-column p,
.body-column li {
	font-size: 1.2rem;
	line-height: 1.5;
	}
	
.two-columns {
	padding-top: 20px;
	padding-bottom: 10px;
	border: 20px solid var(--tint-1);
	background: var(--tint-1);
	}
	
@media only screen and (min-width: 600px) {
	.intro-text p {
		font-size: 1.6rem;
		}
	.body-column {
		padding: 40px;
		margin: 0 0 0 5%;
		max-width: 40em;
		background: var(--tint-1);
		}
}

/* ----- [ Success Page ] --------------------------- */
.customer-info {
	width: 100%;
	margin: 0 0 30px;
	border-top: 1px solid #ccc;
	/*table-layout: fixed;*/
	}
.customer-info td {
	font-size: 1.1rem;
	padding: 5px;
	border-bottom: 1px solid #ccc;
	}
.customer-info .first {
	font-size: 1rem;
	font-weight: var(--body-bold);
	padding: 5px;
	border-bottom: 1px solid #ccc;
	}

/* ----- [ About Us ] --------------------------- */
.about-body {
	background: #faf8f5;
	padding: 80px auto;
	}
	
.person-wrapper {
	margin: 0 0 3em;
	}

.person-wrapper h3 {
	font-family: var(--body-font);
	font-weight: var(--body-bold);
	color: var(--black);
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0 0 2em;
	}
	
.person-pic-wrapper {
	margin: 0 0 2em;
	}
	
.person-bio {
	margin: 0 0 1em 0;
	}

@media only screen and (min-width: 600px) {
	.person-wrapper {
		margin-left: 25%;
		margin: 0 0 3em 25%;
		}
	.person-bio {
		margin: 0 4em 1em 0;
		}
}

@media only screen and (min-width: 770px) {
	.about-body .col:nth-of-type(even) {
		padding-top: 100px;
		}
	.person-wrapper {
		margin-left: 25%;
		margin: 0 0 0 25%;
		}

	.about-body .col:nth-of-type(3n) .person-wrapper,
	.about-body .col:nth-of-type(4n) .person-wrapper {
		margin-right: 25%;
		margin-left: auto;
		}
}


.programme-row {
	padding-top: 2em;
	padding-bottom: 2em;
	}
	
.programme-row .media {
	border-radius: 0 50px 50px 0;
	overflow: hidden;
	}
/*
.programme-row .media a {
	display: block;
	border: 2px solid transparent;
	}
.programme-row .media a:hover {	
	border: 2px solid var(--accent);
	}
*/

.news-page .insta-feed {
	background: var(--light-blue);
	}
	
	
.sibling-nav {
	display: flex;
	justify-content: space-between;
	border-top: 5px solid var(--greentint);
	margin-top: 3em;
	padding-top: 1em;
	}
	
.archive-list {
	margin: 0 0 0.5em;
	padding-bottom: 0.5em;
	/* border-bottom: 1px solid #ccc; */
	}
.archive-list a:hover {
	color: var(--lightgreen1);
	color: inherit;
	text-decoration: none;
	border-bottom: 2px solid var(--lightgreen1);
	}
	
.sibling-nav a {
	font-size: 1.1rem;
	}
.sibling-nav div:last-child {
	text-align: right;
	}
	

/* ----- [ PW Pager Nav: Search Results ] --------  */
.MarkupPagerNav {
	text-align: center;
	padding: 10px 0;
	}
.MarkupPagerNav li {
	display: inline-block;
	line-height: 1;
	margin: 0 0.5em 0 0;
	}
.MarkupPagerNav a {
	display: block;
	text-align: center;
	border-bottom: 2px solid #fff;
	padding: 6px 8px;

	/*font-weight: bold;*/
	/*border-radius: 18px;*/
	}

.MarkupPagerNavPrevious a,
.MarkupPagerNavNext a {
	width: auto;
	}

.MarkupPagerNav a:hover,
.MarkupPagerNavOn a {
	border-bottom: 2px solid var(--accent);
	}


/* ----- [ Contact Page ] -------- */
/* ----- [ Include: Map/Contact Form ] -----------------*/
.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;
	}




.jotform-wrapper {
	font-family: var(--body-font);
	font-size: 1.2rem;
	box-shadow: none;
	padding: 15px;
	padding: 15px 0;
	margin: 0;
	margin-top: 2em;
	/* max-width: 690px; */
	width: 100%;
	/*border: 6px solid #eeeeee;*/
	border-top: 6px solid #eeeeee;
	/*border-radius: 15px;*/
	}
	
@media only screen and (min-width: 600px) {
	.jotform-wrapper {
		margin: 0;
		padding: 20px 20px;
		border: 6px solid #eeeeee;
		border-radius: 15px;
		}
}


/* ----- [ Big Quote ] -------- */
.big-quote-section {
	background: url('../images/big-quote-bg-1.jpg') bottom left no-repeat;
	background-size: cover;
	padding: 120px 20px 140px;
	}
.big-quote {
	max-width: 42em;
	}
.big-quote p {
	font-family: var(--display-font);
	font-size: 2.3rem;
	line-height: 1.15;
	color: var(--med-blue);
	color: var(--black);
	margin: 0 0 0.5em;
	position: relative;
	}
.big-quote p:first-child:before {
	content: "“";
	font-size: 2.6em;
	color: #949494;
	display: inline-block;
	position: absolute;
	top: -0.25em;
	left: -0.35em;
	}

.big-quote p + p {
	font-family: var(--body-font);
	font-size: 1.5rem;
	font-weight: var(--body-med);
	color: var(--black);
	margin: 0;
	}

@media only screen and (min-width: 600px) {
	.big-quote p {
		font-size: 3.5rem;
		}
}


/* ----- [ Contact Form ]----------------------- */
input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
textarea,
select {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	}
input[type=submit],
input.button,
.page-footer input[type=submit],
.page-footer input.button
 {
    -webkit-appearance: none;
	}

input,
select,
textarea,
.page-footer input,
.page-footer select,
.page-footer textarea {
    font-size: 1rem;
    width: 100%;
    padding: 8px 10px;
    margin: 0 0 10px;
	color: #333;
	background: #fff;
	background: rgba(255,255,255,0.6);
    border: 1px solid #ccc;
    border-radius: 0;
    }

input:focus, 
textarea:focus {
	background: #fff;
	}
	
.form-group {
	border: 1px solid #ccc;
	padding: 10px;
	margin: 10px 0 20px;
	}

.form-input {
	margin: 0 0 1em;
	}
.form-input li {
	margin: 0 0 0.5em;
	}
.form-input label {
	font-size: 1rem;
	}
.form-input label:not(.check-control) {
	font-size: 0.9rem;
	color: var(--grey0);
	font-weight: var(--body-bold);
	}
.form-input select {
	padding: 10px 10px;
	}
	
.check-control a {
	border-bottom: 1px solid var(--accent);
	/*font-weight: bold;*/
	}


/* ----- [ SCF Contact Page ] --------------- */
.form__item {
	margin-bottom: 5px;
	}
.form__item label {
	display: inline-block;
	font-size: 0.9em;
	margin: 0 0 4px;
	}
	
.form__item input,
.form__item textarea,
.form__item select {
	border: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #f6f6f6;
	padding: 10px;
	border: 1px  solid #ccc;
	border-radius: 3px;
	font-size: 14px;
	}

.field__header--hidden,
.form__item--scf-website {
	display: none !important;
	}

.form__item--c_contact_consent,
.form__item--c_terms_consent {
	line-height: 1.1em;
	margin-bottom: 0.5em;
	}
	
.form__item--c_terms_consent .FieldtypeCheckbox:after {
	content: "";
	position: absolute;
	right: -0.5em;
	top: -0.25em;
	}
	
.form__item--submit {
	text-align: left;
	}
.form__item--submit button:hover {
	color: var(--white);
	background: #222;
	}

/* checkbox & radios */
.InputfieldRadiosFloated li {
	display: inline-block;
	margin: 0 2em 10px 0;
	}

input[type=checkbox],
input[type=radio] {
    height: 18px;
    width: 18px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    border: 1px solid #ccc;
    position: relative;
	outline: none;
    background: #f6f6f6;
    vertical-align: middle;
    padding: 10px;
    margin: -2px 10px 0 0;
    -webkit-transition: 0.15s;
    cursor: pointer;
	}
input[type=radio] {
    height: 16px;
    width: 16px;
	border-radius: 50%;
	}

input[type=checkbox]:hover,
input[type=radio]:hover {
    border: 1px solid #ccc;
    background: #ccc;
	}

input[type=checkbox]:before, 
input[type=checkbox]:checked:before {
    content: '';
    position: absolute;
    top: 0;
    left: 6px;
    width: 6px;
    height: 12px;
    border-right: 3px solid #000;
    border-bottom: 3px solid #000;
    transform: rotate(45deg);
    opacity: 0;
	}
input[type=radio]:before, 
input[type=radio]:checked:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #000;
    opacity: 0;
	}

input[type=checkbox]:checked:before,
input[type=radio]:checked:before {
    opacity: 1;
	}
	
.form__item--c_height {
	float: left;
	}
.form__item--c_width {
	float: right;
	}
	
.form__item--c_source label {
	display: none;
	}
.field__description {
	font-size: 0.9em;
	margin: 0 0 4px;
	}
	
.form__item--installation_type,
.form__item--installation_location,
.form__item--installation_position {
	border: 1px solid #ccc;
	padding: 10px 10px 0;
	margin-bottom: 10px
	}
	
.required:after {
	content: "*";
	font-size: inherit;
	font-weight: var(--body-med);
	}
	
/*
.form-required label.required:after {
	color: #f00;
	}
*/
.form-required input.required:placeholder-shown,
.form-required textarea.required:placeholder-shown,
.form-required .required input[type=checkbox]:not(:checked){
	border-color: #f00;
	}
	
/* errors */
.field--error--message {
	float: right;
	color: #f36617;
	font-weight: 400;
	font-size: 0.8em;
	margin: 0;
	}
.form__item--c_terms_consent .field--error--message {
	float: none;
	}
	
.form--error--message,
.contact-message {
	text-align: center;
	font-size: 0.95em;
	font-weight: 400;
	color: #fff;
	background: #f36617;
	padding: 15px;
	margin: 5px 0 20px;
	border-radius: 5px;
	width: auto;
	}

.form--success--message,
.contact-message.success {
	color: #fff;
	background: #000000;
	}

/* ----- [ Buttons ] --------------------------- */
button,
.button,
.submit-button,
.page-footer .submit-button {
	font-family: var(--body-font);
	display: inline-block;
	padding: 12px 18px;
	color: #fff;
	background: var(--med-blue);
	cursor: pointer;
	width: 100%;
	opacity: 1;
	font-size: 1rem;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 10px;
	border-radius: 6px;
	vertical-align: middle;
	appearance: none;
	border: none;
	text-align: center;
	text-decoration: none;
	border: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	-webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
	}
button:hover,
.button:hover,
.submit-button:hover {
	color: #fff;
	background: var(--accent);
	text-decoration: none;
	}

.dark .button {
	border: 3px solid #fff;
	}

.button-small {
	font-size: 1rem;
	padding: 0.7em 1em;
	margin: 0;
	background: var(--med-blue);
	text-decoration: none;
	border: 3px solid #fff;
	}
	
.button-xsmall {
	font-size: 0.85rem;
	padding: 0.5em 1em;
	border-radius: 3px;
	}

.button-large {
	font-size: 1.4rem;
	padding: 0.4em 1.2em;
	margin: 0;
	background: var(--dark-blue);
	text-decoration: none;
	border: 3px solid #fff;
	}
.button-xlarge {
	font-size: 1.7rem;
	padding: 0.6em 1.2em;
	margin: 0;
	background: var(--dark-blue);
	text-decoration: none;
	border: 3px solid #fff;
	}

.button.outline {
	background: none;
	color: #d64236;
	}
	
p > .button {
	margin-bottom: -1em;
	}
	
@media screen and (min-width: 600px) { 
	button,
	.button,
	.submit-button {
		width: auto;
		}
}


/* ----- [ Instagram Feed ] --------------- */
#instafeed {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
	}
.instagram-feed {
	padding: 60px 0 0;
	/*background: rgba(77,78,21,0.05);*/
	overflow: hidden;
	}
.instagram-feed .col {
	position: relative;
	height: 0;
	padding: 0;
	padding-top: 33.333% !important;
	width: 33.333% !important;
	padding-top: 32% !important;
	width: 32% !important;
	overflow: hidden;
	margin-bottom: 1.666%;
	flex: initial !important;
	}

.insta-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	}
.insta-link,
.insta-link:hover {
	text-decoration: none;
	border: none;
	}

.insta-link img {
	min-height: 100%;
	min-width: 100%;
	max-width: 100%;
	object-fit: cover;
	}

.instagram-feed a {
	border: none;
	}


@media only screen and (min-width: 600px) {
	.instagram-feed {
		display: block;
	}
	.instagram-feed .col {
		padding-top: 33.333% !important;
		width: 33.333% !important;
		padding-top: 32% !important;
		width: 32% !important;
	}
}

@media only screen and (min-width: 760px) {
	.instagram-feed {
		display: block;
	}
	.instagram-feed .col {
		padding-top: 16.666% !important;
		width: 16.666% !important;
		padding-top: 15.5% !important;
		padding-top: 19.37% !important;
		width: 15.5% !important;
	}
}


/* ----- [ Footer ] ---------------------------- */
.page-footer {
	color: #fff;
	padding: 60px 10px 0;   
	width: 100%;
	background: var(--footer-blue);
	background: url('../images/back-massage-b.jpg') 50% 50% no-repeat;
	background-size: cover;
	overflow: hidden;
	}
.page-footer:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,150,206,0.4);
	background: #0A4E6E;
	opacity: 0.8;
	}
	
.footer-logo {
	max-width: 280px;
	margin: 2em auto 2em;   
	}
	
.page-footer .inner {
	padding: 0 20px 1px;
	max-width: var(--inner-wide);
	}
.page-footer .row {
	justify-content: flex-start;
	align-items: flex-start;
	align-items: center;
	}
	
.mailing-list fieldset {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: space-between;
	margin-top: 1em;
	}
.page-footer ::placeholder {
	color: #fff !important;
	font-size: 1.2rem;
	font-weight: var(--body-med);
	}
	
.page-footer .submit-button {
	width: auto;
	}
	
.page-footer p,
.page-footer li {
	color: #fff;
	font-size: 1.2rem;
	line-height: 1.6;
	font-weight: var(--body-med);
	margin: 0 0 0.5em;
	text-align: center;
	}
.page-footer p:last-child {
	margin: 0 0 1em;
	}
.page-footer li {
	margin: 0;
	}


.page-footer a {
	color: #fff;
	font-weight: var(--body-light);
	border-bottom: none;
	}
.page-footer a:hover {
	color: #fff;
	border-bottom: 1px solid #fff;
	}
.page-footer a.on {
	font-weight: var(--body-bold);
	}

.footer-meta {
	margin-bottom: 20px;
	}

.footer-meta.navigation { order: 3; }
.footer-meta.mailing-list { order: 1; }
.footer-meta.contact-info { order: 2; }

@media screen and (min-width: 600px) { 
	.page-footer .row {
		align-items: flex-start;
		}
	.footer-meta.navigation { order: 1; }
	.footer-meta.mailing-list { order: 2; }
	.footer-meta.contact-info { order: 3; }

	.footer-logo {
		/* max-width: 240px !important; */ /* 2023 logo */
		max-width: 185px !important; /* 2024 logo */
		margin: 0 0 25px;   
		}
	
	.page-footer .contact-info {
		margin-left: auto;
		}
	.page-footer .contact-info > div {
		margin: 0 0 0 auto;
		max-width: 300px;
		}
}

.footer-nav {
	margin-top: 20px !important;
	}

.copyright-credits {
	margin: 0 !important;
	padding: 5px 20px;
	font-size: 0.85em;
	text-align: center !important;
	color: #fff;
	background: #000;
	z-index: 2;
	}
.copyright-credits a {
	color: #fff;
	border-bottom: 1px dotted #fff;
	}
.copyright-credits a:hover {
	color: #fff;
	border-bottom: 1px solid #fff;
	}
	
.desktop-logo {
	display: none;
	}
.mobile-logo {
	display: block;
	margin: 50px auto 30px;
	width: 200px;
	}
	
@media screen and (min-width: 600px) { 
	.footer-branding {
		max-width: 340px;
		max-height: 320px;
		margin-right: auto;
		}
	.desktop-logo {
		display: block;
		width: 100%;
		margin: 10px auto 30px;
		margin: -50px auto -30px -10px
		}
	.mobile-logo {
		display: none;
		}
	.footer-meta {
		margin-bottom: 0;
		}
	.page-footer p,
	.page-footer li {
		color: #fff;
		font-size: 1rem;
		line-height: 1.6;
		font-weight: var(--body-light);
		margin: 0 0 0.5em;
		text-align: left;
		}
}

/* ----- [ Social Media Icons ] ---------------- */
/* ----- [ SVG Social Media Icons ] --------------- */
.head-social {
	display: none;
	margin: 0 0 0 0.5em;
	}
.head-social .social-icon {
	line-height: 1;
	margin: 0 0 0 0.5em;
	}
.head-social .social-icon a,
.head-social .social-icon a:visited {
	display: block;
    color: var(--med-blue);
    opacity: 1;
    border: none;
    height: 28px;
    width: 28px;
	}
.head-social .social-icon svg {
    fill: currentColor;
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
	}
	
@media only screen and (min-width: 1600px) {
	.head-social {
		display: flex;
		}
}


.social-icons-wrapper {
	text-align: center;
	margin: 0.2em auto 30px;
	}
.social-icons-wrapper .social-icon {
    color: #fff;
    display: inline-block;
    height: 20px;
	width: 20px;
    margin-right: 12px;
	}

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

.social-icons-wrapper .social-icon a,
.social-icons-wrapper .social-icon a:visited {
    color: #fff;
    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;
	}
	
.top-link {
	display: none;
    position: fixed;
    bottom: 50px;
    right: 4%;
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    -moz-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
    z-index: 9;
	}
.top-link a {
	color: var(--white);
	font-size: 32px;
	line-height: 38px;
    display: block;
    height: 40px;
    width: 40px;
    outline: medium none;
    position: relative;
    z-index: 0;
    text-align: center;
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
	border: 2px solid var(--white);
	border-radius: 50%;
    }
.top-link a:hover {
	border: 2px solid var(--med-blue);
	}
.top-link.show {
	opacity: 1;
	}
	
@media screen and (min-width: 600px) { 
	.social-icons-wrapper {
		text-align: left;
		}
	.top-link {
		display: block;
		}
}
	
/* ----- [ MailChimp Form ] ----------*/
/* styles in footer */

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

.cms-text a,
.contact-meta a {
	text-decoration: underline !important;
	}
.cms-text .button {
	text-decoration: none !important;
	}

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

.cms-text ol > li {
	list-style-type: decimal;
	list-style-position: outside;
	margin: 0 0 0.5em 1.5em;
	}
/*
.cms-text ol li li li {
	list-style-type: lower-alpha;
	}
*/
.cms-text h2 {
	margin-bottom: 0.6em;
	}
.cms-text p + h2,
.cms-text ul + h2,
.cms-text ol + h2 {
	margin-top: 1em;
	}
.cms-text p + h3,
.cms-text ul + h3,
.cms-text ol + h3 {
	margin-top: 1em;
	}
	
/* ----- [ Misc. / Utility Styles ] ------------ */
.vpad-100 {
	padding-top: 100px;
	padding-bottom: 100px;
	}
.vpad-70 {
	padding-top: 70px;
	padding-bottom: 70px;
	}
.vpad-30 {
	padding-top: 30px;
	padding-bottom: 30px;
	}
.vpad-0 {
	padding-top: 0;
	padding-bottom: 0;
	}



.overflow-visible {
	overflow: visible !important;
	}
.overflow-hidden {
	overflow: hidden !important;
	}
.cover-image {
	object-fit: cover;
	height: 100%;
	width: 100%;

	}
.fit-image {
	max-width: 100%;
	}
	
img.right {
	float: right;
	}
img.inline {
	display: inline !important;
	}
.fright {
	float: right;
	}
.fleft {
	float: left;
	}
.text-left,
.text-left p,
.text-left li,
.text-left h2,
.text-left h3 {
	text-align: left;
	}
.text-right,
.text-right p,
.text-right li {
	text-align: right;
	}
.text-center {
	text-align: center;
	}

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

.align_left {
	float: left;
	margin: 5px 1em 1em 0;  
	}
.align_right {
	float: right;
	margin: 5px 0 1em 1em;
	}
.align_center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1em;
	}
	
.body-column .align_left {
	float: none;
	margin: 0 -20px 1em -20px;
	border: 10px solid #fff;
	width: calc(100% + 40px);
	max-width: calc(100% + 40px);
	}
.body-column .align_right {
	float: none;
	margin: 0 -20px 1em -20px;
	border: 10px solid #fff;
	width: calc(100% + 40px);
	max-width: calc(100% + 40px);
	}

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

@media screen and (min-width: 600px) { 
	.body-column .align_left {
		float: left;
		margin: 0 1em 1em -30%;
		border: 10px solid #fff;
		/*width: auto;
		max-width: 100%;*/
		}
	.body-column .align_right {
		float: right;
		margin: 0 -85% 1em 1em;
		border: 10px solid #fff;
		width: auto;
		max-width: 100%;
		}
}

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


/* PRINT STYLES */
@media print {
	/* If you're going to have a print stylesheet, now's the time */
	.page-header,
	.page-footer,
	.instagram-feed {
		display: none;
		}
	.hero {
		border-top: none;
		min-height: 200px;
		}
}

