/**
	@Author:	Paul Strandoo
	@Date:		4/2025
	@Notes:		Wool Towns
*/

@import url("font-awesome.min.css");
:root {
	--display-font: "Lustria", "Baskerville","Times New Roman", serif;
	--body-font: "Lato", "Helvetica Neue", Helvetica, Arial, serif;
	--display-med: 500;
	--display-bold: 700;
	--body-light: 300;
	--body-med: 500;
	--body-bold: 700;
	
	--accent: #ED2B2B; /* #ED2D29; FF0011 */
	--accent: #EDEBE3;
	
	--accent2: #C4DDDF;
	
	--logo-blue: #5DA8DC; /* XD Value */
	--logo-blue: #77a5e0; /* XD from Home */
	--logo-blue: #3DAAE1; /* XD from iMac */
	
	--logo-red: #ED2B2B;
	--logo-aqua: #52C5D7;
	--logo-orange: #F9A64A;
	--logo-purple: #8973B3;
	
	--new-blue: #283F4F;
	/* --accent-green: #00AA2F; */
	
	--light-blue: #EAF5FC; /* text background tint */
	--light-tan: #F4EFEC; /* text background tint */
	
	--grey-1: #F8F8F8;
	--grey-2: #F5F5F5;	/* rgb(245,245,245) */
	--grey-3: #F0F0F0;	/* rgb(240,240,240) */
	--grey-4: #E8E8E8;	/* rgb(232,232,232) */
	--grey-5: #E0E0E0;	/* rgb(224,224,224) */
	--grey-6: #808080;	/* rgb(128,128,128) */
	
	--grey: #cfcfcf;
	--white: #ffffff;	
	--black: #000000;
	--light-grey: #606060;
	
	--section-pad-small: 3em;
	--section-pad-med: 5em;
	--section-pad-large: 7em;
	
	--header-height: 220px;
	
    --inner: 1260px; /* 1320 */
    --inner-narrow: 960px;
    --inner-large: 1150px;
    --inner-wide: 1500px;
    --inner-very-wide: 1970px;
    --inner-full: 100%;
    
    /*--section-default-padding: 70px 0;
    --section-mobile-padding: 40px 0;*/
	}
/*
.suse-<uniquifier> {
  font-family: "SUSE", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
*/

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

* {
   -moz-box-sizing: border-box;
   -webkit-box-sizing: border-box;
	box-sizing: border-box;
	}

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

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

/* ----- [ Typography ] -------------------------*/
p,
li,
td {
	font-family: var(--body-font);
	font-weight: var(--body-light);
	font-style: normal;
	font-variation-settings: "wdth" 100;
	font-size: 1.3rem;
	line-height: 1.6em;
	margin: 0 0 1em;
	}
p strong,
li strong,
td strong {
	font-size: 1.25rem;
	}

ul {
	margin: 1em 0;
	}

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

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

a {
	color: #b4783a;
	color: var(--black);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	}

a:hover {
	color: inherit;
	/*text-decoration: underline;*/
	border-bottom: 1px solid var(--black);
	}
a:focus {
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
	}

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

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

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

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

figure {
	margin: 0;
	}
figcaption {
	font-size: 1.1rem;
	margin: 0.7em 0 1.2em;
	}
img {
	vertical-align: middle;
	}

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

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

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

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

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

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

.col {
	position: relative;
	flex: 1;
	padding: 0;
	max-width: 100%;
	}

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

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

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

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

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

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

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

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

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

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

/* image utilies */
.col > img {
	max-width: 100%;
	}

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

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


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

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

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

@media only screen and (min-width: 600px) { /* 1110px */
	/* Make this a Utility Class */
	.flex-container,
	.flex-row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		position: relative;
		justify-content: flex-start;
		align-items: stretch;
		/* padding: 0 20px; */
		}

	.f-top { align-items: flex-start; }
	.f-middle { align-items: center; }
	.f-bottom { align-items: flex-end; }
	.f-left { justify-content: flex-start!important; }
	.f-right { justify-content: flex-end!important; }
	.f-center { justify-content: center!important; }
	.f-between { justify-content: space-between!important; }
	.f-stretch { justify-content: stretch!important; }
	
	.gap-10 { column-gap: 10px; }
	.gap-20 { column-gap: 20px; }
	.gap-30 { column-gap: 30px; }
	
	.col-pad-small { padding: 3%; }
	.col-pad-med   { padding: 5%; }
	.col-pad-large { padding: 10%; }
}

/* ----- [ Page Header / Masthead ] -----------------*/
.page-header {
	/* fixed or not */
	/*position: sticky;*/
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 999;
	background: var(--white);
	background: #fff url('../images/forest-gradient-light.png') no-repeat right bottom;
	background-size: cover;
	/* box-shadow: 0 5px 10px rgba(0,0,0,0.08); */
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	}
	
