/**
	@Author:	Paul Strandoo
	@Date:		22 Ju10 2021
	@Notes:		Omnia Projects
		
	FONTS & COLORS
	-------------
	light blue: #53c8e9;
	Font-family: 'Inter', sans-serif; 300, 400, 500
	inner max-width: 1070px;
*/

:root {
	--lightgreen: #9cbb59;
	--mediumgreen: #088137;
	--darkgreen: #004b23;
	--grey1: #f4f4f4;
	--grey2: #c4c4c4;
	--grey3: #939393;
	--grey4: #242424;
	--black: #000000;
    --inner: 1200px;
    --inner-narrow: 900px;
    --inner-wide: 1400px;
    --inner-max: 100%;
    --medium-shadow: 0px 20px 50px rgba(0, 0, 0, 0.1);
	}

* {
	box-sizing: border-box;
	}

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

body, input, textarea, table {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	color: #000000;
	}
	
/* ----- [ Typography ] -------------------------*/
p,
li,
td {
	font-family: 'Inter', sans-serif;
	font-weight: 300;
	font-size: 1em;
	font-size: 21px;
	line-height: 1.6;
	margin: 0 0 1em;
	}
	
li {
	margin: 0 0 0.5;
	}

em {
	font-family: 'Inter', sans-serif;
	font-style: italic;
	}
b,
strong {
	font-weight: 500;
	}

a {
	color: var(--mediumgreen);
	transition: all 0.3s ease;
	text-decoration: underline;
	}
a:hover {
	color: var(--lightgreen);
	}

/* NOTE: these are the desktop styles; mobile to come */
h1, .h1 {
	font-family: 'Inter', sans-serif;
	font-size: 60px;
	line-height: 120%;
	font-style: normal;
	font-weight: normal;
	margin: 0 0 0.15em;
	color: #fff;
	}

h2, .h2 {
	font-family: 'Inter', sans-serif;
	font-size: 52px;
	font-size: 42px;
	line-height: 110%;
	font-weight: 400;
	margin: 0 0 1em;
	color: #000;
	}

h3, .h3 {
	font-family: 'Inter', sans-serif;
	font-size: 42px;
	line-height: 110%;
	font-weight: 500;
	margin: 0 0 1em;
	color: #000;
	}

h4, .h4 {
	font-size: 34px;
	line-height: 110%;
	font-weight: 400;
	margin: 0 0 1em;
	color: #000;
	}

h5, .h5 {
	font-family: 'Inter', sans-serif;
	font-size: 26px;
	line-height: 120%;
	font-weight: 400;
	margin: 0;
	}
	
h6, .h6 {
	font-family: 'Inter', sans-serif;
	font-size: 22px;
	line-height: 100%;
	font-weight: 400;
	margin: 0;
	}
	
p {
	font-size: 21px;
	line-height: 1.6;
	}

.standfirst {
	font-family: 'Inter', sans-serif;
	font-size: 21px;
	line-height: 160%;
	font-weight: 500;
	/* color: var(--mediumgreen); */
	}

.caption {
	font-family: Inter;
	font-style: normal;
	font-weight: normal;
	font-size: 12px;
	line-height: 100%;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin: 10px 0;
	}

img {
	display: block;
	max-width: 100%;
	}

/* ----- Utility Classes ---------------------- */
/* global section centering #utility */
.center,
.center p,
.center h1,
.center h2,
.center h3,
.center h4,
.centered,
.centered p,
.centered h2,
.centered h3 {
	text-align: center;
	}

.jarallax {
    position: relative;
    z-index: 0;
    /* 2025 */
    /*height: 100vh;*/
    /*height: 500px;*/
    overflow: hidden;
	}
.jarallax > .jarallax-img {
    position: absolute;
    object-fit: cover;
    /* support for plugin https://github.com/bfred-it/object-fit-images */
    /*font-family: 'object-fit: cover;';*/
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
	}
/* hack for small screen heros */
#jarallax-container-0 {
	min-width: 930px;
	}

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

.page-overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	background: #fff;
	z-index: 10;
	opacity: 0;
	transition: all .3s ease;
	}
	
.page-overlay.is-open {
	visibility: visible;
	opacity: 1;
	}
	
header,
section,
footer {
	width: 100%;
	margin: 0;
	position: relative;
	}
section {
	padding: 60px 0;
	}

.inner {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	}
.inner-normal {
	max-width: 1200px;
	}
.inner-narrow {
	max-width: 800px;
	}
.inner-full {
	max-width: 100%;
	padding: 0;
	padding: 0 20px;
	}

/* ----- [ Strandoo Simple Grid System v2.8 ] ---------------- */
.row {
	display: block;
	margin: 0;
	overflow: hidden;
	position: relative;
	}

.row > .col {
	width: 100%;
	vertical-align: top;
	padding: 0 5%;
	padding: 0;
	margin-bottom: 20px;
	}

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

.row > .col.fright {
	float: right;
	}
.row > .col.fleft {
	float: left;
	}

.col > img {
	max-width: 100%;
	}
	
.flex-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	}


/* 37.5 equivalent breakpoint */
@media only screen and (min-width: 770px) {  /* 600px  */
	.flex-row {
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		}
	.flex-row > .col {
		flex: 1;
		margin: 0;
		}

	.row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		margin: 0 -15px;
		}

	.row > .col {
		padding: 0 15px;
		}

	.row.no-padding,
	.row.padding-0 {
		margin: 0;
		}
	.row.padding-1 {
		margin: 0 -1px;
		}
	.row.padding-2 {
		margin: 0 -1px;
		}
	.row.padding-5 {
		margin: 0 -5px;
		padding-top: 5px;
		}
	.row.padding-5 {
		margin: 0 -5px;
		padding-top: 5px;
		}
	.row.padding-10 {
		margin: 0 -10px;
		padding-top: 10px;
		}
	.row.padding-20 {
		margin: 0 -20px;
		}
	.row.padding-30 {
		margin: 0 -30px;
		}

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

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

	.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%; }
	
	/* because Jack broke the grid */
	.col-main { width: 69% !important; }
	.col-sidebar {width: 31% !important; }
}

@media only screen and (min-width: 770px) {
	.row-2 > .col { width: 50%; }
	.row-4 > .col { width: 25%;}
	.row-6 > .col { width: 16.666%;}
	
	.row-2 .span-2 { width: 100%; }
	.row-4 .span-2 { width: 50%; }
	.row-4 .span-3 { width: 75%; }
}

