/* School Template A - 2024 */

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Variables ------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
:root {
	--primary-color: #114062;
    --secondary-color: #343434;
	--tertiary-color: #F4F5F5;

	--dark-bg-link-color: #BAD8FF;
	--light-bg-link-color: #114062;

	--default-font-color: #525252;
    --default-font-size: 18px;
    --primary-font-family: "Inter", sans-serif;
	--secondary-font-family: "Gabarito", sans-serif;
	--heading-font-weight: 600;

	--default-hr-border-color: rgba(0,0,0,0.1);
}

/* Mobile Nav Mode Handling */
#mobile-check-element,#non-mobile-screen-check-element,#quick-links-check-element{display:none;}
body.nav-mode-b #mobile-check-element{display:block;pointer-events:none;position:fixed;visibility:hidden;z-index:-999; }
@media(max-width: 1200px){#mobile-check-element,#quick-links-check-element{display:block;pointer-events:none;position:fixed;visibility:hidden;z-index:-999;}}
@media(min-width:1024px){#non-mobile-screen-check-element{display:block;pointer-events:none;position:fixed;visibility:hidden;z-index:-999;}}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Global ---------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
h1 {
	font-size: 66px;
	line-height: 110%;
}

h2 {
	font-size: 38px;
	line-height: 110%;
}

h3 {
	font-size: 34px;
}

h4 {
	font-size: 30px;
	font-weight: 700;
}

h5 {
	font-size: 26px;
	font-weight: 700;
}

h6 {
	font-size: 22px;
	font-weight: 700;
}

p {
	line-height: 200%;
}

a {
	color: var(--primary-color)
}

a:hover {
	color: var(--secondary-color);
}

.ss-section-wrap-inner, 
.wrapper {
	max-width: 1200px;
}

img.rounded {
	border-radius: 12px;
}

@media (max-width: 768px) {
	h1 {
		font-size: 40px;
	}
	
	h2 {
		font-size: 32px;
	}
	
	h3 {
		font-size: 28px;
	}
	
	h4 {
		font-size: 26px;
	}
	
	h5 {
		font-size: 23px;
	}
	
	h6 {
		font-size: 20px;
	}

	p {
		line-height: 170%;
	}
}
.dark-bg-color h2,
.dark-bg-color a,
.dark-bg-color {
	color: #fff !important;
}
.dark-bg-color a svg * {
	fill: #fff;
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Header ---------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */

.header {
	align-items: flex-end;
	background: #104062;
	box-shadow: 0 3px 16px rgba(0,0,0,0.16);
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	font-family: "Reddit Sans", sans-serif;
	font-weight: 500;
	gap: 10px 0;
	justify-content: flex-end;
	left: 0;
	padding: 28px 40px 28px 60px;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 600;
}
@media (max-width: 1250px) {
	.header {
		padding: 28px 30px;
	}
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Header Top / Site Search / Quick Links -------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */

.header a {
	color: inherit;
	text-decoration: none;
}
.quick-links > ul > li > a,
.primary-nav-wrap > ul > li > a {
	font: 600 16px var(--primary-font-family);
}
.primary-nav-wrap > ul > li > a {
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.header-search-form {
	align-items: center;
	display: flex;
	order: 2;
	z-index: 1;
}

.header-search-form input.header-search-input {
	background: none;
	border: 1px solid transparent;
	border-left: 1px solid rgba(255,255,255,0.5);
	box-shadow: none;
	color: #fff;
	font-family: "Reddit Sans", sans-serif;
	font-size: 16px;
	opacity: 0;
	padding: 0;
	transition: border 0.2s ease, border-radius 0.2s ease, opacity 0.3s ease, padding 0.3s ease, width 0.3s ease;
	width: 0;
}

.header-search-form input.header-search-input:hover,
.header-search-form input.header-search-input:focus {
	border: 1px solid rgba(255,255,255,0.5);
	border-radius: 8px;
}

.header-search-input::placeholder {
	color: #fff;
}

.header-search-toggle {
	background: url(/images/icons/search.svg) 50% 50% no-repeat;
	border: 0;
	color: transparent;
	cursor: pointer;
	height: 30px;
	order: -1;
	text-indent: -9999px;
	transition: opacity 0.2s ease;
	width: 30px;
}

.header-search-toggle:hover {
	opacity: 0.7;
}

.show-search .header-search-form input.header-search-input {
	opacity: 1;
	padding: 5px 10px;
	width: 200px;
}

.header ul,
.footer-menu ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}
.header .quick-links {
	order: 1;
}

.footer-menu ul {
	justify-content: center;
}

.header ul li,
.footer-menu ul li {
	padding: 0 20px;
	position: relative;
}

.header ul li:not(:last-child):after,
.footer-menu ul li:not(:last-child):after {
	background: rgba(255,255,255,0.5);
	content: '';
	height: 14px;
	right: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
}

.header ul > li > a,
.footer-menu ul > li > a {
	display: block;
	padding: 5px 0;
	position: relative;
}

.header ul > li > a:before,
.footer-menu ul > li > a:before {
	background: #fff;
	bottom: 0;
	content: '';
	height: 1px;
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	transition: bottom 0.2s ease, opacity 0.2s ease;
}

.header ul a:hover:before,
.footer-menu ul a:hover:before {
	opacity: 1;
	bottom: 4px;
}

@media (max-width: 1200px) {
	body:not(.mobile-nav-mode) .primary-nav-wrap { 
		display: none;
	}
	.header .quick-links {
		max-width: 100%;
		opacity: 0;
		padding-right: 70px;
		pointer-events: none;
		position: fixed;
		right: 0;
		top: 15px;
		transition: opacity 0.1s ease;
		width: 400px;
		z-index: 10;
	}
	.show-nav .header .quick-links {
		opacity: 1;
		pointer-events: all;
		transition: opacity 0.3s ease 0.2s;
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Demo Site Color Picker ------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
.header-top ul li.site-color-picker-li {
	position: relative;
}

.header-top ul li.site-color-picker-li .color-picker-drop {
	display: none;
	position: absolute;
	top: 100%;
	background: #fff;
	padding: 35px 15px 15px;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}

.header-top ul li.site-color-picker-li.show-color-picker .color-picker-drop {
	display: block;
}

.close-site-color-picker {
	position: absolute;
	top: 10px;
	right: 5px;
	height: 20px;
	width: 20px;
	transform: rotate(45deg);
}

.close-site-color-picker:before,
.close-site-color-picker:after {
	background: #000;
	border-radius: 2px;
	content: '';
	height: 2px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
}

.close-site-color-picker:after {
	height: 100%;
	left: 50%;
	top: auto;
	transform: translateX(-50%);
	width: 2px;
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Lower Header / Logo --------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */

.main-site-logo {
	left: 60px;
	max-width: calc(100vw - 1120px);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 290px;
}

.main-site-logo img,
.main-site-logo svg {
	display: block;
	filter: brightness(0) invert(1);
	transition: transform 0.2s ease;
	width: 100%;
}

.main-site-logo:hover img,
.main-site-logo:hover svg {
	transform: scale(1.01);
}

.main-site-logo svg > g > g:first-child path {
	fill: var(--primary-color);
}

@media (max-width: 1420px) {
	.main-site-logo {
		left: 30px;
		max-width: calc(100% - 1080px);
		min-width: 170px;
	}
}
@media (max-width: 1250px) {
	.main-site-logo {
		max-width: calc(100% - 980px);
	}
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Nav Toggle ------------------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */

body:not(.mobile-nav-mode) .nav-toggle {
	display: none;
}

body.show-nav:before {
	background: #000;
	bottom: 0;
	content: '';
	left: 0;
	opacity: 0.3;
	position: fixed;
	pointer-events: none;
	right: 0;
	top: 0;
	z-index: 20;
}

body.show-nav .middle-area {
	pointer-events: none;
}

.nav-toggle {
	display: block;
	height: 40px;
	position: absolute;
	right: 20px;
	top: 22px;
	width: 40px;
	z-index: 500;
}

.nav-toggle span {
	color: transparent;
	font-size: 0;
	text-indent: -9999px;
}

.nav-toggle span,
.nav-toggle:before,
.nav-toggle:after {
	content: '';
	background: #fff;
	height: 3px;
	left: 5px;
	position: absolute;
	top: 11px;
	transition: left 0.2s ease, top 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
	width: calc(100% - 10px);
}

.nav-toggle:before {
	top: 19px;
}

.nav-toggle:after {
	top: 27px;
}

body.show-nav .nav-toggle span,
body.show-nav .nav-toggle:before,
body.show-nav .nav-toggle:after {
	background: #fff;
}

body.show-nav .nav-toggle span {
	transform: rotate(-45deg);
	top: 19px;
}

body.show-nav .nav-toggle:before {
	transform: rotate(45deg);
}

body.show-nav .nav-toggle:after {
	opacity: 0;
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Primary / Secondary Nav ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */

.primary-nav-wrap {
	flex: 100%;
	order: 3;
	position: relative;
	z-index: 2;
}

.secondary-nav-wrap {
	background: #F4F5F5;
	flex: 100%;
	left: 0;
	order: 2;
	padding: 15px;
	position: fixed;
	right: 0;
	top: 114px;
	z-index: 1;
}
.primary-nav-wrap ul,
.secondary-nav-wrap ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-nav-wrap ul ul > li > a {
	color: var(--default-font-color);
}
.primary-nav-wrap a,
.secondary-nav-wrap a {
	display: block;
	text-decoration: none;
}

.primary-nav-wrap li:hover > a,
.primary-nav-wrap li.selected > a,
.primary-nav-wrap li.hovered > a,
.secondary-nav-wrap ul ul li:hover > a,
.secondary-nav-wrap ul ul li.selected > a {
	color: var(--dark-bg-link-color);
}

body:not(.mobile-nav-mode) .primary-nav-wrap > ul,
.secondary-nav-wrap > ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.secondary-nav-wrap > ul {
	justify-content: center;
}

body:not(.mobile-nav-mode) .primary-nav-wrap > ul > li,
.secondary-nav-wrap > ul > li {
	padding: 0;
	position: relative;
}
body:not(.mobile-nav-mode) .primary-nav-wrap > ul > li:last-child > a,
.primary-nav-wrap > ul > li:last-child,
.primary-nav-wrap > ul > li:last-child > a {
	padding-right: 0;
}

.secondary-nav-wrap > ul > li {
	border-left: 1px solid rgba(247,247,247,0.30);
}

.secondary-nav-wrap > ul > li:first-child {
	border-left: 0;
}

body:not(.mobile-nav-mode) .primary-nav-wrap > ul > li:before {
	background: rgba(0,0,0,0.025);
	content: '';
	height: 0;
	left: 50%;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
	transition: height 0.1s ease, width 0.1s ease;
	width: 0;
	z-index: 0;
}

body:not(.mobile-nav-mode) .primary-nav-wrap > ul > li:hover:before,
body:not(.mobile-nav-mode) .primary-nav-wrap > ul > li.selected:before,
.secondary-nav-wrap > ul > li:hover:before,
.secondary-nav-wrap > ul > li.selected:before {
	height: 100%;
	width: 100%;
}

body:not(.mobile-nav-mode) .primary-nav-wrap > ul > li > a,
.secondary-nav-wrap > ul > li > a {
	align-items: center;
	display: flex;
	justify-content: center;
	overflow: hidden;
	padding: 0 30px;	
	position: relative;
	text-align: center;
	transition: background 0.2s ease, color 0.2s ease;
	z-index: 1;
}

.secondary-nav-wrap > ul > li > a {
	border-right: 1px solid #D0D6DE;
	color: #343434;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.01em;
	padding: 0 10px;
	position: relative;
	z-index: 1;
}
.secondary-nav-wrap > ul > li:last-child > a {
	border: none;
}
.secondary-nav-wrap > ul > li:hover > a,
.secondary-nav-wrap > ul > li.selected > a {
	color: var(--light-bg-link-color);
}

/* second level dropdown */	
body:not(.mobile-nav-mode) .primary-nav-wrap > ul > li > ul,
.secondary-nav-wrap > ul > li > ul {
	background: #fff;
	box-shadow: 0 20px 40px rgba(0,0,0,0.16);
	font-size: 16px;
	left: 0;
	max-height: 50vh;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	padding: 15px 30px;
	position: absolute;
	top: calc(100% + 15px);
	transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
	width: 320px;
}

body:not(.mobile-nav-mode) .primary-nav-wrap > ul > li > ul::-webkit-scrollbar,
.secondary-nav-wrap > ul > li > ul::-webkit-scrollbar {
	width: 10px;
}

body:not(.mobile-nav-mode) .primary-nav-wrap > ul > li > ul::-webkit-scrollbar-track,
.secondary-nav-wrap > ul > li > ul::-webkit-scrollbar-track {
	/* box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); */
}

body:not(.mobile-nav-mode) .primary-nav-wrap > ul > li > ul::-webkit-scrollbar-thumb,
.secondary-nav-wrap > ul > li > ul::-webkit-scrollbar-thumb {
	background-color: var(--primary-color);
	outline: 1px solid var(--primary-color);
}

body:not(.mobile-nav-mode) .primary-nav-wrap > ul > li:not(:hover) > ul,
.secondary-nav-wrap > ul > li:not(:hover) > ul {
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transform: scale(1.025);
}

body:not(.mobile-nav-mode) .primary-nav-wrap > ul > li:last-child > ul,
.secondary-nav-wrap > ul > li:last-child > ul {
	left: auto;
	right: 0;
}

body:not(.mobile-nav-mode) .primary-nav-wrap > ul > li:last-child:not(:hover) > ul,
.secondary-nav-wrap > ul > li:last-child:not(:hover) > ul {
	transform: scale(1);
}

body:not(.mobile-nav-mode) .primary-nav-wrap > ul > li > ul > li > a,
.secondary-nav-wrap > ul > li > ul > li > a {
	color: #343434;
	padding: 10px 0;
	transition: color 0.2s ease, padding 0.2s ease;
}

body:not(.mobile-nav-mode) .primary-nav-wrap > ul > li > ul > li.selected > a,
body:not(.mobile-nav-mode) .primary-nav-wrap > ul > li > ul > li:hover > a,
.secondary-nav-wrap > ul > li > ul > li.selected > a,
.secondary-nav-wrap > ul > li > ul > li:hover > a {
	padding: 10px 0 10px 3px;
}

/* third level */
body:not(.mobile-nav-mode) .primary-nav-wrap ul ul ul,
.secondary-nav-wrap ul ul ul {
	display: none;
}

/* secondary nav */
body.mobile-nav-mode .secondary-nav-wrap {
	display: none;
}

@media (max-width: 1200px) {
	.secondary-nav-wrap {
		display: none;
	}
}

@media (min-width: 1024.5px) and (max-width: 1250px) {
	body:not(.mobile-nav-mode) .primary-nav-wrap > ul > li > a {
		padding: 0 20px;
	}
}


/* Mobile Nav Mode for Primary Nav */
body.mobile-nav-mode .primary-nav-wrap {
	background: var(--secondary-color);
	bottom: 0;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	padding: 80px 0 30px 0;
	position: fixed;
	right: -400px;
	top: 48px;
	transition: right 0.2s ease;
	width: 400px;
}

body.mobile-nav-mode .primary-nav-wrap::-webkit-scrollbar {
	width: 10px;
}

body.mobile-nav-mode .primary-nav-wrap::-webkit-scrollbar-thumb {
	background-color: var(--primary-color);
	outline: 1px solid var(--primary-color);
}

body.mobile-nav-mode.show-nav .primary-nav-wrap {
	right: 0;
}

body.mobile-nav-mode .primary-nav-wrap a {
	color: #fff;
	padding: 8px 30px;
}

body.mobile-nav-mode .primary-nav-wrap li.selected > a,
body.mobile-nav-mode .primary-nav-wrap li.hovered > a,
body.mobile-nav-mode .primary-nav-wrap li:hover > a,
body.mobile-nav-mode .primary-nav-wrap a.clicked {
	color: var(--primary-color);
}

body.mobile-nav-mode .primary-nav-wrap > ul > li {
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

body.mobile-nav-mode .primary-nav-wrap > ul > li a {
	padding: 15px 30px;
	font-size: 18px;
}

body.mobile-nav-mode .primary-nav-wrap > ul > li ul a {
	padding: 10px 30px;
}

body.mobile-nav-mode .primary-nav-wrap > ul li.sub > a {
	position: relative;
	padding-right: 25px;
}

body.mobile-nav-mode .primary-nav-wrap > ul li.sub > a:before,
body.mobile-nav-mode .primary-nav-wrap > ul li.sub > a:after {
	background: #fff;
	content: '';
	height: 2px;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
}

body.mobile-nav-mode .primary-nav-wrap > ul li.sub > a:after {
	height: 10px;
	right: 19px;
	width: 2px;
}

body.mobile-nav-mode .primary-nav-wrap > ul li.sub.selected > a:before,
body.mobile-nav-mode .primary-nav-wrap > ul li.sub.selected > a:after,
body.mobile-nav-mode .primary-nav-wrap > ul li.sub.hovered > a:before,
body.mobile-nav-mode .primary-nav-wrap > ul li.sub.hovered > a:after,
body.mobile-nav-mode .primary-nav-wrap > ul li.sub > a.clicked:before,
body.mobile-nav-mode .primary-nav-wrap > ul li.sub > a.clicked:after {
	background: var(--primary-color);
}

body.mobile-nav-mode .primary-nav-wrap > ul li.sub > a.clicked:after {
	display: none;
}

body.mobile-nav-mode .primary-nav-wrap > ul li.sub > ul {
	display: none;
}

body.mobile-nav-mode .primary-nav-wrap > ul li.sub li {
	padding-left: 20px;
}


/* Mobile Nav Mode for Primary Nav - Large Width Styles */
@media (min-width: 1200px) {
	body.mobile-nav-mode .primary-nav-wrap {
		background: var(--secondary-color);
		display: flex;
		flex-direction: column;
		padding: 0;
		right: -900px;
		width: 900px;
	}

	body.mobile-nav-mode.single-level-nav .primary-nav-wrap {
		right: -400px;
		width: 400px;
	}

	body.mobile-nav-mode.show-nav .primary-nav-wrap {
		right: 0;
	}

	body.mobile-nav-mode .primary-nav-wrap > ul {
		background: rgba(0,0,0,0.1);
		flex: 1;
		padding: 120px 0 30px 0;
		width: 40%;
	}

	body.mobile-nav-mode.single-level-nav .primary-nav-wrap > ul {
		width: 100%;
	}

	body.mobile-nav-mode .primary-nav-wrap > ul > li:first-child {
		border-top: 1px solid rgba(255,255,255,0.1);
	}

	body.mobile-nav-mode .primary-nav-wrap > ul > li.sub > ul {
		bottom: 0;
		display: block;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
		position: absolute;
		right: 0;
		top: 0;
		transition: opacity 0.2s ease, visibility 0.2s ease;
		padding: 120px 50px 0;
		width: 60%;
	}

	body.mobile-nav-mode .primary-nav-wrap > ul > li > a {
		font-size: 22px;
	}

	body.mobile-nav-mode .primary-nav-wrap > ul > li.sub:not(.selected,.hovered) > ul {
		opacity: 0;
		overflow: hidden;
		pointer-events: none;
		visibility: hidden;	
	}

	body.mobile-nav-mode .primary-nav-wrap > ul > li.sub > ul::-webkit-scrollbar {
		width: 10px;
	}
	
	body.mobile-nav-mode .primary-nav-wrap > ul > li.sub > ul::-webkit-scrollbar-thumb {
		background-color: var(--primary-color);
		outline: 1px solid var(--primary-color);
	}
}

@media (max-width: 1200px) {
	body.mobile-nav-mode .primary-nav-wrap {
		max-width: 100%;
		top: 0;
	}

	.header-top {
		display: block;
		height: auto;
		padding-bottom: 20px;
		border-bottom: 1px solid rgba(255,255,255,0.1);
	}

	.header-search-form {
	margin-right: 30px;
	}

	.header-search-form label {
		width: 100%;
	}

	.header-search-form input.header-search-input,
	.header-search-form input.header-search-input:hover,
	.header-search-form input.header-search-input:focus {
		border: 0;
		padding: 5px 10px 5px 0;
	}

	.header-top ul li {
		padding: 0 10px;
	}

	.primary-nav-wrap .header-top ul li a,
	.primary-nav-wrap .header-top ul li a:hover {
		color: #fff;
		padding: 5px 0;
		font-size: 14px;
	}
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Page Banner / Main Page Heading --------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.page-banner {
	align-items: center;
	background: #808080;
	color: #fff;
	display: flex;
	height: 360px;
	justify-content: center;
	margin: 154px 0px 80px 0px;
	overflow: hidden;
	padding: 30px;
	position: relative;
	z-index: -1;
}

.page-banner:before {
	background: #000;
	bottom: 0;
	content: '';
	left: 0;
	opacity: 0.40;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}

.page-banner .section-title {
	font-family: var(--secondary-font-family);
	font-size: 66px;
	font-weight: 700;
	letter-spacing: 1px;
	position: relative;
	text-transform: uppercase;
	z-index: 2;
}

.page-banner img {
	bottom: 0;
	left: 0;
	max-width: none;
	min-height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 0;
}

.middle-area > .wrapper > h1 {
	max-width: 1170px;
	margin: 0 auto 30px;
}

body:not(.page-type-0) .middle-area > .wrapper > h1 {
	max-width: 1200px;
}

@media (max-width: 1260px) {
	.middle-area > .wrapper > h1 {
		margin: 0 25px 20px;
	}

	body:not(.page-type-0) .middle-area > .wrapper > h1 {
		margin: 0 0 20px 0;
	}
}
@media (max-width: 1200px) {
	.page-banner {margin-top: 86px;
	}
}
@media (max-width: 500px) {
	.page-banner {
		height: auto;
		margin: 100px 10px 30px 10px;
		min-height: 170px;
		padding: 20px 30px;
	}

	.page-banner .section-title {
		font-size: 46px;
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Footer ---------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.footer {
	align-items: center;
	background: #343434;
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 50px;
	padding: 50px 30px;
	justify-content: center;
	text-align: center;
}

body.page-index .footer {
	margin-top: 80px;
}

.footer img,
.footer svg {
	max-width: 65vw;
}

.footer a {
	color: inherit;
	text-decoration: none;
}

.footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-logo-and-info a {
	border-bottom: 1px solid transparent;
	transition: border 0.2s ease;
}

.footer-logo-and-info a:hover {
	border-bottom: 1px solid #fff;
}

.footer-social-media-links ul {
	align-items: center;
	display: flex;
	gap: 20px;
}

.footer-social-media-links a img:not(.no-replace) {
	opacity: 0;
}

.footer-social-media-links a svg {
	transition: transform 0.2s ease;
}

.footer-social-media-links a svg path,
.footer-social-media-links a svg polygon {
	fill: var(--primary-color);
	transition: fill 0.2s ease;
}

.footer-social-media-links a:hover svg {
	transform: scale(1.2);
}

.footer-social-media-links a:hover svg path,
.footer-social-media-links a:hover svg polygon {
	fill: #fff;
}

.copyright {
	align-items: center;
	display: flex;
	font-size: 16px;
	gap: 50px;
}

.copyright a {
	transition: opacity 0.2s ease;
}

.copyright a:hover {
	opacity: 0.7;
}

@media (max-width: 768px) {
	.copyright {
		flex-direction: column;
		font-size: 14px;
		gap: 25px;
		justify-content: center;
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Buttons --------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.button,
.small-action-button,
.white-button,
.small-white-button {
	background: transparent;
	border: 1px solid #104062;
	border-radius: 4px;
	color: #104062;
	display: inline-flex;
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.02em;
	line-height: 100%;
	padding: 15px 40px;
	text-decoration: none;
	text-transform: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.small-action-button,
.small-white-button {
	font-size: 13px;
	padding: 7px 20px;
}

.white-button:not(:hover),
.small-white-button:not(:hover) {
	background: #fff;
	color: var(--primary-color);
}

.button:hover,
.small-action-button:hover,
.white-button:hover,
.small-white-button:hover {
	background: var(--secondary-color);
	color: #fff;
}

.arrow-link {
	background-size: 10px auto;
	color: var(--primary-color);
	display: inline-block;
	font-family: "Reddit Sans", sans-serif;
	font-size: 14px;
	font-weight: 700;	
	padding-right: 14px;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 0.2s ease;
}

.arrow-link svg {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: right 0.2s ease;
	width: 10px;
}

.arrow-link svg path {
	fill: var(--primary-color);
	transition: fill 0.2s ease;
}

.arrow-link:hover {
	color: var(--secondary-color);
}

.arrow-link:hover svg {
	right: -2px;
}

.arrow-link:hover svg path {
	fill: var(--secondary-color);
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Homepage / Full Width Styles ------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
.at-top.page-index .header {
	background: transparent;
	box-shadow: none;
	transition: background 0.3s ease, box-shadow 0.3s ease;
}
.page-index .middle-area > .wrapper > h1 {
	display: none;
}
.page-index .header:before {
	background: linear-gradient(180deg,#000 0%, transparent 100%);
	content: '';
	display: block;
	height: 280px;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	transition: opacity 0.3s ease;
}
.at-top.page-index .header:before {
	opacity: 1
}

@media (min-widht: 768px) {
	body.full-width-page .ss-section-wrap:not(.hero-banner,) .ss-section-wrap-inner {
		max-width: 1605px;
		margin-left: auto;
		margin-right: auto;
	}
}

body.page-index .ss-section-wrap:not(.hero-banner) h2,
body.page-index .ss-section-wrap:not(.hero-banner) h3 {
	color: var(--primary-color);
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Global Override - Content Box Lists ----------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.content-box-list li a {
	background: #F7F7F7;
	border-radius: 12px;
	box-shadow: none;
	color: var(--default-font-color);
	padding: 30px 40px;
	text-align: left;
}

.content-box-list li a .date,
.content-box-list li a .date strong {
	font-size: 16px;
	text-align: left;
}

.content-box-list li a .title,
.content-box-list li a .abstract {
	padding: 0;
}

.content-box-list li a .abstract {
	margin-bottom: 20px;
}

.content-box-list li a .see-details {
	margin-top: 15px;
}

/* events content box list */
.content-box-list.events li a .date {
	background: none;
	color: var(--primary-color);
	font-family: var(--secondary-font-family);
	font-size: 24px;
	font-weight: 600;
	padding: 0;
	text-transform: none;
}

.content-box-list.events li a .see-details {
	margin-top: 23px;
}

/* blog content box list */
.content-box-list.blog li a {
	background: none;
	border-radius: 0;
	display: flex;
	gap: 20px;
	padding: 0;
}

.content-box-list.blog li a:hover {
	box-shadow: none;
}

.content-box-list.blog li a .info {
	background: #F7F7F7;
	border-radius: 12px;
	color: var(--default-font-color);
	flex: 1;
	padding: 45px 40px;
	transition: box-shadow 0.2s ease;
}

.content-box-list.blog li a .thumbnail {
	margin: 0;
	width: 33%;
}

.content-box-list.blog li a .thumbnail img {
	object-fit: cover;
	aspect-ratio: 1.5;
	border-radius: 12px;
	min-height: 100%;
	transition: box-shadow 0.2s ease;
}

.content-box-list.blog li a:hover .info,
.content-box-list.blog li a:hover .thumbnail img {
	box-shadow: 0 10px 20px rgba(0,0,0,0.16);
}

.content-box-list.blog li a .title {
	color: var(--primary-color);
	margin-bottom: 5px;
}

.content-box-list.blog li a .cb:before {
	display: none;
}

@media (max-width: 500px) {
	.content-box-list:not(.blog) li a {
		padding: 20px 25px;
	}

	.content-box-list.blog li {
		margin-bottom: 15px;
	}

	.content-box-list.blog li a {
		gap: 0;
	}

	.content-box-list.blog li a .thumbnail img {
		aspect-ratio: 1;
		border-top-right-radius: 0;
		border-bottom-right-radius: 0;
	}

	.content-box-list.blog li a .info {
		border-top-left-radius: 0;
		border-bottom-left-radius: 0;
		padding: 20px 15px;
	}

	.content-box-list li a .date, 
	.content-box-list li a .date strong {
		font-size: 14px;
		margin-bottom: 5px;
	}

	.content-box-list.blog li a .title {
		color: var(--default-font-color)
	}

	.content-box-list li a .abstract {
		display: none;
		margin-bottom: 10px;
	}

	.content-box-list.events li a .date {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.content-box-list.events li .short-description {
		font-size: 14px;
		line-height: 140%;
	}

	.content-box-list.events li a .see-details {
		margin-top: 10px;
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Global Override - Member Directory and Portolio Grid / List Items ----------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
@media (min-width: 900.5px) {
	.list-items.member-directory-items > li {
		width: calc(25% - ((25px / 4) * 3));
	}
	.inspiration-gallery-items .col {
		width: calc(100% / 3 - 20px);
	}
}

.inspiration-gallery-items {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.list-items.member-directory-items > li,
.inspiration-gallery-right-side .inspiration-gallery-items .col {
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}

.list-items.member-directory-items > li.clickable,
.inspiration-gallery-items .col {
	cursor: pointer;
	transition: box-shadow 0.2s ease;
}

.list-items.member-directory-items > li.clickable:hover,
.inspiration-gallery-items .col:hover {
	box-shadow: 0 10px 20px rgba(0,0,0,0.16);
}

.list-items.member-directory-items > li:not(.no-members-item):before,
.inspiration-gallery-items .col:before {
	background: rgb(0,0,0);
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
	bottom: 0;
	content: '';
	left: 0;
	opacity: 0.5;
	position: absolute;
	right: 0;
	top: 50%;
	transition: opacity 0.2s ease, top 0.2s ease;
	z-index: 1;
}

.list-items.member-directory-items > li.clickable:hover:before,
.inspiration-gallery-items .col:hover:before {
	opacity: 0.7;
	top: 0;
}

.list-items.member-directory-items > li .image,
.inspiration-gallery-right-side .inspiration-gallery-items .col > a .image {
	aspect-ratio: 0.80;
	border: none;
	margin: 0;
	overflow: hidden;
	position: relative;
}

.list-items.member-directory-items > li .image img,
.inspiration-gallery-items .col > a .image img {
	aspect-ratio: 0.80;
	display: block;
	min-height: 100%;
	object-fit: cover;
	transition: transform 0.2s ease;
	width: 100%;
}

.list-items.member-directory-items > li.clickable:hover .image img,
.inspiration-gallery-items .col:hover > a .image img {
	transform: scale(1.025);
}

.list-items.member-directory-items > li.no-photo .image {
	background: #F0F0F0 url(/images/template/person-no-image-placeholder.webp) 50% 50% no-repeat;
	background-size: cover;
}

.list-items.member-directory-items > li.no-photo .image img {
	display: none;
}

.list-items.member-directory-items > li .info,
.inspiration-gallery-items .col > a .caption {
	bottom: 0;
	color: #fff;
	display: flex;
	flex-direction: column;
	font: 600 130% 'Reddit Sans',sans-serif;
	justify-content: flex-end;
	left: 0;
	padding: 15px;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
}
.inspiration-gallery-right-side .inspiration-gallery-items .col a .caption {
	bottom: 0;
	display: flex;
	left: 0;
	padding: 15px;
	right: 0;
	top: 0;
}
.inspiration-gallery-items .col > a .caption:after {
	background-image: url(/images/icons/arrow-link-icon-red.svg);
	background-position: calc(100% - 5px) 50%;
	background-repeat: no-repeat;
	background-size: 12px;
	color: var(--primary-color);
	content: 'View Details';
	display: block;
	font: 700 14px "Reddit Sans", sans-serif;
	margin-bottom: -25px;
	margin-top: 5px;
	opacity: 0;
	padding-right: 25px;
	text-transform: uppercase;
	transition: margin 0.3s ease, opacity 0.3s ease;
	width: max-content;
}
.inspiration-gallery-items .col > a:hover .caption:after {
	margin-bottom: 0;
	opacity: 1;
}

.list-items.member-directory-items > li .info > *:not(.title,.job_title,.view-profile-link) {
	display: none;
}

.list-items.member-directory-items > li .info .view-profile-link {
	max-height: 0;
	position: relative;
	overflow: hidden;
	transition: max-height 0.2s ease, margin 0.2s ease;
	transition-delay: 0.1s;
}

.list-items.member-directory-items > li:hover .info .view-profile-link {
	margin-top: 10px;
	max-height: 20px;
}

.list-items.member-directory-items > li .info .view-profile-link a {
	color: var(--primary-color);
}

.list-items.member-directory-items > li .info .view-profile-link a svg path {
	fill: var(--primary-color)
}

/* member detail page image */
.detail-page.member-directory .image-column .image {
	background: #F0F0F0;
	border-radius: 0px;
	overflow: hidden;
	position: relative;
}

.detail-page.member-directory .image-column .image img {
	opacity: 0;
	transition: opacity 0.5s ease;
}

.detail-page.member-directory .image-column .image img.loaded {
	opacity: 1;
}

@media (max-width: 1200px) {
	.list-items.member-directory-items > li .info .view-profile-link {
		margin-top: 5px;
		max-height: 100%;
		overflow: visible;
	}
}
@media (max-width: 900.5px) {
	.inspiration-gallery-items .col {
		width: calc(50% - 15px)
	}
}
@media (max-width: 500px) {
	.list-items.member-directory-items {
		gap: 15px;
	}

	.list-items.member-directory-items li h2.title {
	}

	.list-items.member-directory-items li {
		font-size: 14px;
	}

	.list-items.member-directory-items > li .info .view-profile-link a {
		font-size: 12px;
	}
	.inspiration-gallery-items .col {
		width: 100%
	}
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Global Override - Images ---------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */

.thumbnail img,
.image img {
	border-radius: 12px;
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom WYSIWYG Template -> Image Link Box ----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */

.image-link-box {
	aspect-ratio: 1 / 1;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 35px;
	position: relative;
}
.image-link-box .image {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: transform 0.3s ease;
	z-index: -1;
}
.image-link-box:hover .image {
	transform: scale(1.05);
}
.image-link-box .image:before {
	background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,59%) 100%);
	bottom: 0;
	content: '';
	display: block;
	left: 0;
	position: absolute;
	right: 0;
	top: 25%;
}
.image-link-box .image img {
	border-radius: 0;
	height: 100% !important;
	object-fit: cover;
	object-position: 50%;
	width: 100% !important;
}
.image-link-box .arrow-link {
	filter: brightness(0) invert(1);
	font: 500 14px 'Inter',sans-serif;
	letter-spacing: 0.02em;
	text-transform: none;
}
.image-link-box .title {
	font: 400 38px 'Mate',serif;
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Section -> Hero Banner ----------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.ss-section-wrap.hero-banner {
	margin-bottom: 10px;
}

.ss-section-wrap.hero-banner .ss-section-wrap-inner {
	max-width: 100%;
	margin-left: 0;
	margin-right: 0;
}

.ss-section-wrap.hero-banner .ss-content-block.col-1 {
	margin: 0;
	width: 100%;
}

.ss-section-wrap.hero-banner .embedded-gallery.static-page-inline-gallery .stage {
	height: 100dvh;
}
.ss-section-wrap.hero-banner .embedded-gallery.static-page-inline-gallery .slide .image {
	background-size: cover;
}

.ss-section-wrap.hero-banner .embedded-gallery.static-page-inline-gallery .slide img {
	border-radius: 0;
	object-fit: cover;
	min-height: 500px;
	max-height: 70vh;
	width: 100%;
}

.ss-section-wrap.hero-banner .embedded-gallery.static-page-inline-gallery .stage:not(.cycle-loaded) .slide.placeholder {
	display: block;
	visibility: visible;
}

.ss-section-wrap.hero-banner .embedded-gallery.static-page-inline-gallery .stage:not(.cycle-loaded) .slide.placeholder img {
	display: block;
	max-width: none;
	object-fit: cover;
	object-position: 50% 50%;
	opacity: 1;
	width: 100%;
}

.ss-section-wrap.hero-banner .embedded-gallery .slide .caption {
	align-items: center;
	background: rgb(0,0,0);
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
	box-shadow: none;
	color: #fff;
	font-family: "Reddit Sans", sans-serif;
	font-size: 22px;
	display: flex !important;
	flex-direction: column;
	height: auto !important;
	justify-content: flex-end;
	opacity: 1 !important;
	transition: opacity 0.2s ease;
	padding: 0 80px 50px 80px !important;
	top: 0;
}

.ss-section-wrap.hero-banner .embedded-gallery .slide .caption h1,
.ss-section-wrap.hero-banner .embedded-gallery .slide .caption h2 {
	text-transform: uppercase;
	font-size: 66px;
	font-weight: 700;	
	margin-bottom: 5px;
}

.ss-section-wrap.hero-banner .embedded-gallery .prev-arrow, 
.ss-section-wrap.hero-banner .embedded-gallery .next-arrow {
	background: rgba(0,0,0,.3) url(/images/icons/white-chevron-left.svg) 45% 50% no-repeat;
	background-size: 11px auto;
	border-radius: 100%;
	height: 48px;
	opacity: 1;
	transition: background 0.2s ease;
	width: 48px;
}

.ss-section-wrap.hero-banner .embedded-gallery .next-arrow {
	background-image: url(/images/icons/white-chevron-right.svg);
	background-position: 55% 50%;
}

.ss-section-wrap.hero-banner .embedded-gallery .prev-arrow:hover, 
.ss-section-wrap.hero-banner .embedded-gallery .next-arrow:hover {
	background-color: rgba(0,0,0,0.8);
}

.ss-section-wrap.hero-banner .embedded-gallery .slide .caption .button {
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ss-section-wrap.hero-banner .embedded-gallery .slide .caption .button:hover {
	transform: scale(1.05);
}

@media (max-width: 1100px) {
	.ss-section-wrap.hero-banner .embedded-gallery .slide .caption {
		font-size: 18px;
	}
	
	.ss-section-wrap.hero-banner .embedded-gallery .slide .caption h1,
	.ss-section-wrap.hero-banner .embedded-gallery .slide .caption h2 {
		font-size: 46px;
	}
}

@media (max-width: 500px) {
	.ss-section-wrap.hero-banner .embedded-gallery .prev-arrow {
		left: 10px;
	}

	.ss-section-wrap.hero-banner .embedded-gallery .prev-arrow, 
	.ss-section-wrap.hero-banner .embedded-gallery .next-arrow {
		background-size: 9px auto;
		height: 30px;
		width: 30px;
	}

	.ss-section-wrap.hero-banner .embedded-gallery .next-arrow {
		right: 10px;
	}

	.ss-section-wrap.hero-banner .embedded-gallery .slide .caption {
		padding: 0 50px 50px 50px !important;
	}
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Section -> News Section ---------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */

.ss-section-wrap.has-background-color:last-child {
	margin-bottom: -80px
}
.news-section {
	padding: 110px 0 130px;
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Section -> Video Banner ---------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */

.video-banner-section {
    background: #081526 url(/images/template/homepage-video-placeholder.webp) 50% 50% no-repeat;
    background-size: cover;
    height: calc(100dvh - 128px);
	margin-bottom: 10px;
    max-width: none;
    min-height: 550px;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 0;
}

@media (max-width: 500px) {
    .video-banner-section {
        background-image: url(/images/template/homepage-video-placeholder-mobile.webp);
    }
}

.video-banner-section .ss-section-wrap-inner {
    height: 100%;
    margin: 0;
    max-width: none;
    width: 100%;
}

.video-banner-section .col-1 {
    margin: 0;
    width: 100%;
}

.video-banner-section .ss-editor-video-embed-container:before {
    background: linear-gradient(180deg, transparent 0%, rgba(18, 48, 87, 43%) 100%);
    bottom: 0;
    content: '';
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
}

.video-banner-section .ss-editor-video-embed-container {
    background: none;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0%;
    margin: 0;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    width: auto;
}

.video-banner-section .ss-editor-video-embed-container iframe {
    left: 50%;
    min-height: 100vh;
    min-width: 100%;
    opacity: 0;
    transform: translate(-50%);
    transition: opacity 0.3s linear;
    width: auto !important;
}

.video-banner-section .ss-editor-video-embed-container.video-playing iframe {
    opacity: 1;
}

.video-banner-section .heading {
    bottom: 60px;
    color: #fff;
    height: max-content;
    left: 50%;
    margin: 0 auto;
    max-width: 1500px;
    position: absolute;
    right: 0;
    text-align: center;
    top: auto;
    transform: translate(-50%,-50%);
    width: calc(100% - 120px);
    z-index: 10;
}

.video-banner-section .heading h1 {
    font-size: 90px;
}

.video-banner-section #explore-btn {
    align-items: center;
    bottom: 60px;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-family: var(--default-font-family);
    font-size: 13px;
    font-weight: 700;
    left: 50%;
    letter-spacing: 0.18em;
    line-height: 169%;
    max-width: 330px;
    padding-bottom: 15px;
    position: absolute;
    right: auto;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    top: auto;
    transform: translateX(-50%);
    width: calc(100% - 60px);
    z-index: 10;
}

.video-banner-section #explore-btn:after {
    animation-direction: normal;
    animation-duration: 2s;
    animation-name: arrow-bounce;
    animation-iteration-count: infinite;
    background-color: #fff;
    bottom: 0px;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    content: '';
    display: block;
    height: 6px;
    margin-top: 5px;
    position: absolute;
    top: auto;
    transition: background-color 0.3s ease, bottom 0.3s ease;
    width: 12px;
}
.video-banner-section #explore-btn:hover:after {
	bottom: -10px;
}
@media (max-width: 1200px) {
    .video-banner-section .heading h1,.video-banner-section .heading h1 .h1-alt {
        font-size: 80px;
    }
}
@media (max-width: 650px) {
    .video-banner-section .heading h1,.video-banner-section .heading h1 .h1-alt {
        font-size: 58px;
    }
}

@media (max-width: 380px) {
    .video-banner-section .heading h1,.video-banner-section .heading h1 .h1-alt {
        font-size: 51px;
    }
}

@media (max-height: 800px) {
    .video-banner-section .heading h1,.video-banner-section .heading .h1-alt {
        font-size: 48px;
    }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Section -> Global Quick Links ---------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */

.quick-links .ss-section-wrap-inner {
	max-width: none;
}
.quick-links .responsive-grid-layout-row {
	justify-content: center;
}
.quick-links .responsive-grid-layout-row .col {
	flex: auto;
	margin: 0;
	padding: 0 80px;
	width: auto;
}
.quick-links .responsive-grid-layout-row .col a {
	align-items: center;
	display: flex;
	gap: 15px;
	justify-content: center;
	margin: 0;
	text-decoration: none;
}
.quick-links .responsive-grid-layout-row .col:not(:last-child) {
	border-right: 1px solid #D0D6DE;
}
.main-content .quick-links {
	margin: 0 190px 160px;
	padding: 120px 0px;
}
.quick-links .ss-content-block {
	flex: auto;
	margin: 0;
}

@media (max-width: 1700px) {
	.main-content .quick-links {
		margin: 0 60px 60px;
	}
}
@media (max-width: 1420px) {
	.main-content .quick-links {
		padding: 60px;
	}
	.quick-links .ss-section-wrap-inner {
		margin: 0;
	}
	.quick-links .responsive-grid-layout-row .col {
		padding: 0 30px;
	}
}
@media (max-width: 1200px) {
	.quick-links .responsive-grid-layout-row .col {
		flex: 50%;
		padding: 15px;
	}
	.quick-links .responsive-grid-layout-row .col:nth-child(2n) {
		border: none;
	}
}
@media (max-width: 768px) {
	.quick-links .responsive-grid-layout-row .col:not(:last-child) {
		border-bottom: 1px solid var(--tertiary-color);
		border-right: none;
		padding: 20px 15px;
	}
}
@media (max-width: 500px) {
	.main-content .quick-links {
		margin: 0 30px 30px;
		padding: 30px;
	}
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Section -> Intro Text Section ---------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */

.ss-section-wrap.intro-text-section .ss-section-wrap-inner {
	padding: 75px 0 35px;
}

@media (min-width: 768px) {
	.ss-section-wrap.intro-text-section h2:first-child {
		font: 400 50px 'Mate';
	}
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Section -> Feature Section ------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */

.feature-section {
	margin: 0 0 180px;
}
.feature-section .ss-section-wrap-inner {
	margin: 0;
	max-width: none;
}
.feature-section .ss-content-block {
	flex: auto;
	margin: 0;
}
.feature-section .inline-gallery-wrap .stage {
	background: none;
	height: auto !important;
	width: 100% !important;
}
.feature-section .inline-gallery-wrap .stage .slide {
	align-items: center;
	background-color: #F4F5F5;
	display: flex !important;
	height: max-content;
	min-height: 660px;
	opacity: 0 !important;
	position: absolute;
	transition: opacity 0.3s ease;
}
.feature-section .inline-gallery-wrap .stage .current.slide {
	opacity: 1 !important;
	position: relative !important;
}
.feature-section .inline-gallery-wrap .stage .slide .image {
	align-self: stretch;
	background: none !important;
	flex: 44.8%;
	height: auto;
	position: relative;
}
.feature-section .inline-gallery-wrap .stage .slide .image img {
	border-radius: 0;
	height: 100% !important;
	object-fit: cover;
	object-position: 50%;
	opacity: 1;
}
.feature-section .inline-gallery-wrap .stage .slide .caption {
	background: none;
	box-shadow: none;
	display: block !important;
	flex: 55.2%;
	height: max-content !important;
	margin: 0 !important;
	padding: 100px !important;
	position: relative !important;
}