*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
	content: '';
	display: table;
}

.clearfix:after {
	clear: both;
}

.display-inline * {
	display: inline-block;
}

.aria-hide {
	display: none;
}

.less-gap {
	margin-left: -.5rem;
	margin-right: -.5rem;
}

.less-gap>div {
	padding-left: .5rem;
	padding-right: .5rem;
}

.mt0 {
	margin-top: 0;
}

.mb0 {
	margin-bottom: 0;
}


/* Variables */
:root {
	--primary: #266F4F;
    --primary50: #266F4F80;
	--secondary: #003970;
    --secondary50: #00397080;
	--secondary-text: #ffffff;
	--dark-font-color: #1E1E1E;
	--light-font-color: #fff;
	--dark-grey: #555;
	--medium-grey: rgba(192, 192, 192, 0.5);
	--light-grey: #EFEFEF;
	--light-green: #6CA088;

	--body-font: "Montserrat", sans-serif;
	--heading-font: "Montserrat", sans-serif;

	--font-regular: 400;
	--font-medium: 500;
	--font-semibold: 600;
	--font-bold: 700;
}

/* background-colors */
.bg-primary {
	background-color: var(--primary);
	color: white;
}

.bg-secondary {
	background-color: var(--secondary);
	color: var(--secondary-text);
}

.bg-light-grey {
	background-color: var(--light-grey);
}

.bg-accent-1 {
	background-color: var(--accent-1);
	color: white;
}

.primary {
	color: var(--primary)
}

.secondary {
	color: var(--secondary)
}

.rounded {
    border-radius: 12px;
}

/* TYPOGRAPHY
Using the Perfect Fifth factor from https://www.gridlover.net/try
*/
html {
	font-size: 16px;
	line-height: 21px;
	scroll-behavior: smooth;
}

@media (min-width: 99em) {
	html {
		font-size: 18px;
	}
}

@media (min-width: 125em) {
	html {
		font-size: 20px;
	}
}

body {
	max-width: 2560px;
	padding: 0;
	margin: 0 auto;
	font-family: var(--body-font);
	font-style: normal;
	font-size: 1rem;
	line-height: 1.5;
	color: var(--dark-font-color);
	display: flex;
	flex-direction: column;
}

body.lb-disable-scrolling {
	overflow: hidden;
}

.wrapper {
	flex: 1 0 auto;
}

footer {
	flex-shrink: 0;
}

h2,
h3,
h4,
h5,
h6 {
	font-weight: var(--font-semibold);
}

h1 {
	font-weight: var(--font-bold);
}

/* Font Sizer */
.change-font-size {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: var(--light-grey);
    color: var(--dark-font-color);
    width: fit-content;
    font-weight: var(--font-bold);
    position: relative;
    z-index: 50;
    margin: 0 1rem 1rem auto;
}

.change-font-size a {
    display: inline-block;
    margin-left: 0.75rem;	
	cursor: pointer;
    text-decoration: none;
    font-weight: var(--font-regular);
}

@media(min-width:62em){
	.change-font-size {
		position: absolute;
        right: 1rem;
        bottom: 1rem;
        margin: 0;
	}

	.rounded {
		border-radius: 20px;
	}
}

/* Font size within main content */
.resize-text h1 {
	font-size: 3em;
}

.resize-text h2 {
	font-size: 2em;
}

.resize-text h3 {
	font-size: 1.375em;
}

.resize-text h4,
.resize-text h5 {
	font-size: 1em;
}

h1,
.h1 {
	font-style: normal;
	font-size: 3rem;
	margin-top: 1.3125rem;
	margin-bottom: 2.625rem;
}

h2,
.h2 {
	font-size: 2.25rem;
	margin-top: 1.3125rem;
	margin-bottom: 1.3125rem;
}

h3,
.h3 {
	font-size: 1.375rem;
	margin-top: 1rem;
	margin-bottom: 0.75rem;
}

h4,
.h4 {
	font-size: 1.2rem;
	margin-top: 1.3125rem;
	margin-bottom: 0.75rem;
}

h5,
.h5 {
	font-size: 1rem;
	margin-top: 1.3125rem;
	margin-bottom: 0.75rem;
}

@media (max-width: 767px) {
    .no-content-msg {
        text-align: center;
    }
}

@media all and (max-width: 991px) {
	h1,
	.h1 {
		font-size: 2rem;
	}

	h2,
	.h2 {
		font-size: 1.75rem;
		margin: 1rem 0;
	}

	h3,
	.h3,
	.page-content h3 {
		font-size: 1.2rem;
		margin: 1rem 0;
	}

	.resize-text h1 {
		font-size: 2em;
	}

	.resize-text h2 {
		font-size: 1.75em;
	}

	.resize-text h3 {
		font-size: 1.2em;
	}

	.page-template>.row {
		row-gap: 1rem;
	}
}

p,
ul,
ol,
pre,
blockquote {
	margin-top: 0rem;
	margin-bottom: 1.3125rem;
}

ul ul,
ol ol,
ul ol,
ol ul {
	margin-top: 0rem;
	margin-bottom: 0rem;
}

h1+h2 {
	margin-top: 0;
}

p {
	line-height: 1.6;
}

hr {
	border: 0;
	height: 1px;
	background-color: #e6e6e6;
	margin: 2rem 0;
	clear: both;
}

