/*        SCHOOL TEMPLATE I      */
/* ========== Main CSS ========= */

/************* FONTS *************/

/*
	font-family: 'Roboto', sans-serif;
	font-family: 'Jost', sans-serif;
*/

/** TINT COLORS (sample images) **/

/* --templatei-footer-tint-color: rgba(73, 108, 14, 90%);		 			Turns out the tint here was actually embedded into the sample image itself, I left the variable here for when a different image replaces it. The value here is an approximation. */
/* --templatei-homepage-newsfeed-sub-tint-color: rgba(0,0,0,0.8);			Turns out the tint here was actually embedded into the sample image itself, I left the variable here for when a different image replaces it. */

/*********** VARIABLES ***********/

:root {
	--primary-color: #4E760E;
	--secondary-color: hsl(30 83% 36% / 1);
	--default-text-color: #282B2C;
	--default-font-size: 18px;
	--callout-section-primary-color: rgba(78,118,14,1);
	--callout-section-secondary-color: rgba(58,92,4,1);
}

/*********************************/

body,
html {
	height: 100%;
}
 
body {
	box-sizing: border-box;
	color: var(--default-text-color);
	font-family: 'Roboto', sans-serif;
	font-size: var(--default-font-size); 
	font-weight: 400;
	margin: 0;
	opacity: 0;
	padding: 130px 0 0 0;
}
body.loaded {
	opacity: 1;
	transition: opacity 0.3s ease;
}

a {
	color: var(--secondary-color);
	text-decoration: none;
}

a:hover {
	color: var(--primary-color);
	text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Jost', sans-serif;
	font-weight: 700;
	line-height: 130%;
	margin: 0 0 15px;
	padding: 0;
	text-transform: uppercase;
}

h1 {
	font-size: 54px;
	letter-spacing: 9.88px;
}

h2 {
	font-size: 26px;
	letter-spacing: 3px;
}

h3 {
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 3px;
}

h4 {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 2px;
}

h5 {
	font-family: 'Roboto', sans-serif;
	font-size: var(--default-font-size);
	font-weight: 700;
}

h6 {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 700;
}

p {
	line-height: 175%;
	margin: 0 0 20px 0;
	padding: 0;
}

.ss-content-block li {
	line-height: 135%;
}

p:last-child {
	margin-bottom: 0;
}

iframe {
	max-width: 100%;
}

cite {
	border-left: 3px solid rgba(255,255,255,0.9);;
	display: block;
	font-size: var(--default-font-size);
	font-style: normal;
	line-height: 130%;
	margin-top: 15px;
	padding: 5px 0 0 10px;	
}

.hr {
	margin-bottom: 20px;
}

/* --------- Alternate Header / Mobile --------- */

.alternate-header {
	padding-top: 0;
}

@media (max-width: 800px) {
	.alternate-header {
		padding-top: 80px;
	}
}

@media (max-width: 1200px) {
	body {
		padding-top: 80px;
	}
}