.page-header.is-small {
	position: fixed;
	box-shadow: 0 5px 10px rgba(0,0,0,0.08);
	}
	
.page-header .inner {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: stretch;
	align-items: center;
	width: 100%;
	max-width: var(--inner-very-wide);
	margin: 0 auto;
	padding: 0 30px;
	overflow: visible;
	}

.logo-wrap {
	display: block;
	height: auto;
	max-width: 180px;
	margin: 20px 0 20px 0;
	text-decoration: none;
	border: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	}
.logo-wrap:hover {
	text-decoration: none;
	border-bottom: none;
	}
	

@media screen and (min-width: 920px) {
	.page-header {
		background: var(--white);
		background: #fff url('../images/forest-gradient-light.png') no-repeat 110% 10%;
		background-size: 60%;
		}
	.page-header .inner {
		padding: 0 30px;
		align-items: center;
		}
	.logo-wrap {
		max-width: 200px;
		}
	.is-small .logo-wrap {
		max-width: 160px;
		}
}

/* ----- [ Member Options ] ---- */
.member-options {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	display: none;
	}
.members-menu-icon {
	position: relative;
	width: 44px;
	height: 44px;
	margin-right: 10px;
	opacity: 0.8;
	}
.members-menu-icon:hover {
	opacity: 1;
	}
.members-dropdown {
	position: absolute;
	top: 100%;
	left: calc(-50% - 12px);
	white-space: nowrap;
	margin: 5px 0 0;
	padding: 10px 20px 15px;
	background: #fff;
	box-shadow: 0 7px 10px rgba(0,0,0,0.4);
	visibility: hidden;
	}
.members-dropdown:before {
	content: "";
	position: absolute;
	top: -20px;
	left: calc(50% - 10px);
	border: 10px solid transparent;
	border-bottom: 10px solid #fff;
	}
.members-menu-icon:hover .members-dropdown {
	visibility: visible;
	}
.members-dropdown li {
	font-size: 1rem;
	font-weight: 400;
	}
	
.welcome {
	position: absolute;
	right: 60px;
	left: auto;
	white-space: nowrap;
	font-weight: 400;
	}
	
@media screen and (min-width: 920px) {
	.member-options {
		display: flex;
		}
}

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

.menu-toggle .menu-icon {
	/* this span is the central line in the menu menu */
	display: inline-block;
	position: absolute;
	left: 50%;
	top: 50%;
	bottom: auto;
	right: auto;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	width: 26px;
	height: 2px;
	background-color: #000;
	/* these are the upper and lower lines in the menu menu */
	}
.menu-toggle .menu-icon::before, 
.menu-toggle .menu-icon:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: inherit;
	left: 0;
	}
.menu-toggle .menu-icon::before {
	bottom: 8px;
	}
.menu-toggle .menu-icon::after {
	top: 8px;
	}
.menu-toggle.is-clicked .menu-icon {
	background-color: rgba(0, 0, 0, 0);
	}
.menu-toggle.is-clicked .menu-icon::before, 
.menu-toggle.is-clicked .menu-icon::after {
	background-color: #000;
	}
.menu-toggle.is-clicked .menu-icon::before {
	bottom: 0;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	}
.menu-toggle.is-clicked .menu-icon::after {
	top: 0;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	}

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

@media screen and (min-width: 740px) {
	.menu-toggle {
		margin-right: 30px;
		}
}
	
@media only screen and (min-width: 920px) {
	.menu-toggle {
		display: none;
		}
	.menu-toggle .menu-text {
		display: inline-block;
		line-height: 70px;
		}
	.menu-toggle .menu-icon {
		left: auto;
		right: 1.25em;
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
		}
}

/* ----- [ Navigation / Search ] ------ */
.nav-wrapper {
	display: flex;
	flex-direction: column-reverse;
	}
.main-navigation {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	height: 0;
	margin: 0;
	padding: 200px 10% 100px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	overflow: hidden;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background: #fff;
	z-index: -1;
	opacity: 0;
	visibility: hidden;
	}
	
.main-navigation.is-open {
	min-height: 100vh;
	/*min-height: calc(100vh - 74px);
	top: 74px;*/
	opacity: 0.95;
	overflow: scroll;
	visibility: visible;
	}
.main-navigation ul {
	margin: 0 0.5em;
	}
	
.menu-item {
	margin: 0.5em 0;
	text-decoration: none;
	}

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