img {
	height: auto;
	max-width: 100%;
	object-fit: cover;
	display: block;
}

a {
	text-decoration: none;
}

blockquote {
	background: var(--light-grey);
	border-left: 5px solid var(--secondary);
    border-radius: 0 10px 10px 0;
	padding: 1.5rem;
	margin: 0 0 1.5rem;
	position: relative;
	font-weight: 300;
}

blockquote p:last-of-type {
	margin-bottom: 0;
}

ul {
	padding-left: 0;
	list-style: none;
}

svg {
	margin-top: -1px;
}

strong {
	font-weight: var(--font-bold);
}

section {
	margin-bottom: 2rem;
}

.allow-newlines {
	white-space: pre-wrap;
}

.no-padding {
	padding: 0;
}

.no-margin {
	margin: 0!important;
}

.mt0 {
	margin-top: 0 !important;
}

.mb0 {
	margin-bottom: 0 !important;
}

.auto-margin {
	margin: auto;
}

.flex-row {
	display: flex;
	align-items: center;
	gap: .5rem;
}

.flex-row-between {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.flex-column-center {
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.flex-column-between {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

.less-gap {
	margin-left: -.5rem;
	margin-right: -.5rem;
}

.less-gap>* {
	padding-left: .5rem;
	padding-right: .5rem;
}

.content {
	width: 100%;
}

.font-bold {
	font-weight: var(--font-bold);
}

.align-right {
	margin-left: auto;
}

.text-center {
	text-align: center;
}

.text-uppercase {
	text-transform: uppercase;
}

.font-smaller {
	font-size: 80%;
}

.row {
	row-gap: 2rem;
}

.row.less-gap {
	row-gap: 1rem;
}

@media all and (min-width: 75em) {
	.full-container {
		padding: 0 2rem;
	}

	blockquote {
		padding: 2rem
	}
}

.cm-edit {
    margin-bottom: .5rem;
}

.cm-edit img {
    width: 30px;
}

/* Google Translate */
.goog-te-gadget .goog-te-combo {
	margin: 0 0 1rem !important;
	padding: 0.75rem;
	border: none;
	border-right: 0.5rem solid #fff;
	font-weight: var(--font-bold);
	width: 100%;
    border-radius: 10px;
}

/* Layout */
.content-container,
.container.pad-side,
.content-container--narrow {
	padding: 0 1.5rem;
}

.container.pad-side {
	margin: 0 1.5rem;
}

ie-query {
	min-height: unset!important;
}

@media all and (min-width: 48em) {

	.content-container,
	.container.pad-side {
		padding: 0 5%;
		width: auto;
	}
}

@media all and (min-width: 62em) {
	/* .content-container,
	.container.pad-side {
		padding: 0 7.5%;
	} */
	

	.container.pad-side {
		margin-top: 3rem;
	}
}

/* show and hide on different screen sizes */
.mobile-only {
	display: block;
}

.desktop-only {
	display: none;
}

@media all and (min-width: 48em) {
	.desktop-only {
		display: block;
	}

	.mobile-only {
		display: none;
	}
}

/* BUTTON & LINKS */
a {
	transition: all .3s ease-in-out;
	color: var(--primary);
}

a:hover,
a:focus {
	filter: brightness(0.9)
}

.btn {
	display: block;
	width: fit-content;
	font-weight: var(--font-semibold);
	padding: .75rem 1.5rem;
	text-decoration: none!important;
    border-radius: 100px;
	text-transform: uppercase;
}

.btn-primary {
    background-color: var(--primary);
    color: white!important;
}

.btn-secondary {
    background-color: var(--secondary);
    color: white!important;
}

.btn-link {
    color: var(--primary);
    font-weight: var(--font-semibold);
}

/* INPUT FIELDS */
input:-webkit-autofill,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:focus {
	border: none;
	-webkit-text-fill-color: none;
	-webkit-box-shadow: 0 0 0px 1000px var(--medium-grey) inset;
}

.input-field input[type="text"],
.input-field input[type="password"],
.input-field input[type="date"],
.input-field input[type="tel"],
.input-field input[type="email"],
.input-field input[type="search"],
textarea {
	width: 100%;
	box-sizing: border-box;
	border: solid 1px #e4e4e4;
    border-radius: 10px;
	transition: 0.5s;
	padding: .5rem;
}

textarea {
	min-height: 150px;
    border-radius: 10px;
	font-family: var(--body-font);
}

input[type="submit"] {
	font-weight: var(--font-medium);
	background: var(--secondary);
	color: var(--secondary-text);
	border-radius: 100px;
	border: 0;
	cursor: pointer;
	padding: .55rem 1.25rem .7rem;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.input-field {
	margin-bottom: 1rem;
}

.input-field label {
	margin-bottom: .5rem;
	display: block;
}

.input-row {
    display: flex;
    gap: 1rem;
}

.input-row .input-field {
    width: calc(50% - .5rem);
}

.custom-select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.custom-select {
    border: solid 1px #e4e4e4;
    border-radius: 5px;
    transition: 0.5s;
    padding: 0.75rem 1rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
}

.contact-form .custom-select {
    background-color: white;
    border: solid 1px #e4e4e4;
    border-radius: 10px;
}

.custom-select-wrapper i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #555;
}

#schools-dropdown {
	background-color:var(--light-grey);
    border: none;
	border-radius: 20px;
	color: var(--dark-font-color);
	font-weight: var(--font-medium);
	font-size: .9rem;
}

#schools-dropdown option {
    color: var(--dark-font-color);
}

.schools-select button {
	background-color: var(--secondary);
	border: none;
	-webkit-appearance: none;
    appearance: none;
	cursor: pointer;
    padding: .75rem 1rem;
	border-radius: 50%;
	width: 2.5rem;
    height: 2.5rem;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Alerts */
#popup-container .modal-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 30%;
    transform: translateY(-50%);
    margin: 0 auto;
}

#popup-container .popupImage img {
    max-height: unset;
    aspect-ratio: 4 / 3;
}

