*,
*: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: #0957c3;
	--secondary: #002244;
	--accent-1: #a2aaad;
    --accent-2: #307fe2;
	--dark-font-color: #1E1E1E;
	--light-font-color: #fff;
	--dark-grey: #757575;
	--light-grey: #EFEFEF;

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

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

svg path {
    fill: var(--secondary);
}

svg rect {
    fill: var(--accent-2);
}

.home-news-shape-1 path {
    fill: var(--secondary);
}

.home-news-shape-2 path {
    fill: var(--accent-1);
}

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

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

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

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

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

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

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

/* 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.375rem;
		margin: 1rem 0;
	}

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

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

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

	.editor details summary h3 {
		margin: 0;
	}

	.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;
    clear: both;
}

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

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

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-medium);
	width: 100%;
    border-radius: 10px;
}

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

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

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

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

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

    .content-container--narrow {
        padding: 0 1.5rem;
    }
}

@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: 62em) {
	.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: .5rem 1.25rem;
    border-radius: 50px;
}

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

.btn-accent-2 {
    background-color: var(--accent-2);
    color: white;
}

.btn-red {
    background-color: #EC4029;
    color: white!important;
}

.btn-link {
    color: var(--primary);
    font-weight: var(--font-medium);
    text-transform: uppercase;
    letter-spacing: 0.36px;
}

.btn-link-white {
    color: white;
}

/* 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 #fff 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;
	transition: 0.5s;
	padding: .5rem;
    border-radius: 10px;
}

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

input[type="submit"] {
	font-weight: var(--font-medium);
	background: var(--secondary);
	color: white;
	border: 0;
	cursor: pointer;
    border-radius: 50px;
	padding: .5rem 1.25rem;
	-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[type="reset"] {
	font-weight: var(--font-medium);
	background: none;
	color: var(--secondary);
    border: 0;
	cursor: pointer;
	padding: .5rem 1.25rem;
	-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;
}

.contact-form-button {
    margin-top: 1rem;
}

.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 {
    transition: 0.5s;
    padding: 0.75rem 1rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    border-radius: 50px;
}

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

#schools-dropdown {
	background-color: var(--light-grey);
    border: none;
    color: var(--dark-grey);
    border-radius: 50px;
}

#schools-dropdown option {
    color: #000000;
}

.schools-select button {
	background-color: var(--accent-2);
    color: var(--dark-font-color);
	border: none;
	-webkit-appearance: none;
    appearance: none;
	cursor: pointer;
    padding: .75rem 1rem;
}

.schools-select button i {
	color: var(--secondary-text);
}

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

#popup-container button i {
    border-radius: 5px;
}

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

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

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

.banner-alert-wrapper {
    z-index: 101;
}

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

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

.table th a {
	color: white;
}

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

.table.bell-schedule {
	box-shadow: none;
}

.table table {
	border-radius: 5px;
	font-weight: normal;
	border: none;
	border-collapse: collapse;
	width: 100%;
	max-width: 100%;
	white-space: normal;
	background-color: white;
}

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

.table table td {
	border-right: 1px solid #F7F6F4;
}

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

.table table thead th {
	color: #ffffff;
	background: var(--primary);
    text-align: left;
}

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

.table table thead th:nth-child(odd) {
	color: white;
	background: var(--secondary);
}

.table table thead th:nth-child(even), .editor-table th:nth-child(even) {
    color: #ffffff;
    background: var(--secondary);
}

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


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

.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-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    font-weight: var(--font-semibold);
}

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

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

.title-bg .title-pattern {
    position: absolute;
    bottom: -2rem;
    right: 1rem;
}

.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;
    text-align: center;
}

.page-title-text h1 {
    font-size: 2rem;
}

.page-title-text p {
    font-style: italic;
    margin-top: .5rem;
}

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

@media (min-width: 75em) {
	.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: 2rem 0 0 3rem;
	}

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

@media (min-width: 75em) {
    .page-content {
		padding: 3rem 0 0 2rem;
	}
}

@media (min-width: 99em) {
    .page-content {
		padding: 3rem 0 0 4rem;
	}
}

/* Side Navigation */
.sidebar-wrapper {
	color: var(--dark-font-color);
    background-color: var(--light-grey);
	padding: 0.5rem 1rem;
	margin: 0 auto;
    position: relative;
    border-radius: 10px;
}

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

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

.cookie a {
	display: flex;
	align-items: center;
	color: var(--primary);
    gap: .5rem;
    text-transform: uppercase;
    font-weight: var(--font-medium);
    letter-spacing: 0.36px;
}

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

