*,
*: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!important;
}

#skip a {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    font-size: 14px;
}

#skip a:focus {
    position:static;
    width:auto;
    height:auto;
}

/* Variables */
:root {
    --primary: #000080;
    --secondary: #CC9900;
    --accent-1: ;
    --secondary-text: #434345;
         --link-color: #000080;
    --dark-font-color: #434345;
    --light-font-color: #fff;
    --dark-grey: #434345;
    --light-grey: #EFF0F0;

    --body-font: calibri, sans-serif;
    --heading-font: serenity, sans-serif;
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
}

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

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

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

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

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

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

.body-content {
    position: relative;
}

.wrapper {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}

.subpage #main-content {
    background-color: white;
}

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

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


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

.homepage h2 {
    font-size: 2.75rem;
}

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

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

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

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

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

@media all and (max-width: 62em) {

    h1,
    .h1 {
        font-size: 2rem;
    }

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

    .homepage h2 {
        font-size: 1.75rem;
    }

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

    .editor details summary h3 {
        margin: 0;
    }
}

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(--primary-color-2);
    padding: 2rem;
    margin: 2.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: 3rem;
}

figcaption {
    font-weight: var(--font-medium);
    font-size: .85rem;
    color: var(--dark-grey);
    text-align: left;
    background: var(--light-grey);
    margin: 0;
    padding: .5rem;
}

figurecaption  {
    font-weight: var(--font-medium);
    font-size: .85rem;
}

figure {
    margin-left: 0;
    margin-right: 0;
}

figure.image img {
    width: 100%;
}

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

.no-padding {
    padding: 0;
}

.no-margin {
    margin: 0;
}

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

.content-inner ul,
.content ul {
    padding-left: 1.2rem;
    list-style: unset;
}

.content {
    width: 100%;
}

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

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

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

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

.row {
    row-gap: 2rem;
}

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

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

@media all and (min-width: 48em) {
    .content-container,
    .container.pad-side {
        padding: 0 5%;
        width: auto;
    }
}

@media all and (min-width: 62em) {
    .side-container {
        padding-left: 0;
        padding-right: 5%;
    }
}

/* Search Results */
.container.pad-side>.row>h1 {
    width: 100%;
    margin-bottom: .5rem;
}

.container.pad-side>.row {
    row-gap: 0;
}

.search-results {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.search-result {
    border: 1px dashed #c3c3c3;
    padding: 1rem 1rem 0;
    flex-basis: 100%;
    max-width: 100%;
}

.search-result a {
    display: flex;
    column-gap: 1rem;
    color: var(--link-color);
}

.search-description strong {
    color: var(--primary)
}

.error-page-container .input-buttons {
    margin: auto;
}

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

.desktop-only {
    display: none!important;
}

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

    .mobile-only {
        display: none!important;
    }
}

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

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

.btn-primary {
    display: block;
    width: fit-content;
    font-weight: var(--font-bold);
    color: var(--dark-font-color);
    padding-left: 1.25rem;
    font-size: 1.2rem;
    position: relative;
}

.btn-primary::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    border-radius: 20px;
    background-color: var(--accent-1);
}

.btn-secondary {
    color: var(--secondary-text);
    background-color: var(--secondary);
    border-radius: 50px;
    width: fit-content;
    padding: .75rem 1.5rem;
    font-weight: var(--font-bold);
    display: block;
}

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

@media (min-width: 99em) {
    .btn {
        font-size: .9rem;
    }
}

/* Global */
.line-left {
    display: block;
    position: relative;
    padding-left: 1.25rem;
}
.line-left::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    border-radius: 20px;
    background-color: var(--accent-1);
}

/* Google Translate*/
#google_translate_element img {
    display: none;
}

#google_translate_element * {
    font-family: var(--body-font);
    font-size: 18px;
}

#google_translate_element a {
    color: var(--link-color)!important;
    font-weight: var(--font-bold);
}

.goog-te-gadget .goog-te-combo {
    margin: 0 0 1rem !important;
    border: none;
    width: 100%;
    background: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--dark-font-color) 50%), linear-gradient(135deg, var(--dark-font-color) 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
    background-color: white;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: .75rem;
    font-family: var(--body-font);
    text-transform: uppercase;
}

#google_translate_element {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 .5rem;
}

/* 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[type="search"],
textarea {
    width: 100%;
    box-sizing: border-box;
    border: solid 1px #e4e4e4;
    transition: 0.5s;
    padding: .5rem;
}

textarea {
    min-height: 200px;
}

input[type="submit"] {
    background: var(--primary);
    color: white;
    border: 0;
    font-size: .9rem;
    font-weight: var(--font-semibold);
    cursor: pointer;
    padding: .45rem 1.25rem .55rem;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

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

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

.input-buttons {
    margin-top: 1rem;
    display: block;
    width: fit-content;
    color: white;
    background: var(--primary);
}

.contact-form {
    margin-bottom: 2rem;
}

/* Alerts */
.banner-alert-wrapper {
    font-size: 1rem;
    z-index: 100;
}

/* Table Styles */
.editor-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.table,
.editor-table {
    margin: 0 0 2rem;
    overflow-x: auto;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 10%);
}

.table thead th a {
    color: white;
}

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

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

.table table,
.editor-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,
.editor-table td,
.editor-table th {
    padding: 10px 15px;
    width: auto !important;
}

.table table td,
.editor-table td {
    border-right: 1px solid #F7F6F4;
    width: auto !important;
}

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

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

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

.table table thead th:nth-child(even) {
    color: #ffffff;
    background: var(--primary-color-1);
}

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

.table h3,
.editor-table h3 {
    margin: .5rem 0;
}

.table img,
.editor-table img {
    width: auto;
}

.editor-tableCell {
    border-color: #F7F6F4 !important;
}


/* 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(--primary);
    border-radius: 0;
}

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

.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(--primary);
    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: 1rem 0;
}

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

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

/* Search bar */
.search-bar-wrapper label {
    display: none;
}