#bannerAnchor {
    font-size: .9rem;
    color: var(--primary-accent);
}

.banner-alert-wrapper p {
    margin: .5rem 0;
}

@media (min-width: 62em) {
    #popup-container .modal-content {
        top: 50%;
        transform: translateY(-50%);
    }
}

/* Table Styles - CK */
.table {
	margin: 0 0 2rem;
	overflow-x: auto;
	border-radius: 10px;
	box-shadow: none;
}

.table th a {
	color: white;
}

.table th a:hover,
.table th a:focus {
	text-decoration: underline;
}

.table table {
	font-weight: normal;
	border-collapse: collapse;
	width: 100%;
	max-width: 100%;
	white-space: normal;
	background-color: white;
	border: 1.5px solid var(--light-grey);
}

.table table td,
.table table th {
	padding: 10px 15px;
}

.table table td {
	border-right: 1px solid var(--light-grey);
}

.table table td:last-of-type {
	border-right: 0;
}

.table table thead th,
.editor-table th {
	color: #ffffff;
	background: var(--secondary)!important;
	border-right: 1px solid white;
}

.table table thead th>* {
	color: #ffffff;
}

.table table tr:nth-child(even) {
	background: #f5f5f5;
}

.table table tr:nth-child(odd) {
	background: white !important;
}

.table h3 {
	margin: .5rem 0;
}

.table img {
	width: 100%;
}

.editor-table th, .editor-table th:nth-child(even) {
	color: white;
}


@media (min-width: 48em) {
	/* Careers */
	#job-postings-section table {
		table-layout: fixed;
	}
}

/* Lexical */
.editor-table tr:nth-child(odd) {
	background: white;
}

.editor-table tr:nth-child(even) {
	background: #f5f5f5;
}

/* Collapsible box - CK editor */
.collapsible-box {
	width: 100%;
	margin-bottom: 1rem;
}

.collapsible-box .material-icons {
	color: var(--secondary);
	font-weight: var(--font-bold);
}

.collapsible-box-description { 
	display: none;
	margin: 1rem 0.5rem;
}

.collapsible-box-title {
    background-color: var(--light-grey);
    display: flex;
    align-items: center;
    padding: .5rem;
	margin: 0;
	cursor: pointer;
	border-radius: 10px;
}

.collapsible-box-title i {
	margin-right: .5rem;
}

.collapsible-bottom-icon {
	cursor: pointer;
}

/* Collapsible boxes - lexcial */
.editor details summary {
    background-color: var(--light-grey);
    display: flex;
    align-items: center;
    padding: .5rem;
	margin: 0;
	cursor: pointer;
    transition: all .3s ease-in-out;
    border-radius: 10px;
}

.editor details summary h3 {
    margin: 0;
}

.editor details summary i {
    color: var(--secondary);
    margin-right: .5rem;
}

.editor details {
    margin-bottom: 1rem;
    transition: all .3s ease-in-out;
}

.editor div[data-lexical-collapsible-content]{
    padding: 1rem;
}


/* Subpage Template */
.page-content {
	padding: 0;
}

.page-title {
	position: relative;
	color: white;
    margin-bottom: 2rem;
}