.secondary-nav-item.active a {
    color: var(--secondary);
}

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

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

.current-page {
	display: flex;
	align-items: center;
    justify-content: space-between;
	gap: 0.25rem;
    font-weight: var(--font-medium);
}

.sidebar-wrapper svg {
    display: none;
    position: relative;
}

.sidebar-wrapper .dot {
    display: none;
}

.search-template .results-row #reset-filters {
    color: var(--secondary);
}

.sort-result {
    border-radius: 50px;
}

@media (min-width: 75em) {
	.sidebar-wrapper {
		padding: 0 1rem 2rem 0;
		margin: unset;
        margin-top: -1rem;
		height: fit-content;
        position: sticky;
        top: 5rem;
        background-color: transparent;
	}

    /* .sidebar-wrapper svg {
        display: block;
        position: absolute;
        z-index: -1;
        left: 0;
        top: -1rem;
        width: 24vw;
        height: auto;
    } */

    .search-template .sidebar-wrapper {
        padding: 0 2rem 2rem;
        margin-top: 1rem;
        background-color: var(--light-grey);
        border-radius: 0 0 20px 0;
    }

    .sidebar-wrapper {
        display: grid;
    }
    
    .sidebar-wrapper svg,
    .sidebar {
        grid-area: 1 / 1;
    }
    
    .sidebar-wrapper svg {
        width: 100%;
        height: 110%;
        overflow: visible;
        display: block;
    }

    .sidebar-wrapper .dot {
        display: block;
        position: absolute;
        left: 14.96%;
        top: 100%;              
        width: 60px; height: 60px;
        border-radius: 50%;
        background: var(--accent-2);
        opacity: 0.8;
        transform: translate(-50%, -50%);
    }
    
    .sidebar {
        z-index: 1;
        padding-top: 2.5rem;
    }

    .sidebar-wrapper a {
        color: white;
    }

    .cookie a {
        color: var(--light-grey);
    }

    .secondary-nav-item.active a {
        color: var(--accent-2);
    }

	.nav-secondary {
		display: block !important;
		margin-top: 2rem;
        margin-left: 15%;
	}

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

	.current-page {
		display: none;
	}
}

@media (min-width: 75em) and (max-width: 1400px) {
    .sidebar-wrapper svg {
        width: 108%;
        height: 114%;
    }
}

@media (min-width: 99em) {
    .sidebar-wrapper svg {
        width: 115%;
        height: 118%;
    }
}

@media (min-width: 1400px) {
    .sidebar-wrapper .dot {
        top: 97%;              
    }
}

@media (min-width: 1580px) {
    .sidebar-wrapper .dot {
        top: 104%;              
    }
}

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

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

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

.recent-item h4 {
    font-size: 1rem;
}

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

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

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

.article-template .publish-date {
    color: var(--medium-grey);
    font-size: .9rem;
    margin-bottom: 1rem;
}

.article-template .page-content {
    padding-left: 1rem;
    padding-right: 1rem;
}

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

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

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

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

.page-content .landing-link {
    padding: 3rem 2rem;
    position: relative;
    text-decoration: none;
    height: 100%;
	background-color: var(--light-grey);
    justify-content: flex-start;
    color: var(--dark-font-color);
    border-radius: 20px;
    transition: all 0.2s ease;
}

.landing-link .landing-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.landing-link .landing-title h3 {
    display: block;
    position: relative;
    padding-left: 1.5rem;
    margin: 0;
    transition: all 0.2s ease;
}