.search-button {
    position: absolute;
    right: 0;
    top: 0;
    appearance: none;
    border: none;
    background: var(--secondary);
    color: var(--secondary-text);
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    width: 52.7px;
    height: 52.7px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin: auto;
    cursor: pointer;
}

.search-button i {
    width: 100%;
}

.input-field input[type="text"].search-box,
#search-term-clone {
    padding: 16px;
    margin-bottom: 0;
    border: none;
    background: rgba(239, 240, 240, 0.2);
    width: 100%;
    height: 52.7px;
    color: white;
    font-size: 18px;
    border-radius: 30px 50px 50px 30px;
}

.input-field input[type="text"].search-box::placeholder,
#search-term-clone::placeholder {
    color: white;
}

.search-api-form,
#search-form,
#search-form-2 {
    position: relative;
}

.search-api-form .input-field label,
#search-form .input-field label,
#search-form-2 .input-field label {
    display: none;
}

/* Search filters */
.search-bar-wrapper .filter-icon {
    position: absolute;
    right: 70px;
    cursor: pointer;
    color: white;
    font-size: 24px;
}

.search-row {
    display: flex;
    align-items: center;
    flex-grow: 1;
    width: 100%;
    margin-bottom: 0;
}

.search-filters {
    display: none;
    padding: 10px;
}

.filter-group {
    margin: 0 0 .5rem;
    display: flex;
    gap: 0.5rem;
}

.filter-group:last-of-type {
    margin: 0;
}

.search-bar-wrapper .search-filters label {
    display: block;
    font-size: 16px;
    color: white;
}

#exclude-search-term {
    font-size: .85rem;
    margin-bottom: 0;
}

@media(min-width: 75em) {
    .search-bar-wrapper .search-filters label {
        font-size: 18px;
    }
}

/* Header */
header.flex-row-between {
    padding: 1rem 1.5rem 0;
    z-index: 100;
    position: relative;
    flex-wrap: nowrap;
}

.site-logo {
    height: 50px;
}

.nav-items {
    display: none;
}

.main-nav-ul {
    list-style: none;
    margin: 0;
}

.menu-icon {
    color: white;
    font-size: 22px;
    z-index: 2;
    position: relative;
    cursor: pointer;
}

.add-icon {
    color: var(--accent-1);
    font-size: 14px;
}

.nav-app-row > a {
    color: white;
}

.sub-li {
    padding: 4px 0;
}

.sub-li a {
    line-height: 1.2;
    font-weight: 300 !important;
}

@media (min-width: 75em) {
    .site-logo {
        height: 3rem;
    }

    .nav-items {
        display: block!important;
    }

    .main-dropdown, .no-dropdown {
        position: relative;
    }

    .main-dropdown-menu {
        display: block;
        transform: scaleY(0);
        transition: all .3s ease;
        transform-origin: top;
        position: absolute;
        top: 66px;
        left: auto;
        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;
    }

    .main-dropdown-menu.three-col {
        column-count: 3;
        min-width: 650px;
    }

    .main-nav-ul li:first-of-type .main-dropdown-menu.three-col {
        right: -7.5rem;
    }

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

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

    .main-li {
        padding: 16px 0 40px;
    }

    .main-li a {
        color: white;
        font-size: 18px;
        font-weight: var(--font-bold);
        display: block;
        margin-bottom: 2px;
    }

    .sub-li a {
        font-size: 16px;
    }

    .main-li a:hover,
    .main-li a:focus {
        color: var(--accent-1)!important;
    }

    .main-li .main-dropdown-menu a {
        color: var(--dark-font-color);
    }

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

    .menu-icon {
        font-size: 32px;
        margin-bottom: 30px;
    }

    header {
        padding: 16px 2rem 0;
    }

    header > a {
        padding-bottom: 40px;
    }

    .nav-wrapper {
        display: flex;
        align-items: center;
        gap: 2rem;
        font-size: 18px;
    }

    .nav-app-row {
        justify-content: flex-end;
        color: white;
        gap: 2rem;
    }

    .nav-app {
        gap: 5px;
    }

    .nav-app i {
        font-size: 20px;
    }
}

@media (min-width: 1368px) {
    .main-dropdown-menu.three-col {
        min-width: 650px;
    }

    .main-nav-ul li:first-of-type .main-dropdown-menu.three-col {
        right: 0;
    }
}

@media (min-width: 99em) {
    .main-li a {
        font-size: 20px;
    }

    .sub-li a {
        font-size: 18px;
    }
}

/* Header - collapsible menu */
.collapsible-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    font-size: 1rem;
    min-height: 100dvh;
    padding: 2rem;
    width: 100%;
    background: var(--dark-grey);
    color: white;
}

.login-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 16px;
    width: 90%;
}

.login-row a {
    color: white;
    gap: .5rem;
    display: flex!important;
    align-items: center;
}

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

.links-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0 1rem;
}

.links-title h3 {
    color: var(--accent-1);
}

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

.links-nav-buttons {
    gap: 1rem;
}

.links-nav-buttons i {
    color: var(--accent-1);
    cursor: pointer;
}

.service-link {
    color: white;
    text-align: center;
}

.service-icon {
    font-size: 1.5rem;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: .5rem;
}

.service-label {
    display: block;
    text-align: center;
    margin-top: .5rem;
    font-size: 16px;
}

.collapsible-menu address {
    font-size: 1rem;
}

.collapsible-menu .contact-line {
    color: white;
    display: inline-block;
}

.collapsible-menu .contact-wrapper {
    margin-top: 2rem;
}

.collapsible-menu .contact-text {
    margin-bottom: .5rem;
    display: flex;
    flex-wrap: wrap;
    column-gap: 1rem;
    row-gap: .5rem;
}

.collapsible-menu .address-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 1rem;
}

.collapsible-menu .contact-text span,
.collapsible-menu .address-wrapper span {
    width: 4rem;
}