.title-bg {
	background-color: var(--light-green);
	background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.title-bg .wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.has-bg-image.title-bg {
    color: white;
}

.page-title-text {
	width: fit-content;
	margin: auto;
	padding: 2rem 1rem 2.5rem;
	z-index: 11;
	position: relative;
}

.page-template {
	margin-bottom: 5%;
}

.page-template>.row {
	margin-left: 0;
	margin-right: 0;
}

.page-content p,
.page-content ul,
.page-content ol {
    margin-bottom: .5rem;
}

.page-content h2, 
.page-content h3,
.page-content h4, 
.page-content h5 {
    margin-top: .5rem;
    margin-bottom: .5rem;
}

.page-content a {
    color: var(--primary);
    text-decoration: underline;
}

.page-content ul {
	list-style: unset;
	padding-left: 1rem;
}

.side-container {
	padding: 0 1rem;
}

/* nested ordered list styling */
.editor-nested-listitem {
    list-style-type: none;
}
.editor-nested-listitem:before,
.editor-nested-listitem:after {
    display: none;
}

.editor-list-ol {
    list-style-type: none;
    counter-reset: item;
    margin: 0;
    padding: 0;
}
.editor-list-ol > .editor-listitem:not(.editor-nested-listitem) {
    display: table;
    counter-increment: item;
    margin-bottom: 0.6em;
}
.editor-list-ol > .editor-listitem:not(.editor-nested-listitem):before {
    content: counters(item, '.') '. ';
    display: table-cell;
    padding-right: 0.6em;
}
.editor-listitem:not(.editor-nested-listitem) .editor-list-ol > .editor-listitem:not(.editor-nested-listitem) {
    margin: 0;
}
.editor-listitem:not(.editor-nested-listitem) .editor-list-ol > .editor-listitem:not(.editor-nested-listitem):before {
    content: counters(item, '.') ' ';
}
.editor-list-ol {
    padding: 0;
    margin: 0;
}

.page-content-inner ul,
.page-content-inner ol {
    list-style: revert;
    line-height: 1.8;
}

.page-content-inner ul {
    padding-left: 1rem;
}

.page-content-inner .editor-nested-listitem::marker {
    content: none;
}

.editor-nested-listitem {
    padding-left: 1rem;
}


/* Responsive Iframe for Embed Videos */
.editor iframe {
    border: none
}
.responsive-iframe {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.embedly-card-hug {
    position: relative !important;
    padding-bottom: 56.25% !important;
    height: 0;
    max-width: 100% !important;
}

.embedly-card-hug iframe,
.responsive-iframe iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute !important;
    min-height: unset;
}

.daily-bus-iframe {
	height: 700px;
}

@media (min-width: 62em) {
	.page-title-text {
		padding-top: 4.5rem;
        padding-bottom: 4.5rem;
		max-width: 80%;
	}

	.side-container {
		padding: 0 7.5% 0 0;
		margin-top: -2rem;
	}

	.page-content {
		padding: 1rem 2rem 0 3rem;
	}

	.page-content.no-side-nav {
		padding: 0 0 2rem;
	}

	.daily-bus-iframe {
		height: 1000px;
	}

}

/* Side Navigation */
.sidebar-wrapper {
	background: var(--light-grey);
	color: var(--dark-font-color);
	padding: 1rem 1.5rem;
	margin: 0 auto;
    border-radius: 12px;
	font-weight: var(--font-medium);
}

.sidebar-wrapper a {
	color: var(--dark-font-color);
}

.nav-secondary {
	display: none;
	margin-top: 1rem;
}

.cookie a {
	display: flex;
	align-items: center;
	color: var(--primary);
	font-size: .9rem;
}

.secondary-nav-item {
	margin-bottom: 0.5rem;
	transition: all .3s ease;
	width: fit-content;
}

.secondary-nav-item.active {
	font-weight: var(--font-semibold);
	font-size: 1rem;
}

.cookie:hover a,
.cookie:focus a,
.secondary-nav-item:hover a,
.secondary-nav-item:focus a {
	color: var(--secondary);
	filter: none;
}

.nav-secondary-ul {
	margin: .5rem 0 0 .5rem;
}

.current-page {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.25rem;
}

@media (min-width: 62em) {
	.sidebar-wrapper {
		padding: 2rem;
		margin: unset;
		height: fit-content;
		border-radius: 20px;
	}

	.nav-secondary {
		display: block !important;
		margin: unset;
	}

	.nav-secondary-ul {
		margin: 1rem 0 0 .5rem;
	}

	.current-page {
		display: none;
	}
}

/* News Article, Event Article*/
.article-title {
    margin-bottom: .75rem;
}

.article-seo-image {
    margin-bottom: 1rem;
}

.article-template .publish-date,
.event-location {
	margin-bottom: .5rem;
	font-weight: var(--font-medium);
}

.recent-item {
    margin-bottom: .75rem;
    display: block;
    background: var(--light-grey);
    padding: .5rem 1rem;
    border-radius: 10px;
}

.recent-item h4 {
    font-size: 1rem;
    font-weight: var(--font-bold);
}

.recent-wrapper {
    margin-bottom: 2rem;
	padding: 0;
}

.recent-wrapper h3 {
    color: var(--dark-font-color);
}

.page-content-inner .back-link {
    margin-bottom: 1rem;
    display: block;
    font-weight: var(--font-bold);
    text-decoration: none;
}

.news-seo-image {
	margin-bottom: 1rem;
}

@media (min-width: 62em) {
    .recent-wrapper {
        margin-top: 2rem;
		padding: 0 1rem;
    }

    .page-content .news-archive-item {
        padding: 1.5rem;
    }
}

/*News Archive*/
.news-archive a {
    text-decoration: none;
}

/* Landing Page */
.landing-wrapper {
	margin-top: 2rem;
    margin-bottom: 2rem;
}

.page-content .landing-link {
    padding: 2rem 2rem;
    position: relative;
    text-decoration: none;
    height: 100%;
	background-color: var(--light-grey);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.landing-link h3 {
    color: var(--dark-font-color);
}

.landing-link .landing-content {
	display: flex;
    flex-direction: column;
    height: 100%;
    gap: 1.5rem;
	flex: 1 1 0;
}

.page-content .back-button {
	text-decoration: none;
	margin-bottom: 1rem;
}

.landing-item i {
	background: var(--secondary);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
}

.landing-item p {
	color: var(--dark-grey);
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
	font-weight: var(--font-medium);
}

/* Modal */
/* General Styling */
body.lb-disable-scrolling {
	overflow: hidden;
}

.main-content-wrapper {
	margin: auto;
}

.modal-trigger {
	cursor: pointer;
}

.modal-wrapper {
	display: none;
	position: fixed;
	z-index: 500;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.7);
	margin: 0 !important;
}

.modal-info {
	margin: 0 auto;
    width: 90%;
    position: absolute;
    top: 5rem;
    left: 0;
    right: 0;
    padding: 2rem 1rem;
	max-height: 85dvh;
    background-color: var(--light-grey);
    color: var(--dark-font-color);
    border-radius: 10px;
}

.modal-wrapper .close-icon {
	font-size: 1.5rem;
	position: sticky;
	top: 0;
	left: 100%;
	cursor: pointer
}

.modal-info iframe {
	display: block;
	margin: auto;
	width: 100%;
	border: none;
	height: 80dvh;
}

.form-modal .modal-info {
	background-color: white;
	box-shadow: 0px 5px 10px rgb(0 0 0 / 10%);
	padding: 0;
	top: 50%;
}

.form-close {
	color: white;
}

.form-link {
	color: var(--accent-3);
}

.page-template .form-title {
	margin: 0;
	color: white;
}

.close-icon-wrapper {
	position: absolute;
	z-index: 100;
	top: 0;
	color: var(--light-grey);
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 2rem 1.5rem;
}

.modal-label {
	font-weight: var(--font-medium);
}

@media (min-width: 62em) {
	.modal-info {
		top: 50%;
        transform: translateY(-50%);
        padding: 2rem;
		width: 60%;
	}

	.form-modal .modal-info {
		width: 50%;
	}

	.landing-item i {
		width: 3rem;
		height: 3rem;
	}
}

/* Custom Styling for Useful Links Modal */
.usefullinks-modal .modal-info {
	overflow: auto;
}

.usefullinks-modal .useful-links-wrapper{
	display: flex;
    flex-wrap: wrap;
    column-gap: 1rem;
    row-gap: 1.5rem;
    margin-bottom: 0;
    margin-top: 0;
}

.usefullinks-modal .service.service-link {
	width: calc((100% - 1rem) / 2);
    text-align: center;
    margin-top: 0;
}

.usefullinks-modal .service.service-link a {
    color: var(--dark-font-color);
    padding: 0;
}

.usefullinks-modal .service-label {
    font-size: 1.2rem;
	color: var(--dark-font-color);
	font-weight: var(--font-medium);
}

.usefullinks-modal .service-icon {
    background-color: white;
}

@media (min-width: 48em) {
    .usefullinks-modal .modal-info {
		width: 90%;
        max-width: 1200px;
	}

    .usefullinks-modal .service-links-wrapper {
		row-gap: 2rem;
        column-gap: 2rem;
	}

	.usefullinks-modal .service.service-link {
		width: calc((100% - 5rem) / 6);
	}
}

@media (min-width: 75em) {
    .usefullinks-modal .modal-info {
        max-width: 1500px;
	}

	.usefullinks-modal .service.service-link {
		width: calc((100% - 7rem) / 8);
	}
}

/* Header */
header {
    position: sticky;
    z-index: 100;
    top: 0;
    background: white;
}

.top-header {
	display: flex;
    justify-content: space-between;
    align-items: center;
	padding-top: .5rem;
    padding-bottom: .5rem;
}

.top-header a {
	color: var(--secondary);
	font-weight: var(--font-medium);
}

.top-header-left,
.top-header-right {
	display: flex;
	gap: .75rem;
	align-items: center;
}

.top-header a.flex-row {
	position: relative;
	padding-left: 1rem;
}

.top-header a.flex-row::before {
	content: '';
	width: 1px;
	height: 90%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-color: var(--secondary);
}

.header-row {
	background-color: var(--primary);
    padding: .75rem 1rem;
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 15rem;
}

.main-nav-ul a {
    color: white;
	font-weight: var(--font-semibold);
}
.sub-li a {
    color: var(--dark-font-color);
}
.nav-link .add-icon {
    color: white;
}

.main-dropdown-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 1rem;
}