@media (max-width: 768px) {
	h1 {
		font-size: 40px;
		letter-spacing: 3px;
	}
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Header --------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.header {
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	background: rgba(255,255,255,0.85);
	box-shadow: 0 10px 20px rgba(0,0,0,0.16);
	height: 130px;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	transition: background 0.2s ease;
	z-index: 501;
}

.header-lower {
	align-items: center;
	display: flex;
	height: 80px;
	justify-content: space-between;
	padding: 0 0 0 60px;
}

/* --------- Alternate Header / Mobile --------- */

@media (min-width: 800px) {
	.alternate-header .header {
		backdrop-filter: none;
		background: none;
		box-shadow: none;
	}
	.alternate-header.scrolled .header {
		background: none;
	}

	.alternate-header .header-lower {
		padding-left: 0px;
	}
}

@media (max-width: 1200px) {
	.header-lower {
		padding-left: 30px;
	}
}

@media (max-width: 460px) {
	.header-lower {
		padding-left: 20px;
	}
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Header Quick Links --------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.header-quick-links {
	background: var(--default-text-color);
	align-items: center;
	color: #fff;
	display: flex;
	font-family: 'Jost', sans-serif;
	font-size: 14px;
	height: 50px;
	justify-content: flex-end;
}

.header-quick-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.header-quick-links ul li {
	display: inline-block;
	padding: 0 20px;
	position: relative;
}

.header-quick-links ul li:after {
	background: #5A5C60;
	content: '';
	height: 15px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
}

.header-quick-links ul li:first-child:after,
.header-quick-links ul li:last-child:after {
	display: none;
}

.header-quick-links li a {
	border-bottom: 1px solid transparent;
	color: #fff;
	padding-bottom: 7px;
	text-decoration: none;
	transition: border 0.2s ease, padding 0.2s ease;
}

@media (min-width: 1201px) {
	.header-quick-links li a:hover {
		border-bottom: 1px solid #fff;
		padding-bottom: 3px;
	}
}

.header-quick-links li:last-child {
	padding: 0 0 0 25px;
}

.header-quick-links li:last-child a,
.header-quick-links li:last-child a:hover {
	border-radius: 0;
	border: 0;
	font-size: 12px;
	font-weight: 500;
	height: 50px;
	letter-spacing: 2px;
	line-height: 50px;
	padding: 0 25px;
	text-transform: uppercase;
	transition: background 0.2s ease;
}

.header-quick-links li:last-child a:hover {
	background: var(--secondary-color);
	border: 0;
}

/* --------- Alternate Header / Mobile --------- */

@media (min-width: 800px) {
	.alternate-header .header .header-quick-links {
		display: none;
	}

	.alternate-header .header-quick-links {
		display: block;
		height: auto;
		padding: 15px 80px 15px 0;
		text-align: center;
	}

	.alternate-header .header-quick-links ul li {
		padding: 5px 15px;
	}

	.alternate-header .header-quick-links ul li a {
		border: 0;
		padding: 0;
	}

	.alternate-header .header-quick-links ul li:after {
		display: none;
	}

	.alternate-header .header-quick-links ul li:last-child {
		padding: 0;
	}

	.alternate-header .header-quick-links ul li:last-child a,
	.alternate-header .header-quick-links ul li:last-child a:hover {
		height: auto;
		line-height: 100%;
		padding: 5px 10px;
	}
}

@media (max-width: 1200px) {
	.header .header-quick-links {
		display: none;
	}

	.header-quick-links {
		display: block;
		height: auto;
		padding: 15px 0;
		text-align: center;
	}

	.header-quick-links ul li {
		padding: 5px 15px;
	}

	.header-quick-links ul li a {
		border: 0;
		padding: 0;
	}

	.header-quick-links ul li:after {
		display: none;
	}

	.header-quick-links ul li:last-child {
		padding: 0;
	}

	.header-quick-links ul li:last-child a,
	.header-quick-links ul li:last-child a:hover {
		height: auto;
		line-height: 100%;
		padding: 5px 10px;
	}
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Header Logo ---------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.header .logo {
	width: 290px;
}

.header .logo img,
.header .logo svg {
	display: block;
	transition: transform 0.2s ease;
	width: 100%;	
}

.header .logo:hover img,
.header .logo:hover svg {
	transform: scale(1.05);
}

/* --------- Alternate Header / Mobile --------- */

@media (min-width: 800px) {
	.alternate-header .header {
		height: 80px;
	}

	.alternate-header .header .logo {
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
		background: rgba(255,255,255,0.85);
		box-shadow: 0 10px 20px rgba(0,0,0,0.16);
		height: 100%;
		padding: 15px 30px;
	}
}

@media (max-width: 1200px) {
	.header {
		height: 80px;
	}
}

@media (max-width: 460px) {
	.header .logo {
		width: 160px;
	}
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Nav Toggle ----------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.nav-toggle {
	display: none;
}

/* --------- Alternate Header / Mobile --------- */

.alternate-header .nav-toggle {
	display: flex;
	height: 20px;
	position: fixed;
	top: 40px;
	z-index: 1000;
}

@media (min-width: 800px) {
	.alternate-header .nav-toggle {
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
		background: rgba(255,255,255,0.85);
		box-shadow: 0 10px 20px rgba(0,0,0,0.16);
		display: block;
		height: 80px;
		position: fixed;
		right: 0px;
		top: 40px;
		transform: translateY(-50%);
		transition: backdrop-filter 0.2s ease, -webkit-backdrop-filter 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
		width: 80px;
		z-index: 1000;
	}

	.show-nav.alternate-header .nav-toggle {
		backdrop-filter: blur(0px);
		-webkit-backdrop-filter: blur(0px);
		background-color: transparent;
		box-shadow: none;
	}

	.alternate-header .nav-toggle span,
	.alternate-header .nav-toggle:before,
	.alternate-header .nav-toggle:after {
		background: #114062;
		border-radius: 4px;
		content: '';
		height: 4px;
		left: 0;
		position: absolute;
		top: 50%;
		transition: background-color 0.2s ease, opacity 0.2s ease, top 0.2s ease, transform 0.2s ease;
		width: 24px;
	}

	.alternate-header .nav-toggle:before {
		color: transparent;
		font-size: 0;
		left: 20px;
		text-indent: -9999px;
	}

	.alternate-header .nav-toggle span {
		color: transparent;
		left: 20px;
		top: 32px;
		transition: opacity 0.2s ease, top 0.2s ease, transform 0.2s ease;
		width: 34px;
	}

	.alternate-header .nav-toggle:after {
		left: 20px;
		top: 48px;
		width: 34px;
	}

	.alternate-header.show-nav .nav-toggle span {
		background-color: #fff;
		transform: rotate(45deg);
		top: 40px;
	}

	.alternate-header.show-nav .nav-toggle:before {
		opacity: 0;
		top: 40px;
	}

	.alternate-header.show-nav .nav-toggle:after {
		background-color: #fff;
		transform: rotate(-45deg);
		top: 40px;
	}
}

@media (max-width: 1200px) {
	.nav-toggle {
		display: block;
		height: 24px;
		position: absolute;
		right: 30px;
		top: 50%;
		transform: translateY(-50%);
		width: 40px;
		z-index: 2;
	}

	.nav-toggle span,
	.nav-toggle:before,
	.nav-toggle:after {
		background: #114062;
		border-radius: 4px;
		content: '';
		height: 4px;
		left: 0;
		position: absolute;
		top: 0;
		transition: background-color 0.2s ease, top 0.2s ease, transform 0.2s ease;
		width: 100%;
	}

	.nav-toggle span {
		color: transparent;
		font-size: 0;
		text-indent: -9999px;
		top: 0;
	}

	.nav-toggle:before {
		top: 10px;
		transition: opacity 0.2s ease;
		width: 34px;
	}

	.nav-toggle:after {
		top: 20px;
	}

	body.show-nav .nav-toggle span {
		transform: rotate(45deg);
		top: 11px;
	}

	body.show-nav .nav-toggle:before {
		opacity: 0;
	}

	body.show-nav .nav-toggle:after {
		transform: rotate(-45deg);
		top: 11px;
	}
}

/* ---------------------------------------------------------------------------------------------------------- */
/* Primary Nav ---------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */

.primary-nav-wrap {
	align-items: center;
	display: flex;
	justify-content: flex-end;
}

.primary-nav-wrap ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-nav-wrap li {
	position: relative;
}

.primary-nav-wrap a {
	color: var(--default-text-color);
	display: block;
	font-family: 'Jost', sans-serif;
	font-size: 14px;
	text-decoration: none;
}

/* --------------------- */
/* Top Level Nav ------- */
/* --------------------- */

.primary-nav-wrap > ul {
	align-items: center;
	display: flex;
}

.primary-nav-wrap > ul > li {
	margin-left: 10px;
}

.primary-nav-wrap > ul > li > a {
	align-items: center;
	border-bottom: 7px solid transparent;
	display: flex;
	font-weight: 500;
	height: 80px;
	letter-spacing: 2px;
	padding-top: 7px;
	padding: 7px 10px 0 10px;
	text-transform: uppercase;
	transition: border 0.2s ease;
}

.primary-nav-wrap > ul > li:hover > a,
.primary-nav-wrap > ul > li.selected > a {
	border-bottom: 7px solid var(--primary-color); 
}

/* --------------------- */
/* Secondary Level ----- */
/* --------------------- */

.primary-nav-wrap > ul ul {
	background: #fff;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	box-shadow: 0 8px 16px rgba(0,0,0,0.16);
	max-height: calc(60vh - 130px);
	opacity: 0;
	position: absolute;
	top: 100%;
	transition: opacity 0.2s ease, visibility 0.2s ease;
	visibility: hidden;
	width: 236px;
}

.primary-nav-wrap > ul ul.scrollable {
	overflow-x: hidden;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}

.primary-nav-wrap > ul > li:last-child > ul {
	right: 0;
}

.primary-nav-wrap > ul li:hover > ul {
	opacity: 1;
	visibility: visible;
}

.primary-nav-wrap > ul ul li > a {
	padding: 10px 20px;
	transition: background 0.2s ease;
}

.primary-nav-wrap > ul ul li:hover > a,
.primary-nav-wrap > ul ul li.selected > a {
	background: #F4F4F4;
}

.primary-nav-wrap > ul ul ul {
	display: none;
}

@media (max-width: 1400px) {
	.primary-nav-wrap a {
		font-size: 13px;
	}

	.primary-nav-wrap > ul > li {
		margin-left: 5px;
	}

	.primary-nav-wrap > ul > li > a {
		padding-left: 5px;
		padding-right: 5px;
	}
}

#mobile-check-element { display: none; }

/* --------- Alternate Header / Mobile --------- */

@media (min-width: 800px) {
	.alternate-header #mobile-check-element {
		display: block;
		opacity: 0;
		position: fixed;
		visibility: hidden;
		z-index: -999;
	}

	.alternate-header .header .primary-nav-wrap {
		display: none;
	}

	.alternate-header .primary-nav-wrap {
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
		background: #FFFFFFE6;
		bottom: 0;
		display: block;
		height: auto;
		-webkit-overflow-scrolling: touch;
		overflow: hidden;
		position: fixed;
		right: -480px;
		top: 0px;
		transition: right 0.3s ease, box-shadow 0.3s ease;
		width: 480px;
		z-index: 600;
	}

	.alternate-header.show-nav .primary-nav-wrap {
		box-shadow: 0 10px 20px rgb(0 0 0 / 16%);
		right: 0;
	}

	.alternate-header .primary-nav-wrap > ul {
		display: block;
		height: calc(100vh - 180px);
		overflow-y: scroll;
	}

	.alternate-header .primary-nav-wrap > ul a {
		font-size: 16px;
	}

	.alternate-header .primary-nav-wrap > ul > li {
		border-bottom: 1px solid rgba(0,0,0,0.1);
		margin: 0;
	}

	.alternate-header .primary-nav-wrap > ul li.sub > a {
		padding-right: 30px;
		position: relative;
	}

	.alternate-header .primary-nav-wrap > ul li.sub > a:before {
		background: var(--default-text-color);
		content: '';
		height: 14px;
		position: absolute;
		right: 26px;
		top: 50%;
		transform: translateY(-50%);
		width: 2px;
	}

	.alternate-header .primary-nav-wrap > ul li.sub > a:after {
		background: var(--default-text-color);
		content: '';
		height: 2px;
		position: absolute;
		right: 20px;
		top: 50%;
		transform: translateY(-50%);
		width: 14px;
	}

	.alternate-header .primary-nav-wrap > ul li.sub > a.clicked:before {
		display: none;
	}

	.alternate-header .primary-nav-wrap > ul > li > a {
		border: 0;
		display: block;
		height: auto;
		letter-spacing: 2px;
		padding: 15px 25px;
	}

	.alternate-header .primary-nav-wrap > ul > li:hover > a,
	.alternate-header .primary-nav-wrap > ul > li.selected > a {
		border: 0;
		color: var(--primary-color);
	}

	.alternate-header .primary-nav-wrap > ul ul {
		background: rgba(0,0,0,0.1);
		box-shadow: none;
		display: none;
		max-height: none;
		opacity: 1;
		position: static;
		visibility: visible;
		width: auto;
	}

	.alternate-header .primary-nav-wrap > ul ul li > a {
		padding: 10px 25px;
	}

	.alternate-header .primary-nav-wrap > ul ul li:hover > a, 
	.alternate-header .primary-nav-wrap > ul ul li.selected > a {
		background: none;
		color: var(--primary-color);
	}
}

@media (max-width: 1200px) {
	#mobile-check-element {
		display: block;
		opacity: 0;
		position: fixed;
		visibility: hidden;
		z-index: -999;
	}

	.header .primary-nav-wrap {
		display: none;
	}

	.primary-nav-wrap {
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
		background: #FFFFFFE6;
		bottom: 0;
		display: block;
		height: auto;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
		position: fixed;
		right: -400px;
		top: 80px;
		transition: right 0.3s ease, box-shadow 0.3s ease;
		width: 400px;
		z-index: 600;
	}

	body.show-nav .primary-nav-wrap {
		box-shadow: 0 10px 20px rgb(0 0 0 / 16%);
		right: 0;
	}

	.primary-nav-wrap > ul {
		display: block;
	}

	.primary-nav-wrap > ul a {
		font-size: 16px;
	}

	.primary-nav-wrap > ul > li {
		border-bottom: 1px solid rgba(0,0,0,0.1);
		margin: 0;
	}

	.primary-nav-wrap > ul li.sub > a {
		padding-right: 30px;
		position: relative;
	}

	.primary-nav-wrap > ul li.sub > a:before {
		background: var(--default-text-color);
		content: '';
		height: 14px;
		position: absolute;
		right: 26px;
		top: 50%;
		transform: translateY(-50%);
		width: 2px;
	}

	.primary-nav-wrap > ul li.sub > a:after {
		background: var(--default-text-color);
		content: '';
		height: 2px;
		position: absolute;
		right: 20px;
		top: 50%;
		transform: translateY(-50%);
		width: 14px;
	}

	.primary-nav-wrap > ul li.sub > a.clicked:before {
		display: none;
	}

	.primary-nav-wrap > ul > li > a {
		border: 0;
		display: block;
		height: auto;
		letter-spacing: 2px;
		padding: 15px 25px;
	}
	
	.primary-nav-wrap > ul > li:hover > a,
	.primary-nav-wrap > ul > li.selected > a {
		border: 0;
		color: var(--primary-color);
	}
	
	.primary-nav-wrap > ul ul {
		background: rgba(0,0,0,0.1);
		box-shadow: none;
		display: none;
		max-height: none;
		opacity: 1;
		position: static;
		visibility: visible;
		width: auto;
	}

	.primary-nav-wrap > ul ul li > a {
		padding: 10px 25px;
	}

	.primary-nav-wrap > ul ul li:hover > a, 
	.primary-nav-wrap > ul ul li.selected > a {
		background: none;
		color: var(--primary-color);
	}
}

@media (max-width: 460px) {
	.primary-nav-wrap {
		right: -100%;
		width: 100%;
	}

	body.show-nav .primary-nav-wrap {
		right: 0;
	}
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Header Search -------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.header-search-toggle {
	border-left: 1px solid #ccc;
	background: url(/images/icons/search-icon.svg) 50% 50% no-repeat;
	cursor: pointer; 
	height: 40px;
	margin-left: 25px;
	width: 90px;
}

body.show-search .header-search-toggle {
	background-image: url(/images/icons/close-x-icon.svg);
}

.header-search-form {
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	background: rgba(255,255,255,0.9);;
	box-shadow: 0 10px 20px rgba(0,0,0,0.16);
	opacity: 0;
	padding: 20px;
	position: absolute;
	top: 100%;
	transition: opacity 0.2s ease, visibility 0.2s ease;
	visibility: hidden;
}

body.show-search .header-search-form {
	opacity: 1;
	visibility: visible;
}

.header-search-form label {
	background: rgba(255,255,255,0.9);;
	border-radius: 25px;
	border: 1px solid rgba(255,255,255,0.9);;
	display: block;
	position: relative;
	width: 215px;
}

.header-search-form .header-search-text-input {
	background: none;
	border: 0;
	padding: 5px 10px;
	width: calc(100% - 45px);
}

.header-search-form .header-search-search-button {
	background: url(/images/icons/search-icon.svg) 50% 50% no-repeat;
	border: 0;
	bottom: 0;
	cursor: pointer;
	position: absolute;
	right: 0;
	top: 0;
	transition: opacity 0.2s ease;
	width: 45px;
}

.header-search-search-button:hover {
	opacity: 0.6;
}

/* --------- Alternate Header / Mobile --------- */

@media (min-width: 800px) {
	.alternate-header .primary-nav-wrap .header-search-toggle {
		display: none;
	}

	.alternate-header .header-search-form {
		margin-bottom: 10px;
		opacity: 1;
		position: static;
		visibility: visible;
	}

	.alternate-header .header-search-form label {
		width: 100%;
	}
}

@media (max-width: 1400px) {
	.header-search-toggle {
		margin-left: 10px;
		width: 50px;
	}
}

@media (max-width: 1200px) {
	.primary-nav-wrap .header-search-toggle {
		display: none;
	}

	.header-search-form {
		margin-bottom: 10px;
		opacity: 1;
		position: static;
		visibility: visible;
	}

	.header-search-form label {
		width: 100%;
	}
}



/* ---------------------------------------------------------------------------------------------------------- */
/* Page Banner ---------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.page-banner {
	color: #fff;
	padding: 100px 30px;
	position: relative;
	text-align: center;
}

.page-banner *,
.page-banner h1 {
	color: #fff;
	position: relative;
	z-index: 3;
}

.page-banner h1 {
	margin: 0;
}

.page-banner .image {
	background: url(/images/template/default-heading-background.jpg) 50% 50% no-repeat;
	background-size: cover;
	bottom: 0;
	filter: grayscale(1);
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
}

.page-banner:after,
.page-banner:before {
	background: rgba(58,92,4,0.75);
	background: linear-gradient(0deg, rgba(78,118,14,0.55), rgb(58, 92, 4));
	bottom: 0;
	content: '';
	left: 0;
	opacity: 0.78;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
}

.page-banner:after {
	background: var(--default-text-color);
	opacity: 0.1;
	z-index: 1;
}

.middle-area .page-banner {
	display: none;
}

@media (max-width: 768px) {
	.page-banner {
		padding: 50px 30px;
	}
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Main Content / Containers -------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.ss-section-wrap-inner {
	max-width: 1280px;
	margin: 0 auto;
}

.wrapper,
.page-type-0 .middle-area .wrapper {
	max-width: 1350px;
	margin: 0 auto;
}

.middle-area {
	padding: 60px 30px;
}

.middle-area.has-secondary-nav .wrapper {
	display: flex;
	justify-content: space-between;
}

.middle-area.has-secondary-nav .content-area {
	width: calc(100% - 340px);
}

@media (max-width: 1023px) {
	.middle-area.has-secondary-nav .content-area {
		width: 100%;
	}
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Breadcrumbs ---------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.breadcrumbs-wrap {
	border-bottom: 1px solid #ccc;
	color: inherit;
	font-family: 'Jost', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 2px;
	padding: 10px 30px;
	text-transform: uppercase;
}

.breadcrumbs-wrap a {
	color: inherit;
	text-decoration: none;
}

.breadcrumbs-wrap a:hover {
	color: var(--secondary-color);
}

@media (max-width: 768px) {
	.breadcrumbs-wrap {
		display: none;
	}
}

.middle-area img {
	height: auto !important;
	max-width: 100%;
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Secondary Navigation ------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.secondary-nav-wrap {
	font-family: 'Jost', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 2px;
	width: 300px;
}

.secondary-nav-wrap ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
}

.secondary-nav-wrap li {
	margin-bottom: 15px;
}

.secondary-nav-wrap a {
	color: inherit;
	display: block;
	text-decoration: none;
}

.secondary-nav-wrap li.sub > a:after {
	content: '+';
	display: inline-block;
	transform: translateY(-1px);
}

.secondary-nav-wrap li.sub.selected > a:after,
.secondary-nav-wrap li.sub > a.clicked:after {
	content: '-';
}

.secondary-nav-wrap li.selected > a,
.secondary-nav-wrap li > a.clicked,
.secondary-nav-wrap a:hover {
	color: var(--primary-color);
}

.secondary-nav-wrap li.selected > a {
	font-weight: 700;
}

.secondary-nav-wrap ul ul {
	display: none;
	margin-top: 15px;
	padding-left: 15px;
}


.secondary-nav-wrap li.selected > ul {
	display: block;
}

@media (max-width: 1023px) {
	.secondary-nav-wrap {
		display: none;
	}
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Footer --------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.footer {
    color: #fff;
    overflow: hidden;
    padding: 40px 30px;
    position: relative;
    text-align: center;
}

.footer .footer-bg-image {
    bottom: 0;
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.footer .footer-bg-image:before {
    backdrop-filter: grayscale(1);
    bottom: 0;
    content: '';
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.footer .footer-bg-image:after {
    backdrop-filter: grayscale(1);
    background-color: var(--primary-color);
    bottom: 0;
    content: '';
    display: block;
    left: 0;
    opacity: 0.9;
    position: absolute;
    right: 0;
    top: 0;
}

.footer .footer-bg-image p,.footer .footer-bg-image img {
    height: 100% !important;
    object-fit: cover;
    object-position: 50%;
    width: 100% !important;
}

.footer a {
	color: #fff;
	text-decoration: none;
}

.footer a:hover {
	text-decoration: underline;
}

.footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer ul li {
	display: inline-block;
}

.footer-nav-links {
	margin-bottom: 50px;
}

.footer-nav-links li {
	padding: 5px 15px;
	position: relative;
}

.footer-nav-links li:after {
	background: #fff;
	content: '';
	height: 15px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
}

.footer-nav-links li:last-child:after {
	display: none;
}

.footer-nav-links li a {
	border-bottom: 1px solid transparent;
	font-family: 'Jost', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 2px;
	padding-bottom: 7px;
	text-decoration: none;
	text-transform: uppercase;
	transition: border 0.2s ease, padding 0.2s ease;
}

.footer-nav-links li a:hover {
	border-bottom: 1px solid #fff;
	padding-bottom: 3px;
	text-decoration: none;
}

.footer-logo-address img,
.footer-logo-address svg {
	height: auto !important;
	max-width: 462px;
	width: 100%;
}

.footer-logo-address ul {
	margin-top: 30px;
}

.footer-logo-address ul li {
	margin: 0 10px;
}

.footer-logo-address ul li a {
	display: block;
	transition: transform 0.2s ease;
}

.footer-logo-address ul li a:hover {
	transform: scale(1.1);
}

.copyright {
	margin-top: 50px;
	font-size: 16px;
}

.nav-mode-changer {
	margin-top: 15px;
}
.nav-mode-changer a {
	border-bottom: 1px solid transparent;
	font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    padding-bottom: 7px;
    text-decoration: none;
    text-transform: uppercase;
    transition: border 0.2s ease, padding 0.2s ease;
}
.nav-mode-changer a:hover {
	border-bottom: 1px solid #fff;
    padding-bottom: 3px;
    text-decoration: none;
}

.powered-by-logo {
	display: inline-block;
	height: auto;
	margin-right: 20px;
	min-width: 170px;
	vertical-align: middle;
}

@media (max-width: 600px) {
	.footer {
		padding: 50px 20px;
	}

	.footer ul li {
		padding: 0 10px;
	}

	.footer-logo-address img,
	.footer-logo-address svg {
		max-width: 70%;
	}

	.copyright a {
		display: block;
		margin-bottom: 20px;
		text-align: center;
	}
}



/* ---------------------------------------------------------------------------------------------------------- */
/* Buttons -------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.button,
.small-action-button,
.pager,
.pager-prev,
.pager-next {
	background: var(--secondary-color);
	border-radius: 25px;
	font-family: 'Jost', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 2px;
}

.button {
	padding: 15px 40px;
}

.small-action-button {
	padding: 8px 15px;
}

.white.button {
	background-color: transparent;
	border: 1px solid #fff;
}
.white.button:hover {
	background-color: #fff;
	color: #014C84;
}

.button:hover, 
.small-action-button:hover,
.pager:hover, 
.pager-prev:hover,
.pager-next:hover, 
.pager.on { 
	background: var(--primary-color);
}

form.category-and-window .text-search-wrap .submit,
.search-page-form-wrap .text-search-wrap .submit,
.search-page-form-wrap .text-search-wrap .submit:hover,
form.category-and-window .text-search-wrap .submit:hover {
	background-color: var(--secondary-color);
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 15 15'%3E%3Cpath id='search-icon-white' d='M13.72,12.434h-.678L12.8,12.2a5.583,5.583,0,1,0-.6.6l.232.24v.678L16.722,18,18,16.722Zm-5.146,0a3.859,3.859,0,1,1,3.859-3.859A3.854,3.854,0,0,1,8.575,12.434Z' transform='translate(-3 -3)' fill='%23e9eef2'/%3E%3C/svg%3E");
	border-radius: 0;
	opacity: 1;
}

.search-page-form-wrap .text-search-wrap .submit:hover,
form.category-and-window .text-search-wrap .submit:hover {
  	background-color: var(--primary-color);
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Page Type Style Adjustments ------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------------------------------------------------- */
h2.title {
	font-size: 150%;
}

.list-item.question-item h2.title {
	font-size: 18px;
}

.blog-right-column h3 {
	font-size: 90%;
}

.list-items.testimonial-items .list-item .author {
	margin-top: 10px;
}

.image-grid-link-items .list-item.image-link-grid-item {
	aspect-ratio: 1 / 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 20px;
}
.image-grid-link-items .element-item {
	overflow: hidden;
}
.image-grid-link-items .list-item.image-link-grid-item .image-wrap {
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0;
	left: 0;
	margin: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
}
.image-grid-link-items .list-item.image-link-grid-item .image-wrap img {
	display: block;
	height: 100%;
	object-fit: cover;
	object-position: 50%;
}
.image-grid-link-items .list-item.image-link-grid-item .content-wrap {
	bottom: 0;
	left: 0;
	overflow-x: hidden;
	overflow-y: scroll;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
}
.image-grid-link-items .list-item.image-link-grid-item .title-link-wrap {
	align-items: flex-end;
	background: linear-gradient(180deg, transparent 0%, transparent 40%, var(--default-text-color) 60%, var(--default-text-color) 100%);
	background-position: 50% 42%;
	background-size: 100% 350%;
	color: #fff;
	display: flex;
	height: calc(100% + 40px);
	margin: -20px;
	padding: 20px 20px 20px;
	transition: height 0.3s ease, background-position 0.3s ease, padding 0.3s ease;
}
.image-grid-link-items .list-item.image-link-grid-item:not(.no-description):hover .title-link-wrap {
	background-position: 200% 100%;
}
.image-grid-link-items .list-item.image-link-grid-item:not(.no-description):hover .title-link-wrap .title {
	opacity: 0;
}
.image-grid-link-items .list-item.image-link-grid-item .title-link-wrap .title {
	color: #fff;
	font: 700 21px 'Jost', sans-serif;
	letter-spacing: 0.12em;
	margin-bottom: 5px;
	text-transform: uppercase;
	transition: opacity 0.3s ease;
	width: auto;
}
.image-grid-link-items .list-item.image-link-grid-item .content-wrap {
	color: #fff;
	margin: 10px 10px 10px 0;
	padding: 10px 20px;
	transition: opacity 0.3s ease;
}
.image-grid-link-items .list-item.image-link-grid-item .content-wrap p {
	line-height: 155%
}
.image-grid-link-items .list-item.image-link-grid-item:hover .content-wrap {
	opacity: 1;
}
.image-grid-link-items a.list-item.image-link-grid-item .link.button {
	background-color: transparent;
	background-image: url(/images/icons/arrow-link.svg);
	background-position: calc(100% - 5px) 50%;
	background-repeat: no-repeat;
	background-size: 11px;
	border: none;
	color: #000;
	display: block;
	filter: brightness(0) invert(1);
	height: max-content;
	letter-spacing: 0.12em;
	line-height: 100%;
	margin-bottom: 10px;
	margin-top: 5px;
	padding: 0 20px 0 0;
	position: relative;
	text-transform: uppercase;
	transition: background-position 0.2s ease;
	width: max-content;
}
.image-grid-link-items a.list-item.image-link-grid-item .link.button:hover {
	background-position: 100% 50%;
}

.image-grid-link-items .list-item.image-link-grid-item .content-wrap::-webkit-scrollbar {
	background-color: transparent;
	width: 10px;
}
.image-grid-link-items .list-item.image-link-grid-item .content-wrap::-webkit-scrollbar-thumb {
	background-color: rgba(255,255,255,0.2);
	border-radius: 10px;
}
.image-grid-link-items a.list-item.image-link-grid-item.no-description .title-link-wrap {
	align-items: flex-start;
	flex-direction: column;
	justify-content: flex-end;
}

.social-stream.isotope-grid .element-item, .social-stream.isotope-grid .grid-sizer {
	width: calc(100% / 3 - 14px);
}

.social-stream.isotope-grid .element-item {
	background-color: #f2f2f2;
	border: none;
	display: flex;
	flex-direction: column;
	padding-top: 0;
}
.social-stream .element-item .photo {
	background-color: var(--primary-color);
	margin: 0;
	order: 1;
}
.social-stream .element-item.facebook .photo {
	display: none
}
.social-stream .element-item .photo a {
	border: none;
}
.social-stream .element-item .photo img {
	aspect-ratio: 1 / 1 !important;
}
.social-stream .element-item .author-and-share {
	order: 2;
}
.social-stream .element-item .author-and-share .author .fa {
	display: none;
}
.social-stream .element-item .author-and-share .share {
	display: none;
}
.social-stream .element-item .author-and-share .author {
	font: 600 16px 'Arial', sans-serif;
}
.social-stream .element-item .author-and-share .author a {
	color: #000;
	font-style: normal;
	padding-left: 5px;
	text-decoration: none;
}
.social-stream .element-item .item-content {
	order: 3;
}
.social-stream .element-item .item-footer {
	order: 4;
}

.social-stream .element-item.facebook .item-footer .adjective {
	display: none;
}

/* Use modern color schemes from each social media platform */

.social-stream .element-item.facebook .item-footer { 
	background-color: #0866FF;
}
.social-stream .element-item.twitter .item-footer {
	background: #000; /* using X's brand color */
}
.social-stream .element-item.youtube .item-footer {
	background: #FE0034;
}
.social-stream .element-item.pinterest .item-footer {
	background: #E60023;
}
.social-stream .element-item.instagram .item-footer {
	background: linear-gradient(45deg, #fd5949 0%, #d6249f 100%);
}

a.small-action-button.fr {
	margin-bottom: 15px;
}

.list-items.member-directory-items {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
.list-items.member-directory-items .list-item.member-directory-item {
	align-content: flex-end;
	aspect-ratio: 3 / 4;
	float: none;
	flex: calc(100% / 3 - 12px);
	height: auto;
	margin: 0;
	max-width: calc(100% / 3 - 12px);
	overflow: hidden;
	position: relative;
	width: calc(25% - 12px);
}
.list-items.member-directory-items .list-item.member-directory-item .image {
	bottom: 0;
	height: 100%;
	left: 0;
	margin: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	z-index: -1;
}
.list-items.member-directory-items .list-item.member-directory-item .image > a {
	display: block;
	height: 100%;
	margin: 0;
}
.list-items.member-directory-items .list-item.member-directory-item .image img {
	display: block;
	height: 100% !important;
	object-fit: cover;
	object-position: 50%;
	width: 100% !important;
}
.list-items.member-directory-items .list-item.member-directory-item .image img {
	transition: transform 0.3s ease;
}
.list-items.member-directory-items .list-item.member-directory-item:hover .image img {
	transform: scale(1.1)
}
.list-items.member-directory-items .list-item.member-directory-item .info {
	background: linear-gradient(180deg, transparent, var(--primary-color));
	color: #fff;
	float: none;
	height: auto;
	margin: 0;
	min-height: 0;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 40px;
	transition: padding 0.3s ease;
	width: auto;
}
.list-items.member-directory-items .list-item.member-directory-item:hover .info {
	padding-bottom: 32px;
	padding-top: 80px;
}
.list-items.member-directory-items .list-item.member-directory-item .info .title {
	color: #fff;
	FONT: 700 28px 'Jost';
	letter-spacing: 0.12em;
	margin-bottom: 5px;
	text-transform: uppercase;
}
.list-items.member-directory-items .list-item.member-directory-item .info .view-profile-link {
	margin-bottom: -20px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}
.list-items.member-directory-items .list-item.member-directory-item .info .view-profile-link a {
	color: #fff;
	font: 700 14px 'Jost',sans-serif;
	letter-spacing: 0.12em;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
}
.list-item.member-directory-item a:after {
	background-color: #fff;
	content: '';
	display: block;
	height: 10px;
	pointer-events: none;
	position: absolute;
	right: -15px;
	top: 5px;
	transition: color 0.2s ease, right 0.2s ease;
	-webkit-mask-image: url(/images/icons/arrow-link.svg?v=0.01);
	-webkit-mask-position: 50%;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	width: 10px;
}
.list-item.member-directory-item a:hover:after {
	right: -20px;
}
.list-items.member-directory-items .list-item.member-directory-item:hover .info .view-profile-link {
	opacity: 1;
	pointer-events: all;
}

@media (max-width: 900px) {
	.list-items.member-directory-items .list-item.member-directory-item {
		flex: calc(100% / 3 - 10px);
		max-width: calc(100% / 3 - 10px);
		width: calc(100% / 3 - 10px);
	}
}
@media (max-width: 768px) {
	.list-items.member-directory-items .list-item.member-directory-item {
		flex: calc(50% - 8px);
		max-width: calc(50% - 8px);
		width: calc(50% - 8px);
	}
	.social-stream.isotope-grid .element-item, .social-stream.isotope-grid .grid-sizer {
		width: calc(50% - 14px);
	}
}

@media (max-width: 500px) {
	.social-stream .element-item .item-footer .posted-date-label {
		display: none;
	}
	.list-items.member-directory-items .list-item.member-directory-item {
		flex: 100%;
		max-width: 100%;
		width: 100%;
	}
}

@media (max-width: 450px) {
	.social-stream.isotope-grid .element-item, .social-stream.isotope-grid .grid-sizer {
		width: 100%;
	}
}

@media (min-width: 451px) and (max-width: 660px) {
	.list-items.member-directory-items li:nth-child(2n) {
		margin-right: 0;
	}
}

/* ---------------------------------------------------------------------------------------------------------- */
/* Animate In on Scroll ------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
@media (min-width: 1024px) {
	body {
		overflow-x: hidden;
		position: relative;
	}
	
	.anim-in {
		opacity: 0;
		transform: translateY(30px) scale(1.15);
		-webkit-transition: opacity .75s ease, transform .75s ease;
		transition: opacity .75s ease, transform .75s ease;
	}
	
	.anim-in.visible {
		opacity:1;
		transform: translateY(0);
	}
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Homepage ------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
body.page-index .middle-area {
	padding: 0;
}

body.page-index .wrapper,
body.page-index.page-type-0 .middle-area .wrapper {
	max-width: none;
}

/* --------- Alternate Header --------- */

.alternate-header.page-index {
	padding-top: 0;
}

/* --------------------- */
/* Homepage Banner ----- */
/* --------------------- */
.homepage-banner {
	margin-bottom: 90px;
	position: relative;
}

.homepage-banner .ss-section-wrap-inner {
	max-width: 100%;
}

.homepage-banner .ss-content-block {
	display: block;
	margin: 0;
	width: 100%;
}

.homepage-banner,
.homepage-banner .embedded-gallery .slide {
	background: #000;
	height: 80vh;
}

.embedded-gallery .stage {
	max-width: 100%;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.embedded-gallery .stage.cycle-loaded {
	opacity: 1;
}

@media (min-width: 1024px) {
	.embedded-gallery .stage {
		aspect-ratio: auto;
		min-height: 80vh;
	}
}

.homepage-banner .embedded-gallery .slide .caption {
	backdrop-filter:  blur(7px);
	-webkit-backdrop-filter:  blur(7px);
	background: rgba(78,118,14,0.7);
	bottom: 50px;
	box-shadow: none;
	color: #fff;
	display: block !important;
	height: auto !important;
	left: 0;
	margin: 0 !important;
	min-width: 700px;
	padding: 40px 60px !important;
	right: auto;
	width: 50%;
}

.homepage-banner .embedded-gallery .slide .caption h2 {
	font-size: 26px;
}

.homepage-banner .embedded-gallery .slide .caption h3 {
	font-size: 54px;
	font-weight: 700;
	letter-spacing: 9.88px;
}

.homepage-banner .embedded-gallery .slide .caption p {
	
}

.homepage-banner .embedded-gallery-nav-wrapper {
	align-items: center;
	bottom: 0;
	display: flex;
	height: 50px;
	margin: 0;
	padding: 0 0 0 60px;
	position: absolute;
	width: auto;
	z-index: 50;
}

.homepage-banner .embedded-gallery-nav-wrapper .embedded-gallery-nav,
.homepage-banner .embedded-gallery-nav-wrapper .embedded-gallery-nav li,
.homepage-banner .embedded-gallery-nav-wrapper .embedded-gallery-nav li a {
	display: inline-block;
	float: none;
	height: auto;
	line-height: 100%;
	padding: 0;
	position: static;
}

.homepage-banner .embedded-gallery-nav-wrapper .embedded-gallery-nav li {
	margin-right: 10px;
}

.homepage-banner .embedded-gallery-nav-wrapper .embedded-gallery-nav li a {
	background: #fff;
	border-radius: 100%;
	height: 12px;
	opacity: 0.5;
	transition: opacity 0.2s ease;
	width: 12px;
}

.homepage-banner .embedded-gallery-nav-wrapper .embedded-gallery-nav li.activeSlide a,
.homepage-banner .embedded-gallery-nav-wrapper .embedded-gallery-nav li a:hover {
	opacity: 1;
}

.homepage-banner .embedded-gallery-nav-wrapper .embedded-gallery-nav li a img {
	display: none;
}

.video-banner-section {
	overflow: hidden;
	position: relative;
	height: 100vh;
	margin-bottom: 90px;
}
.video-banner-section .col-1,
.video-banner-section .ss-section-wrap-inner {
	flex: auto;
	margin: 0;
	max-width: none;
}

.video-banner-section .col-1:last-child {
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    background: rgba(78,118,14,0.7);
    bottom: 50px;
    box-shadow: none;
    color: #fff;
    display: block !important;
    height: auto !important;
    left: 0;
    margin: 0 !important;
    width: 700px;
    padding: 40px 60px !important;
	position: absolute;
    right: auto;
    max-width: 50%;
	z-index: 10;
}
.video-banner-section .col-1:last-child h2 {
    font-size: 26px;
}
.video-banner-section .col-1:last-child h3 {
    font-size: 54px;
    font-weight: 700;
    letter-spacing: 9.88px;
}

@supports not (aspect-ratio) {
	.ss-editor-video-embed-container {
		height: 0;
		margin: 0;
		padding-top: 56.25%;
	}
	.ss-editor-video-embed-container iframe {
		height: 100%;
		position: absolute;
		top: 0;
	}
}

.video-banner-section .ss-editor-video-embed-container {
	left: 50%;
	max-width: none;
	min-width: 100vw;
	height: 100vh;
	opacity: 1 !important;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -52.5%);
	width: 190vh !important;
}
.video-banner-section .col-1:first-child:after {
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    bottom: 0;
    content: '';
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10
}

@supports not (aspect-ratio) {
	.video-banner-section .ss-editor-video-embed-container {
		transform: translate(-50%, -50%);
	}

	.video-banner-section .ss-editor-video-embed-container iframe {
		height: 100%;
		position: absolute;
	}
}

@media (min-aspect-ratio: 16/9) {
	.video-banner-section .ss-editor-video-embed-container { 
		/* height = 100 * (9 / 16) = 56.25 */
		min-height: 56.25vw;
	}
}

@media (max-aspect-ratio: 16/9) {
	.video-banner-section .ss-editor-video-embed-container { 
		/* width = 100 / (9 / 16) = 177.777777 */
		width: 177.78vh;
	}
}

@media (max-width: 768px) {
	.homepage-banner {
		margin-bottom: 45px;
	}
	.video-banner-section .col-1:last-child {
		max-width: 100%;
		width: 100%;
	}
	.homepage-banner .embedded-gallery.static-page-inline-gallery .cycle-loaded .slide {
		display: flex !important;
		flex-direction: column;
		height: 100% !important;
	}
	.homepage-banner .embedded-gallery.static-page-inline-gallery .cycle-loaded .slide .image {
		flex: auto;
	}
	.homepage-banner .embedded-gallery.static-page-inline-gallery .cycle-loaded .slide .image,
	.homepage-banner .embedded-gallery.static-page-inline-gallery .cycle-loaded .slide .caption {
		position: relative;
	}	
}

@media (max-width: 750px) {
	.homepage-banner .embedded-gallery .slide .caption {
		bottom: 0;
		padding: 40px 60px 60px 60px !important;
		min-width: 0;
		width: 100%;
	}

	.homepage-banner .embedded-gallery .slide .caption h2 {
		font-size: 20px;
	}

	.homepage-banner .embedded-gallery .slide .caption h3 {
		font-size: 34px;
		letter-spacing: 3px;
	}
}

@media (max-width: 550px) {
	.homepage-banner .embedded-gallery .slide .caption {
		padding: 30px 30px 60px 30px !important;
	}

	.homepage-banner .embedded-gallery-nav-wrapper {
		padding-left: 30px;
	}
}


/* --------------------- */
/* Homepage Section 1 -- */
/* --------------------- */
.homepage-section-1 {
	opacity: 1;
	transform: none;
}

@media (min-width: 768px) {
	.homepage-section-1 .ss-content-block:first-child {
		padding-right: 50px;
	}
}

@media (max-width: 768px) {
	.homepage-section-1 .ss-section-wrap-inner {
		margin: 0 30px;
	}
}


/* --------------------- */
/* Quick Links --------- */
/* --------------------- */
@media (min-width: 768px) {
	.quick-links-section .ss-section-wrap-inner {
		align-items: center;
		box-shadow: 0 20px 40px rgba(0,0,0,0.16);
		justify-content: flex-end;
		max-width: 1250px;
		margin: 50px auto 80px;
		padding: 40px 20px;
		flex-wrap: nowrap;
	}

	.quick-links-section .ss-section-wrap-inner .ss-content-block {
		border-right: 1px solid #5A5C60;
		display: flex;
		flex-direction: column;
		flex: 1;
		justify-content: center;
		padding: 10px 20px;
		margin: 0;
		text-align: center;
	}

	.quick-links-section .ss-section-wrap-inner .ss-content-block:last-child {
		border: 0;
	}
}

.quick-links-section a {
	color: var(--default-text-color);
	display: block;
	font-family: 'Jost', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-decoration: none;
	transition: transform 0.2s ease;
}

.quick-links-section a:hover {
	transform: scale(1.05);
}

.quick-links-section svg {
	min-height: 33px;
}

.quick-links-section svg,
.quick-links-section svg * {
	fill: var(--primary-color);
}


@media (max-width: 768px) {
	.quick-links-section .ss-section-wrap-inner {
		margin: 0 30px;
	}

	.quick-links-section .ss-section-wrap-inner .ss-content-block {
		box-shadow: 0 20px 40px rgba(0,0,0,0.16);
		border-radius: 5px;
		text-align: center;
		padding: 30px;
	}
}


/* --------------------- */
/* Callout Box --------- */
/* --------------------- */
.callout-section {
	margin-bottom: 80px;
}

.callout-section .ss-section-wrap-inner {
	align-items: center;
	background: var(--primary-color);
	background: linear-gradient(220deg, var(--callout-section-primary-color), var(--callout-section-secondary-color));
	border-radius: 4px;
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	margin: 0;
	max-width: none;
	min-height: 500px;
	overflow: hidden;
	padding-bottom: 0;
	position: relative;
}

.callout-section.has-background-color {
	border-radius: 4px;
}
.callout-section.has-background-color .ss-section-wrap-inner {
	background: transparent;
	color: unset;
}

.callout-section .ss-content-block {
	flex: auto;
	margin: 0;
	padding: 0;
}
.callout-section .ss-content-block:not(.ss-image-block, .slideshow-block, .embedded-video-block) {
	padding: 60px;
}
.callout-section .ss-content-block.ss-image-block,
.callout-section .ss-content-block.embedded-video-block,
.callout-section .ss-content-block.slideshow-block {
	align-items: stretch;
	align-self: stretch;
	display: flex;
	height: auto;
	max-width: 100%;
	position: relative;
}
.callout-section .ss-content-block.slideshow-block .inline-gallery-wrap .stage {
	min-height: 0;
}
.callout-section .embedded-video-block p,
.callout-section .ss-image-block p,
.callout-section .slideshow-block .inline-gallery-wrap,
.callout-section .slideshow-block .inline-gallery-wrap .embedded-gallery-wrap,
.callout-section .slideshow-block .inline-gallery-wrap .embedded-gallery,
.callout-section .slideshow-block .inline-gallery-wrap .stage {
	border: none;
	display: block;
	height: 100%;
	width: 100%;
}
.callout-section .embedded-video-block .ss-editor-video-embed-container,
.callout-section .embedded-video-block .ss-editor-video-embed-container iframe,
.callout-section .embedded-video-block .ss-editor-video-embed-container video {
	height: 100%;
	margin: 0;
	object-fit: cover;
	object-position: 50%;
	padding: 0;
	width: 100%;
}
.callout-section .ss-image-block img {
	display: block;
	height: 100% !important;
	margin: 0;
	object-fit: cover;
	object-position: 50%;
	width: 100% !important;
}

.callout-section.outlined {
	background: none;
	border: 1px solid var(--primary-color);
	color: unset;
}
.callout-section.outlined h2,
.callout-section.outlined h3,
.callout-section.outlined h4,
.callout-section.outlined h5,
.callout-section.outlined h6 {
	color: unset;
}

@media (max-width: 1100px) {
	.ss-section-wrap.callout-section {
		padding: 0;
	}
	.callout-section .ss-section-wrap-inner {
		margin: 0;
		min-height: 0;
	}
	.callout-section .ss-content-block.ss-image-block .inner-content-block-wrap {
		display: flex;
		position: relative;
	}
}
@media (max-width: 980px) {
	.ss-section-wrap.callout-section {
		padding: 0;
	}
	.ss-section-wrap.callout-section:first-child {
		margin-top: -25px;
	}
	.ss-section-wrap.callout-section + .ss-section-wrap.callout-section {
		margin-top: -30px;
	}
	.ss-section-wrap.callout-section:last-child {
		margin-bottom: -10px
	}
}
@media (max-width: 750px) {
	.callout-section .ss-content-block:not(.ss-image-block, .slideshow-block, .embedded-video-block) {
		padding: 30px;
	}
	.callout-section .embedded-video-block p,
	.callout-section .ss-image-block p,
	.callout-section .slideshow-block .inline-gallery-wrap,
	.callout-section .slideshow-block .inline-gallery-wrap .embedded-gallery-wrap,
	.callout-section .slideshow-block .inline-gallery-wrap .embedded-gallery,
	.callout-section .slideshow-block .inline-gallery-wrap .stage {
		aspect-ratio: 16 / 9;
		max-height: 500px;
		overflow: hidden;
		width: 100%;
	}
	.callout-section .slideshow-block {
		aspect-ratio: 16 / 9;
		/* flex: none; */
		height: auto;
	}
	.callout-section .ss-image-block p img,
	.callout-section .ss-image-block .inner-content-block-wrap,
	.callout-section .embedded-video-block .inner-content-block-wrap,
	.callout-section .slideshow-block .inner-content-block-wrap {
		max-height: 500px;
	}
	.callout-section .ss-content-block.embedded-video-block,
	.callout-section .ss-content-block.embedded-video-block .ss-editor-video-embed-container {
		aspect-ratio: 16 / 9;
	}
	.callout-section .ss-section-wrap-inner {
		display: flex;
		flex-wrap: wrap;
	}
	.callout-section .ss-image-block, .callout-section .slideshow-block, .callout-section .embedded-video-block {
		order: -1;
	}
}

/* ============================================= */
/* Custom Section -> Scrolling Logos =========== */
/* ============================================= */

.scrolling-logos-section .ss-section-wrap-inner {
	max-width: calc(100% - 60px);
	padding: 0;
}
.scrolling-logos {
	margin-bottom: 60px;
}

.scrolling-logos .flickity-viewport {
	margin-top: 70px;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
}
.scrolling-logos .flickity-viewport:before,
.scrolling-logos .flickity-viewport:after {
	background: linear-gradient(90deg, #fff 0%, transparent 100%);
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	width: 80px;
	z-index: 1
}
.scrolling-logos .flickity-viewport:after {
	left: auto;
	right: 0;
	transform: rotate(180deg);
}
.scrolling-logos .logo-slide {
	width: calc(100% / 6);
}
.scrolling-logos .image {
	align-items: center;
	display: flex;
	height: 100px;
	justify-content: center;
	line-height: 100px;
	position: relative;
	text-align: center;
}
.scrolling-logos .image svg,
.scrolling-logos .image img {
	display: block;
	opacity: 0.5;
	transition: filter 0.3s ease, opacity 0.3s ease;
	vertical-align: middle;
	max-width: 90%;
	max-height: 100%;
}
.scrolling-logos .image:hover svg,
.scrolling-logos .image:hover img {
	opacity: 1;
}
.scrolling-logos .flickity-prev-next-button {
	padding-bottom: 140px;
}
.scrolling-logos .flickity-prev-next-button svg {
	display: none;
}
.scrolling-logos .flickity-prev-next-button.previous,
.scrolling-logos .flickity-prev-next-button.next {
	background-color: transparent;
	background-image: url(/images/icons/gallery-arrow.svg);
	background-position: 50%;
	background-repeat: no-repeat;
	border: none;
}
.scrolling-logos .flickity-prev-next-button.next {
	right: -30px;
}
.scrolling-logos .flickity-prev-next-button.previous {
	left: -30px;
	transform: rotate(180deg) translateY(50%);
}

/* MOBILE ====================================== */

@media (max-width: 1420px) {    
	.scrolling-logos .logo-slide {
		width: calc(100% / 5);
	}
}
@media (max-width: 1300px) {
	.scrolling-logos .logo-slide {
		width: calc(100% / 4);
	}
}
@media (max-width: 900px) {
	.scrolling-logos .logo-slide {
		width: 33%;
	}
}
@media (max-width: 768px) {
	.scrolling-logos .flickity-prev-next-button.next {
		right: calc(50% - 50px);
		top: 120%;
	}
	.scrolling-logos .flickity-prev-next-button.previous {
		left: calc(50% - 50px);
		top: 120%;
	}
}
@media (max-width: 600px) {
	.scrolling-logos .logo-slide {
		width: 50%;
	}
}
@media (max-width: 480px) {
	.scrolling-logos .logo-slide {
		width: 75%;
	}
}

/* --------------------- */
/* Equal Heights Section */
/* --------------------- */
.equal-heights-section {
	margin-bottom: 80px;
}

.equal-heights-section .ss-content-block {
	box-shadow: 0 20px 40px rgba(0,0,0,0.16);
	margin-bottom: 0;
	border-radius: 4px;
	text-align: center;
	padding: 30px;
}

.equal-heights-section .ss-content-block img {
	display: block;
	margin: -30px -30px 0 -30px;
	max-width: none;
	width: calc(100% + 60px) !important;
}

.equal-heights-section .ss-content-block a {
	background: url(/images/icons/arrow-right-icon.svg) 100% 50% no-repeat;
	display: inline-block;
	font-family: 'Jost', sans-serif;
	font-size: 14px;
	font-weight: 500;
	padding-right: 24px;
	text-decoration: none;
	text-transform: uppercase;
}

.equal-heights-section .ss-content-block a:hover {
	background-image: url(/images/icons/arrow-right-icon-hover.svg);
	color: var(--primary-color);
}

@media (max-width: 768px) {
	.page-index .equal-heights-section {
		margin: 0 30px;
	}

	.equal-heights-section .ss-content-block {
		margin-bottom: 30px;
	}
}


/* --------------------- */
/* Homepage News ------- */
/* --------------------- */
.homepage-news-section {
	position: relative;
}

.news-box .cb-intro {
	margin-bottom: 15px;
}

.news-box .cb-intro a {
	text-transform: uppercase;
}

@media (min-width: 768px) {
	.news-box .cb-intro {
		display: flex;
		justify-content: space-between;
		margin: 0;
	}

	.homepage-news-section {
		padding: 0 0 0 30px;
	}

	.homepage-news-section .ss-section-wrap-inner {
		flex-wrap: nowrap;
		max-width: 1250px;
		position: relative;
		z-index: 1;
	}

	.homepage-news-section:before {
		background: #F5F5F5;
		bottom: 0;
		content: '';
		left: 0;
		position: absolute;
		top: 0;
		width: 75vw;
	}

	.homepage-news-section .ss-content-block {
		margin: 0;
	}	
}

@media (min-width: 1330px) {
	.homepage-news-section {
		padding: 0 30px;
	}
}

.homepage-news-section .ss-content-block {
	margin: 0;
	padding: 65px 60px;
}

.homepage-news-section .ss-content-block:first-child {
	padding-left: 0;
	width: calc((100% / 3) * 2);
}

.homepage-news-section .content-box-list {
	
}

.homepage-news-section .content-box-list:after {
	clear: both;
	content: '';
	display: table;
}

.homepage-news-section .content-box-list li {
	clear: right;
	float: right;
	width: 55%;
}

.homepage-news-section .content-box-list li:first-child {
	clear: none;
	float: left;
	margin: 0;
	width: 40%;
}

.homepage-news-section .content-box-list li a {
	box-shadow: none;
	min-height: 80px;
	padding: 0;
	text-align: left;
}

.homepage-news-section .content-box-list li .thumbnail {
	margin: 0;
}

.homepage-news-section .content-box-list li:first-child .thumbnail {
	margin-bottom: 10px;
}

.homepage-news-section .content-box-list li a .date, 
.homepage-news-section .content-box-list li a .date strong {
	font-family: 'Jost', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 2px;
	margin-bottom: 5px;
	text-align: left;
}

.homepage-news-section .content-box-list li a .title {
	padding: 0;
}

.homepage-news-section .content-box-list li a .abstract,
.homepage-news-section .content-box-list li a .see-details,
.homepage-news-section .content-box-list li a .cb {
	display: none;
}

.homepage-news-section .content-box-list li:nth-child(n+2) a {
	padding-left: 120px;
	position: relative;
}

.homepage-news-section .content-box-list li:nth-child(n+2) .thumbnail {
	left: 0;
	margin: 0;
	position: absolute;
	top: 0;
	width: 100px;
}

.homepage-news-section .newsletter-subscribe-box {
	background: url(/images/template/newsletter-signup-bg.jpg) 50% 50% no-repeat;
	background-size: cover;	
	color: #fff;
	width: calc(100% / 3);
	position: relative;
}

@media (max-width: 1100px) {
	.homepage-news-section .ss-content-block {
		padding: 40px 30px;
	}
}

@media (max-width: 980px) {
	.homepage-news-section .content-box-list li,
	.homepage-news-section .content-box-list li:first-child {
		float: none;
		margin: 0 0 30px 0;
		width: 100%;
	}
}

@media (max-width: 850px) {
	.homepage-news-section {
		background: #F5F5F5;
		padding: 0;
	}
	
	.homepage-news-section:before {
		display: none;
	}
	
	.homepage-news-section .ss-section-wrap-inner {
		display: block;
	}

	.homepage-news-section .ss-content-block:first-child,
	.homepage-news-section .ss-content-block {
		padding: 30px;
		width: 100%;
	}
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Calendar Style Overrides --------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.calendar a.event .description {
	display: none;
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Accordion Style Overrides -------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.ss-accordion-content-wrap .ss-accordion-toggle {
	background: var(--primary-color);
	color: #fff;
}

.ss-accordion-content-wrap .ss-accordion-toggle:hover, 
.ss-accordion-content-wrap.show .ss-accordion-toggle {
	background: var(--secondary-color);
}

.ss-accordion-content-wrap .ss-accordion-toggle .ss-accordion-toggle-icon:before,
.ss-accordion-content-wrap .ss-accordion-toggle .ss-accordion-toggle-icon:after {
	background-color: #fff;
}

/* ---------------------------------------------------------------------------------------------------------- */
/* SoSimple Overlay Styles ---------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */

.sosimple-overlay {
	min-width: 300px;
	padding: 15px 70px 15px 15px;
}

.sosimple-underlay {
	backdrop-filter: blur(30px);
	background-color: rgba(255,255,255,0.5);
	opacity: 1;
}
.sosimple-overlay.member-directory {
	bottom: 30px;
	max-height: 500px;
	left: 30px;
	margin: auto !important;
	max-width: 1300px;
	position: fixed;
	right: 30px !important;
	top: 30px !important;
	width: auto !important;
}
.sosimple-overlay.member-directory, .sosimple-overlay.member-directory .image-column {
	padding: 0;
}
.sosimple-overlay.member-directory .detail-page.member-directory {
	border: none;
	display: flex;
	height: 100%;
	margin: 0;
	padding: 0;
}
.sosimple-overlay.member-directory .detail-page.member-directory .image-column {
	aspect-ratio: 1 / 1;
	margin: 0;
	padding: 0;
	position: relative;
	width: auto;
}
.sosimple-overlay.member-directory .detail-page.member-directory .image-column .button {
	bottom: 0;
	left: 50%;
	position: absolute;
	right: auto;
	transform: translateX(-50%);
	width: max-content
}
.sosimple-overlay.member-directory .detail-page.member-directory .image-column .image,
.sosimple-overlay.member-directory .detail-page.member-directory .image-column .image img {
	height: 100%;
}
.sosimple-overlay.member-directory .detail-page.member-directory .image-column .image {
	width: auto;
}
.sosimple-overlay.member-directory .detail-page.member-directory .image-column .image img {
	object-fit: cover;
	object-position: 50%;
}
.sosimple-overlay.member-directory .detail-page.member-directory .info-column {
	box-sizing: border-box;
	flex: auto;
	height: max-content;
	margin: auto;
	max-height: 500px;
	overflow-x: hidden;
	overflow-y: scroll;
	padding: 30px 60px;
}
.sosimple-overlay.member-directory .detail-page.member-directory .info-column::-webkit-scrollbar {
	background-color: transparent;
	width: 10px;
}
.sosimple-overlay.member-directory .detail-page.member-directory .info-column::-webkit-scrollbar-thumb {
	background-color: #e0e0e0;
}
.sosimple-overlay.member-directory .detail-page.member-directory .info-column h3,
.sosimple-overlay.member-directory .detail-page.member-directory .info-column tr th {
	display: none;
}
.sosimple-overlay.member-directory .detail-page.member-directory .info-column tr td {
	padding-left: 0;
	padding-right: 0;
}
.sosimple-overlay.member-directory .detail-page.member-directory .info-column .title {
	color: var(--primary-color);
	font: 700 38px 'Jost',sans-serif;
	letter-spacing: 0.12em;
	margin-bottom: 0;
	text-transform: uppercase;
}
.sosimple-overlay.member-directory .detail-page.member-directory .info-column table tbody {
	display: flex;
	flex-direction: column;
}
.sosimple-overlay.member-directory .detail-page.member-directory .info-column table tbody tr td {
	margin: 0;
	padding: 0;
}
.sosimple-overlay.member-directory .detail-page.member-directory .info-column .tr-job-title {
	color: var(--primary-color);
	font: 700 21px 'Jost',sans-serif;
	letter-spacing: 0.12em;
	margin-bottom: 15px;
	order: -1;
	text-transform: uppercase;
}
.sosimple-overlay.member-directory .detail-page.member-directory .info-column .tr-departments {
	display: none;
}
.sosimple-overlay.member-directory .detail-page.member-directory .info-column table:nth-last-child(3) {
	display: none
}
.info-table.other-information-table {
	margin-top: 15px;
}
.sosimple-overlay .sosimple-overlay-close {
	right: 0;
	top: -40px;
}
@MEDIA (max-width: 1200px) {
	.sosimple-overlay.member-directory .detail-page.member-directory .image-column {
		max-width: calc(100% / 3);
	}
}
@MEDIA (max-width: 1024px) {
	.sosimple-overlay.member-directory {
		max-height: none;
		top: 60px !important;
	}
	.sosimple-overlay.member-directory .detail-page.member-directory {
		flex-direction: column;
	}
	.sosimple-overlay.member-directory .detail-page.member-directory .image-column {
		aspect-ratio: auto;
		max-height: 50dvh;
		max-width: none;
		position: relative;
		width: 100%;
	}
	.sosimple-overlay.member-directory .detail-page.member-directory .image-column .image {
		max-height: 100%;
	}
	.sosimple-overlay.member-directory .detail-page.member-directory .info-column {
		height: max-content;
		max-width: none;
		overflow-x: hidden;
		padding: 30px;
		width: auto;
	}
}
@MEDIA (max-width: 768px) {
	.sosimple-overlay.member-directory {
		left: 30px !important;
	}
}

/* ---------------------------------------------------------------------------------------------------------- */
/* Site Alert Style Overrides ------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */

.global-site-alert .heading {
    background-color: var(--secondary-color);
}
.global-site-alert .content-wrap {
	max-width: 100%;
}