.landing-link .landing-title h3::before {
    content: '';
    width: 2px;
    background-color: var(--secondary);
    height: calc(100% + 3rem);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.landing-link .landing-title i {
  font-size: 2rem;
  color: var(--primary);
  transition: all 0.2s ease;
}

.landing-link .landing-title i.arrow-icon {
  display: none;
  font-size: 1.2rem;
}

/* Hover state */
.landing-link:hover {
  background: var(--accent-2);
  color: var(--dark-font-color);
  filter: none;
  border-radius: 100px;
}

.landing-link:hover .landing-title i {
  background: transparent;
  color: var(--dark-font-color);
}

.landing-link:hover .landing-title i.arrow-icon {
  display: inline;
}

.landing-link:hover i:first-of-type {
  display: none;
}

.landing-link:hover .landing-title {
    justify-content: space-between;
}

.landing-link:hover .landing-title h3::before {
    content: none;
}

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

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

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

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

.usefullinks-modal .useful-links-wrapper,
.quicklinks-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,
.quicklinks-modal .service.service-link {
	width: calc((100% - 1rem) / 2);
    text-align: center;
    margin-top: 0;
}

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

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

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

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

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

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


/* Video Gallery */
.video-row {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 1rem;
}

.video-iframe, .video-content {
	width: 100%;
}

@media (min-width: 62em) {
	.video-row {
		margin-bottom: 1.5rem;
		flex-direction: row;
		column-gap: 2rem;
	}

	.video-iframe {
		width: 30%;
	}

	.video-content {
		flex-grow: 1;
	}
}

/* Image Carousel */
.image-swiper {
    background: var(--dark-grey);
}
.image-slide {
    background-color: var(--dark-grey);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
}
.image-carousel-item img {
    width: 100%;
    object-fit: contain;
	max-height: 800px;
    margin: auto;
    display: block;
}

.image-carousel .image-caption {
	color: white;
	padding: 1rem 1rem 3rem;
	text-align: center;
}

.swiper-horizontal >.swiper-pagination-bullets.image-pagination {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    padding: .5rem;
}

.swiper-pagination-bullet {
    opacity: 0.7;
    background-color: white;
    width: .75rem;
    height: .75rem;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* DCT - Photo Gallery */
.gallery-item {
	margin-bottom: 1rem;
}
.gallery-item img {
    min-height: unset;
	aspect-ratio: 4/3;
	width: 100%;
}

.pswp__custom-caption {
    text-align: center;
    font-size: 16px;
    color: #fff;
    width: fit-content;
    max-width: 800px;
    padding: .5rem 1rem;
    position: absolute;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
}

@media (min-width: 62em) {
    .img-box-wrapper img {
        border-radius: 40px 40px 0 0;
    }
	.formatted-content .img-box-wrapper {
        border-radius: 40px;
    }
}

/* Content Tabs */
/* Tab Header */
.ui-widget-header {
    border: none;
    background: transparent;
}

.ui-tabs .ui-tabs-nav {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    row-gap: .5rem;
    border-bottom: 2px solid var(--secondary);
    border-radius: 0;
    list-style: none;
}

.ui-tabs .ui-tabs-nav li {
    font-weight: 700;
    border: none;
    background: var(--light-grey);
    transition: all .2s ease-in-out;
    margin: 0 .5rem 0 0;
    border-radius: 5px 5px 0 0;
    padding: .5rem .75rem;
}

.ui-tabs .ui-tabs-nav li:hover {
    filter: brightness(1.02);
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
    margin-bottom: 0;
    padding-bottom: 0;
    background: var(--secondary);
    color: var(--light-font-color);
    border: none;
}

/* Tab Content */
.ui-tabs .ui-tabs-panel {
    padding: 1rem 0.25rem;
    margin-top: 0;
}

.ui-widget-content a {
    color: var(--link-color);
}

.ui-widget-content .btn {
    margin-top: 1rem;
}

.ui-widget-content .btn-primary {
    color: white;
}

.ui-widget-content .btn-link {
    color: var(--primary);
}

.tab-item-content {
    padding: 0;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    white-space: pre-wrap;
    text-decoration: none;
}

/* Header */
header {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    position: sticky;
    z-index: 100;
    top: 0;
    color: white;
}

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

.logo {
    gap: 1rem;
}

.logo h3 {
    max-width: 15rem;
    font-size: 1.1rem;
    font-weight: var(--font-semibold);
    color: var(--light-grey);
}

.logo img {
    width: 60px;
    display: block;
    object-fit: contain;
}

.menu-trigger {
    position: relative;
    z-index: 499;
    cursor: pointer;
    font-size: 1.5rem;
}

.menu-trigger.active {
    color: var(--primary);
}

.nav-link {
    cursor: pointer;
}

.nav-link a {
    color: var(--light-font-color);
    text-transform: uppercase;
}

.sub-li a {
    color: var(--dark-font-color);
    font-weight: var(--font-medium);

}
.nav-link .add-icon {
    color: var(--accent-2);
}

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

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

}

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

.collapsible-menu .app-wrapper {
    height: var(--nav-btn-width-sm);
    align-items: center;
    gap: 1rem;
}

.collapsible-menu .app-wrapper i {
    font-size: 2rem;
}

.collapsible-menu .search-wrapper {
    margin-top: 2rem;
    margin-bottom: 2rem;
    margin-right: 1.5rem;
}

.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: none;
	padding: 0.95rem 1.25rem;
	background-color: var(--light-grey);
}

.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(--dark-grey);
	font-size: 2rem;
}