.sub-li {
    margin-bottom: .5rem;
}

.sub-li:last-of-type {
    margin-bottom: 0;
}

.search-api-form {
	position: relative;
}

.search-api-form label {
	display: none;
}

.search-api-form .input-field {
	margin-bottom: 0;
}

.input-field input[type="text"].search-box {
	margin-bottom: 0;
	border-radius: 10px;
	border: none;
	padding: .5rem 1rem;
	background-color: var(--medium-grey);
	color: var(--secondary);
}

.input-field input[type="text"].search-box::placeholder {
	color: var(--secondary);
	font-weight: var(--font-medium);
	font-size: .9rem;
}

.modal-info .input-field input[type="text"].search-box {
    background-color: white;
}

#search-button {
	cursor: pointer;
	border: none;
	background: transparent;
	position: absolute;
	right: 0.5rem;
	top: 52%;
	transform: translateY(-50%);
}

#search-button i {
	color: var(--secondary);
	font-size: 1.5rem;
}

.main-nav-ul.desktop {
    display: none;
}

.service span {
	color: var(--medium-grey);
	font-size: .75rem;
	text-align: center;
	display: block;
	line-height: 1.5;
	margin-top: 0.5rem;
	transition: all .3s ease-in-out;
}

.service a:hover,
.service a:focus {
	filter: none;
	color: var(--dark-font-color);
}

.service a:hover span,
.service a:focus span {
	color: var(--dark-font-color);
}