.menu-link:hover {
	color: inherit;
	text-decoration: none;
	}

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

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

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

	.menu-link {
		color: var(--light-grey);
		font-size: 0.95rem;
		line-height: 1.2;
		font-weight: var(--body-med);
		letter-spacing: 0.05em;
		padding: 0;
		text-transform: uppercase;
		background: transparent;
		border-bottom: 2px solid transparent;
		padding: 3px 0;
		margin: 0 1em;
		border-radius: 0;
		margin-bottom: 10px;
		}

	.menu-link:hover {
		/*color: #fff;
		background: var(--black);
		text-decoration: none;*/
		color: var(--black);
		border-bottom: 2px solid var(--black);
		}
	.menu-link.on {
		color: var(--black);
		background: none;
		text-decoration: none;
		border-bottom: 2px solid var(--black);
		}
		
	/* dropnav*/
	.dropnav {		
		display: block;
		position: absolute;
		width: 90vw;
		max-width: 1400px;
		top: 140%;
		left: auto;
		right: 5%;
		text-align: left;
		background: #fff;
		/* background: transparent; */
		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;
		border-radius: 0;
		-webkit-transform: none;
		-moz-transform: none;
		-ms-transform: translateX(0px);
		-o-transform: none;
		transform: none;
		-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
		-o-transition: all .3s ease;
		transition: all .3s ease;
		}

	.menu-item:hover .dropnav {
		/*top: 130%;*/
		visibility: visible;
		opacity: 1;
		}
		
	.nav-services {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		margin: 0;
		}
	.nav-services > li {
		display: block;
		text-align: left;
		margin: 0;
		padding: 0;
		flex: 1;
		}

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

	.level-2 {
		/*color: #fff;
		background: var(--logo-blue);*/
		}
	.menu-link-2 {
		display: block;
		color: var(--black);
		color: #fff;
		background: var(--logo-blue);
		font-weight: var(--display-bold);
		font-size: 1rem;
		line-height: 1;
		text-transform: uppercase;
		letter-spacing: 0.05em;
		padding: 10px;
		border-left: 2px solid #fff;
		border-right: 2px solid #fff;
		}
	.menu-link-2:hover {
		color: #fff;
		text-decoration: underline;
		/*text-decoration: none;*/
		filter: saturate(1.5);
		filter: darken(1.5);
		}

	.level-2 ul {
		display: block;
		margin: 0 4px 0.2em;
		}
		
	.level-3 {
		line-height: 1.2;
		padding: 0;
		border-bottom: 1px solid #ccc;
		}
	.menu-link-3 {
		display: block;
		color: var(--black);
		font-weight: var(--body-light);
		font-size: 1.1rem;
		padding: 10px;
		white-space: wrap;
		}
	.menu-link-3:hover {
		text-decoration: none;
		/*background: rgba(249, 165, 73, 0.2);*/
		}

	.submenu-toggle {
		position: relative;
		top: -1px;
		z-index: 2;
		display: inline-block;
		height: 12px;
		line-height: 12px;
		font-size: 12px;
		}

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

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

.featured-item {
	position:relative;
	flex: unset;
	height: 300px;
	overflow: hidden;
	transition: flex 0.8s ease;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	background-position: center;
	background-repeat: none;
	background-size: cover;
	background-size: 1000px;
	}
.featured-item:first-of-type {
	/*flex: 3.5;*/
	}

.f-item-content {
	position: relative;
	width: auto;
	margin: 5%;
	}

.f-item-content h3 {
	color: #fff;
	font-size: 1.8rem;
	font-weight: 400;
	text-transform: uppercase;
	margin: 0.5em 0;
	white-space: nowrap;
	}
.f-item-content p {
	color: #fff;
	font-size: 1.1rem;
	line-height: 1.3;
	font-weight: var(--body-med);
	}

.f-item-details {
	color: #fff;
	display: block;
	}
.f-item-details .row {
	display: none;
	}
.f-item-details .desktop-only {
	display: none;
	}
	
.hero-subtext {
	font-size: 1rem;
	font-weight: 400;
	display: -webkit-box;
	-webkit-line-clamp: 2;        /* Limit to 2 lines */
	-webkit-box-orient: vertical; /* Set box orientation to vertical */
	overflow: hidden;             /* Hide overflow content */
	text-overflow: ellipsis;      /* Show ellipsis when text overflows */
	}