.collapsible-menu-logo {
    position: absolute;
    bottom: -1rem;
    right: 0;
    z-index: -1;
    width: auto;
    object-fit: contain;
    max-height: 400px;
}

.mobile-main-nav {
    margin-top: 1.5rem;
}

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

.mobile-main-nav a {
    color: white;
    font-weight: var(--font-bold);
    font-size: 16px;
}

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

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

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

@media(min-width: 75em) {
    .mobile-main-nav {
        display: none;
    }
    .collapsible-menu {
        left: unset;
        height: auto;
        padding: 1.75rem 3rem;
        width: 550px;
        border-radius: 0 0 0 20px;
    }

    .login-row {
        font-size: 18px;
        width: 100%;
    }

    .service-label {
        font-size: 18px;
    }

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

/* Footer */
.main-footer {
    padding: 4rem 1rem;
}
.homepage .main-footer {
    padding-top: 14rem;
    margin-top: -10rem;
}

.main-footer h3 {
    font-size: 26px;
}

address {
    font-style: normal;
    line-height: 2;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.main-footer .contact-line {
    display: block;
    color: white;
    font-size: 1.125rem;
}

.main-footer .contact-line.phone {
    margin-bottom: 1rem;
}

.main-footer .contact-line.email {
    color: var(--accent-1);
    margin-top: 1rem;
}

.footer-social {
    margin: 3rem auto;
    justify-content: center;
}

.footer-social a {
    color: white;
    border-radius: 50%;
    border: 1px solid white;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.footer-social a:hover,
.footer-social a:focus {
    filter: none;
    background-color: white;
    color: var(--dark-font-color);
}

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

.footer-nav ul {
    margin-bottom: 3rem;
}

.footer-nav a {
    color: white;
    font-size: 1.25rem;
    font-weight: var(--font-bold);
}

.websites-wrapper {
    text-align: left;
}

.websites-wrapper p {
    margin-bottom: .5rem;
    font-size: 1.125rem;
}

#schools-dropdown {
    -webkit-appearance: none;
    appearance: none;
    border: none;
    background: none;
    padding: 1rem 0 1rem .75rem;
    width: 100%;
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.8);
}

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

#schools-dropdown:focus {
    outline: none;
}

.custom-select {
    position: relative;
}

.custom-select::after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f078";
    position: absolute;
    right: 8px;
    top: 50%;
    z-index: 0;
    transform: translateY(-50%);
    color: white;
    font-size: .9rem;
}

.custom-select {
    flex-grow: 1;
}

.schools-select {
    width: 100%;
    background: rgba(239, 240, 240, 0.2);
    border-radius: 30px 50px 50px 30px;
}

.schools-select .btn-circle {
    position: static;
    border: none;
    min-width: 3rem;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--secondary-text);
    font-weight: var(--font-bold);
}

.copyright-wrapper {
    background: #000;
    color: white;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    text-align: center;
    font-family: "poppins", sans-serif;
}

.copyright-wrapper a {
    color: var(--secondary);
}

@media (min-width: 62em) {
    .main-footer {
        display: flex;
        text-align: left;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .footer-col-1 {
        width: fit-content;
    }
    .footer-col-2 {
        width: 50%;
        flex-grow: 1;
        padding-left: 2rem;
    }
    .footer-col-3 {
        width: 16%;
        border-right: 1px solid rgba(239, 240, 240, 0.15);
    }
    .footer-col-4 {
        width: 24%;
        padding-left: 3rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 1rem;
    }

    .footer-nav ul {
        padding-right: 2rem;
    }

    .main-footer h3 {
        font-size: 1.375rem;
        margin-top: 0;
    }

    .main-footer .footer-nav a {
        font-size: 1rem;
    }

    .main-footer .footer-social {
        margin: 2rem auto 0;
        justify-content: flex-start;
    }

    .copyright-wrapper {
        display: flex;
        justify-content: space-between;
        padding-top: 1rem;
        padding-bottom: .75rem;
    }

    .copyright-wrapper p {
        margin: 0;
    }
}

/* Home - Banner */
.masked {
    background-color: var(--primary);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: cover;
    -webkit-mask-image: url(/images/mask-mobile.png);
    mask-image: url(/images/mask-mobile.png);
    height: 50vh;
    position: absolute;
    top: 0;
    left: 5%;
    right: 0;
    z-index: -1;
    mask-repeat: no-repeat;
    margin-left: auto;
    mask-position: top right;
    mask-size: contain;
    width: 100%;
}

.subpage .masked {
    background-image: none;
    background-color: var(--primary);
}

.homepage .masked::after {
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.60) 7.36%, rgba(0, 0, 0, 0.00) 50%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
}

svg.hero-line {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    width: auto;
    height: 50vh;
}

.homepage .hero-line path {
    stroke-dasharray: 3500;
    stroke-dashoffset: 3500;
    animation: grow 1.5s linear;
    animation-fill-mode: forwards;
}

.banner-section {
    height: 60vh;
}