.service-icon {
	font-size: 1.5rem;
    padding: 1rem;
    text-align: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    background: var(--light-grey);
    border-radius: 10px;
    color: var(--primary);
}

.service-icon img {
    width: 60%;
    object-fit: contain;
}

.service-label {
	text-align: center;
	display: block;
    margin-top: .25rem;
	color: var(--dark-font-color);
}

.menu-trigger {
	color: white;
	font-size: 1.5rem;
	display: none;
}

.menu-trigger.active {
	color: var(--primary);
	position: absolute;
    z-index: 500;
    top: 1rem;
    right: 1rem;
}

@media (min-width: 48em) and (max-width: 99em) {
	.service-icon {
		font-size: 2rem;
	}
}

@media (max-width: 1199px) {
    .logo img {
        width: 150px;
    }

	.desktop-primary-nav {
		display: none;
	}

	/* Mobile Main Nav */
	.menu-trigger {
		display: block;
		cursor: pointer;
	}

    .main-dropdown-menu {
        margin: 0;
        gap: 1rem;
    }

	.mobile-main-nav {
		margin-bottom: 1rem;
	}

	.mobile-main-nav .main-dropdown .main-dropdown-menu {
		display: block;
		transform: scaleY(0);
		transition: transform .3s ease-in-out;
		transform-origin: top center;
		height: 0;
	}

	.mobile-main-nav .main-dropdown.show .main-dropdown-menu {
		transform: scaleY(1);
		height: auto;
		padding: 1rem 0;
		display: flex;
		flex-direction: column;
		margin-left: .5rem;
	}

	.mobile-main-nav a {
		font-weight: var(--font-semibold);
	}

	.mobile-main-nav .nav-link {
		justify-content: space-between;
	}

	.mobile-main-nav .main-nav-ul {
        margin: 3rem .5rem;
	}

	.mobile-main-nav .main-li {
		margin-bottom: 1rem;
	}

	.mobile-main-nav .main-li:last-of-type {
		margin-bottom: 0;
	}

	.add-icon-mobile {
		width: 20%;
    	text-align: right;
        color: var(--primary);
	}

	.collapsible-menu {
		display: flex;
		flex-direction: column;
		background-color: white;
		padding: 1rem;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		z-index: 497;
		height: auto;
		min-height: 100dvh;
		justify-content: space-between;
		max-height: 100dvh;
		overflow: scroll;
	}

	.collapsible-menu a {
		color: var(--dark-font-color);
	}
}

@media (max-width: 991px) {
    .header-row {
        padding: .5rem 1rem;
    }

	.top-header-left .social-link {
		display: none;
	}

	.top-header a.flex-row::before {
		content: none;
	}

	.top-header span {
		display: none;
	}

	.top-header {
		justify-content: center;
	}

	.top-header a.flex-row {
		padding: 0;
	}

	.top-header a.contact-link {
		padding: 0 2rem 0 0;
	}

	.top-header-right {
		gap: 2rem;
	}
}

@media (min-width: 48em) {
    .logo h3 {
        display: block;
    }

	.top-header .contact-link span {
		display: block;
	}
}

@media all and (min-width: 75em) {
    .main-nav-ul.desktop {
        display: flex;
    }

    .mobile-main-nav {
        display: none;
    }

	#nav-primary {
		display: none;
		margin: 0;
		position: absolute;
		top: 0;
		left: auto;
		right: 0;
		z-index: 100;
		width: 26rem;
		height: fit-content;
		max-height: 1200px;
		min-height: fit-content;
		overflow-y: scroll;
		border-radius: 0 0 0 10px;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	}

	.main-nav-ul {
		display: flex;
		align-items: center;
		gap: 1.5rem;
		margin-bottom: 0;
	}

	.main-nav-ul>li {
		position: relative;
		display: flex;
		flex-direction: column;
		justify-content: center;
		transition: all .2s ease-in-out;
	}
 
	.main-nav-ul i {
		transition: all .2s ease-in-out;
	}

	.main-dropdown-menu {
        transform: scaleY(0);
        transition: all .3s ease;
        transform-origin: top;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 80;
        background: var(--light-grey);
        border-radius: 10px;
        padding: 1rem;
        min-width: 300px;
        opacity: 0;
    }

    .main-dropdown-menu.multi-col {
        column-count: 2;
        min-width: 500px;
        display: inline;
    }

    .main-dropdown:last-of-type .main-dropdown-menu,
	.main-dropdown:nth-last-of-type(2) .main-dropdown-menu {
        left: unset;
        right: 0;
    }

    .main-dropdown:hover .main-dropdown-menu {
        transform: scaleY(1);
        opacity: 1;
    }

}

/* Footer */
footer {
	text-align: center;
}

.footer-logo img {
	margin: auto;
	width: 400px;
}

footer .social-wrapper {
	justify-content: center;
}

footer h3 {
	font-weight: var(--font-medium);
	font-size: 1.2rem;
}

address {
	font-style: normal;
}

.contact-wrapper {
	gap: 1rem;
}