/* ----- [ Additional Flex Utilities ] ----------- */
.flex-col {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media only screen and (min-width: 600px) { /* 1010 */
	/*  utility classes */
	.f-column { flex-direction: column; }
	.f-top { align-items: flex-start; }
	.f-middle { align-items: center; }
	.f-bottom { align-items: flex-end; }
	.f-left { justify-content: flex-start; }
	.f-right { justify-content: flex-end; }
	.f-center { justify-content: center; }
	.f-between { justify-content: space-between; }
	.f-stretch { justify-content: stretch; }
	.f-rowreverse { flex-direction: row-reverse; }
}

/* utility */
.margin-0 {
	margin-bottom: 0;
	}

.accent-color {
	color: var(--mediumgreen);
	}

/* ----- [ Masthead / Page Header ] -------------*/
.page-header {
	position: fixed;
	position: sticky;
	width: 100%;
	top: 0;
	left: 0;
	height: auto;
	margin: 0;
	padding: 0;
	z-index: 10;
	background: #fff;
	opacity: 0.9;
	border-bottom: 1px solid var(--lightgreen);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/* Force Hardware Acceleration */
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transition: all 0.4s;
	/* 2025 */
	overflow: hidden;
	}

.main-nav-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: nowrap;
	position: relative;
	justify-content: flex-start;
	align-items: center;
	padding: 0 20px;
	height: 80px; /* sync with .top */
	transition: all .3s ease;
	}

.logowrap {
	width: 200px;
	margin: 0 auto 0 0;
	padding: 0;
	transition: all .3s ease;
	}
.logowrap img {
	width: 100%;
	height: auto;
	}
	
.menu-trigger,
.logowrap a,
.logowrap a:hover {
	border-bottom: none;
	}

/* 2025 */
.is-open + .page-header {
	overflow: visible;
	}
/*
.small,
.page-header.small {
	position: fixed;
	}
.small .logowrap {
	width: 200px;
	opacity: 1;
	}
*/

@media only screen and (min-width: 355px) { 
	.logowrap {
		width: 200px;
		}
}
@media only screen and (min-width: 1220px) { /* 1010 */
	.page-header {
		position: fixed;
		position: sticky;
		}
		
	.page-header .inner  {
		max-width: var(--inner-wide);
		}
		
	.main-nav-wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: nowrap;
		position: relative;
		justify-content: flex-start;
		align-items: center;
		padding: 0 20px;
		height: auto;
		transition: all .3s ease;
		}

	.logowrap {
		display: block;
		width: 200px;
		margin: 0 auto 0 0;
		}

	.logowrap img {
		width: 100%;
		height: auto;
		}
	.logowrap a,
	.logowrap a:hover {
		border: none;
		}
	/*
	.small {
		position: fixed;
		}
	.small .logowrap {
		display: block;
		width: 200px;
		margin: 0;
		}
	*/
}

/* ----- [ Navigation ] ------------------------ */
.main-navigation {
	display: none;
	}
.open .main-navigation {
	position: absolute;
	display: block;
	top: 80px;
	left: 0;
	right: 0;
	height: calc(100vh - 80px);
	padding-top: 20px;
	padding-bottom: 40px;
	overflow: hidden;
	overflow-y: auto;
	}

.main-navigation ul {
	text-align: left;
	margin: 0 30px;
	}
.menu-item {
	position: relative;
	margin: 0;
	padding: 12px 0;
	border-bottom: 1px solid var(--grey1);
	}
.menu-item a {
	color: #000;
	font-size: 18px;
	font-weight: 400;
	display: block;
	text-decoration: none;
	}
.menu-item a:hover,
.menu-item a.on {
	color: var(--mediumgreen);
	}

.has-children:after {
	content: "\002B";
	content: url('../images/open_button.svg');
	margin: 2px 0;
	float: right;
	}
/*
.has-children.submenu-open:after  {
	content: "\2212";
	content: "❯";
	}
*/
.back-button,
.back-button a {
	color: var(--lightgreen);
	}
.back-button:before {
	content: "\002B";
	content: url('../images/back_button.svg');
	margin: -2px 8px 0 0;
	float: left;
	}

.dropnav,
.dropnav-2 {
    display:  none;
	}
	
/* alternate */
.main-navigation ul {
	position: relative;
	}
.main-navigation ul ul {
	margin: 0;
	}
.menu-item {
	position: static;
	}

.dropnav {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	visibility: hidden;
	opacity: 0;
	display: block;
	background: #fff;
	min-height: 100%;
	-webkit-transform: translateX(100%);
	-moz-transform: translateX(100%);
	-o-transform: translateX(100%);
	transform: translateX(100%);
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}

.dropnav.is-active {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translateX(0%);
	-moz-transform: translateX(0%);
	-o-transform: translateX(0%);
	transform: translateX(0%);
	}
	
.dropnav .menu-item:not(.back-button):not(.mobile-section-head) {
	padding-left: 1em;
	}

@media only screen and (min-width: 1220px) { /* 1010 */
	.menu-toggle,
	.menu-trigger,
	.back-button,
	.mobile-section-head {
		display: none !important;
		}
		
	.main-navigation {
		position: relative;
		display: block;
		left: auto;
		right: auto;
		top: auto;
		width: auto;
		margin: 0;
		padding: 0;
		background: transparent;
		overflow: visible;
		}
	.main-navigation ul {
		text-align: right;
		display: block;
		margin: 0;
		}
	.menu-item {
		position: relative;
		display: inline-block;
		margin: 0 0 0 1.5em;
		padding: 0;
		border: none;
		}
	.menu-item a {
		font-sizes: 12px;
		}
	.menu-item-link {
		color: var(--grey4) !important;
		font-size: 12px !important;
		line-height:  13.2px;
		font-weight: 400;
		text-transform: uppercase;
		letter-spacing: 0.052em;
		padding: 34px 0 29px;
		text-decoration: none;
		border-bottom: 4px solid transparent;
		}
	.menu-item-link:hover,
	.menu-item-link.on {
		color: var(--grey4);
		border-bottom: 4px solid var(--lightgreen);
		}
		
	.has-children:after {
		content: "";
		}
		
	/* if dropdown menus */
	.dropnav,
	.dropnav-2 {		
		display: block;
		position: absolute;
		min-width: 200px;
		width: auto;
		top: 120%;
		margin-left: -20px;
		text-align: left;
		background: #fff;
		z-index: 9999;
		visibility: hidden;
		opacity: 0;
		padding: 15px 20px;
		box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
		white-space: nowrap;
		-webkit-transform: none;
		-moz-transform: none;
		-ms-transform: translateX(0px);
		-o-transform: none;
		transform: none;
		-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
		-o-transition: all .3s ease;
		transition: all .3s ease;
		}
	.menu-item:hover > .dropnav {
		top: 100%;
		visibility: visible;
		opacity: 1;
		}

	.dropnav ul {
		margin: 0;
		}
	.dropnav .menu-item {
		display: block;
		text-align: left;
		margin: 0;
		padding-left: 0;
		}
	.dropnav .menu-item a {
		font-size: 0.8em;
		font-size: 16px;
		color: #666;
		padding: 5px 0;
		text-transform: none;
		letter-spacing: 0;
		}
	.dropnav a:hover,
	.dropnav a.on {
		color: var(--lightgreen);
		text-decoration: none;
		}
		
	.dropnav .menu-item:not(.back-button):not(.mobile-section-head) {
		padding-left: 0;
		}
	
	.dropnav-2 {
		top: 20px;
		left: calc(-100% - 86px);
		left: calc(100% + 40px);
		margin-right: 0;
		margin-top: -10px;
		visibility: hidden;
		opacity: 0;
		}
	.what-we-do .dropnav-2,
	.p-what-we-do .dropnav-2,
	.p-professional-services .dropnav-2 {
		left: calc(-100% - 86px);
		}
	.menu-item .menu-item:hover .dropnav-2 {
		top: 0;
		visibility: visible;
		opacity: 1;
		}
}