@media only screen and (min-width: 970px) {
	.home-hero-section {
		flex-direction: row;
		height: 80vh;
		max-height: 840px;
		margin-top: 0;
		}

	.featured-item {
		border-top: none;
		flex: 1;
		height: 100%;
		}
	.featured-item:after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: #2a4854;
		background: linear-gradient(180deg, rgba(42, 72, 84, 0) 60%, rgba(48, 47, 32, 0.8) 100%);
		-moz-transition: all 0.5s ease-in-out;
		-ms-transition: all 0.5s ease-in-out;
		-webkit-transition: all 0.5s ease-in-out;
		transition: all 0.5s ease-in-out;
		}
	.featured-item:hover {
		flex: 3.5;
		}
	.featured-item:hover > :focus:not(:hover) {
		transform: scale(1.05);
		}
	.featured-item:hover:after {
		background: linear-gradient(180deg, rgba(42, 72, 84, 0) 10%, rgba(48, 47, 32, 0.8) 100%);
		}
		
	.f-item-content {
		position: absolute;
		top: 80%;
		left: 0;
		width: auto;
		max-width: 500px;
		margin: 30px;
		color: #fff;
		z-index: 10;
		-moz-transition: all 0.5s ease-in-out;
		-ms-transition: all 0.5s ease-in-out;
		-webkit-transition: all 0.5s ease-in-out;
		transition: all 0.5s ease-in-out;
		}
	.f-item-content p {
		color: #fff;
		font-size: 1.1rem;
		line-height: 1.3;
		font-weight: var(--body-med);
		}
	.featured-item:hover .f-item-content {
		left: 30px;
		top: 50%;
		top: calc(100% - 400px);
		}
		
	.f-item-details {
		display: block;
		color: #fff;
		opacity: 0;
		-moz-transition: all 0.5s ease-in-out;
		-ms-transition: all 0.5s ease-in-out;
		-webkit-transition: all 0.5s ease-in-out;
		transition: all 0.5s ease-in-out;
		}
	.f-item-details .row {
		display: flex;
		}
	.featured-item:hover .f-item-details {
		opacity: 1;
		}
		
	.f-item-details .mobile-only {
		display: none;
		}
	.f-item-details .desktop-only {
		display: inline-block;
		}
	
	.f-item-details img {
		margin: 0.5em 0 0.8em;
		box-shadow: 0 8px 20px rgba(0,0,0,0.5);
		border: 4px solid #fff;
		-moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		-webkit-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
		}
	.f-item-details a:hover img {
		transform: scale(1.03);
		}
	.f-item-details a:not('.button') {
		color: #ddd;
		}  
	.f-item-details a:not('.button'):hover {
		color: #fff;
		}
}

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

/* ----- [ Hero Images (not home) and Service Rows  ] ----------------- */
.hero-section,
.news-hero {
	height: auto;
	/*height: 200px;*/
	margin: 0;
	padding: 0;
	background: var(--light-tan);
	}
	
/* version 1 */
.hero {
	height: 435px;
	}
	
.small-hero {
	height: 250px;
	}
.small-hero .inner {
	padding-top: 30px;
	}
	
.hero .hero-text-wrapper {
	padding: 3em 5% 3em 3vw;
	max-width: 55em;
	}
.hero .hero-text-wrapper p {
	text-wrap: balance;
	}
	
.hero-overlay {				
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center; 
	align-items: center;
	background: transparent;
	background: rgba(0,0,0,0);
	background: rgb(0,0,0);
	background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 60%);
	}

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

.hero-img-col,
.service-img-col {
	position: relative;
	}
.hero-text-col,
.service-text-col {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	}
.hero-img-wrapper,
.service-img-wrapper {
	}
.hero-image,
.service-image {
	object-fit: cover;
	width: 100%;
	height: 100%;
	}
.hero-text-wrapper {
	color: #fff;
	padding: 10%;
	padding: 3em 5% 3em 10%;
	max-width: 44em;
	}
.hero p,
.page-hero p
/*.hero-section p*/ {
	color: var(--white);
	font-size: 1.8rem;
	line-height: 1.2;
	font-weight: var(--body-med);
	}
	
.service-text-wrapper,
.bg-tint .service-text-wrapper,
.row-reverse .service-text-wrapper {
	padding: 3em 30px;
	margin: 0;
	/* max-width: 44em; */
	}
	
/* Hero Section */
.hero-section {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: inherit;
	position: relative;
	overflow: hidden;
	text-align: center;
	padding: 7rem 5.25rem 5rem 5.25rem;
	padding: 6em 6vw 6em 6vw;
	}
.hero-section-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	flex-grow: 0;
	flex-shrink: 0;
	border-radius: 0;
	min-height: 300px;
	}
.hero-section-image img {
	object-fit: cover;
	object-position: center;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 0;
	}
.hero-section-text {
	padding: 1.5em 2em 0.7em;
	background: rgba(255,255,255,0.5);
	border-radius: 5px;
	z-index: 1;
	max-width: 66em;
	}

.hero-section-text.cms-text h3, 
.hero-section-text.cms-text h4, 
.hero-section-text.cms-text h5 {
	margin: 0 0 1em;
	margin: 0 0 0.5em;
	padding: 0;
	}
.hero-section.fixed-bg .hero-section-image {
	background-attachment: fixed;
	background-repeat: none;
	background-size: cover;
	}
.hero-section.fixed-bg .hero-section-image img {
	display: none;
	}