.circle-icon {
	color: var(--secondary);
    border: 1.5px solid var(--secondary);
    border-radius: 50%;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.circle-icon:hover,
.circle-icon:focus {
	background-color: var(--secondary);
	color: var(--light-font-color);
	filter: none;
}

footer .social-wrapper {
	margin-top: 1.5rem;
}

.copyright {
	padding-top: 1rem;
	padding-bottom: 1rem;
	margin-top: 3rem;
}

.ie-link a {
	font-weight: var(--font-medium);
}

@media (min-width: 62em) {
	.copyright {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 1.5rem;
	}

	.ie-link {
		position: relative;
		padding-left: 1.5rem;
	}

	.ie-link::before {
		content: '';
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		width: 1.5px;
		height: 70%;
		background-color: var(--dark-font-color);
	}

	footer {
		text-align: left;
	}

	footer .social-wrapper {
		justify-content: flex-start;
	}

	.footer-logo img {
		margin: 0;
	}

}

/* BANNER */
.banner-wrapper {
	position: relative;
}

.banner_media {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16/9;
}

.banner_video iframe {
	position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 100%;
    transform: translate(-50%, -50%);
}

.banner_media::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%);
	z-index: 1;
}

.banner_img img {
	width: 100%;
	height: 100%;
}

.banner_info {
    position: absolute;
    color: white;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    z-index: 2;
}

.banner_info h1 {
	margin-bottom: .5rem;
	line-height: 1.3;
}

.banner_info h3 {
	font-weight: var(--font-medium);
}

.quicklink-card {
    background: var(--secondary);
    color: white;
    font-weight: var(--font-semibold);
    display: block;
    border-radius: 20px;
    padding: 2rem 1rem;
}

.home-quicklinks {
	margin: -3rem auto 2rem;
	position: relative;
    z-index: 2;
}

@media all and (min-width: 62em){
	.banner_media {
		position: relative;
		width: 100%;
		overflow: hidden;
		aspect-ratio: 1920 / 650; 
		padding: 0;
		height: auto;
	}
	
	.banner_video iframe {
		width: 100vw;
		height: 56.25vw;
		min-width: 177.78vh;
		min-height: 100vh;
	}

	.banner_info {
		width: 48%;
    	margin: auto;
	}

	.home-quicklinks {
		width: 90%;
	}
	
}

/* News, Events */
.home-news h2,
.home-events h2 {
	margin-bottom: 1rem;
}
.news-item a {
	display: block;
	aspect-ratio: 540/372;
	position: relative;
	background-color: var(--primary50);
	border-radius: 20px;
}

.news-item.has-image a::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 100%);
	border-radius: 20px;
}

.cover-img {
	aspect-ratio: 540/372;
}

.news-item img {
	width: 100%;
	height: 100%;
	border-radius: 20px;
}

.no-cover-img img {
	width: 60%;
    height: auto;
    padding: 1rem;
    margin-left: auto;
}

.news-content {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: white;
	width: calc(100% - 2rem);
	display: flex;
    justify-content: space-between;
    align-items: center;
	gap: .5rem;
}

.news-content > div {
	width: calc(100% - 4rem);
}

.news-item i {
	background-color: var(--secondary);
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
}