/* ----- [ Menu Trigger ] ---------- */
.menu-trigger {
	position: absolute;
	right: 20px;
	right: 0;
	top: 15px;
	height: 50px;
	width: 70px;
	z-index: 20;
	}
	
.small .menu-trigger {
	max-height: 50px;
	}
	
.menu-trigger:hover {
	border: none;
	}
.menu-trigger .menu-text {
	height: 100%;
	text-transform: uppercase;
	color: #fff;
	display: none;
	}
.menu-trigger .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;
	transform: translateX(-50%) translateY(-50%);
	width: 22px;
	height: 2px;
	background-color: #000;
	/* these are the upper and lower lines in the menu menu */
	}
.menu-trigger .menu-icon::before, 
.menu-trigger .menu-icon:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: inherit;
	left: 0;
	}
.menu-trigger .menu-icon::before {
	bottom: 7px;
	}
.menu-trigger .menu-icon::after {
	top: 7px;
	}
.menu-trigger.is-clicked .menu-icon {
    background-color: #fff;
	background-color: rgba(0, 0, 0, 0);
	}
.menu-trigger.is-clicked .menu-icon::before, 
.menu-trigger.is-clicked .menu-icon::after {
	background-color: #000;
	}
.menu-trigger.is-clicked .menu-icon::before {
	bottom: 0;
	transform: rotate(45deg);
	}
.menu-trigger.is-clicked .menu-icon::after {
	top: 0;
	transform: rotate(-45deg);
	}
	
@media only screen and (min-width: 1220px) {
	.menu-trigger {
		display: none;
		}
	.menu-trigger .menu-text {
		display: inline-block;
		line-height: 70px;
		}
	.menu-trigger .menu-icon {
		left: auto;
		right: 1.25em;
		transform: translateX(0);
		}
}

/* ----- [ Slick Slider overrides (Hero and Text Sliders) ] --------------- */
.slider-wrapper {
	background: #ebf0f1;
	border-radius: 20px;
	padding: 50px 30px 30px;
	padding: 20px 10px 20px;
	}

.slider-head {
	color: #D9AA28;
	margin: 0 0 1.5em;
	}
.slider p {
	font-weight: 400;
	}
.slider b,
.slider strong {
	color: #caa13e;
	}

/* center slider text for non-hero sliders */
.section-carousel .slick-track {
	display: flex;
	align-items: center;
	}

.slick-slider,
.slider {
	overflow: visible;
	}
.slider .slick-slide {
	padding: 0 10px;
	}
.slider .slick-prev,
.slider .slick-next {
	position: absolute;
	display: none !important;
	top: 50%;
	width: 30px;
	height: 50px;
	margin-top: -10px;
	padding: 0;
	left: -10px;
	color: transparent;
	font-size: 0;
	line-height: 0;
	transform: translate(0, -50%);
	cursor: pointer;
	border: none;
	outline: none;
	background: transparent url('../images/slick-arrows.svg') top left no-repeat;
	z-index: 5;
	opacity: 0.5;
	}
.slider .slick-next {
	position: absolute;
	right: -10px;
	left: auto;
	background-position: bottom left;
	}
.slider .slick-prev:hover,
.slider .slick-next:hover {
	opacity: 1;
	}

.slide-wrapper {
	overflow: hidden;
	position: relative;
	margin: 0 1px;
	}

.hero-slider .slick-dots {
	position: relative;
	text-align: left;
	max-width: 1160px;
	margin:  -110px auto 0;
	padding: 35px 0 0;
	padding: 35px 20px 0;
	bottom: 0;
	border-top: 1px solid #fff;
	border-top: 1px solid rgba(255,255,255,0.5);
	}

.slick-dots li {
	display: inline-block;
	margin: 0 10px 0 0;
	width: auto;
	height: auto;
	}
.slick-dots li button {
	font-size: 12px;
	line-height: 12px;
	display: block;
	width: 36px;
	height: 36px;
	padding: 5px;
	cursor: pointer;
	color: #fff;
	border: 1px solid transparent;
	border-radius: 50%;
	outline: none;
	background: none;
	opacity: 0.5;
	}
.slick-dots li.slick-active button,
.slick-dots li button:hover {
	border: 1px solid #fff;
	background: transparent;
	opacity: 1;
	}

@media only screen and (min-width: 1160px) {
	.hero-slider .slick-dots {
		padding: 35px 0 0;
		}
}

/* avoid fouc */
.hero-slider { display: none; }
.hero-slider.slick-initialized { display: block; }

@media only screen and (min-width: 580px) {
	.slider-wrapper {
		padding: 50px 30px 30px;
		}

	.slider .slick-slide {
		padding: 0 50px;
		}
	.slider .slick-prev,
	.slider .slick-next {
		display: block !important;
		}
}

/* ----- [ Page Sections ] ----------------------- */
.top {
	/*border-top: 80px solid #fff;*/
	}
	
.first-section {
	padding: 100px 0 40px;
	}

/* ----- [ Page Hero Images ] ----------------------- */	
.hero {
	margin: 0 auto;
	min-height: 500px;
	/*min-height: 580px;*/
	background: #eee;
	}
	
.hero-overlay {
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.3);
	}