.banner-content-wrapper {
    position: relative;
    width: 100%;
    padding: 0 1.5rem;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.banner-content {
    margin-bottom: 3rem;
}

.banner-content h1 {
    margin: 0 0 1rem;
}

.banner-content h2 {
    margin: 0;
    color: var(--primary);
}

.banner-section .social-wrapper {
    position: absolute;
    left: 0;
    top: 35%;
    transform: translateY(-50%);
    gap: .5rem;
    width: auto;
}

.social-link {
    display: block;
    color: var(--dark-font-color);
    background-color: rgba(239, 240, 240, .8);
    padding: 5px 12px 5px 24px;
    border-radius: 0 50px 50px 0;
    text-align: right;
    min-width: 54px;
    width: fit-content;
    font-size: 16px;
}

.social-link:hover,
.social-link:focus {
    filter: none;
    padding-left: 40px;
}

.social-link.fb:hover,
.social-link.fb:focus {
    color: #1877F2;
}

.social-link.ig:hover,
.social-link.ig:focus {
    color: #C32AA3;
}

.social-link.tw:hover,
.social-link.tw:focus {
    color: #000000;
}

.social-link.yt:hover,
.social-link.yt:focus {
    color: #FF0000;
}

.scroll-icon-wrapper {
    position: absolute;
    padding-bottom: 65px;
    bottom: 0;
    left: 2rem;
}

.scroll-icon-wrapper::after {
    content: '';
    width: 1.5px;
    height: 60px;
    position: absolute;
    background-color: var(--dark-grey);
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateX(-50%);
    margin: auto;
}


.scroll-icon__dot {
    display: block;
    position: absolute;
    left: 0;
    background: rgba(67, 67, 69, .8);
    height: 7px;
    width: 4px;
    top: 3px;
    right: 0;
    margin: auto;
    border-radius: 10px;
    transform-origin: top center;
    backface-visibility: hidden;
    animation: scroll_2 2s ease-out infinite;
}

.scroll-icon {
    display: block;
    position: relative;
    height: 38px;
    width: 25px;
    border: 2px solid rgba(67, 67, 69, 0.8);
    border-radius: 1em;
    margin-bottom: 1rem;
}

.long-logo {
    background: rgba(255, 255, 255, 0.50);
    padding-bottom: 1rem;
    backdrop-filter: blur(5px);
}

.banner-content h1 {
    width: 80%;
}

@media(max-width: 375px) {
    .masked {
        width: 76%;
        background-position: center;
    }

    svg.hero-line {
        left: 1rem;
        height: auto;
        width: 72vw;
    }

    .banner-section,
    .banner-content-wrapper {
        height: 58vh;
    }

    .banner-content h1 {
        font-size: 1.3rem;
        margin-bottom: .5rem;
        line-height: 1.3;
    }

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

    .banner-content .btn-primary {
        font-size: 1rem;
        padding-left: 1rem;
    }

    .banner-content .btn-primary::before {
        width: 3px;
    }
}

@media(min-width: 37.5em) {
    .masked {
        background-position: center left 20vw;
        left: unset;
        height: 60vh;
    }

    svg.hero-line {
        height: 60vh;
    }

    .banner-section,
    .banner-content-wrapper {
        height: 60dvh;
    }

    .banner-content {
        width: 45%;
        position: absolute;
        top: 42%;
        left: 10%;
        transform: translateY(-50%);
        margin-bottom: 0;
        z-index: 1;
    }

    .banner-content-wrapper {
        position: relative;
        width: 100%;
        display: block;
    }

    .banner-content h1 {
        margin: 1rem 0 2rem;
        font-size: 2.8rem;
        line-height: 1.1;
        max-width: 100%;;
    }

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

    .banner-section .social-wrapper {
        top: 42%;
    }

    .long-logo {
        background: transparent;
        padding-bottom: 0;
        backdrop-filter: unset;
    }

}

@media(min-width:48em) {
    .banner-content-wrapper {
        padding: 0 5%;
    }
    .masked {
        height: 65vh;
    }

    svg.hero-line {
        height: 65vh;
    }

    .banner-text {
        padding: 5%;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.50);
        backdrop-filter: blur(5px);
    }
}

@media(min-width: 75em) {
    .bg-wrapper {
        position: absolute;
        top: 0;
        right: 0;
        width: 70vw;
        height: 100dvh;
        overflow: hidden;
    }

    .subpage .bg-wrapper {
        z-index: -1;
    }
    .masked {
        width: 90%;
        position: static;
        -webkit-mask-image: url(/images/mask.svg);
        mask-image: url(/images/mask.svg);
        mask-size: cover;
        mask-position: center left;
        height: 100dvh;
        background-position: bottom 0 left 0;
    }

     svg.hero-line {
        top: -12%;
        left: 0;
        height: 115dvh;
        /* width: 100%; */
        z-index: 1;
    }

    .banner-content-wrapper {
        padding: 0;
    }

    .banner-content {
        left: 8%;
    }

    .banner-section {
        height: calc(100dvh - 135px);
    }

    .banner-content-wrapper {
        position: relative;
        width: 100%;
        height: calc(100dvh - 135px);
        display: block;
    }

    .banner-content h1 {
        margin: 1rem 0 2rem;
        font-size: 4rem;
        line-height: 1.1;
    }

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

    .social-link {
        padding: 10px 18px 10px 30px;
        min-width: 70.5px;
        font-size: 20px;
    }

    .social-link:hover,
    .social-link:focus {
        padding-left: 55px;
    }
}

/* @media (min-aspect-ratio: 3/2) and (min-width: 75em) {
    svg.hero-line {
        left: 35%;
    }
} */

/* Home - Quicklinks */
.quicklink-section {
    z-index: 2;
    position: relative;
}
.quicklink-wrapper {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.quicklink {
    justify-content: center;
    color: white;
}

.quicklink img {
    width: 1.4rem;
    object-fit: contain;
}

.quicklink-item:first-of-type {
    border-right: 1px solid rgba(239, 240, 240, 0.15);
}

@media (min-width: 62em) {
    .quicklink-wrapper {
        padding: 2.5rem 10%;
    }
    .quicklink-item {
        border-right: 1px solid rgba(239, 240, 240, 0.15);
    }

    .quicklink-item:last-of-type {
        border-right: none;
    }

    .quicklink {
        font-size: 1.4rem;
        gap: 1.5rem;
    }

    .quicklink img {
        width: 2.5rem;
    }
}

/* Home Spotlight Carousel */
.spotlight-news .title-row {
    text-align: center;
    margin-bottom: 1.5rem;
}

.spotlight-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
}

.spotlight-img.no-img {
    background: var(--light-grey);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spotlight-img img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
}

.spotlight-img.no-img img {
    width: 50%;
    margin: auto;
    object-fit: contain;
}

