*,
*: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: #0167b1;
	--secondary: ;
	--secondary-text: #ffffff;
	--accent-1: #D5135A;
	--accent-2: #94C954;
	--accent-3: #2AA3DC;
	--dark-font-color: #2A2A2A;
	--light-font-color: #fff;
	--dark-grey: #3F3F3F;
	--medium-grey: #707070;
	--light-grey: #EFEFEF;

	--body-font: 'Niramit', sans-serif;
	--heading-font: 'Niramit', sans-serif;

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

	--main-top-xs: 75.75px;
	--main-top-lg: 4.5rem;
}

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

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

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

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

.accent-1 {
	color: var(--accent-1)
}

.accent-2 {
	color: var(--accent-2)
}

.accent-3 {
	color: var(--accent-3)
}

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

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

/* waves colour */
.info1-wave path,
.menu-wave path,
.footer-wave path {
	fill: var(--primary);
}

.info2-wave path {
	fill: 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-bold);
}

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

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

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

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

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

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

h3,
.h3 {
	font-size: 1.5rem;
	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 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.5;
}

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

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

a {
	text-decoration: none;
}

blockquote {
	background: var(--light-grey);
	border-left: 5px solid var(--primary-brand);
	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
	}
}

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

/* Layout */
.content-container,
.container.pad-side {
	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;
	}
}

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

	.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: 75em) {
	.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-family: var(--heading-font);
	font-weight: var(--font-medium);
	padding: .55rem 1.25rem .7rem;
	border-radius: 100px;
	text-decoration: none!important;
}

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

.btn-primary {
	background: var(--primary);
}

.btn-accent-1 {
	background: var(--accent-1);
}

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

.btn-accent-3 {
	background: var(--accent-3);
}

.btn-link {
	padding: 0;
	color: var(--accent-1) !important;
	font-weight: var(--font-semibold);
}

.btn-link-secondary {
	color: #fff;
}

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

textarea {
	min-height: 200px;
	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;
}

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

/* .input-buttons {
	font-weight: var(--font-bold);
	margin-top: 1rem;
	display: block;
	width: fit-content;
	color: var(--light-font-color);
	background: var(--accent-1);
} */

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

.custom-select {
    background-color: var(--light-grey);
    border: none;
    border-radius: 5px;
    transition: 0.5s;
    padding: 0.75rem 1rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
}

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

#schools-dropdown {
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 15px;
}

.schools-select i {
	color: white;
}

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

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

#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;
	box-shadow: 0px 5px 10px rgb(0 0 0 / 10%);
}

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

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

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

.table table tr:nth-child(even) {
	/* background: #f5f5f5; */
	background: white !important;
}

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


/* Header */
.logo:hover {
	filter: none;
}

.logo img {
	height: 60px;
	object-fit: contain;
	padding: .75rem;
}

.logo h3 {
	font-size: 20px;
	max-width: 200px;
	line-height: 1.2;
}

.logo span {
    font-weight: var(--font-regular);
}

.nav-link {
	color: var(--dark-font-color);
	font-weight: var(--font-bold);
	justify-content: center;
}

.nav-link i {
	color: var(--secondary);
}

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

.desktop-primary-nav a:hover,
.desktop-primary-nav a:focus {
	font-weight: var(--font-bold);
}

header {
	position: sticky;
	z-index: 120;
	background: white;
	width: 100%;
	max-width: 2560px;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#nav-primary {
	display: none;
	flex-direction: column;
	background: white;
	margin: 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	width: 100%;
	height: 100dvh;
	min-height: 100dvh;
	overflow-y: scroll;
	font-weight: var(--font-semibold);
}

.icon-trigger {
	margin-left: 0.5rem;
	cursor: pointer;
	color: var(--secondary);
}

.nav-primary-wrapper {
	flex: 1 0 auto;
}

.nav-primary-wrapper .content-container {
	margin-top: var(--main-top-xs);
}

.nav-app {
	z-index: 200;
}

.nav-app-btn {
	width: var(--main-top-xs);
	height: var(--main-top-xs);
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: auto;
	text-align: center;
	cursor: pointer;
}

.nav-app-btn:hover,
.nav-app-btn:focus {
	filter: none;
}