.hero-inner {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 0 20px;
	height: 100%;
	}

.hero-subhead {
	color: #fff;
	font-weight: 300;
	font-size: 21px;
	line-height:  1.6;
	max-width: 38em;
	}

/* ----- [ Home Hero Images/Slider ] ----------------------- */
.home-hero {
	padding: 0;
	margin: 0 auto;
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	}

.home-hero-text {
	color: #fff;
	/*padding: 130px 20px 30px;
	padding: 60px 20px 30px;*/
	}
.home-hero-text h2,
.home-hero-text h1 {
	font-size: 36px;
	font-size: 30px;
	line-height: 1.3;
	font-weight: 400;
	color: #fff;
	max-width: 19em;
	margin: 0 0 0.5em;
	}
h2.hero-headline {
	font-weight: 500;
	margin: 0;
	}
	
/* hero; the only height I need */
.home-hero.slick-slide {
	height: 680px;
	height: 580px;
	min-height: 1px;
	/*margin-top: 80px;*/
	}

.hero-slider {
	padding: 0;
	}

@media only screen and (min-width: 660px) { /* 1024 */
	.top {
		 /*border-top: 80px solid #fff;*/
		}

	.home-hero-text {
		/*padding: 130px 20px 30px;*/
		max-width: 32em;
		}
	.home-hero-text h2,
	.home-hero-text h1 {
		font-size: 34px;
		}
	.home-hero-text p {
		font-size: 22px;
		font-weight: 300;
		margin: 0;
		}
}

/* ----- [ Breadcrumbs ] ------------------*/
.breadcrumb-section {
	color: #fff;
	background: var(--darkgreen);
	padding: 0;
	}
.breadcrumb-section .inner {
	padding: 20px 20px;
	}

.breadcrumbs a,
.breadcrumbs span {
	color: #fff;
	font-size: 12px;
	line-height: 1;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin: 0 1em 0 0;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	}
.breadcrumbs a:hover {
	text-decoration: none;
	border-bottom: 1px solid #fff;
	}


/* ----- [ Latest News (Home) ] ------------------*/
.latest-news-section {
	padding: 80px 0 80px;
	/*background: var(--grey1);*/
	}
.latest-news-header {
	margin: 0 0 50px;
	}
.latest-news-header h4 {
	margin-bottom: 10px;
	}
@media only screen and (min-width: 770px) {
	.latest-news-header h4 {
		margin-bottom: 0;
		}
}

/* ----- [ Page Sections ] ------------------*/
.page-section {
	padding: 30px 0;
	overflow: hidden;
	}
	
.page-section .inner {
	overflow: visible;
	}

.page-section .col {
	position: relative;
	}
.page-section .services-text {
	flex-shrink: 0;
	}
.page-section .img-wrap {
	margin: 0 0 20px;
	}
	
.section-about-us {
	padding-top: 80px;
	}

@media only screen and (min-width: 600px) {
	.page-section {
		padding: 60px 0;
		}
		
	.section-about-us {
		padding-top: 120px;
		}

	.section-what-we-do {
		padding-top: 15px;
		}
}

/* ----- [ Media Cards / Grid Sections ] ------------*/
.media-card {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	/* align-items: left;*/
	/* border: 1px solid #ccc; */
	border-radius: 4px;
	overflow: hidden;
	height: 100%;
	/*padding-bottom: 15px;*/
	box-shadow: var(--medium-shadow);
	transition: all 0.3s ease;
	}
.media-text {
	padding: 20px;
	margin-bottom: auto;
	}
	
.media-text h4 {
	font-size: 24px;
	margin-bottom: 0.5em;
	}
.media-text p {
	font-size: 0.85rem;
	line-height: 1.5;
	font-weight: 400;
	}
	
.read-more {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	}

/* makes the whole card a link */
.media-card .read-more:after,
.image-card .button:after {
	content: "";
	position: absolute;
	top: 0;
	left: 15px;
	right: 15px;
	bottom: 0;
	z-index: 0;
	}
.media-card:hover {
	transform: scale(1.03);
	}
	
.news-index .col {
	margin-bottom: 50px;
	}

.about-us-cards > .col:nth-child(-n+2) {
	margin-bottom: 50px;
	}

/* card variations */
.about-media-card {
	border: 1px solid #9DBB59;
	}
.about-media-card .media-text {
	 padding: 28px 20px;
	 color: #fff;
	 background: var(--lightgreen);
	 }
.about-media-card a,
.about-media-card a:hover {
	border: none;
	text-decoration: none;
	}
	
.about-us-text p {
	font-size: 19px;
	max-width: 400px;
	}

/* ----- [ Big CTA Media card ] ----- */	
.cta-section {
	background: #F4F4F4;
	padding: 150px 0;
	}
.big-card {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	/* border: 1px solid #ccc; */
	border-radius: 4px;
	overflow: hidden;
	box-shadow: var(--medium-shadow);
	transition: all 0.3s ease;
	}
.big-card .media-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	color: #fff;
	margin: 0;
	padding: 30px;
	background: var(--lightgreen);
	flex: 1;
	}
.big-card .media {
	flex: 2;
	}
.big-card img {
	height: 100%;
	object-fit: cover;
	}
.big-card h3,
.big-card h4 {
	color: #fff;
	font-size: 34px;
	}
.big-card p {
	font-size: 21px;
	font-weight: 300;
	}

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

/* ----- [ image card ] ----- */
.image-card {
	position: relative;
	align-items: left;
	border-radius: 4px;
	overflow: hidden;
	height: 100%;
	width: 100%;
	/*padding-bottom: 15px;*/
	transition: all 0.3s ease;
	}
	
.image-card-alt {
	height: auto;
	margin-bottom: 1em;
	}
	
.media {
	position: relative;
	overflow: hidden;
	-webkit-backface-visibility:hidden;
	}
.media-image {
	width: 100%;
	transition: all 0.3s ease-in-out;
	}
.media-overlay {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0.3);
	transition: all 0.3s ease-in-out;
	}
.card-body {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	padding: 20px;
	text-align: left;
	color: #fff;
	z-index: 10;
	-webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
	}
	
.card-body h4 {
	color: #fff;
	font-weight: 300;
	font-size: 22px;
	margin-bottom: 1em;
	}
.image-card .button {
	opacity: 0;
	transition: all .3s ease;
	}

.image-card:hover .media-image {
	transform: scale(1.1);
	}
.image-card:hover .media-overlay {
	background: rgba(0,0,0,0.6); 
	}
.image-card:hover .card-body {
	bottom: 50px;
	}