.nav-apps {
    position: relative;
}

.nav-apps svg {
    position: absolute;
    top: -3.25rem;
    right: -1rem;
    z-index: -1;
    width: 80px;
}

.nav-primary-footer {
    padding: 1rem;
    margin-bottom: 1rem;
    position: relative;
    border-radius: 20px;
}

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

.app-contact {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.collapsible-menu .nav-primary-footer a {
    color: var(--secondary-text);
}

.collapsible-menu .contact-type {
    font-weight: var(--font-bold);
}

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

.collapsible-menu .nav-apps {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    color: var(--dark-font-color);
    padding: 1rem;
    width: 100%;
}

.collapsible-menu .nav-app {
    padding: 0;
    padding-right: 1rem;
    border-bottom: none;
    border-right: 1px solid rgba(37, 48, 84, 0.2);
    width: calc((100% - 3rem) / 4);
    text-align: center;
}

.collapsible-menu .nav-app:last-child {
    border-right: none;
    padding-right: 0;
}

.links-swiper {
	margin: 0 0 2rem;
}

.links-title {
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: .75rem;
    margin-right: 1.5rem;
}

.links-title h3 {
	font-size: 1.1rem;
    font-weight: var(--font-bold);
    color: var(--primary);
}

.all-links {
    color: var(--primary);
}

.links-nav-buttons {
	display: flex;
}

.links-button-next,
.links-button-prev {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: static;
	color: var(--primary);
	margin-top: 0;
	cursor: pointer;
}

.swiper-button-disabled {
	opacity: .5;
}

.links-button-next i,
.links-button-prev i {
	font-size: 2rem;
}

.links-nav i {
    font-size: 1rem;
}

.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: 2.5rem;
    object-fit: contain;
}

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

.nav-primary-footer-wrapper {
    margin-right: 1.5rem;
}

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

@media (max-width: 1199px) {
    .logo img {
        width: 40px;
        margin: .5rem 0;
    }
	/* Mobile Main Nav */
	.menu-icon-wrapper {
		position: relative;
		z-index: 501;
	}

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

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

	.mobile-main-nav .main-nav-ul {
        margin: 2rem 2rem 2rem .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(--accent-1);
	}
}

@media (max-width: 767px) {
    .collapsible-menu .app-wrapper i {
        font-size: 1.5rem;
    }
}

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

    header.content-container--narrow {
        padding: .5rem 1rem;
    }

    .nav-apps svg {
        top: -3.5rem;
        right: -1rem;
        width: 80px;
    }
}
@media all and (min-width: 75em) {
    .collapsible-menu .search-wrapper {
        margin-top: 3rem;
    }

    .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;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        border-radius: 0 0 0 20px;
	}

	.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%;
        right: 0;
        z-index: 80;
        background: var(--light-grey);
        padding: 1rem;
        min-width: 300px;
        opacity: 0;
        border-radius: 20px;
    }

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

    .main-dropdown-menu.multi-col .sub-li {
        margin-bottom: .5rem;
    }

    .main-dropdown:last-of-type .main-dropdown-menu {
        left: unset;
        right: 0;
    }

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

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

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

    .nav-wrapper {
        display: flex;
        gap: 5rem;
    }

    .menu-trigger {
        padding-right: 2.25rem;
    }

    .nav-apps svg {
        top: -3rem;
        width: 100px;
    }
}

@media (min-width: 99em) {
    .nav-apps svg {
        width: 120px;
        top: -2.5rem;
    }
}

/* Footer */
footer {
    padding-top: 2rem;
    padding-bottom: 0;
}

footer a {
    color: var(--secondary);
}

.footer-logo {
    display: block;
}

.footer-logo img {
    width: 120px;
    margin: 0 auto;
    display: block;
}

.footer-col-2, .footer-col-3 {
    text-align: center;
}

address {
    font-style: normal;
}

footer .contact-wrapper {
    gap: 1rem;
}

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