.nav-app-btn.nav-icon {
	background: var(--primary);
}

.nav-app-btn.search-icon {
	background: var(--accent-2);
	display: none;
}

.nav-app-btn.translate-icon {
	background: var(--accent-3);
	display: none;
}

.nav-app-btn i {
	font-size: 2rem;
	color: white;
}

.app-wrapper {
	background: var(--primary);
	height: var(--main-top-xs);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 1.25rem;
	position: fixed;
	z-index: 120;
	left: 0;
	right: 0;
	width: 100%;
}

.app-wrapper .flex-row {
	gap: 1rem;
}

.app-wrapper a {
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

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

.cm-icon {
    width: 30px;
}

.search-wrapper {
	padding: 1rem 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: 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(--accent-2);
	font-size: 2rem;
}

.nav-menu.mobile-only {
	text-align: center;
}

.nav-menu.mobile-only li {
	padding-bottom: 1rem;
}

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

.links-title h3 {
	font-size: 1.1rem;
}

.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(--accent-1);
	margin-top: 0;
	cursor: pointer;
}

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

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

.service span {
	color: var(--medium-grey);
	font-size: .75rem;
	text-align: center;
	display: block;
	line-height: 1.5;
	font-weight: var(--font-medium);
	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;
    aspect-ratio: 1 / 1;
    background: var(--light-grey);
    border-radius: 5px;
    background: var(--primary);
    color: white;
}

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

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

.app-contact {
	color: white;
	margin-top: -10px;
	padding-bottom: 1rem;
}

.app-contact .contact-row a {
	color: white;
}

.app-contact address {
	margin-bottom: 1rem;
}

#nav-primary .social-wrapper {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

#nav-primary .social-icon {
	width: 1.75rem;
}

#nav-primary .social-icon i {
	font-size: .75rem;
}

.sub-li a, .nav-group {
	color: var(--dark-font-color);
	font-weight: var(--font-bold);
}

a.nav-group {
	color: var(--primary) !important;
}

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

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

.app-contact {
	background-color: var(--primary);
}

@media (max-width: 1199px) {
	.header-row {
		display: flex;
		justify-content: space-between;
		width: 100%;
		padding: 0;
	}

	header.menu-active {
		position: fixed;
	}

	/* Mobile Main Nav */
	.menu-icon-wrapper {
		position: relative;
		z-index: 501;
	}

	.menu-trigger {
		font-size: 1.2rem;
		cursor: pointer;
	}

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

	.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: .5rem 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-bottom: 2rem;
	}

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

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

	.add-icon-mobile {
		width: 20%;
    	text-align: right;
	}

}

@media all and (min-width: 75em) {
	header {
		justify-content: flex-end;
		gap: 5%;
		height: var(--main-top-lg);
	}

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

	.logo {
		position: absolute;
		left: 5vw;
		top: 0;
	}

	.logo img {
		height: var(--main-top-lg);
		padding: 0.75rem 0;
	}

	.nav-app {
		position: absolute;
		z-index: 100;
		top: 0;
		right: 0;
	}

	.nav-app-btn {
		width: 4.5rem;
		height: var(--main-top-lg);
	}

	.nav-app-btn i,
	.app-wrapper i {
		font-size: 30px;
	}

	.menu-trigger i {
		font-size: 24px;
	}

	.nav-app-btn.search-icon,
	.nav-app-btn.translate-icon {
		display: flex;
	}

	.sticky-active .search-icon,
	.sticky-active .translate-icon,
	.menu-active .search-icon,
	.menu-active .translate-icon {
		display: none;
	}

	#nav-primary {
		display: none;
		margin: 0;
		position: fixed;
		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;
	}

	.nav-primary-wrapper .content-container {
		margin-top: var(--main-top-lg);
	}

	.app-wrapper {
		left: unset;
		width: 26rem;
		height: var(--main-top-lg);
	}

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

	.desktop-primary-nav {
		padding-right: 2rem;
	}

	.main-nav-ul>li {
		position: relative;
		height: var(--main-top-lg);
		display: flex;
		flex-direction: column;
		justify-content: center;
		border-top: 5px solid transparent;
		transition: all .2s ease-in-out;
	}
 
	.district .main-nav-ul>li {
		position: static;
	}

	.main-nav-ul i {
		transition: all .2s ease-in-out;
	}

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

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

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

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

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

	.district .main-dropdown-menu {
		left: 0;
		max-height: 80vh;
        overflow-y: auto;
		padding: 0;
		border-bottom: 1px solid white;

	}

	.district .main-dropdown-inner {
		padding: 2rem 5%;
		column-count: 4;
	}

	.district .sub-li {
        margin-bottom: 1.75rem;
		break-inside: avoid;      /* Standard */
		page-break-inside: avoid; /* For print compatibility */
		-webkit-column-break-inside: avoid; /* Chrome/Safari/Edge */
		-moz-column-break-inside: avoid;    /* Firefox */
	}
 
	.district .child-nav-ul {
		display: flex;
		flex-direction: column;
		gap: .75rem;
		margin-top: .75rem;
	}

	.district .child-nav-ul a {
		font-weight: var(--font-semibold);
	}
}