.news-title {
	font-weight: var(--font-semibold);
	margin-bottom: 0;
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.publish-date {
	font-weight: var(--font-medium);
}

.event-item {
    display: flex;
    align-items: center;
    color: var(--dark-font-color);
    font-weight: var(--font-semibold);
    background-color: var(--light-grey);
    border-radius: 20px;
}

.event-date-wrapper {
    background: var(--primary);
    color: var(--light-font-color);
    text-align: center;
    font-size: 1.2rem;
    width: 6rem;
    height: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px;
}

.format-date-box {
    line-height: 1.2;
}

.event-date-wrapper .event-month {
    text-transform: uppercase;
	font-weight: var(--font-medium);
}

.event-date-wrapper .event-day {
    font-size: 1.8rem;
	background: transparent;
	font-weight: var(--font-semibold);
}

.event-name {
    padding: 0 1.5rem;
    width: calc(100% - 6rem);
}

.event-name h3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.event-all-day {
	color: var(--dark-grey);
	font-weight: var(--font-medium);
}

.home-events-wrapper {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.home-news .btn-link,
.home-events .btn-link {
	margin: 1rem 0 0 auto;
    width: fit-content;
    display: block;
}

/* Home CTA */
.home-cta {
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.cta-content {
	height: 100%;
	border-radius: 20px;
	padding: 1rem;
}

.home-cta img {
	border-radius: 20px;
	width: 100%;
}

@media (min-width: 62em) {
	.news-content {
		bottom: 1.5rem;
		left: 1.5rem;
		width: calc(100% - 3rem);
	}

	.cta-content {
		padding: 2rem;
	}

	.home-cta {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}

	.home-cta .row {
		width: 90%;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (min-width: 99em) {
	.news-content {
		bottom: 2rem;
		left: 2rem;
		width: calc(100% - 4rem);
	}

}

/* Acknowledgement Carousel */
.home-acknowledgement {
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.home-acknowledgement a {
	color: white;
}

.section-heading {
    margin-bottom: 1rem;
}

.acknowledgement-slide {
	height: auto;
}

.acknowledgement-link {
    aspect-ratio: 408/381;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: var(--dark-grey);
    position: relative;
	height: 100%;
}

.acknowledgement-btn {
    margin-top: 1rem;
}

.acknowledgement-title {
    margin-bottom: .5rem;
}

.acknowledgement-content {
    background-color: white;
    color: var(--dark-font-color)!important;
    padding: 1.5rem;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    opacity: 0;
    transition: all .3s ease-in-out;
}

.acknowledgement-slide.swiper-slide-active .acknowledgement-content {
    opacity: 1;
}

.acknowledgement-slide.swiper-slide-active .acknowledgement-heading {
    display: none;
}

.acknowledgement-heading {
    color: white;
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    width: calc(100% - 3rem);
}

.news-desc {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-top: .5rem;
}

.acknowledgement-button-next, .acknowledgement-button-prev {
	position: static;
	color: white;
	transform: unset;
    margin: 0;
    width: auto;
    height: auto;
}

.swiper-navigation-icon {
	display: none;
}

/* .acknowledgement-swiper {
    margin-left: 20px !important;
} */

@media (min-width: 62em) {
    .section-heading {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

	.acknowledgement-link {
		aspect-ratio: unset;
	}

	.acknowledgement-slide.swiper-slide-active {
		width: 700px !important; 
		z-index: 2;
	}
}

/* @media (min-width: 768px) {
    .acknowledgement-swiper {
        margin-left: -50px !important;
    }
}

@media (min-width: 1440px) {
    .acknowledgement-swiper {
        margin-left: -200px !important;
    }
}

@media (min-width: 2000px) {
    .acknowledgement-swiper {
        margin-left: -300px !important;
    }
} */

/* Stragtegic Priorities */
.content-row-wrapper {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.content-row:nth-of-type(2n+1) .content-col-text {
	background-color: var(--light-green);
	color: white;
}

.content-row:nth-of-type(2n) .content-col-text {
	background-color: var(--light-grey);
}

.content-row .btn {
	margin-top: 1rem
}

.content-row img {
	border-radius: 20px;
}

.content-img-col img {
	width: 100%;
}

.content-row .editor > *:first-child {
	margin-top: 0;
}

.contact-template .contact-line {
	margin-bottom: .5rem;
}

@media (min-width: 48em) {
	.content-row:nth-of-type(2n) .content-img-col {
		order: -1;
	}
}

@media (max-width: 991px) {
	.banner_info {
		position: static;
		transform: none;
		color: var(--dark-font-color);
		padding: 1rem 1.5rem;
	}

	.home-quicklinks {
		margin-top: 0;
	}

	.news-title {
		font-size: 1.2rem;
	}

	.news-item a,
	.news-item.has-image a::before,
	.quicklink-card,
	.event-item,
	.event-date-wrapper,
	.cta-content,
	.home-cta img {
		border-radius: 12px;
	}

	.news-item .publish-date {
		font-size: .9rem;
	}

	.news-item i {
		width: 2.5rem;
		height: 2.5rem;
	}

	.home-cta .cta-content {
		text-align: center;
	}

	.home-cta .btn {
		margin: auto;
	}

	.section-heading .flex-row {
		justify-content: space-between;
	}
}


/* School Finder */
.map-wrapper {
    display:flex;
    flex-direction:row;
    position: relative;
    margin-bottom: 2rem;
}

#sys-sf-profile:empty {
    display: none;
}

#sys-sf-profile {
    width: 100%;
    max-width: unset;
    position: absolute;
	bottom: 0;
    background: white;
    background-color: var(--light-grey);
}

#sys-sf-map {
    width:100%;
    height:580px;
}

.tagify {
    width: 100%;
    margin-bottom: .5rem;
}

.website-link {
    font-weight: var(--font-semibold);
    line-height: 1.6;
    display: block;
}


@media (min-width: 48em) {
    #sys-sf-profile {
		width: 25%;
		max-width: 500px;
        height: auto;
		right: 0;
		bottom: unset;
    }

	#sys-sf-map, #sys-sf-profile {
		height: 650px;
	}
}

/* School Directory */
.letter-list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1.5rem;
    row-gap: .75rem;
}

.letter-wrapper h2 {
    margin: 0;
	font-size: 1.8em;
}

.letter-list-item {
    color: #C4C1C7;
    font-size: 1.2rem;
    font-weight: var(--font-semibold);
}

.letter-list-item.active {
    color: var(--primary);
    cursor: pointer;
}

.title-name {
	margin-top: 0;
	margin-bottom: 0;
}

.info-row{
    display: flex;
    gap: 0.5rem;
	margin-bottom: .5rem;
    align-items: self-start;
}

.align-center {
    align-items: center;
}

.letter-wrapper {
	margin-top: 2rem;
}

.title-grade {
    font-size: 1rem;
    font-family: var(--body-font);
}

#school-directory .js-collapsible-box-title {
    background: none!important;
    border-bottom: 1.5px solid var(--primary);
    padding: 1rem 0;
    gap: .25rem;
    margin: 0;
    align-items: self-end;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

#school-directory .js-collapsible-box-title.active {
    border-bottom: none;
}

#school-directory .js-collapsible-box-description {
    display: none;
    margin: 0;
    padding-bottom: 1rem;
}

#school-directory .js-collapsible-box-description.active {
    border-bottom: 1.5px solid var(--primary);
}

.info-row i {
	margin-top: 2px;
}

.info-row a {
	text-decoration: none;
	font-weight: var(--font-medium);
}

.word-break {
    word-break: break-word;
}

@media (min-width:75em) {
	#school-directory .school-info {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 1rem;
	}

    #school-directory .js-collapsible-box-title {
        align-items: flex-start;
    }

}