footer .social-wrapper {
    justify-content: center;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.social-link {
    color: var(--secondary);
    border: 1px solid var(--secondary);
    border-radius: 50%;
    aspect-ratio: 1.1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    transition: all .3s ease-in-out;
}

.social-link:hover,
.social-link:focus {
    background-color: var(--secondary);
    color: white;
}

.footer-nav {
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.footer-nav a {
    color: var(--dark-font-color);
}

.footer-col-4 img {
    display: none;
}

footer .contact-row {
    margin-bottom: .5rem;
}

.copyright {
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: .5rem;
    color: var(--light-grey);
    background-color: var(--primary);
}

.footer-bottom-links a {
    color: var(--light-grey);
}

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

@media (min-width: 62em) {
    .copyright {
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
    }

    .schools-select {
        width: 60%;
        margin: auto;
    }

    .footer-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-nav li {
        width: calc((100% - 2rem) / 3);
    }
}

@media (min-width: 75em) {
    footer h2 {
        font-size: 1.375rem;
    }

    footer h3 {
        font-size: 1.2rem;
    }
    footer .content-container--narrow {
        padding-right: 0;
    }

    footer .content-container--narrow .row {
        margin-right: 0;
    }

    .footer-col-4 {
        padding-right: 0;
    }

    .footer-col-4 img {
        display: block;
        width: 100%;
        height: 100%;
        max-height: 300px;
        object-fit: contain;
        object-position: right bottom;
        opacity: 0.5;
    }
    .schools-select {
        margin: 0;
    }

    .footer-col-2, .footer-col-3 {
        text-align: left;
        margin-bottom: 2rem;
    }

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

    .footer-nav {
        justify-content: flex-start;
    }

    .social-link i {
        font-size: 1.1rem;
    }
}

 
/* Home Banner */
.banner {
    margin-bottom: 0;
}

.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-slide img {
    display: block;
    aspect-ratio: 1/1;
    width: 100%;
}

.banner-media::after {
    content: "";
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.80) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.banner-content {
    padding: 1rem 1.5rem;
    text-align: center;
}

.banner-content .btn {
    margin: auto;
}

.banner-content p {
    line-height: 1.8;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 1rem;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    content: none;
}

.banner-button-prev i,
.banner-button-next i{
    color: var(--primary);
}

.banner-button-next,
.banner-button-prev {
    position: static;
    transform: none;
    margin: 0;
}

.banner-link {
    display: flex;
    column-gap: 2rem;
    row-gap: 1rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* Home Quicklinks */
.quicklink-item {
    color: var(--primary);
    font-weight: var(--font-medium);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
}

.quicklink-wrapper {
    flex-basis: 100%;
    max-width: 100%;
    text-align: center;
}

.quicklinks {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 2rem;
    padding-bottom: 2rem;
    row-gap: 1rem;
}

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

.home-cta .content-container {
    gap: 2rem;
}

.home-cta-content {
    color: white;
}

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

@media (min-width: 48em) {
    .banner-media, .banner-slide img {
        aspect-ratio: 16/9;
    }

    .quicklink-wrapper {
        flex-basis: calc(100% / 2);
        max-width: calc(100% / 2);
        position: relative;
    }

    .quicklink-wrapper::before {
        content: '';
        background-color: var(--secondary);
        width: 1px;
        height: 100%;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .quicklink-wrapper:first-of-type::before {
        content: none;
    }
}

@media (min-width: 75em) {
    .banner {
        flex-wrap: nowrap;
    }
    .main-banner {
        width: 100%;
    }
    .banner-content {
        width: 70%;
        padding: 5% 5%;
        color: white;
        position: absolute;
        bottom: 0;
        left: 0;
        text-align: left;
    }

    .banner-content h2 {
        margin-bottom: .5rem;
    }

    .banner-content p {
        margin-bottom: 1rem;
    }

    .banner-button-prev,
    .banner-button-next {
        bottom: 5%;
    }


    .banner-media img {
        aspect-ratio: 1920/665;
    }

    .banner-media {
		position: relative;
		width: 100%;
		overflow: hidden;
		aspect-ratio: 1920 / 665; 
		padding: 0;
		height: auto;
	}
	
	.banner-video iframe {
		width: 100vw;
		height: 56.25vw;
		min-width: 177.78vh;
		min-height: 100vh;
	}

    .banner-link {
        flex-direction: row;
        justify-content: flex-start;
    }

    .banner-content .btn {
        margin: 0;
    }

    .banner-button-prev i,
    .banner-button-next i{
        color: white;
    }

    .quicklink-wrapper {
        flex-basis: calc(100% / 8);
        max-width: calc(100% / 8);
    }

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

/* Home - News */
.home-news {
    padding-top: 2rem;
    padding-bottom: 2rem;
    position: relative;
    z-index: 2;
}

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

.news-link {
    aspect-ratio: 280/233;
    border-radius: 14px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: var(--primary);
    position: relative;
}

.news-link.no-cover-img {
    background-size: 30%;
    background-position: top .5rem right 1rem;
}

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

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

.news-content {
    background-color: var(--light-grey);
    color: var(--dark-font-color)!important;
    padding: 1.5rem;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    opacity: 0;
    transition: all .3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-content .news-title {
    color: var(--dark-font-color);
    line-height: 1.3;
    margin-top: .5rem;
}

.news-content .publish-date {
    color: var(--secondary);
}

.news-link:hover {
    filter: none;
}

.news-link:hover .news-content {
    opacity: 1;
}

.news-link:hover .news-heading {
    display: none;
}

.news-archive .news-link:hover .news-content {
    background-color: var(--light-grey);
}

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

.news-heading .publish-date {
    color: white;
    font-size: 1rem;
    font-weight: var(--font-medium);
}

.news-heading h3 {
    font-weight: var(--font-medium);
    color: white;
    line-height: 1.3;
    margin-top: .25rem;
}

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

.home-news .btn-link.mobile-only,
.home-events .btn-link.mobile-only {
    margin-top: 1.5rem;
    text-align: right;
    display: block;
    width: fit-content;
    margin-left: auto;
    color: white;
}

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

    .news-link {
        aspect-ratio: 385 / 459;
        border-radius: 20px;
    }

    .news-content {
        border-radius: 20px;
    }

    .home-news .btn-link.mobile-only,
    .home-events .btn-link.mobile-only  {
        display: none;
    }

    .home-news .btn-link.desktop-only,
    .home-events .btn-link.desktop-only {
        display: flex;
        align-items: baseline;
    }

    svg.home-news-shape-1 {
        position: absolute;
        top: -8rem;
        width: 65px;
    }

    svg.home-news-shape-2 {
        position: absolute;
        right: 0;
        bottom: 0;
        bottom: -5rem;
        width: 60px;
    }
}
@media (min-width: 75em) {
    svg.home-news-shape-1 {
        top: -7rem;
        width: 80px;
    }

    svg.home-news-shape-2 {
        bottom: -3rem;
        width: 80px;
    }
}

@media (min-width: 99em) {
    svg.home-news-shape-1 {
        top: -5rem;
        width: 100px;
    }

    svg.home-news-shape-2 {
        bottom: -4rem;
        width: 100px;
    }
}

@media (min-width: 2200px) {
    svg.home-news-shape-1 {
        top: -3rem;
        width: 120px;
    }

    svg.home-news-shape-2 {
        bottom: -2rem;
        width: 120px;
    }
}

/* Home - Events */
.home-events {
    padding-top: 18rem;
    padding-bottom: 3rem;
    margin-top: -17rem;
    position: relative;
}

.home-events svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.home-events h2 {
    color: white;
}

.home-events .content-container {
    position: relative;
    z-index: 1;
}

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

.event-date-wrapper {
    color: var(--secondary);
    text-align: center;
    font-size: 1.2rem;
    width: 6rem;
    height: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.format-date-box-2 {
    line-height: 1.2;
    border-right: 2px solid var(--secondary);
}

.event-date-wrapper .event-month {
    text-transform: uppercase;
    font-weight: var(--font-regular);
    letter-spacing: 1px;
}

.event-date-wrapper .event-day {
    font-size: 1.8rem;
    font-weight: var(--font-bold);
    line-height: 1;
}

.event-day {
    background-color: transparent;
}

.event-info {
    padding: 0 1rem;
    flex: 1;
}

.event-name {
    font-size: 1.1rem;
    line-height: 1.2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

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

.home-events-wrapper p {
    color: white;
}

@media (min-width: 62em) {
    .event-date-wrapper .event-day {
        font-size: 2.2rem;
    }

    .event-date-wrapper .event-month {
        font-size: 1.1rem;
    }

    .home-events {
        padding-top: 8rem;
        padding-bottom: 3rem;
        margin-top: -8rem;
        z-index: 1;
    }
}

@media (min-width: 75em) {
    .home-events {
        padding-top: 11%;
        margin-top: -10%;
    }
}

/* Icon Link Page */
.link-list img {
    max-width: 90px;
    margin: 0 auto .5rem;
}

.link-list {
    row-gap: 2rem;
}

.link-list a {
    text-decoration: none;
}

/* Animation */
.fade {
	-webkit-animation-name: fade;
	-webkit-animation-duration: .5s;
	animation-name: fade;
	animation-duration: .5s;
}

/* Content Boxes */
.content-boxes {
  margin-bottom: 2rem;
}

.content-boxes .row {
    row-gap: 1rem;
}

.content-box {
  background-color: var(--light-grey);
  transition: all .1s ease-in-out;
  height: 100%;
  border-radius: 20px;
  display: flex;
flex-direction: column;
}


.box-img {
  width: 100%;
  aspect-ratio: 438 / 240;
  border-radius: 20px 20px 0 0;
}

.box-img img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 20px 20px 0 0;
}

.content-box h3 {
  margin: 0;
}

.content-box p {
  margin-top: .5rem;
  margin-bottom: 0;
}

.content-box .btn {
    margin-top: 1rem;
    text-decoration: none;
    color: var(--dark-font-color);
    background-color: var(--accent-2);
}

.content-box-text {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

@media (min-width: 75em) {
    .content-box-text {
        padding: 1rem 1.5rem 1.5rem;
    }
}

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

#sys-sf-profile {
    max-width:25%;
    width:fit-content;
    position: absolute;
    right: 0;
    background: white;
    /* Kept in sync with #sys-sf-map.height */
    height: 580px;
    background-color: var(--light-grey);
}

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

.page-content .website-link {
    font-weight: var(--font-semibold);
    line-height: 1.6;
    display: block;
    text-decoration: none;
    color: var(--primary);
}

.page-content .info-window h3 {
    color: var(--dark-font-color);
}

.page-content .info-window {
    align-items: baseline;
    gap: 1rem;
}

.page-content .info-window i {
    font-size: 1.5rem;
    color: var(--purple);
}

.finder-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tagify {
    width: 100%;
    border: none;
    background: rgba(244, 244, 244, 0.80);
    border-radius: 0;
    margin-bottom: .5rem;
}
.tagify__input {
    min-height: unset;
    padding: 8px 12px 5px;
    margin: 0;
    color: #727272;
}

@media (max-width: 48em) {
    #sys-sf-profile {
        width: 100%;
        max-width: unset;
        bottom: 0;
        height: auto;
    }
}

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

#school-directory .letter-wrapper h2 {
    margin: 0 0 .5rem;
    color: var(--dark-grey);
    font-family: var(--body-font);
}

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

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

#school-directory .title-name {
	margin-top: 0;
	margin-bottom: 0.5rem;
    color: var(--black);
    font-weight: var(--font-bold);
}

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

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

.letter-wrapper {
	margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(223, 223, 223, 0.80);
}

.letter-wrapper:first-of-type {
    border-top: none;
    padding-top: 0;
}

.title-grade {
    font-size: 1rem;
    font-family: var(--body-font);
    font-weight: var(--font-medium);
    margin-bottom: .5rem;
}

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

.school-item {
    margin-bottom: 2rem;
}

#school-directory a {
    text-decoration: none;
    font-weight: var(--font-semibold);
}

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

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

}


/* Transportation Page */
.flex-row-between {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: nowrap;
	align-items: center;
}

#transportation-column-container {
	align-items: flex-start;
}