@media all and (min-width: 99em) {
	.nav-app-btn i,
	.app-wrapper i {
		font-size: 40px;
	}

	.menu-trigger i {
		font-size: 30px;
	}

	.desktop-primary-nav ul {
		gap: 2rem;
	}

	.main-dropdown-div {
		min-width: 17rem;
	}
}

/* Footer */
.footer-wave {
	width: 100%;
  	height: auto;
}

footer h3 {
	font-size: 1.2rem;
}

.footer-top > .content-container {
	background-color: var(--primary);
	padding-top: 2rem;
    padding-bottom: 2rem;
	margin-top: -2rem;
}

.footer-top * {
	color: white;
}

.footer-top option {
	color: var(--dark-font-color);
}

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

.footer-logo {
    width: 70px;
}

.footer-logo-wrapper h4 {
	line-height: 1.4;
}

.footer-logo-wrapper h4 span {
	font-weight: var(--font-regular);
}

address {
    font-style: normal;
}

.footer-top address {
    margin-bottom: 1rem;
	font-weight: var(--font-medium);
}

.footer-ul {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.footer-ul a {
	font-weight: var(--font-semibold);
}

.contact-row {
    margin-bottom: .5rem;
	font-weight: var(--font-semibold);
}

.contact-row a:hover,
.contact-row a:focus {
    text-decoration: underline;
}

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

.social-link {
	border: 2px solid currentColor;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer .social-link {
	border-color: white;
}

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

@media (min-width: 62em) and (max-width: 1199px){
	.footer-top > .content-container {
		margin-top: -6rem;
	}
}

@media (min-width: 75em) {
	.footer-top > .content-container {
		margin-top: -7rem;
		padding-bottom: 3rem;
	}

	.footer-desc {
		margin: 1.5rem 0 2rem;
	}

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

/* Home - Banner */
.banner-img {
	width: 100%;
	aspect-ratio: 1/1;
	padding-top: 2rem;
    padding-bottom: 5rem;
	height: 100%;
}

.banner-content {
	color: white;
}

.banner-content h2 {
	font-size: 2rem;
}

.banner-text {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.banner .btn {
	margin-top: 1rem;
	margin-bottom: 3rem;
}

.banner-buttons {
	display: none;
}

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

.banner-button-next,
.banner-button-prev {
	width: 50px;
	height: 50px;
	border: 2px solid white;
	border-radius: 50%;
	color: white;
	top: unset;
	right: unset;
	bottom: 2rem;
}

.banner-button-prev {
	left: 1rem;
	opacity: 0.8;
}

.banner-button-next {
	left: calc(1rem + 60px);
}

.banner-quicklink-item {
	text-align: center;
	color: white;
	padding: 1rem;
	margin-bottom: 1rem;
	font-weight: var(--font-medium);
	font-family: var(--heading-font);
}

.quicklinks {
	display: flex;
	column-gap: 1rem;
	row-gap: 2rem;
	flex-wrap: wrap;
	align-items: flex-start;
	background: var(--primary);
	padding: 2rem 1rem;
}

.quicklink-item {
	color: white;
	gap: 0.25rem;
	width: calc((100% - 1rem) / 2);
}

.quicklink-item .link-icon {
	aspect-ratio: 1 / 1;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	display: flex;
	padding: 1.5rem;
	border: solid 2px white;
	border-radius: 50%;
	max-width: 150px;
	margin: 0 auto;
}

.link-label {
	text-align: center;
	margin-top: .5rem;
}

.link-icon:hover,
.link-icon:focus {
	background: var(--accent-2);
}

@media (min-width: 37em) {
	.quicklink-item {
		width: calc((100% - 2rem) / 3);
	}

	.banner-img {
		aspect-ratio: 16/9;
	}
}

@media (min-width: 48em) {
	.banner-content h2 {
		font-size: 3rem;
		margin-bottom: 1rem;
	}

	.banner-text {
		padding-top: 0;
		line-height: 2;
		max-width: 70%;
	}

	.banner-button-prev {
		left: 5%;
	}

	.banner-button-next {
		left: calc(5% + 60px);
	}
}

@media (min-width: 62em) {
	.banner-img {
		aspect-ratio: 1440 / 620;
		padding-bottom: 5rem;
	}
	.banner-content h2 {
		font-size: 3.5rem;
		max-width: 35rem;
		line-height: 1.2;
	}

	.quicklink-item {
		width: calc((100% - 3rem) / 4);
	}

}

@media (min-width: 75em) {
	.banner-content {
		top: 25%;
	}

	.banner-content h2 {
		max-width: 44rem;
	}

	.banner-content p {
		width: 40%;
	}

	.banner .swiper-wrapper::after {
		content: "";
        border-radius: 0px 0px 5px 5px;
        background: var(--secondary);
        height: 7.5rem;
        position: absolute;
        bottom: -7.5rem;
        width: 7px;
        left: 5%;
	}

	.quicklinks {
		flex-wrap: nowrap;
		padding: 0 2.5%;
		max-width: 80%;
		margin: -7.5rem 0 0 auto;
		position: relative;
		z-index: 50;
		text-align: center;
		gap: 1.5rem;
		border-radius: 10px 0px 0px 10px;
	}

	.quicklink-item {
		width: calc((100% - 9rem)/7);
		height: auto;
		font-size: 1.1rem;
		padding: 1.5rem 0;
	}
}

/* Home News */
.home-section-heading {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

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

.home-spotlight > .news-text {
	display: none;
}

.news-item {
	position: relative;
	display: block;
}

.news-item > a {
	position: relative;
}

.news-item a {
	color: white;
}

.news-item::after {
	content: '';
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 100%);
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	top: 0;
	border-radius: 5px;
}

.news-item .news-image,
.news-item img {
	display: block;
	aspect-ratio: 295/184;
	width: 100%;
	border-radius: 5px;
}

.news-item .news-logo {
	width: 40%;
	aspect-ratio: unset;
	object-fit: contain;
	position: absolute;
	right: 1.5rem;
	top: 1.5rem;
	height: auto;
}

.news-text {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	color: white;
	z-index: 1;
	width: calc(100% - 2rem);
}

.news-text h3 {
	margin: 0;
	line-height: 1.4;
}

.news-text p {
	margin-top: .5rem;
	margin-bottom: 0;
}

.news-text .format-card-longer {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.card-description {
	display: none;
}

.spotlight-item:not(.spotlight-1) .format-card-longer {
	display: none;
}

@media (min-width: 62em) {
	.home-spotlight {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.spotlight-item {
		width: calc((100% - 1rem) / 2);
		height: auto;
	}

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

@media (min-width: 75em) {
	.home-spotlight {
		display: grid;
		grid-template-columns: 2fr repeat(2, 1fr);
		grid-template-rows: repeat(2, min-content);
		grid-column-gap: 16px;
		grid-row-gap: 16px;
	}

	.spotlight-item {
		width: unset;
	}

	.spotlight-item .news-image,
	.spotlight-item img {
		height: 100%;
	}

	/* .spotlight-2,
	.spotlight-3,
	.spotlight-4,
	.spotlight-5 {
		aspect-ratio: 295 / 184;
	} */

	.spotlight-1.news-item .news-image, 
	.spotlight-1.news-item img  {
		aspect-ratio: unset;
	}

	/* .home-spotlight-1 .news-item .news-image,
	.home-spotlight-1 .news-item img,
	.home-spotlight-2 .news-item .news-image,
	.home-spotlight-2 .news-item img,
	.home-spotlight-3 .news-item .news-image,
	.home-spotlight-3 .news-item img, */
	.news-archive .news-item .news-image, 
	.news-archive .news-item img ,
	.home-district-news .news-item .news-image, 
	.home-district-news .news-item img{
		aspect-ratio: 295 / 184;
	}

	.spotlight-1 {
		grid-area: 1 / 1 / 3 / 2;
		aspect-ratio: 283 / 184;
	}

	.spotlight-2 {
		grid-area: 1 / 2 / 2 / 3;
	}

	.spotlight-3 {
		grid-area: 1 / 3 / 2 / 4;
	}

	.spotlight-4 {
		grid-area: 2 / 2 / 3 / 3;
	}

	.spotlight-5 {
		grid-area: 2 / 3 / 3 / 4;
	}

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


/* Home: CTA 1*/
.cta-1 {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 2rem 0;
	color: white;
	aspect-ratio: 4/1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	width: 100%;
}

.cta-1-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(29, 29, 29, 0.4);
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
}

.cta-1 .content-container {
	position: relative;
	z-index: 110;
}

.cta-1 .row {
	flex-direction: column-reverse;
}

@media (min-width: 62em) {
	.cta-1 .row {
		flex-direction: row;
	}
}

@media (min-width: 75em) {
	.cta-1 .btn {
		margin-top: 2rem;
	}

	.cta-1 h2 {
		/* max-width: 17rem; */
		margin: 0 auto;
	}

	.cta-1 p,
	.cta-2 p {
		line-height: 1.8;
		font-size: 1.2rem;
		width: 90%;
	}
}


/* Home - Events */
.home-events-wrapper {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.event-item {
    display: flex;
    align-items: center;
    color: var(--dark-font-color);
    font-weight: var(--font-bold);
    background-color: var(--light-grey);
    border-radius: 5px;
}

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

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

.event-date-wrapper .month {
    text-transform: uppercase;
}

.event-date-wrapper .day {
    font-size: 1.8rem;
}

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

@media (min-width: 62em) {
	.home-events-wrapper {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.event-item {
		width: calc((100% - 2rem) / 3);
	}
}


/* Info & CTAs */
.info,
.cta {
	color: white;
}

.info {
	margin-top: 3rem;
	margin-bottom: 0;
}

.info .info2 .info-wave path {
	fill: var(--accent-2);
}

.info .info1,
.info .info2 {
	text-align: center;
}

.cta .cta-img {
	display: block;
	width: 100%;
}

.menu-wave {
	width: 100%;
  	height: auto;
}

.info1 .info-content-wrapper {
	margin-top: -12%;
	background-color: var(--primary);
	padding: 0 1rem 3rem;
}

.info2 .info-content-wrapper {
	background-color: var(--accent-2);
	padding: 3rem 1rem;
}

.info-content h2 {
	margin-bottom: 1rem;
}

.cta-content {
	gap: 1rem;
	padding: 1.5rem 1rem;
}

.cta-content p {
	border-left: 2px solid var(--secondary);
	padding-left: 1rem;
}

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

.info2 .menu-wave {
	display: none;
}

@media (min-width: 48em) {
	.info-wrapper, .cta {
		display: flex;
	}

	.info-col, .cta-img {
		width: 50%;
	}

	.info2 .menu-wave {
		display: unset;
	}

	.info1 .info-content-wrapper,
	.info2 .info-content-wrapper {
		margin-top: -10%;
		padding: 0 0 3rem;
	}

	.cta-img {
		padding: 5%;
	}

	.cta-content {
		padding: 1.5rem 5%;
	}

}

@media (min-width: 62em) {
	.cta-content {
		padding: 0;
	}
}

@media (min-width: 75em) {
	.info1 .info-content-wrapper,
	.info2 .info-content-wrapper {
		margin-top: -5rem;
	}
}

/* Programs Carousel */
.programs {
	margin-top: 2rem;
	padding: 0 1rem;
}

.program-item{
	position: relative;
	background-size: cover;
	border-radius: 5px;
    aspect-ratio: 909 / 426;
}

.program-item .program-tag {
	padding: .5rem 2rem;
	background: var(--primary);
	width: fit-content;
	border-radius: 0px 0px 5px 5px;
	color: white;
	margin: 0 auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.program-item .program-content {
	color: white;
	padding: 3rem 2rem 2rem;
}

.program-item .format-card-longer {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-align: center;
	margin-top: .5rem;
}

.program-item .program-content .btn {
	margin: 1rem auto 0;
}

.program-buttons {
	justify-content: center;
	margin-top: 2rem;
}

.program-button-prev {
	opacity: 0.8;
	left: calc(50% - 2rem);
}

.program-button-next {
	left: calc(50% + 2rem);
}

.program-button-prev,
.program-button-next {
	width: 50px;
	height: 50px;
	border: 2px solid var(--secondary);
	border-radius: 50%;
	color: var(--secondary);
	position: static;
	transform: none;
	margin: 0;
}

@media (min-width: 600px) {
	.programs {
		padding: 0;
	}
}

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

.collapsible-box .material-icons {
	color: var(--primary);
	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;
}

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

.editor details summary h3 {
    margin: 0;
	margin-top: -5px;
}

.editor details summary i {
    color: var(--primary);
    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;
}

.title-bg {
	background-color: var(--primary);
	background-size: cover;
    background-position: center;
}

.page-title-text a {
	font-weight: var(--font-medium);
	color: white;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
}

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

.page-title svg {
	margin-top: -1.25rem;
	z-index: 10;
	position: relative;
}

.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 */
.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: 62em) {
	.page-title-text {
		padding-top: 3.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;
	}
}

/* Side Navigation */
.sidebar-wrapper {
	font-weight: var(--font-semibold);
	background: var(--light-grey);
	color: var(--dark-font-color);
	padding: 0.5rem 1rem;
	margin: 0 auto;
}

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

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

.cookie a {
	display: flex;
	align-items: center;
	color: var(--accent-1);
}

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

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

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


.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;
	gap: 0.25rem;
}

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

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

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

	.current-page {
		display: none;
	}
}

/* Breadcrumbs */
.breadcrumbs {
	margin-bottom: 1rem;
	color: var(--medium-grey);
}

.breadcrumbs a {
	color: var(--medium-grey);
	font-weight: var(--font-medium);
	text-decoration: none;
}

.breadcrumbs a.active {
	color: var(--accent-1);
}

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

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

.publish-date {
    font-weight: var(--font-semibold);
    color: var(--medium-grey);
    margin: 1rem 0;
}

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

.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-bold);
    text-decoration: none;
}

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

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

/*News Archive*/
.news-wrapper.archive {
	display: flex;
	flex-wrap: wrap;
	grid-gap: unset;
	margin-top: 2rem;
	row-gap: 1rem;
}

.news-item.archive .cover-image {
	aspect-ratio: 3/2;
}

.news-item.archive {
	padding: 1.25rem;
	margin-bottom: 0;
	height: 100%;
}

.news-item.archive .fb-wrapper {
	top: -0.5rem;
	left: -0.5rem;
	width: 2rem;
	height: 2rem;
	font-size: 1rem;
}

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

.page-content .landing-link {
    padding: 3rem 1.5rem;
    position: relative;
    text-decoration: none;
    height: 100%;
	background-color: var(--light-grey);
}

.landing-link h3 {
    color: var(--primary);
	text-align: center;
}

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

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

.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: 40%;
        transform: translateY(-50%);
        padding: 2rem;
		width: 60%;
	}

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

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

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

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

/* Contact Template */
.contact-template address {
	margin-top: .5rem;
}

.contact-template .btn {
	margin-top: 1rem;
}

/* Our Schools */
.school-card {
    border: 2px solid var(--light-grey);
	height: 100%;
}

.school-card h4 {
	margin-top: 0;
	font-size: 1.2em;
}

.school-address {
	align-items: baseline;
}

.school-card-body {
	padding: 1rem 1.5rem;
}

.school-card-body .flex-row {
	align-items: baseline;
}

.school-card-header img {
	width: 100%;
	aspect-ratio: 16/9;
}

.school-extra {
	white-space: pre-line;
}
/* Staff Directory */
.staff-item img {
	aspect-ratio: 450/600;
	width: 100%;
}

.page-content .staff-name {
	margin: 0 0 .5rem;
	display: block;
}

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

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