.hero-section-text blockquote {
	margin: 0;
	}
.hero-section-text blockquote p,
.hero-section-text blockquote h2,
.hero-section-text blockquote h3 {
	font-size: 3rem;
	font-family: var(--display-font);
	margin: 0;
	}

/* News Articles */
.news-page-template .hero-text-wrapper h1,
.news-page-template .hero-text-wrapper p,
.news-page-template .hero-text-wrapper h1 + p {
	padding: 0;
	background: none;
	margin-bottom: 0.5em;
	}
.news-page-template .hero-text-wrapper h1 {
	margin-bottom: 0.3em;
	}
	
/* contact page variation */
@media screen and (min-width: 768px) { /* 600 */
	.hero-img-wrapper,
	.service-img-wrapper {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		}
	.hero:before {
		bottom: 50px;
		}
}

.news-menu {
	padding: 0 0 0 20px;
	border-left: 1px solid  var(--black);
	}

/* color thief */
.light-text,
.light-text h1,
.light-text h2,
.light-text h3,
.light-text h4 {
	color: white;
	}

.dark-text,
.dark-text h1,
.dark-text h2,
.dark-text h3,
.dark-text h4 {
	color: black;
	}

/* ----- [ Count Up Numbers ] -----------------*/
.numbers-section {
	margin: 60px 0 40px;
	}
.numbers-section .col {
	margin-bottom: 2em;
	}

.numbers-section.dark {
	margin: 60px 0 60px;
	}
.numbers-section.dark .col {
	margin-top: 2em;
	margin-bottom: 3em;
	}
	
.big-number {
	font-size: 5rem;
	font-weight: 300;
	letter-spacing: 0.05em;
	margin-bottom: 0.2em;
	margin-left: -0.1em;
	}
.big-number + .eyebrow {
	font-family: var(--display-font);
	margin: 0;
	font-size: 1.5rem;
	font-weight: 400;
	}
.big-number b {
	visibility: none;
	opacity: 0;
	font-weight: 300;
	transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
	}
.big-number b.show {
	visibility: visible;
	opacity: 1;
	}

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

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

/* ----- [ Services Page ] -----------------*/
.services-section {
	padding-top: 0;
	padding-bottom: 0;
	margin: 5vw 0;
	/*margin: 60px 0;*/ /* disabled without filter */
	}

/* ----- utilities -------- */
.bg-tint {
	background: var(--light-tan);
	}
	
h2 strong,
h2 b {
	color: var(--accent);
	}

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

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

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

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


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

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

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

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

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

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

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

/* variable text padding */
.section-padding-none   { padding-block: 0 !important; }
.section-padding-small  { padding-block: 3em !important; }
.section-padding-medium { padding-block: 5em !important; }
.section-padding-large  { padding-block: 7em !important; }

.section-spacing-none   { margin-bottom: 0 !important; }
.section-spacing-small  { margin-bottom: 3em !important; }
.section-spacing-medium { margin-bottom: 6em !important; }
.section-spacing-large  { margin-bottom: 8em !important; }

/* if no main-content after here... */
.hero + .page-section {
	margin-top: 5em;
	}

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

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

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

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

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

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

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

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

.cms-text ul,
.cms-text ol {
	margin: 0 0 1em;
	}
.cms-text ul li {
	list-style-type: square;
	list-style-position: outside;
	line-height: 1.6;
	margin: 0 0 0 2em;
	position: relative;
	}

.cms-text ol li {
	list-style-type: decimal;
	list-style-position: outside;
	line-height: 1.6;
	margin: 0 0 0 2em;
	}

.cms-text a:not(.button) {
	text-decoration: none;
	border-bottom: 1px dotted var(--black);
	}
.cms-text a:not(.button):hover {
	text-decoration: none;
	border-bottom: 1px solid var(--black);
	}

.cms-text hr {
	height: 1px;
	margin: 2em 0;
	border: none;
	background: var(--light-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;
	}
	
.members-home-page-template .InputfieldPasswordRow + .notes {
	display: none;
	}
.members-home-page-template .Inputfield_profile_body {
	display: none;
	}

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

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

	p.image-row-4 > img {
		float: left;
		width: 23.2%;
		margin: 0 2.4% 0 0;
	}
	p.image-row-4 > img:nth-of-type(4) {
		float: right;
		margin-right: 0;
	}
	
	ul.two-column {
		column-count: 2;
		column-gap: 3em;
		}
}

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

.media-text {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	flex: 1;
	padding: 15px 15px 20px;
	position: relative;
	background: var(--logo-aqua);
	background: var(--light-tan);
	}
.media-text h3 {
	margin: 0 0 0.8em;
	}
.grid-item .media-text h3 {
	margin: 0;
	}
	