.bus-container-route {
	height:105px;
	margin:1vh;
	padding:1vw;
	background: #F5F5F5;
}
h5.bus-route-name {
	font-size: 1.1rem;
	font-weight: 500;
}
.bus-on-time {
	border-left: 10px solid #7BBE2E;
}

.bus-on-time h5 {
	padding-top: 6px;
}
.status-on-time {
	color:#7BBE2E!important;
	font-weight:600;
	font-size: 1.2rem;
	padding-top: 6px;
}
.bus-cancelled {
	border-left: 10px solid #E05B2A;
}
.status-cancelled {
	color: #E05B2A!important;
	font-weight:600;
	font-size: 1.2rem;
}
.bus-delayed {
	border-left: 10px solid #F5B61F;
}
.status-delayed {
	color: #F5B61F!important;
	font-weight:600;
	font-size: 1.2rem;
}
.bus-grid-row {
	display: grid;
	grid-template-columns: 20% 20% 5% 20% 20% 15% 
}

.last-updated {
	font-size: 1rem;
}
.tooltip {
	display: flex;
	align-items: center;
}

.tooltip i {
	margin-right: 10px;
}

#transportation-container, 
#transportation-container * {
    box-sizing: border-box;
}

#transportation-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

#transportation-container h5 {
    padding-top: 0;
}