.image-card:hover .button {
	opacity: 1;
	}
	
	
.img-wrap img,
.media img {
	display: block;
	width: 100%;
	}
	
.image-content {
	border-radius: 25px;
	overflow: hidden;
	}

.section-what-we-do {
	padding-top: 0;
	}
.section-what-we-do .card-title {
	font-weight: 500;
	}

.section-what-we-do .card-body {
	bottom: -50px;
	padding: 40px;
	padding-right: 3em;
	}
.section-what-we-do .col:hover .card-body {
	bottom: 0;
	}

.section-what-we-do .media {
	height: 350px;
	}
.section-what-we-do .media img {
	height: 100%;
	width: auto;
	object-fit: cover;
	}

@media only screen and (min-width: 470px) {
	.section-what-we-do .media {
		height: auto;
		}
	.section-what-we-do .media img {
		height: auto;
		width: 100%;
		object-fit: unset;
		}
}

/* ----- [ Client Logos ] -----------------*/
.logos-section {
	padding: 80px 0;
	overflow: hidden;
	}
.logos-section h4 {
	margin: 10px 0;
	}
.logos-section p {
	font-size: 21px;
	max-width: 26em;
	margin-left: auto;
	margin-right: auto;
	font-weight: 300;
	}
.logo-list {
	align-items: center;
	margin: 50px 0;
	}

.client-logo img,
.client-logo2 img {
	display: block;
	max-height: 70px;
	max-width: 180px;
	margin-right: auto;
	margin-left: auto;
	margin: 0 30px;
	opacity: 1;
	}
	
.client-logo2 {
	margin-bottom: 30px;
	}
.client-logo2 img {
	max-height: 180px;
	width: 100%;
	margin: 0 auto;
	}
	
.logos-section .slick-slide {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	align-items: center;
	height: 100px;
	}
	
.logo-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	}
.logo-row > .col {
	width: 50%;
	padding: 10px;
	}
@media only screen and (min-width: 660px) {
	.logo-row > .col {
		width: 25%;
		}
}

/* ----- [ Service Pages ] ------------------- */
.icon-list-item {
	padding: 40px 0  30px;
	border-top: 1px solid rgba(76, 104, 120, 0.5);
	}
.icon-list-item:first-of-type {
	border: none;
	}

.icon-list-item h3 {
	font-weight: 500;
	font-size: 1.3rem;
	color: #4d6777;
	margin-bottom: 0.8em;
	}

.icon-wrap  {
	position: relative; 
	float:left;
	width: 100px;
	margin: 0 20px 10px 0;
	}
.icon-wrap img  {
	width:  100%;
	}

.section-text-images {
	padding: 60px 30px 40px;
	}

@media only screen and (min-width: 600px) {
	.icon-list-text {
		overflow: hidden;
		}
	.icon-wrap  {
		width: 120px;
		margin: 0 40px 20px 0;
		}
		
	.people-services .section-carousel {
		background-position: 50% 10% !important;
		min-height: 600px;
		}
}

/* ------ [ Associate's Pages ] -----------------*/
/* note: MAX-width */
@media only screen and (max-width: 600px) {
	.InputfieldColumnWidth {
		width: 100% !important;
		margin-left: 0 !important;
		}
}

#InputfieldFieldset11 {
	padding: 5px 0 10px;
	}

.downloads-wrapper {
	margin: 0 0 3em;
	}

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

.side-navigation {
	border-top: 1px solid #ccc;
	}
.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: #333;
	display: block;
	line-height: 1.2em;
	font-weight: 500;
	padding: 8px 0;
	text-decoration: none;
	border-bottom: 1px solid #ccc;
	}
.user-actions a {
	color: #07A7D2;
	font-size: 0.9em;
	font-weight: 400;
	}
.assoc-menu a:hover,
.user-actions a:hover {
	color: #07A7D2;
	}

.associates-table {
	margin: 0 0 10px;
	border-bottom: 1px solid #ccc;
	}
.associates-table td {
	vertical-align: top;
	border-top: 1px solid #ccc;
	padding: 7px;
	line-height: 1.4em;
	}
.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: 10px 0;
	 }
	 
/* ----- [ Team Page and Bios ] ------------------*/
.team-page .media-overlay {
	background: rgba(0,0,0,0.1);
	}
.team-page .image-card:hover .media-overlay {
	background: rgba(0,0,0,0.4);
	}
.bio-popup {
	display: none;
	}
.bio-popup {
	padding: 4%;
	}
.bio-popup h3 {
	margin-bottom: 0.5em;
	}
.bio-popup .big-img {
	width: 100%;
	margin-bottom: 2em;
	}
.featherlight .featherlight-content {
	border-radius: 6px;
	}
.featherlight .featherlight-close-icon {
	position: fixed;
	top: 2%;
	right: 3%;
	height: 38px;
	width: 38px;
	font-size: 1.8rem;
	line-height: 38px;
	color: #333;
	border-radius: 50%;
	background: #fff;
	/*border: 3px solid #000;*/
	}
.featherlight .featherlight-close-icon:hover {
	font-size: 2rem;
	}

@media only screen and (min-width: 600px) {
	.bio-popup .big-img {
		width: 40%;
		max-width: 500px;
		float:left;
		margin: 0 2em 2em 0;
		}
	.featherlight .featherlight-close-icon {
		position: absolute;
		}
}

	 
/* ----- [ Sidebar Navigation ]------------------ */
.page-menu {
	padding: 34px 20px 40px;
	background: var(--lightgreen);
	border-top: 6px solid var(--mediumgreen);
	border-radius: 4px;
	}
.sibling-navigation {
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
	}
.sibling-navigation li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin: 0;
	}
.sibling-navigation a {
	color: #fff;
    font-size: 18px;
    line-height: 1.3;
    text-decoration: none;
    padding: 15px 0;
    display: block;
    margin-left: -0.8em;
    margin-left: 0;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition:all .3s ease;
	}
	
.sibling-navigation a:hover, 
.sibling-navigation a.on {
    color: #000;
    border: none;
    margin-left: 0;
	}

/* ----- [ News Pages ]------------------ */
.post-summary {
	margin: 0 0 50px;
	padding-top: 1.5em;
	border-top: 1px solid #ccc;

	}
.post-thumb {
	margin: 0 0 30px;
	max-width: 100%;
	}

.post-date {
	font-size: 0.9em;
	text-transform: uppercase;
	margin: 0 0 1em;
	font-weight: 500;
	color: var(--grey3);
	}

.post-featured-image {
	max-width: 100%;
	width: 100%;
	margin: 0 25px 20px 0;
	}