.media-text h4 {
	font-size: 0.9rem;
	margin: 0 0 0.8em;
	}
.media-text a {
	text-decoration: none;
	}

.media-end {
	display: flex;
	height: calc(100% - 20px); 
	width: 100%;  
	padding: 15px;
	}
	
.media-overlay-text {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	height: 100%;
	color: #fff;
	background: rgba(0,0,0,0.6);
	padding: 10% 7%;
	-webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 0;
	}
.media-card:hover .media-overlay-text {
	top: 0;
	opacity: 1;
	}

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

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

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

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

.page-section + .inner {
	/*margin-top: -30px;*/
	}

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

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

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

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

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

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

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

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

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

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

.contact-form-section {
	padding: 50px 0;
	background: #f6f6f6;
	}
.contact-form-section h3,
.contact-form-section p {
	text-align: center;
	margin: 0 0 0.5em;
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.field--error--message {
	display: none;
	}
.field--required label:after {
	content: '*';
	color: #333;
	}
.field--error.field--required label:after {
	content: '*';
	color: #f00;
	font-size: 1.2em;
	}
.field--error.field--required .InputfieldMaxWidth {
	border: 1px solid #f00;
	}
	
/* User Forms */
.InputfieldHeader {
	display: block;
	margin: 0 0 0.5em;
	}
.InputfieldTinyMCE textarea {
	opacity: 1 !important;
	}

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

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

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

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

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

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

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

/* ----- [ Members Menu ]------------------ */
.side-navigation {
	border-top: 1px solid var(--grey);
	}
.assoc-menu,
.user-actions {
	margin: 0 0 20px;
	}
.assoc-menu li,
.user-actions li {
	display: block;
	margin: 0;
	}
.assoc-menu a,
.user-actions a {
	color: var(--light-grey);
	display: block;
	line-height: 1.2em;
	font-weight: 500;
	padding: 8px 0;
	text-decoration: none;
	border-bottom: 1px solid var(--grey);
	}
.user-actions a {
	color: var(--light-grey);
	font-size: 0.9em;
	font-weight: 400;
	}
.assoc-menu a:hover,
.assoc-menu a.on,
.user-actions a:hover {
	color: var(--black);
	}

/* ----- [ Members/Projects: Isotope ] -----------------*/
.filter-button-group {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	column-gap: 2em;
	margin: 1em 1em 2em;
	}
.filter-button-group a {
	text-wrap: nowrap;
	}

.grid-sizer,
.grid-item { 
	/*width: calc(33.333% - 20px);*/
	width: 100%;
	margin: 0 0 20px;
	}
/* because of the hacks */
.grid-item {
	border-left: 10px solid #fff;
	border-right: 10px solid #fff;
	}

.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(50% - 15px);
		width: calc(50%);
		margin: 0 0 20px;
		}
	.grid-item.width2 {
		width: 66.666%;
		width: calc(66.666% - 20px);
		width: calc(66.666%);
		}
}

@media screen and (min-width: 750px) {
	.grid-sizer,
	.grid-item,
	.grid-item--width2 { 
		width: calc(33.333% - 15px);
		width: calc(33.333%);
		margin: 0 0 20px;
		}
	.grid-sizer {
		margin: 0;
		}
}