#transportation-container .bus-area {
    width: 100%;
}

#transportation-container .bus-container-route {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 1rem;
}

#transportation-container .bus-status {
    margin-top: .5rem;
    margin-bottom: 0;
}

.transportation-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

#search-buses {
    width: 100%;
    padding: .75rem 1rem;
}

#select-area {
    border: solid 1px #e4e4e4;
}

#search-buses::placeholder {
  color: black;
}


.checkbox-cancelled {
    color: #E05B2A;
    font-weight: 600;
}

.checkbox-cancelled label {
    margin-left: 6px;
}

.bus-area h3 {
    margin-bottom: .5rem;
}

.transportation-filters > div {
    margin-bottom: 0;
}

.fa-bus-simple {
  position: relative;
}


.bus-icon-cancelled::after {
  content: '';
  position: absolute;
  top: -4px;
  right: -6px;
  width: 14px;
  height: 14px;
  background: #E05B2A;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
  text-align: center;
  border-radius: 50%;
}

.bus-icon-delayed::after {
  content: '';
  position: absolute;
  top: -4px;
  right: -6px;
  width: 14px;
  height: 14px;
  background: #F5B61F;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
  text-align: center;
  border-radius: 50%;
}

@media (max-width: 62em) {
	.flex-row-between {
		flex-wrap: wrap;
	}
	.bus-container-route {
		height:auto;
		width: 100%;
	}
	.bus-container-route h5 p {
		font-size: 0.9rem !important;
	}
	.bus-route-name {
		font-size:1rem;
	}
	.last-updated {
		font-size:1rem;
	}
	.bus-pad-side {
		padding-left:10px;
		padding-right:10px;
	}
	#transportation-column-container {
		display:flex;
		flex-direction:column;
	}
}