.news-navigation {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	margin: 0 0 40px;
	/*border-top: 3px solid #ccc;*/
	}
.archive-list {
	margin: 0;
	}

.archive-list li {
	text-align: left;
	}
	
.archive-list h4 {
	font-size: 1.3em;		
	margin: 0;
	}

.archive-list li,
.blog-categories li {
	margin: 0;
	}

.sibling-nav {
	border-top: 1px solid #ccc;
	margin-top: 30px;
	}
.sibling-nav .prev-nav,
.sibling-nav .next-nav {
	float: left;
	width: 48%;
	padding: 5px 0;
	}

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

.post-page {
	margin-bottom: 70px;
	}

/* ----- [ Careers / Jobs Pages ]------------------ */
.jobs-list {
	margin: 40px 0;
	padding: 20px 0;
	}
.job-listing {
	font-size: 21px;
	padding: 20px 0;
	border-bottom: 1px solid #f4f4f4;
	}
.job-listing:first-child {
	border-top: 1px solid #f4f4f4;
	}
.job-listing .col:last-child {
	text-align: right;
	}
.job-listing .button {
	margin: 0 0 0 auto;
	}
.job-listing .col:not(:last-child) {
	padding-right: 1em;
	}
	
/* custom spacing */
.basic-plus-page .grid-section {
	padding-top: 0;
	}
.basic-plus-page .first-section {
	padding-bottom: 0;
	}

/* ----- [ PW Pager Nav: Search Results ] --------  */
.MarkupPagerNav {
	text-align: right;
	padding: 0;
	}
.MarkupPagerNav li {
	display: inline-block;
	line-height: 1em;
	margin: 0;
	}
.MarkupPagerNav a {
	display: block;
	padding: 6px;
	text-decoration: none;
	}

.MarkupPagerNavOn a {
	font-weight: bold;
	}
	
/* ----- [ Projects Filter ]------------------ */
.filter-content {
	list-style-type: none;
	}
.filter-content li {
	display: inline-block;
	margin: 0 1.2em 0 0;
	}
	
.page-category {
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 500;
	margin: -0.9em 0 1em;
	}


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

.cms-content h2 {
	margin: 0 0 0.5em;
	}
	
.cms-content h2,
.cms-content .h2 {
	margin: 0 0 0.5em
	}
.cms-content h3,
.cms-content .h3 {
	margin: 0 0 0.5em
	}
.cms-content h4,
.cms-content .h4,
.cms-content h5,
.cms-content .h5 {
	margin: 0 0 1em;
	}
.cms-content h6,
.cms-content .h6 {
	font-weight: 500;
	margin: 0 0 0.2em
	}
	
.cms-content p + h2,
.cms-content ul + h2,
.cms-content p + h3,
.cms-content ul + h3,
.cms-content p + h4,
.cms-content ul + h4 {
	margin-top: 1em;
	}

.cms-content ul,
.cms-content ol {
	margin: 0 0 2em;
	}
.cms-content ul li {
	list-style-type: disc;
	list-style-position: outside;
	margin: 0 0 0.5em 1.5em;
	}
.cms-content ol li {
	list-style-type: decimal;
	list-style-position: outside;
	margin: 0 0 0.5em 1.5em;
	}
	
.cms-content ul li li {
	list-style-type: circle;
	}
.cms-content ul li li li {
	list-style-type: square;
	}

.cms-content figure {
	display: table;
	margin: 0.3em 1.5em 1em 0;
	max-width: 100%;
	clear: left;
	}
.cms-content figure.align_right {
	margin: 0.3em 0 1em 1.5em;
	}
	
.cms-content figcaption {
	display: table-caption;
	caption-side: bottom;
	font-size: 14px;
	line-height: 120%;
	margin: 10px 0;
	}
	
.fig-caption {
	font-size: 0.9rem;
	margin-top: -3em;
	}

.cms-content img {
	max-width: 100%;
	}
	
.cms-content hr {
	border: none;
	border-top: 1px solid #c4c4c4;
	margin: 40px 0;
	}

.width-120pc,
.fwidth-120pc {
	margin-left: -10% !important;
	margin-right: -10% !important;
	max-width: 120% !important;
	width: 120%;
	}

.full-width,
.f-full-width {
	left: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	max-width: 100vw !important;
	position: relative;
	right: 50%;
	width: 100vw;
	margin-top: 40px;
	margin-bottom: 40px;
	}
	
.image-row-2,
.image-row-3 {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	}
	
.image-row-2 img,
.image-row-3 img {
	margin-bottom: 20px;
	}
	
	
@media only screen and (min-width: 600px) {
	.image-row-2,
	.image-row-3  {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: flex-start;
		/*align-items: stretch;*/
		width: calc(120% + 20px);
		margin-left: calc(-10% - 10px);
		margin-right: calc(-10% - 10px);
		}
	.image-row-2 img,
	.image-row-3 img {
		padding: 0 15px;
		object-fit: contain;
		height: auto;
		max-width: 100%;
		width: 50%;
		margin-bottom: 30px;
		}
	.image-row-3 img {
		width: 33.333%;
		}
}

blockquote {
	margin: 40px 0 50px;
	padding: 100px 12% 30px;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	color: var(--mediumgreen);
	position: relative;
	}
blockquote p {
	color: var(--mediumgreen);
	margin: 0 auto 1em;
	}
	
blockquote::before {
	content: url('../images/left-quote-54.svg');
	position: absolute;
	top: 40px;
	width: 40px;
	height: 40px;
	color: var(--mediumgreen);
	}

blockquote cite {
	font-size: 0.8em;
	line-height: 0.8;
	color: #000;
	}
	
.citation {
	margin-bottom: 0;
	}
.citation + p {
	text-transform: uppercase;
	color: #666;
	font-size:  14px;
	}

.call-to-action {
	color:  #fff;
	background: var(--lightgreen);
	padding: 30px;
	margin: 40px 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	border-radius: 5px;
	}
.call-to-action.cta-b {
	background: var(--mediumgreen);
	}
.call-to-action .button {
	margin: 10px 0 -15px;
	}
	
@media only screen and (min-width: 600px) {
	.call-to-action {
		display: flex;
		flex-direction: row;
		align-items: center;
		border-radius: 5px;
		}
	.call-to-action .button {
		margin: 0 0 0 auto;
		}
}

/* ----- [ Contact Page ]----------------------- */
.fa,
.fab {
	font-family: FontAwesome;
	font-size: inherit;
	font-style: normal;
	}
.contact-meta {
	/*margin-left: 1.8em;
	text-indent: -0.82em;*/
	}