.spotlight-button-next, 
.spotlight-button-prev {
    color: var(--secondary-text);
    background: var(--secondary);
    font-size: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    transform: none;
    top: unset;
    bottom: 0;
}

.spotlight-button-prev {
    left: unset;
    right: 2.5rem;
    opacity: 0.7;
}

.spotlight-button-next {
    right: 0;
}

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

.spotlight-swiper .spotlight-pagination {
    top: calc(100vw - 2rem - 50px);
    left: 1rem;
    text-align: left;
    width: fit-content;
}

.spotlight-swiper .swiper-pagination-bullet {
    background: rgba(239, 240, 240, .5);
    opacity: 1;
    width: 10px;
    height: 10px;
}

.spotlight-swiper .swiper-pagination-bullet-active {
    background-color: var(--primary);
}

.spotlight-item .news-content {
    margin: 1rem 0 2rem;
}

.spotlight-news h3 {
    font-family: var(--body-font);
    height: fit-content;
}

.spotlight-item .card-description {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Home News */
.news-article .card-description {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: .5rem;
}

.news-article .news-title {
    margin-bottom: .5rem;
    font-family: var(--body-font);
}

.news-article .btn-link {
    font-weight: var(--font-regular);
}

.news-article .format-date {
    font-weight: var(--font-bold);
}

.news-article {
    margin-bottom: 1.5rem;
}

.news-article:last-of-type {
    margin-bottom: 0;
}

@media (min-width: 48em) {
    .spotlight-img {
        aspect-ratio: 4 / 3;
    }

    .spotlight-img img {
        aspect-ratio: 4 / 3;
    }

    .spotlight-swiper .spotlight-pagination {
        top: calc(65vw - 20px);
    }
}

@media (min-width: 62em) {
    .spotlight-swiper {
        height: 100%;
    }

    .spotlight-swiper .spotlight-pagination {
        top: 62%;
    }

    .spotlight-swiper .swiper-pagination-bullet {
        width: 15px;
        height: 15px;
    }

    .spotlight-item-inner {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

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

    .spotlight-item .news-content {
        display: flex;
        gap: 1.5rem;
        margin: 1rem 0 0;
        height: 30%;
    }

    .spotlight-item h3 {
        margin: 0;
        flex-grow: 1;
        display: block;
    }

    .spotlight-item .news-text {
        width: 50%;
    }

    .spotlight-img {
        aspect-ratio: unset;
        flex-grow: 1;
        height: 70%;
    }

    .spotlight-img img {
        aspect-ratio: unset;
        height: 100%;
    }

    .spotlight-news-row {
        display: flex;
        gap: 2rem;
    }

    .spotlight-col {
        width: 60%;
        height: 484px;
    }

    .news-col {
        /* flex-grow: 1; */
        width: calc(40% - 2rem);
    }

    .news-article {
        margin-bottom: 2rem;
    }

    .news-article .news-title {
        margin-bottom: 1rem;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        font-size: 1.5rem;
    }

    .spotlight-item h3 {
        font-size: 1.5rem;
    }

    .news-article .card-description {
        margin-bottom: 1rem;
    }
}

@media (min-width : 1368px) {
    .spotlight-swiper .spotlight-pagination {
        top: 62%;
    }
}

@media (min-width: 99em) {
    .spotlight-col {
        height: 605px;
    }
}

@media (min-width: 125em) {
    .spotlight-col {
        height: 665.5px;
    }
}

/* Home - Programs */
.programs-section {
    padding-top: 13%;
    padding-bottom: 16rem;
    position: relative;
    overflow: hidden;
}

.programs-section p {
    line-height: 2;
}

.programs-section .btn-secondary {
    margin: 1.5rem auto 0;
}

.programs-section svg {
    position: absolute;
    left: -5%;
    right: 0;
    top: 0;
    width: 110%;
    height: auto;
    opacity: .2;
    margin: auto;
}

.programs-intro {
    position: relative;
    background: var(--primary);
    color: white;
    padding: 8rem 1rem 6rem;
}

.programs-intro * {
    position: relative;
    z-index: 10;
}

.program-img {
    aspect-ratio: 2/3;
    border-radius: 20px;
    position: relative;
    display: block;
}

.program-img.no-img {
    background-color: var(--light-grey);
}

.program-img img {
    width: 100%;
    aspect-ratio: 2/3;
    border-radius: 20px;
}

.program-img::after {
    content: "";
    border-radius: 20px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.30) 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
}

.program-img h4 {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    color: white;
    font-family: var(--body-font);
    margin: 0 auto;
    font-size: 1.25rem;
    z-index: 1;
    width: 95%;
}

.programs-container {
    width: 100%;
    overflow: hidden;
    position: absolute;
    bottom: 0;
}

@media (min-width: 37.5em) {
    .programs-section svg {
        width: 60%;
    }
}

@media (min-width: 48em) {
    .programs-section {
        padding-top: 5%;
        overflow: visible;
        padding-bottom: 9.5rem;
    }

    .programs-section svg {
        width: 40%;
        left: 0;
        right: 0;
    }

    .programs-intro {
        padding: 5rem 5% 6rem;
    }

    .program-img,
    .program-img img {
        aspect-ratio: 1/1;
    }

}

@media(min-width: 75em) {
    .programs-section svg {
        width: 30%;
    }

    .programs-section {
        padding-bottom: 12rem;
    }
}

.swiper-free-mode>.swiper-wrapper{
  transition-timing-function : linear;
}

/* Home Events */
.event-content {
    margin-top: 1rem;
}
.event-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.event-date-wrapper {
    color: white;
    text-align: center;
    position: relative;
    z-index: 2;
}

.event-date-box {
    background: var(--primary);
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    width: 88px;
    height: 88px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.month {
    font-size: 20px;
    line-height: 1;
}

.day {
    font-weight: var(--font-bold);
    font-size: 36px;
    line-height: 1;
}

.event-title {
    font-weight: var(--font-bold);
    font-size: 24px;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.event-name {
    color: var(--dark-font-color);
}

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

@media (min-width: 48em) {
     .district .home-events {
        padding-top: 2rem;
    }
}

@media (min-width: 62em) {
    .event-links {
        display: flex;
        align-items: center;
        gap: 3rem;
    }

    .event-buttons {
        gap: 1.5rem;
    }

    .event-button-prev,
    .event-button-next {
        position: static;
        transform: unset;
        color: var(--primary);
        width: auto;
        height: auto;
        margin: 0;
    }

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

    .event-date-box {
        width: 150px;
        height: 150px;
    }

    .month {
        font-size: 35px;
        line-height: 1;
    }

    .day {
        font-size: 50px;
        line-height: 1;
    }

    .event-title {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 5px;
    }

    .all-link {
        font-size: 1.2rem;
    }
}

@media (min-width: 99em) {
    .event-title {
        -webkit-line-clamp: 3;
    }
}

/* Home CTA1 (About) */
.cta1 h2,
.cta1 p {
    color: white;
}

.cta1 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    text-align: center;
    position: relative;
}

.cta1::after {
    content: "";
    background: linear-gradient(0deg, rgba(67, 67, 69, 0.50) 0%, rgba(67, 67, 69, 0.50) 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
}

.cta1 * {
    position: relative;
    z-index: 1;
}

.cta-section p {
    line-height: 2;
    margin-bottom: 0;
}

.cta-section .btn-secondary {
    margin: 2.5rem auto 0;
}

.cta-section {
    position: relative;
}

.cta2 {
    padding: 6rem 0;
    text-align: center;
}

.leaf-svg {
    position: absolute;
    bottom: -10%;
    left: 0;
    width: 50%;
    max-width: 300px;
    height: auto;
}

.circle-svg {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30%;
    max-width: 250px;
    height: fit-content;
}

@media(min-width: 62em) {
    .cta1 {
        text-align: left;
        padding: 6% 0;
    }

    .cta-section .btn-secondary {
        margin: 2rem 0 0;
    }

    .cta1-content {
        width: 70%;
    }

    .cta2 {
        padding: 6% 0;
        text-align: left;
    }

    .cta2-content {
        width: 70%;
        margin-left: auto;
    }

    .circle-svg {
        top: 40%;
    }

    .leaf-svg {
        width: 30%;
        max-width: 360px;
    }
}

@media (min-width: 99em) {
    .leaf-svg {
        max-width: 450px;
    }
}

@media (min-width: 125em) {
    .leaf-svg {
        max-width: 500px;
    }
}

/* Home - Gallery */
.gallery-section {
    margin-top: 6rem;
}
.gallery-section h2 {
    width: 80%;
    margin: 3rem auto 2rem;
}
.image-item {
    width: 200px;
    aspect-ratio: 1/1;
}
.image-item img {
    border-radius: 50%;
    width: 100%;
    aspect-ratio: 1/1;
    transition: all .3s ease-in-out;
}

.gallery1-swiper {
    margin-bottom: .5rem;
    padding: 3% 0;
}

.gallery2-swiper {
    padding: 3% 0;
}

.image-item:hover img {
    transform: scale(1.1);
}

.gallery-wrapper {
    display: flex;
    gap: 1rem;
}

.gallery-wrapper .image-item img {
    min-width: 200px;
}

.gallery-container {
  width: 100%;
  overflow: hidden;
}


@media(min-width:62em) {
    .gallery-section {
        margin-top: 0;
    }
    .gallery1-swiper {
        padding: 1% 0;
    }

    .gallery2-swiper {
        padding: 1% 0;
    }

    .gallery-section h2 {
        margin: 4rem auto 2rem;
    }
}

/* Home - Land Acknowledgement */
.landack-img {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 4.5rem 3%;
    border-radius: 20px;
}

.homepage .landack-section * {
    color: white;
}

.landack-img::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 20px;
    background: linear-gradient(0deg, rgba(67, 67, 69, 0.40) 0%, rgba(67, 67, 69, 0.40) 100%);
}

.landack-text {
    position: relative;
    z-index: 10;
}

.landack-section p {
    margin-bottom: 0;
    line-height: 2;
}

.landack-section h2 {
    font-size: 2rem;
}

@media (min-width: 75em) {
    .landack-section h2 {
        margin-bottom: 1.5rem;
    }

    .landack-section p {
        font-size: 1.35rem;
    }

    .landack-img {
        padding: 6%;
    }
}

/* Side Navigation */
.sidebar {
    background: var(--light-grey);
	padding: 1rem;
	margin-top: 3rem;
    font-weight: var(--font-bold);
}

.sidebar-wrapper a {
	color: var(--dark-font-color);
}
.nav-secondary {
	display: none;
	margin-top: .5rem;
}
.cookie {
    padding-bottom: 0.5rem;
}

.cookie a {
    display: flex;
    align-items: center;
    font-weight: var(--font-regular);
}

.cookie i {
    font-size: .8rem;
}

.secondary-nav-item {
    padding-bottom: 0.5rem;
	transition: all .3s ease;
}

.secondary-nav-item:last-of-type {
	padding-bottom: 0;
}

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

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

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

.current-page {
    display: flex;
    align-items: center;
    gap: 0.25rem;
	cursor: pointer;
}

@media (min-width: 62em){
	.nav-secondary {
		display: block!important;
		margin: unset;
	}
	.sidebar {
		padding: 3rem 2rem;
		margin-top: 0;
        margin-bottom: 2rem;
        border-radius: 0 0 20px 0;
	}
	.current-page {
		display: none;
	}

    .side-nav .sidebar {
        border-radius: 0 20px 20px 0;
    }
}

/* Subpage */
.page-template {
    background: white;
}

.page-template.content-container .page-content {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.page-content {
    margin-bottom: 2rem;
}

.page-title-wrapper {
    margin-bottom: 1rem;
}

.page-title {
    color: var(--primary);
    margin: 0;
    line-height: 1.2;
}

.page-content-inner ul,
.page-content-inner ol {
    list-style: revert;
    padding-left: 1.5rem;
    line-height: 2
}

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

.calendar-template .page-content .page-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.calendar-template .page-content .change-font-size {
    margin: 0;
}

@media(min-width:62em) {
    .page-template {
        min-height: 80vh;
    }
    .page-title-wrapper {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .page-template.content-container .page-content {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .page-content {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .page-content.no-side-nav {
        position: relative;
    }

    .page-content.no-side-nav .change-font-size {
        position: absolute;
        right: 0;
    }

    .page-content.no-side-nav .page-title-wrapper {
        flex-direction: row;
        justify-content: center;
        max-width: 70%;
        margin: 0 auto 1rem;
        text-align: center;
    }

    .calendar-template .page-content .page-title-wrapper {
        justify-content: space-between;
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .calendar-template .page-content .change-font-size {
        position: static;
    }
}


/* General DCT Template */
.content-row {
    margin-bottom: 1rem;
}
.content-row.border-top {
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid #e3e3e3;
}

.content-row.border-top-bottom {
  padding: 3rem 0;
  margin: 2rem 0;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
}

.content-row.border-bottom {
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e3e3e3;
}

.content-row.border-top > div *:first-child,
.content-row.border-top-bottom > div *:first-child  {
  margin-top: 0;
}

.content-row.border-bottom > div *:last-child,
.content-row.border-top-bottom > div *:last-child {
  margin-bottom: 0;
}

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

.content-row .btn {
  margin-bottom: 1rem;
  color: var(--dark-font-color);
}

.content-row .btn:hover,
.content-row .btn:focus {
    color: white;
}

.responsive-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  margin-bottom: 1.5rem;
}

.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-template .useful-links-wrapper {
  margin-top: 1.3125rem;
  margin-bottom: 5rem;
}

.page-template .useful-link {
  line-height: 1;
  margin-top: 2rem;
  text-align: center;
}

.page-template .useful-link a {
	display: block;
	padding: 1.5rem 1rem;
	color: var(--light-font-color);
}

.page-template .useful-link i {
  display: block;
  font-size: 40px;
  margin-bottom: .5rem;
}

.page-template .useful-link span {
	font-size: 1.25rem;
	font-weight: bold;	
}

.page-template .useful-link i,
.page-template .useful-link span {
  -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;
}

.page-template .useful-link a:hover i,
.useful-link a:focus i {
  opacity: 0.8;
}

.page-template .useful-link a:hover span,
.page-template .useful-link a:focus span {
  border-bottom: 1px solid;
}

.simple-links-wrapper h5 {
  margin-bottom: .75rem;
}

.simple-links-wrapper .simple-link {
  margin: 0 0 .5rem;  
}

.simple-links-wrapper .pre-link {
  margin: 1rem 0 0.5rem 0;
}

.documents-section {
    margin-top: 1.3125rem;
    margin-bottom: 5rem;
}

.documents-section ul {
	list-style: none;
	margin: 0;
	padding: 0;
	box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
}

.documents-section ul li {
	padding: 0.5rem 1rem;
	margin: 0;
}

.documents-section ul li:nth-child(2n) {
	background: #f5f5f5;
}

.img-box-wrapper {
    display: block;
}

.img-box-wrapper img {
    width: 100%;
    aspect-ratio: 3/2;
    border-radius: 20px 20px 0 0;
}

.img-box-wrapper {
    background: var(--light-grey);
    border: 1.5px solid var(--light-grey);
}

.img-box-wrapper .box-text {
    padding: 1.5rem;
}

.img-box-wrapper p {
    margin-bottom: .5rem;
}

.formatted-content {
    margin-bottom: 2rem;
}

.formatted-content .img-box-wrapper {
    height: 100%;
    border-radius: 20px;
}

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

/* Landing Page */
.landing-wrapper {
    margin-bottom: 2rem;
}
.landing-link {
    background: var(--light-grey);
    text-align: center;
    aspect-ratio: 547 / 230;
    border-radius: 20px;
    padding: 1rem;
    position: relative;
}

.landing-link h3 {
    margin: 0;
    color: var(--dark-font-color);
    font-family: var(--body-font);
}

.back-button {
    margin-bottom: 1rem;
}

@media(min-width: 62em) {
    .landing-wrapper {
        row-gap: 1rem;
    }
    .landing-item {
        padding: 0 .5rem;
    }

    .landing-item:nth-last-of-type(3n+1) {
        padding-left: 1rem;
    }

    .landing-item:nth-last-of-type(3n+2) {
        padding-right: 1rem;
    }
}

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

.collapsible-box .material-icons {
	color: var(--primary);
}

.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 - rich text dct */
.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 i {
    font-weight: var(--font-bold);
    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;
}

/* News, Event Article */
.recent-item {
    margin-bottom: .75rem;
    display: block;
    background: var(--light-grey);
    padding: .5rem 1rem;
}

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

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

.back-link {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.publish-date {
    font-weight: var(--font-bold);
    margin-bottom: 1rem;
}

.news-article-img {
    aspect-ratio: 3 / 2;
}

.news-article-img.no-img {
    background: var(--light-grey);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.news-article-img img {
    height: 100%;
    aspect-ratio: 3/2;
    border-radius: 20px;
}

.news-article-img.no-img img {
    width: 50%;
    margin: .5rem auto;
    object-fit: contain;
    aspect-ratio: unset;
    height: auto;
    border-radius: 0;
}

.news-archive .news-article {
    flex-wrap: wrap;
    gap: 0;
}

.news-archive .news-article h3 {
    font-size: 1.375rem;
}

.news-article-img, .news-article-text {
    width: 100%;
}

.news-archive .news-article-img.no-img img {
    max-width: 12.5rem;
}


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

    .news-article-img {
        width: auto;
        max-width: 30%;
    }

    .news-article-text {
        width: 70%;
    }

    .news-archive .news-article {
        gap: 1.5rem;
        flex-wrap: nowrap;
    }

    .news-archive .news-article-img.no-img {
        max-width: unset;
        width: 30%;
    }

    .news-archive .news-article-img.no-img img {
        max-width: 4rem;
    }

}


/* Font Sizer */
.change-font-size {
    padding: 0.5rem 1rem;
	margin-top: 1rem;
    margin-bottom: 1rem;
    border-radius: 25px;
    background: var(--light-grey);
    width: fit-content;
}

.change-font-size span {
	font-weight: bold;
}

.change-font-size a {
    display: inline-block;
    margin-left: 0.75rem;	
	cursor: pointer;
}

@media(min-width:62em){
	.change-font-size {
		margin-top: 0;
	}
}

/* Modal */
/* General Styling */
.main-content-wrapper {
	margin: auto;
}

.modal-trigger {
	cursor: pointer;
}

.modal-wrapper {
    display: none;
    position: fixed;
    z-index: 700;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(67, 67, 69, 0.9);
    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);
    border-radius: 20px;
    color: var(--dark-font-color);
}

.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;
    text-transform: uppercase;
    font-weight: var(--font-semibold);
    font-family: var(--heading-font);
}

.close-icon-wrapper .close-icon {
    font-size: 1.5rem;
    cursor: pointer;
}

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

    .close-icon-wrapper .close-icon {
        font-size: 2rem;
    }
}

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

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

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

.usefullinks-modal .service.useful-link a:hover,
.usefullinks-modal .service.useful-link a:focus {
    color: var(--primary);
    filter: none;
}

.usefullinks-modal .service.useful-link a:hover span,
.usefullinks-modal .service.useful-link a:focus span {
    border-bottom: none;
}

/* Custom Modal for Search */
.search-modal .input-field input[type="text"].search-box,
.search-modal .input-field input[type="text"].search-box::placeholder,
.search-modal #search-term-clone,
.search-modal #search-term-clone::placeholder,
.search-modal .search-bar-wrapper .filter-icon {
    color: var(--dark-font-color);
}

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

.search-modal .search-bar-wrapper {
    margin: 0 1rem;
}

.search-modal .search-bar-wrapper .search-filters label {
    color: var(--dark-font-color);
}

@media (min-width: 48em){
	.usefullinks-modal .modal-info {
		width: 90%;
        top: 50%;
        transform: translateY(-50%);
	}

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

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

@media (min-width: 99em){
	.usefullinks-modal .usefullinks-modal .modal-info {
		width: 80%;
		max-width: 1600px;
		margin: auto;
		padding: 3rem;
	}
}

.contact-template address {
    font-size: 1rem;
    line-height: revert;
}

.contact-template .contact-wrapper {
    margin-bottom: 2rem;
}

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

/* Staff Directory */
.staff-row {
    margin-bottom: 2rem;
    row-gap: 0;
}

.staff-img {
    max-width: 300px;
    margin-bottom: .5rem;
}

.staff-row img {
    width: 100%;
    aspect-ratio: 268 / 347;
}

.staff-row .no-img {
    background: var(--light-grey);
    object-fit: contain;
    padding: 1rem;
}

.staff-row h3 {
    margin: 0;
}

.staff-row h4 {
    font-size: 1.2em;
}

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

.position2 {
    margin-bottom: .5rem;
}

@media (min-width: 48em) {
    .staff-person {
        margin-bottom: 1rem;
    }
}

/* Animation */
@keyframes scroll_2 {
  0%   { transform: translateY(0); opacity: 1; }
  25%  { opacity: 1; }
  75%  { transform: translateY(.75em); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

@keyframes grow {
    0% {
        stroke-dashoffset: 3500;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes slideX {
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  0% {
    -webkit-transform: translateX(
      calc(-1 * (var(--tile-size) + var(--box-gap)) * (var(--tiles) / 2))
    );
    transform: translateX(
      calc(-1 * (var(--tile-size) + var(--box-gap)) * (var(--tiles) / 2))
    );
  }
}

/* Continuous Carousel */
.rc-carousel {
  --box-gap: 1rem;
  --tile-size: 13rem;
  width: 100%;
  /* max-width: calc((var(--tile-size) + var(--box-gap)) * ((var(--tiles) / 2) - 1)); */
  overflow: hidden;
}

.rc-gallery-1,
.rc-gallery-2 {
  --box-gap: 1rem;
  --tile-size: 200px;
  width: 100%;
  /* max-width: calc((var(--tile-size) + var(--box-gap)) * ((var(--tiles) / 2) - 1)); */
  overflow: hidden;
}

.rc-carousel-strip {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-animation: slideX 30s linear infinite;
  animation: slideX 30s linear infinite;
}

.rc-carousel-strip.reverse {
  animation-direction: reverse;
}

.rc-carousel-strip:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.programs-wrapper,
.rc-carousel-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: var(--box-gap);
}

.rc-carousel-item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: var(--tile-size);
}

@media (min-width: 37.5em) {
    .rc-carousel {
        --tile-size: 13rem;
    }
}

@media (min-width: 75em) {
    .rc-carousel {
        --tile-size: 16rem;
    }
}

/**
 * CSS style for carouselTicker
 **/

.carouselTicker__list {
  padding: 0;
  list-style-type: none;
  overflow: hidden;
}


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

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

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

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

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

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

.letter-wrapper h2 {
    margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

#school-directory .map-link {
    /* color: var(--dark-font-color); */
    font-weight: var(--font-regular);
}

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

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

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

}

/* Ad */
.ad-wrapper {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 0 20px 20px 0;
}

.ad-wrapper > h3 {
    margin-bottom: .5rem;
}

.ad-wrapper .editor {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 1rem;
}

.mobile-only .ad-wrapper {
    border-radius: 20px;
    margin-top: 2rem;
    margin-bottom: 0;
}