@media (min-width: 62em) {
     #transportation-container .bus-container-route {
        width: calc(50% - .5rem);
    }

    .transportation-filters > div {
        width: calc(50% - .5rem);
    }
}

/* Career Page */
.job-post {
    background: var(--light-grey);
    display: block;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 20px;
}

#job-list .filter-col {
    width: 100%;
}

#job-list .filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 1rem;
    row-gap: 1rem;
    margin-bottom: 1.5rem;
}

#job-list #reset {
    display: block;
    width: fit-content;
    margin: 1rem 0 0;
    border: none;
    appearance: none;
    background: none;
    color: var(--secondary);
    font-weight: var(--font-medium);
    cursor: pointer;
}

.page-content .job-post {
    text-decoration: none;
}

#job-list .select-wrapper {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

#search-jobs {
    width: 100%;
    border: 1px solid #e4e4e4;
    transition: 0.5s;
    padding: 0.75rem 1rem;
    border-radius:50px;
}

#job-list h4 {
    margin-top: 0;
    font-size: 1.2rem;
}

.job-info .flex-row {
    align-items: baseline;
}

.job-filter {
    border: 1px solid #e4e4e4;
}

@media(min-width: 62em) {
    .filter-col {
        display: flex;
        align-items: center;
        gap: 1rem;
        width: 100%;
        justify-content: space-between;
    }

    #job-list .select-wrapper {
        flex-direction: row;
        flex-grow: 1;
    }

    #job-list #reset {
        margin: 0;
    }

    .job-post {
        padding: 1rem 1.5rem;
    }
}

/* Single Job Page */
.job-info {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin: 1rem 0 2rem;
    font-weight: var(--font-semibold);
    font-family: var(--heading-font);
    color: var(--dark-grey);
}

.job-info > div {
    width: 100%;
}

.job-posts .job-info {
    margin: 0;
}

.job-location-row {
    align-items: baseline;
}

@media (max-width: 991px) {
    .job-wrapper {
        order:  -1;
        margin-top: 2rem;
    }
}

@media (min-width: 62em) {
    .job-info > div {
        width: calc((100% - 2rem) / 3);
    }

    /* .job-info .job-date-row {
        justify-content: flex-end;
    } */
}

/* Staff Directory */
.staff-directory .input-field {
    margin-bottom: 1rem;
}
.staff-item img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 20px;
}

.staff-contact a {
    color: var(--dark-font-color);
    text-decoration: none;
}

.staff-contact a:hover,
.staff-contact a:focus {
    text-decoration: underline;
    color: var(--primary);
}

.staff-contact {
    margin-bottom: .5rem;
}

.search-row {
    position: relative;
}

.search-row label {
    display: none;
}

.search-row i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: .5rem;
}

.search-bar-wrapper {
    margin-top: 4rem;
}

.input-field input[type="text"].search-staff {
    width: 100%;
    transition: 0.5s;
    padding-left: 2.5rem;
}


.contact-form-element h1 {
    margin-bottom: .5rem;
}
@media (min-width: 99em) {
    .staff-item {
        flex-basis: calc(100%/6);
        max-width: calc(100%/6);
    }
}

#popup-container .translate-button {
    position: absolute;
    z-index: 1000;
}

#popup-container {
    z-index: 499;
}