/* ----- [ Members/Projects: Grid ] -----------------*/
.project-title {
	position: absolute;
	/*position: relative;*/
	font-weight: 400;
	/*text-transform: uppercase;*/
	text-align: left;
	margin: 0 0 1em;
	margin: 0;
	padding: 7px 20px;
	background: #fff;
	background: rgba(255,255,255,0.8);
	background: var(--light-tan);
	bottom: 0;
	width: 100%;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
.project .imgwrap {
	margin-bottom: 0.5rem;
	margin-bottom: 20px;
	}
.project-link {
	position: relative;
	display: block;
	overflow: hidden;
	border-bottom: none;
	}
.project-link img {
	width: 100%;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	border: none;
	}
.project-link:hover {
	border: none;
	}
.project-link:hover img {
	-webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    }
    
.project-link:hover .project-title {
	/*background: var(--accent);*/
	}
	
.grid-item .media-card {
	height: 100%;
	}
	
/* ----- [ Events ]------------------ */
.events-calendar {
	margin-top: 1em;
	border-top: 1px solid #222;
	}
.event-row {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content:flex-start;
	align-items: flex-start;
	margin: 0;
	border-bottom: 1px solid #222;
	padding: 15px 0;
	}
.calendar-box {
	width: 100px;
	height: 100px;
	margin: 0 0 15px;
	padding: 5px 0 10px;
	text-align: center;
	color: #fff;
	background: #2e4358;
	background: #2e83d4;
	flex-shrink: 0;
	margin-right: 20px;
	border-radius: 4px;
	}
.cal-day {
	font-size: 44px;
	line-height: 1;
	font-weight: 300;
	padding: 0;
	}
.cal-month {
	font-size: 19px;
	line-height: 1.2;
	font-weight: 700;
	padding: 0;
	text-transform: uppercase;
	}
.cal-year {
	font-size: 15;
	line-height: 1;
	font-weight: 700;
	padding: 0;
	}

.event-item:nth-of-type(even) .calendar-page {
	background: #5e9bdd;
	}
.event-body h3 {
	margin: 0 0 5px;
	}
.event-body h4 {
	font-size: 1.3rem;
	margin: 0 0 5px;
	}

/* ----- [ Members Directory ]------------------ */
.associates-table {
	margin: 0 0 10px;
	border-top: 1px solid #222;
	}
.associates-table td {
	vertical-align: top;
	border-bottom: 1px solid #222;
	padding: 7px;
	line-height: 1.4em;
	text-align: left;
	}
.associates-table tr:nth-child(odd) td {
	border-bottom: none;
	}
.associates-table td:first-of-type {
	padding-left: 0;
	}
.associates-table td:last-of-type {
	padding-right: 0;
	}

.associates-table .bio-cell {
	padding: 0;
	border-top: none;
	}
.associates-table .bio-div {
	display: none;
	overflow: hidden;
	padding: 20px 0;
	}
	
.associates-table .read-toggle,
.associates-table .read-toggle:hover {
	font-size: 1.7rem;
	text-transform: none;
	border: none;
	font-weight: var(--body-med);
	}
.associates-table .read-toggle.open {
	display: inline-block;
	transform: rotate(45deg);
	}

/* ----- [ Document Downloads ]------------------ */
/* ----- [ Accordion docs ] --------------- */
.accordion-body {
	padding: 0;
	margin: 0 0 15px;
	max-height: 0;
	opacity: 0;
	transition: all .4s ease;
	overflow: hidden;
	}
.accordion-body.is-open {
	padding: 0;
	max-height: 10000px;
	opacity: 1;
	border-bottom: 1px solid #ccc;
	}
.accordion h2 {
	position: relative;
	cursor: pointer;
	}
.accordion h2:before {
	content: '';
	position: absolute;
	height: 20px;
	width: 20px;
	background: url('../images/arrow.svg') center center no-repeat;
	background-size: cover;
	transform: rotate(90deg);
	transition: all .3s ease;
	right: 10px;
	top: 10px;
	font-size: 2.2rem;
	font-size: 1.8rem;
	font-weight: 400;
	opacity: 0.45;
	}
.accordion h2.open:before {
	transform: rotate(-90deg);
	}

/* ----- [ Document Downloads ]------------------ */
.downloads-section {
	margin: 0;
	padding: 0;
	}
.downloads-wrapper,
.accordion.downloads-wrapper.open {
	position: relative;
	margin: 0 0 3em;
	}
.accordion.downloads-wrapper {
	margin: 0 0 3em;
	margin: 0 0 1.5em;
	}
.downloads-wrapper h2 {
	color: #555555;
	margin: 0;
	padding: 0 0 0.8em;
	border-bottom: 1px solid #ccc;
	}
.downloads-wrapper h2.open {
	padding: 0 0 0.8em;
	border-bottom: 1px solid #fff;
	}

.download {
	border-top: 1px solid #ccc;
	padding: 20px 0;
	}
.download:last-of-type {
	/*border-bottom: 1px solid #ccc;*/
	}
.download-link,
.download-link:hover {
	display: block;
	float: left;
	margin: 0 30px 10px 0;
	text-decoration: none;
	border: none;
	}
.doc-thumb {
	text-align: right;
	width: auto;
	/*height: 80px;*/
	width: 50px;
	margin: 0;
	background: transparent;
	box-shadow: 0 2px 7px rgba(0,0,0,0.3);
	}

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

/* ----- [ Logos ] --------------- */
.logos-section {
	padding: var(--section-pad-small) 0;
	}
.logos-section h2,
.logos-section h3 {
	text-align: center;
	/*padding-inline: 30px;*/
	}
.logo-list {
	display: flex;
	flex-direction: row;
	flex-direction: column;
	flex-wrap: nowrap;
	/*flex-wrap: wrap;*/
	justify-content: flex-start;
	align-items: center;
	}
.client-logo {
	margin: 0 auto;
	}
.logo-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	align-items: flex-end;
	width: 220px;
	height: 130px;
	margin-bottom: 10px;
	}
.client-logo img {
	object-fit: contain;
	max-height: 100%;
	}
@media screen and (min-width: 600px) {
	.logo-list {
		flex-direction: row;
		}
}
@media screen and (min-width: 768px) {
	.client-logo {
		margin: 0 1em 0 0;
		}
	.logos-section h3 {
		text-align: right;
		}
}