.contact-meta i {
	color: var(--lightgreen);
	margin-right: 10px;
	}
.contact-meta .fa-map-marker {
	font-size: 2rem;
	}
	
.contact-info-text h4 {
	margin: 0.7em 0 0;
	}
.contact-info-text h5,
.contact-into-text p.spacer-1 {
	font-size: 24px;
	line-height: 120%;
	margin: 0.3em 0 0.8em;
	}
	
.map-form-section {
	padding-top: 0;
	}
.map-form-section h4,
.map-form-section h5 {
	margin-bottom: 0.7em;
	}

.MarkupGoogleMap {
	margin: 0 0 20px;
	}
	
.gm-style img {
	/*width: 60px !important;
	height: 45px !important;*/
	}

/* Social Media */
.social-icon {
    display: inline-block;
    text-align: left;
    margin: 0 3px 0 0;
	}

.social-icon a {
    color: var(--darkgreen);
    text-align: center;
    display: inline-block;
    width: 40px;
    height: 40px;
    text-decoration: none;
    border: 1px solid #000;
    border-radius:  50%;
    padding: 0;
    margin-right: 0.35em;
	}

.social-icon a:hover,
.social-icon a:active {
    color: var(--lightgreen);
	text-decoration: none;
	}

.social-icons .fab {
	font-size: 1.1em;
	line-height: 40px;
	font-weight: 400;
	text-align: center;
	vertical-align: middle;
	}

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

input,
select,
textarea {
    font-size: 18px;
    width: 100%;
    padding: 15px 10px;
    margin: 0 0 25px;
	color: var(--grey3);
    border: 1px solid #C4C4C4;
    border-radius: 3px;
    background: #F4F4F4;
    }
textarea {
	margin: 0 0 5px;
	}

select {
	height: 42px;
	font-size: 1.1;
	padding: 15px 19px;
	border: none;
	border-radius: 0;
	}

.form__item label {
	display: inline-block;
	font-size: 18px;
	color: var(--darkgreen);
	margin: 0 0 10px;
	transition: all 0.3s ease;
	}
	
.form__item input,
.form__item textarea {
	color: var(--grey3);
    font-size: 18px;
    width: 100%;
    padding: 15px 10px;
    margin: 0 0 25px;
    border: 1px solid #C4C4C4;
    border-radius: 3px;
    background: #F4F4F4;
	-webkit-appearance: none;
	-ms-appearance: none;
	-moz-appearance: none;
	appearance: none;
    }

.field__header--hidden,
.form__item--scf-website,
.form__item--scf_website {
	/*display: none !important;*/
	height: 0;
	overflow: hidden;
	}

.form__item--c_contact_consent,
.form__item--c_terms_consent {
	line-height: 1.1em;
	margin-bottom: 0.5em;
	}
	
.form__item--submit {
	text-align: left;
	}

.form__item--c_terms_consent label  {
	font-size: 0.9em;
	margin-left: 2.5em;
	text-indent: -2.5em;
	}

/* checkbox */
input[type=checkbox].FieldtypeCheckbox {
	padding: 0;
    height: 20px;
    width: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    border: 1px solid #C4C4C4;
    position: relative;
	outline: none;
    background: #f2f2f2;
    vertical-align: middle;
    margin: 0 6px 0 0;
    -webkit-transition: 0.15s;
    cursor: pointer;
	}

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

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

/* errors */
.field--error--message {
	float: right;
	color: #f00;
	font-weight: 400;
	font-size: 0.9em;
	line-height: 1;
	margin-top: 3px;
	}
	
.field--error input,
.field--error textarea,
.field--error select,
.field--error checkbox {
	border: 1px solid #f00;
	}
	
.form__item--c_terms_consent .field--error--message {
	float: none;
	margin: 0 0 5px;
	margin: -1.5em 0 0.5em;
	}
.form__item--c_terms_consent.field--error--message label:after {
	content: "*";
	color: #f00;
	}

.form--error--message,
.form--success--message {
	text-align: center !important;
	font-size: 0.95em;
	font-weight: 500;
	color: #fff;
	background: #f00;
	padding: 10px;
	margin: 5px 0;
	border-radius: 5px;
	width: auto;
	}
	
.form--success--message {
	font-size: 1.2em;
	color: #838383;
	background: #fff;
	padding: 20px;
	border: 1px solid #ccc;
	}

.form__item--recaptcha {
	margin: 0 0 20px;
	}
.form__item--recaptcha label {
	display: none;
	}
	
/* math captcha */
.mathcaptcha {
	width: auto;
	}

@media only screen and (min-width: 600px) {
	.section-contact-us {
		padding: 100px 0;
		}
	.contact-us {
		min-width: 680px;
		}
	.contact-form {
		margin: 0 auto;
		padding: 40px 60px 40px;
		}
}

.hrule.reversed {
	border: none;
	height: 1px;
	background: var(--lightgreen);
	}

/* ----- [ Buttons ] --------------------------- */
.button,
.ui-button {
	display: inline-block;
	position: relative;
	font-size: 14px;
	line-height: 1;
	font-weight: 500;
	color: var(--mediumgreen);
	width: auto;
	padding: 13px 30px 13px 40px;
	margin-bottom: 10px;
	margin-bottom: 0;
	background: #fff;
	background: rgba(7, 129, 55, 0.05);
	/*text-transform: uppercase;*/
	border: 1px solid var(--mediumgreen);
	border-radius: 26px;
	opacity: 1;
	transition: all 0.3s ease;
	cursor: pointer;
	text-decoration: none;
	}

.button:hover,
.ui-button:hover,
.button.on,
.ui-button.on {
	color: var(--mediumgreen);
	text-decoration: none;
	}

.button:active,
.ui-button:active {
	color: var(--mediumgreen);
	text-decoration: none;
	}
	
.button-small {
	font-size: 0.9em;
	padding: 10px 20px;
	}

.button:before,
.drop-menu-link small:after {
	content: "❯";
	position: absolute;
	width: 20px;
	height: 20px;
	left: 10px;
	top: 50%;
	margin-top: -11px;
	line-height: 20px;
	text-align: center;
	font-style: normal;
	border: 1px solid #fff;
	border: 1px solid var(--mediumgreen);
	background: rgba(7, 129, 55, 0.2);
	padding: 0;
	border-radius: 50%;
	text-indent: 2px;
	}

.drop-menu-link small {
	position: relative;
	}	
.drop-menu-link small:after {
	width: 15px;
	height: 15px;
	font-size: 0.9em;
	line-height: 15px;
	top: 2px;
	left: 105%;
	margin: 0;
	text-indent: 1px;
	}
	