/* ----- [ Footer ] --------------- */
.page-footer {
	clear: both;
	text-align: left;
	margin: 0;
	padding: 4em 0 0;
	background: var(--light-tan);
	/*background: var(--light-tan) url('../images/forest-bg-1-flipped.png') left bottom no-repeat;*/
	background: var(--light-tan) url('../images/forest-footer-bg.png') center 150px no-repeat;
	background-size: cover;
	}

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

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

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

.page-footer a {
	text-decoration: none;
	}
.page-footer a:hover {
	/*text-decoration: underline;*/
	}

.footer-logo {
	max-width: 200px;
	min-width: 160px;
	margin: 0 auto 50px 0;
	padding: 0;
	}
.footer-logo img {
	margin: 0 auto;
	width: 100%;
	/*filter:hue-rotate(50deg);*/
	}
	
.page-footer .fa {
	font-size: 1.2rem;
	color: var(--white);
	}
	
p.site-copyright2 {
	margin: 0 auto!important;
	padding: 8px 0;
	font-size: 0.8rem;
	font-weight: var(--body-med);
	}
	
@media screen and (min-width: 900px) {
	.site-credit {
		display: inline-block;
		}
}

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

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

.social-icons-wrapper .social-icon svg {
    fill: var(--light-grey);
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
	}

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

.social-icon span {
	display: none;
	}

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

.sticky {
	position: sticky;
	top: 130px;
	}

.no-form {
	display: none;
	}

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

.hidden {
	display: none;
	}

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

hr {
	border: none;
	height: 1px;
	background: #ccc;
	margin: 1.5em 0 1em;
	}
	
.show_hide {
	display: inline-block;
	margin-bottom: 1em;
	font-weight: var(--body-med);
	}

.mid-weight {
	font-weight: var(--body-med);
	}
	

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;
	}
p.dropcap:first-child:first-letter {
	font-family: var(--display-font);
	float: left;
	font-size: 3.2rem;
	line-height: 1;
	padding-top: 6px;
	padding-right: 5px;
	padding-left: 2px;
	color: slategrey;
	}

.whatsapp-button {
	position: fixed;
	bottom: 20px;
	right: 20px;
	height: 60px;
	width: 60px;
	z-index: 99;
	}
.whatsapp-button:hover img {
	transform: scale(1.05);
	}
	
.photo-credit {
	font-size: 1.15rem;
	font-style: italic;
	font-weight: inherit;
	}

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

.quickedit {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 99;
	opacity: 0.5;
	}
.quickedit2 {
	position: absolute;
	top: 10px;
	left: -40px;
	z-index: 99;
	font-size: 1rem;
	opacity: 0.3;
	}
h2 + .quickedit2 {
	vertical-align: baseline;
	padding: 0.5em 0;
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.news-section2 .row {
	flex-direction: row !important;
	width: 125%;
	padding-left: calc((100vw - 1232px) / 2);
	}
.news-box {
	display: flex;
	/*flex: 1 0 auto;*/
	/*max-width: 300px;*/
	/*max-width: 25%;*/
	}
.home-page .news-box {
	max-width: 313px;
	}

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

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

.all-news-link {
	font-family: var(--body-font);
	font-weight: var(--body-med);
	font-size: 1.6rem;
	margin-left: 1em;
	}

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

.cta-pill-section .inner {
	overflow: visible;
	}
.cta-pill-section .cta-text {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	/*color: #fff;
	border-radius: 100px 0 0 100px;
	background: var(--accent);
	margin-right: calc((1232px - 100vw) / 2);
	margin-right: -30px;*/
	}
.cta-text h2,
.cta-text h3,
.cta-text p {
	margin-bottom: 0.5em;
	text-align: center;
	line-height: 1;
	}
.cta-text p {
	margin: 0;
	}
.cta-pill-section .button {
	font-size: 1.35rem;
	padding: 20px 1em;
	border: 4px solid var(--accent);
	border-radius: 40px;

	}
.cta-pill-section .button:hover {
	border: 4px solid var(--accent);
	}
	
@media screen and (min-width: 1280px) {
	.cta-pill-section .cta-text {
		flex-direction: row-reverse;
		justify-content: center;
		}
	.cta-pill-section h2,
	.cta-pill-section h3 {
		color: #fff;
		background: var(--accent);
		margin: 0;
		height: 70px;
		line-height: 70px;
		padding: 0 50px;
		margin-left: -40px;
		border-radius: 0 40px 40px 0;
		}
	.cta-pill-section .button {
		font-size: 1.5rem;
		padding: 0 1em;
		height: 70px;
		line-height: 62px;
		border-color: #fff;
		}
}

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

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

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