.button:hover:before {
	color: #fff;
	background: var(--mediumgreen);
	}

.search-button {
	font-size: 0.9em;
	padding: 10px 15px;
	height: 40px;
	border-radius: 0 20px 20px 0;
	}
.search-input {
	height: 40px;
	padding: 10px 15px;
	border-radius: 20px 0 0 20px;
	margin-right: 5px;
	}

/* reversed buttons */
.button-rev,
.page-footer .button-rev,
.home-hero .button,
.call-to-action .button,
.cta-section .button {
	color: #fff;
	background: transparent;
	background: rgba(255,255,255,0.1);
	border: 1px solid #fff;
	}
.button-rev:hover,
.page-footer .button-rev:hover,
.home-hero .button:hover,
.call-to-action .button:hover,
.cta-section .button:hover {
	color: #222;
	background: #fff;
	border: 1px solid #fff;
	}
	
.button-rev:before,
.page-footer .button-rev:before,
.home-hero .button:before,
.call-to-action .button:before,
.cta-section .button:before {
	border-color: #fff;
	background: none;
	}
.button-rev:hover:before,
.page-footer .button-rev:hover:before,
.home-hero .button:hover:before,
.call-to-action .button:hover:before,
.cta-section .button:hover:before {
	color: #fff;
	background: var(--mediumgreen);
	}

/* Form Submit Spinner */
.button .fa,
.ui-button .fa {
	letter-spacing: 0;
	}

/*-------[ Footer ] ---------------------------- */
.page-footer {
	color: #fff;
	margin-top: auto;
	padding: 0;
	text-align: left;
	width: 100%;
	overflow: hidden;
	background: var(--darkgreen);
	}

.page-footer .inner {
	padding: 80px 20px 30px;
	max-width: var(--inner-wide);
	}
.page-footer p,
.page-footer li {
	font-family: 'Inter', sans-serif;
	color: #fff;
	font-size: 12px;
	line-height: 19.2px;
	font-weight: 400;
	margin: 0 0 1em;
	}

.page-footer a {
	color: #fff;
	border-bottom: 1px dotted #fff;
	text-decoration: none;
	}
.page-footer a:hover {
	color: #fff;
	border-bottom: 1px solid #fff;
	text-decoration: none;
	}
	
.page-footer .hrule {
	margin-top: 20px;
	}

.footer-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	}

.footer-logo {
	width: 200px;
	margin: 10px auto 20px 0;
	}

.site-credits {
	margin: 3em 0 0;
	}
.site-credits p {
	font-size: 0.8em;
	margin: 0;
	color: #ccc;
	}

@media only screen and (min-width: 920px) {
	.footer-row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: flex-start;
		}
		
	.footer-logo {
		width: 200px;
		margin: 10px auto 0 0;
		}
}

/* ----- [ Social Media Icons - removed ] ---------------- */
/* ----- [ Utility Classes ] ------------------------ */
img.inline {
	display: inline !important;
	}
img.right {
	float: right;
	}
	
img.full {
	width: 100%;
	}
img.half {
	width: 50%;
	float: left;
	}

.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-right h2,
.text-right h3 {
	text-align: right;
	}
.text-center {
	text-align: center;
	}
	
.text-reverse {
	color: #fff;
	}
	
.object-fit {
	object-fit: cover;
	}
	
.mid-green {
	color: var(--mediumgreen);
	}

.nobreak {
	white-space: nobreak;
	}

.w-regular,
.text-regular {
	font-weight: 400;
	}

.uppercase {
	text-transform: uppercase !important;
	}
.lowercase {
	text-transform: none !important;
	}
.stretch {
	align-items: stretch;
	}

.clearfix:before,
.clearfix:after {
	content: "\0020";
	display: block;
	height: 0;
	overflow: hidden;
	}
.clearfix:after {
	clear: both;
	}
.clearfix { 
	zoom: 1;
	}
	
.overflow-visible {
	overflow: visible;
	}
	
.align_left {
	float: left;
	margin: 0.3em 1.5em 1em 0;
	}
.align_right {
	float: right;
	margin: 0.3em 0 1em 1.5em;
	}
.align_center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1em;
	}

a.anchor {
    display: block;
    position: relative;
    top: -250px;
    visibility: hidden;
	}

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

/* ----- [ Accordion ] ------------ */
dl.accordion {
	margin: 0 0 0 2em;
	margin: 0 0 30px;
	padding: 0;
	position: relative;
	border-bottom: 1px solid #C4C4C4;
	}
dl.accordion > dt {
	font-family: var(--body);
	/* color: #4d6777;
	font-size: 1.4em;
	line-height: 1.3em;
	font-weight: 500;*/
	color: var(--mediumgreen);
	font-size: 22px;
	line-height: 1.3em;
	font-weight: 400;
	list-style: none;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
	text-transform: none;
	}

dl.accordion > dt > a {
	text-decoration: none;
	color: var(--blue);
	display: block;
	vertical-align: middle;
	position: relative;
	transition: all .2s ease;
	padding: 40px 0;
	border-bottom: none;
	border-top: 1px solid #C4C4C4;
	}

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

dl.accordion > dt > a:before,
dl.accordion > dt > a.open:before {
	content: '';
	background: url(../images/circle-plus-icon.svg) 50% 50% no-repeat;
	background-size: 100%;
	right: 0;
	top: 27px;
	position: absolute;
	width: 52px;
	height: 52px;
	}

dl.accordion > dt > a.open:before {
	content: '';
	background: url(../images/circle-minus-icon.svg) 50% 50% no-repeat;
	background-size: 100%;
	}
dl.accordion dd {
	padding: 0;
	margin: 0;
	max-height: 0;
	opacity: 0;
    transition: all .4s ease;
	}
dl.accordion dd p {
	margin: 0;
	padding-right: 2em;
	}
dl.accordion dd p:first-child {
	font-weight: 500;
	}

dl.accordion dd.is-open {
	max-height: 1000px;
	opacity: 1;
	}
dl.accordion dd.is-open p {
	margin: 0 0 1em;
	}
dl.accordion dd.is-open p:last-of-type {
	margin: 0 0 2em;
	}

dl.accordion > dt > a:hover:before {
	color: #53c8e9;
	}

.accordion + p,
.accordion + p + p {
	font-size: 1.2em;
	}
	
/* hack */
.accordion dt:first-of-type,
.accordion dd:first-of-type {
	display: none;
	}

/* PRINT STYLES */
@media print {

}
