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

#g-signin2 {
    width: fit-content;
    margin: auto;
}

/* Variables */
:root {
    --primary: #023C5B;
    --secondary: #047940;
    --dark-font-color: #151515;
    --light-font-color: #fff;
    --dark-grey: #434345;
    --light-grey: #EFEFEF;

    --body-font: "Roboto", sans-serif;
    --heading-font: "Heebo", 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: 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;
}

.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: 991px) {
    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;
    }

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

@media (min-width: 62em) {
    .homepage h3 {
        font-size: 1.75rem;
    }
}

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

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

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

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

section {
    margin-bottom: 2.5rem;
}

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;
    width: 100%;
}

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

.input-field.sys-site-search-wrapper {
    width: 100%!important;
}

.sys-site-search-select {
    width: 7.5rem;
}

/* 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(--dark-font-color);
}

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

.btn {
    display: block;
    width: fit-content;
    font-weight: var(--font-medium);
    font-size: 14px;
    padding: .5rem 1rem;
}

.btn-outline-white {
    color: white;
    border: 2px solid white;
    background: none;
}

.btn-outline-white:hover,
.btn-outline-white:focus {
    background-color: white;
    color: var(--primary);
    filter: none;
}

.btn-outline-secondary {
    color: var(--secondary);
    border: 2px solid var(--secondary);
    background: none;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
    background-color: var(--secondary);
    color: white;
    filter: none;
}

.btn-white-primary {
    background-color: white;
    border: 2px solid white;
    color: var(--primary);
}

.btn-white-primary:hover,
.btn-white-primary:focus {
    background-color: transparent;
    color: white;
    filter: none;
}

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

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: white;
    color: var(--secondary)!important;
    filter: none;
}

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

@media (min-width: 75em) {
    .btn {
        font-size: 16px;
        padding: .5rem 1.25rem;
    }
}

@media (min-width: 99em) {
    .btn {
        font-size: 1rem;
        padding: .5rem 1.25rem;
    }
}

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

#google_translate_element a {
    color: var(--secondary)!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);
}

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

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

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

.editor iframe {
    min-height: unset;
}

.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 {
    display: none;
}

#search-term-clone {
    padding: .75rem 1rem .75rem 2.25rem;
    margin-bottom: 0;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    width: 100%;
    color: white;
}

#search-term-clone::placeholder {
    color: white;
}

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

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

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

.search-bar-wrapper .search-icon {
    position: absolute;
    font-size: 24px;
    top: 50%;
    transform: translateY(-50%);
    appearance: none;
    border: none;
    background: none;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--dark-font-color);
}

.search-bar-wrapper {
    position: relative;
}

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

.input-field input[type="text"].search-box {
    padding-left: 2rem;
}

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

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

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

.top-header {
    font-size: 16px;
    display: none;
}

.main-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--light-grey);
}

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

.site-logo {
    width: 100%;
    max-width: 120px;
    object-fit: contain;
}

.header-contact-wrapper {
    font-weight: var(--font-medium);
    padding: .75rem 2rem .75rem 3rem;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 903.2 60' style='enable-background:new 0 0 903.2 60' xml:space='preserve'%3E%3Cpath d='M882.4 39.1 865.9.5h37.3V0H0l25.5 38.6C35 52 50.4 60 66.9 60h836.3v-.3c-8.4-2.4-15.9-9.7-20.8-20.6z' style='fill:%23efefef'/%3E%3C/svg%3E");
}

.header-nav-app {
    font-weight: var(--font-medium);
    padding: .75rem 2rem .75rem 3rem;
    background-size: cover;
    background-position: left bottom;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='516' height='60' viewBox='0 0 516 60' fill='none'%3E%3Cpath d='M676 12.8108V18.8918C676 22.9459 676 18.8918 676 26.9999C676 28.5404 676 31.054 676 31.054V35.108V47.2702V60L50.069 60C37.7349 60 26.1946 51.973 19.1117 38.5946L0 0L676 3.8147e-06V12.8108Z' fill='%23047940'/%3E%3C/svg%3E");
}

.header-contact a:hover,
.header-contact a:focus {
    color: var(--secondary);
}

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

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

.account-row {
    display: flex;
    flex-wrap: wrap;
    column-gap: 2rem;
    row-gap: 1rem;
    justify-content: center;
}

@media (max-width: 1199px) {
    .main-nav {
        display: none;
    }

    .menu-icon-wrapper {
        /* position: absolute;
        right: 0; */
        color: white;
        font-size: 1.2rem;
        padding: 1.5rem 1rem 2rem 3.5rem;
        background-size: contain;
        background-position: right top;
        background-repeat: no-repeat;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='86' height='60' viewBox='0 0 86 60' fill='none'%3E%3Cpath d='M311 10.8108V16.8918C311 20.9459 311 16.8918 311 24.9999C311 26.5404 311 29.054 311 29.054V33.108V45.2702V58L50.069 59.5405C37.7349 59.5405 26.1946 51.5134 19.1117 38.1351L0 -0.459534L311 -2V10.8108Z' fill='%23047940'/%3E%3C/svg%3E");
    }

    .site-logo {
        margin: .5rem 1rem;
    }

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

@media (min-width:75em) {
    .top-header {
        display: flex;
        justify-content: flex-end;
        flex-wrap: wrap;
    }

    .top-header .header-contact-social {
        gap: .75rem;
    }

    .header-contact {
        padding-right: 1rem;
        border-right: 1px solid rgba(21, 21, 21, 0.4);
    }

    .header-contact:last-of-type {
        border-right: none;
    }

    .header-contact-wrapper,
    .header-nav-app {
        display: flex;
        align-items: center;
    }

    .header-contact-wrapper {
        margin-right: -1.35rem;
        gap: 1rem;
        font-size: 14px;
    }

    .header-nav-app {
        color: white;
        position: relative;
        gap: 1.25rem;
        font-size: 14px;
    }

    .main-header {
        padding: 0 2rem;
        align-items: center;
    }

    .main-nav-ul {
        display: flex;
        flex-wrap: wrap;
        column-gap: 1.5rem;
        margin-bottom: 0;
        justify-content: flex-end;
    }

    .site-logo {
        width: 100%;
        margin: .5rem 0;
        max-width: 10rem;
    }

    .menu-icon-wrapper {
        display: none;
    }

    .add-icon {
        font-size: .75rem;
    }
    .menu-trigger, .menu-close {
        display: none;
    }

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

    .main-dropdown, .no-dropdown {
        position: relative;
        padding: .5rem 0;
    }

    .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-nav-ul li:last-of-type .main-dropdown-menu,
    .main-nav-ul li:nth-last-of-type(2) .main-dropdown-menu {
        left: auto;
        right: 0;
    } */

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

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

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

    .main-nav a {
        font-size: 18px;
    }

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

@media (min-width: 1400px) {
    .site-logo {
        margin: -1rem 0 .5rem;
    }
}

@media (min-width: 1600px) {
    .header-contact-wrapper, 
    .header-nav-app {
        font-size: 1rem;
    }

    .site-logo {
        margin: -2rem 0 .5rem;
    }
}

/* 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 1.5rem;
    width: 100%;
    background: var(--secondary);
    color: white;
}

.collapsible-menu a {
    color: white;
}

.collapsible-menu hr {
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
}

.collapsible-social-wrapper {
    justify-content: center;
    gap: 1rem;
}

.menu-close {
    position: absolute;
    right: 1.5rem;
    top: 2rem;
    font-size: 1.2rem;
}

.login-row {
    display: flex;
    flex-wrap: wrap;
    row-gap: .5rem;
    column-gap: .75rem;
    margin-bottom: 1.5rem;
    font-size: 14px;
    max-width: calc(100% - 30px);
}

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

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

.collapsible-menu .contact-text {
    margin-bottom: .75rem;
}

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

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

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

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

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

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

.service-icon svg {
    width: 20px;
    height: auto;
}

.service-icon svg path {
    fill: var(--dark-font-color)
}

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


@media(min-width: 75em) {
    .collapsible-menu  {
        display: none!important;
    }
}

/* 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);
    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;
    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;
    margin-top: 0;
}

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

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

.usefullinks-modal .service.service-link a:hover svg path {
    transition: all .3s ease-in-out;
}

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

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

.usefullinks-modal .service.service-link a:hover svg path,
.usefullinks-modal .service.service-link a:focus svg path {
    fill: var(--primary)
}

/* Custom Modal for Search */
.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 #search-term-clone {
    background-color: white;
}

.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%);
        max-width: 1200px;
	}

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

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

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

/* Footer */
footer a {
    color: white;
}
.main-footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.main-footer a {
    display: block;
    width: fit-content;
}

.footer-logo {
    margin: auto;
    width: 20%;
    max-width: 90px;
}

.footer-slogan {
    font-style: italic;
}

.footer-col-2 a, 
.footer-col-3 a {
    margin: auto;
}

.footer-col-2 .footer-contact {
    margin-bottom: 1rem;
    font-style: normal;
    font-weight: var(--font-medium);
}

.footer-social {
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1.25rem;
    font-size: 1.2rem;
}

.footer-social a {
    margin: 0;
}

footer ul {
    margin-bottom: 0;
}

footer ul li {
    margin-bottom: 1rem;
}

footer ul li a {
    padding: .25rem 0;
}

.footer-col-2 .footer-site-name {
    margin: 1rem 0;
    font-size: 1.375rem;
}

.footer-hand,
.footer-copyright {
    margin: 0 auto 1rem;
    width: 40%;
    max-width: 5.6rem;
}

.websites-wrapper {
    width: 80%;
    margin: 1.5rem auto;
}

#schools-dropdown {
    -webkit-appearance: none;
    appearance: none;
    border: 1.5px solid white;
    background: none;
    padding: .5rem;
    width: 100%;
    position: relative;
    z-index: 1;
    color: var(--light-grey);
    font-size: 14px;
}

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

#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: "\f0d7";
    position: absolute;
    right: 8px;
    top: 50%;
    z-index: 0;
    transform: translateY(-50%);
    color: white;
    font-size: 14px;
}

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

.schools-select {
    width: 100%;
}

.schools-select .btn {
    font-size: 14px;
    padding: .5rem .75rem;
    cursor: pointer;
}

.ie-link {
    font-size: 14px;
    font-weight: var(--font-medium);
    background-color: var(--primary);
    padding: 1rem 1.5rem;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='46' viewBox='0 0 320 46' fill='none'%3E%3Cpath d='M-442 35.6419V31.0811C-442 28.0406 -442 31.0811 -442 25C-442 23.8447 -442 21.9595 -442 21.9595V18.919V9.79734V0.250001L263.561 0.25C277.464 0.25 290.473 6.27027 298.457 16.304L320 45.25L-442 45.25V35.6419Z' fill='%23EFEFEF'/%3E%3C/svg%3E");
}

.ie-link a {
    color: var(--secondary);
}

.copyright-wrapper {
    background-color: var(--dark-font-color);
    color: white;
    font-size: 14px;
    font-weight: var(--font-medium);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

@media (min-width: 62em) {
    .main-footer {
        display: flex;
        gap: 1rem;
        padding: 3rem 2rem;
    }

    .footer-col-1 {
        width: auto;
        margin-right: 1rem;
    }

    .footer-col-2 {
        width: 45%;
        text-align: left;
    }

    .footer-col-2 .footer-site-name {
        margin-top: 0;
        font-size: 1.75rem;
    }

    .footer-col-3 {
        width: 25%;
        text-align: left;
        margin-top: 3rem;
        margin-left: 2rem;
    }

    .footer-col-4 {
        margin-top: 3rem;
        width: 20%;
    }

    .footer-col-2 a, 
    .footer-col-3 a {
        margin-left: 0;
        margin-right: 0;
    }

    .footer-logo {
        margin: 0;
        width: 100%;
        max-width: 100px;
    }

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

    .footer-bottom {
        display: flex;
        background-color: var(--primary);
    }

    .copyright-wrapper {
        font-size: 1rem;
        background-color: transparent;
        order: -1;
        padding: 1rem 4rem 1rem 2rem;
        background-size: cover;
        background-position: top right;
        background-repeat: no-repeat;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 676 60'%3E%3Cpath d='M0 47.19V0h625.93c12.33 0 23.87 8.03 30.96 21.41L676 60H0V47.19Z' style='fill:%23151515;stroke-width:0'/%3E%3C/svg%3E");
    }

    .ie-link {
        font-size: 1rem;
        background-color: transparent;
        margin-left: -1.8rem;
        padding: 1rem 5rem;
        background-position: top left;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 369.9 60' style='enable-background:new 0 0 369.9 60' xml:space='preserve'%3E%3Cpath d='m22.4 21 18.7 39h328.7l-28.7-38.6C330.5 8 313.2 0 294.6 0H0c9 3 17 10.4 22.4 21z' style='fill:%23efefef'/%3E%3C/svg%3E");
    }
}

@media (min-width: 75em) {
    .footer-col-3 {
        display: flex;
        gap: 1rem;
    }

    .footer-col-3 ul {
        width: calc(50% - .5rem);
    }
}

/* Home - Banner */
.banner-slide {
    background-color: var(--primary);
    color: white;
    padding: 1rem;
}

/* Banner carousel pagination */
.swiper-pagination-bullet {
    width: 40px;
    height: 6px;
    background: white;
    opacity: 0.5;
    border-radius: 0;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, 
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin-right: 8px;
}

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

.banner-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    width: fit-content;
    left: 2rem;
    bottom: 1.5rem;
}

/* Banner carousel navigation */
.banner-button-prev,
.banner-button-next {
    background-color: var(--light-grey);
    color: var(--primary);
    padding: .5rem;
    width: 2.75rem;
    height: 2.75rem;
}

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

.banner-button-prev {
    background-color: var(--light-grey);
    opacity: 0.5;
    transform: unset;
    bottom: 30%;
    right: 2.75rem;
    top: unset;
    left: unset;
}

.banner-button-next {
    transform: unset;
    bottom: 30%;
    right: 0;
    top: unset;
    left: unset;
}

/* Mission & Vision */
.vision-bar {
    color: white;
    /* background-color: var(--primary); */
    padding: .5rem;
}

.mission-bar {
    color: white;
    /* background-color: var(--secondary); */
    padding: .5rem;
}

.vision-bar,
.mission-bar {
    position: relative;
    color: white;
}

 .mission-wrapper {
    position: relative;
}

.mission-wrapper::before {
    content: "";
    background-color: rgba(255, 255, 255, 0.1);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}

.quicklinks-section {
    position: relative;
}

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

.quicklink-button-prev,
.quicklink-button-next {
    color: var(--dark-font-color);
    font-size: 1.5rem;
}

.quicklink-col {
    aspect-ratio: 6 / 5;
}

.quicklink-col a {
    background-color: var(--light-grey);
    height: 100%;
    padding: 1rem;
    text-align: center;
}

.quicklink-card {
    gap: .75rem;
}

.quicklink-col i {
    color: var(--secondary);
    font-size: 1.5rem;
}

.quicklink-col span {
    font-weight: var(--font-semibold);
}

.quicklink-col svg {
    margin: auto;
    width: 1.2rem;
    height: auto;
}

@media (max-width: 1199px) {
    .mission-vision.desktop {
        display: none;
    }

    .mission-vision.mobile {
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .vision-bar {
        max-width: 64%;
        margin-left: auto;
        padding: .75rem 5rem calc(.75rem + 10px) 5rem;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='912' height='81' viewBox='0 0 912 81' fill='none'%3E%3Cpath d='M911.913 0H71.8548C53.8258 0 36.929 11.3531 26.9129 30.2385L0 81C6.79354 77.2884 14.1097 75.2143 21.6871 75.2143H911.913C911.913 75.2143 911.913 71.9843 911.913 43.6658C911.913 15.3472 911.913 8.7296 912 0.218329L911.913 0Z' fill='%23023C5B'/%3E%3C/svg%3E");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: bottom left;
    }

    .vision-bar::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        background-color: white;
        width: 100%;
        height: 6px;
        border-radius: 5% 95% 0% 100% / 100% 0% 100% 0%;
    }

    .mission-bar {
        max-width: 94%;
        margin-left: auto;
        padding: .75rem 1rem .75rem 6.5rem;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='961' height='81' viewBox='0 0 961 81' fill='none'%3E%3Cpath d='M966 63.7054V55.496C966 50.0231 966 55.496 966 44.5501C966 42.4704 966 39.0771 966 39.0771V33.6041V17.1852V2.00296e-06L71.5483 0C53.923 0 37.432 10.8365 27.3105 28.8973L0 81L966 81V63.7054Z' fill='%23047940'/%3E%3C/svg%3E");;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: bottom left;
    }

    .banner-section {
        display: flex;
        flex-direction: column;
    }

    .mission-wrapper {
        order: -1;
    }

    .banner-wrapper {
        width: 100%;
        background-color: var(--primary);
    }

    .banner-slide {
        padding: 2rem 1.5rem 4rem;
    }

    .banner-text h2 {
        font-size: 1.5rem;
        margin-bottom: .5rem;
    }

    .banner-text h3 {
        font-weight: var(--font-medium);
        font-size: 1rem;
        margin-bottom: 0;
    }

    .banner-text p {
        line-height: 2;
    }

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

    .banner-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
        left: 1.5rem;
    }

    .quicklink-row {
        flex-wrap: nowrap;
    }

    .quicklink-col {
        aspect-ratio: 1/1;
    }

    .quicklink-col span {
        font-size: .9rem;
    }
}

@media (max-width: 767px) {
    .quicklink-button-prev,
    .quicklink-button-next {
        display: none;
    }
}

@media (min-width: 48em) {
    .quicklinks-section .content-container {
        padding: 0 2.5rem;
    }
}

@media (min-width: 75em) {
    .banner-section {
        display: flex;
        gap: .5rem;
    }

    .banner-wrapper {
        width: calc(33% - 0.5rem);
    }

    .mission-wrapper {
        width: 67%;
        position: relative;
    }

    .banner-slide {
        padding: 2rem;
    }

    .banner-text {
        height: 100%;
    }

    .banner-text h3 {
        font-size: 1rem;
        font-weight: var(--font-medium);
        margin-bottom: .75rem;
    }

    .banner-text h2 {
        font-size: 1.5rem;
        font-weight: var(--font-bold);
        line-height: 1.3;
        margin-bottom: .5rem;
    }

    .mission-wrapper img {
        width: 100%;
        height: 100%;
        aspect-ratio: 1290/603;
    }

    .banner-button-prev {
        bottom: 0;
        right: 2.75rem;
        top: unset;
        left: unset;
    }

    .banner-button-next {
        bottom: 0;
        right: 0;
        top: unset;
        left: unset;
    }

    .mission-vision.mobile {
        display: none;
    }

    .mission-vision {
        position: absolute;
        bottom: 0;
        right: 0;
        font-size: 18px;
    }

    .vision-bar {
        max-width: 64%;
        margin-left: auto;
        padding: .75rem 2rem calc(.75rem + 10px) 5rem;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='912' height='81' viewBox='0 0 912 81' fill='none'%3E%3Cpath d='M911.913 0H71.8548C53.8258 0 36.929 11.3531 26.9129 30.2385L0 81C6.79354 77.2884 14.1097 75.2143 21.6871 75.2143H911.913C911.913 75.2143 911.913 71.9843 911.913 43.6658C911.913 15.3472 911.913 8.7296 912 0.218329L911.913 0Z' fill='%23023C5B'/%3E%3C/svg%3E");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: bottom left;
    }

    .mission-bar {
        max-width: 75%;
        margin-left: auto;
        padding: .75rem 2rem .75rem 5rem;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='961' height='81' viewBox='0 0 961 81' fill='none'%3E%3Cpath d='M966 63.7054V55.496C966 50.0231 966 55.496 966 44.5501C966 42.4704 966 39.0771 966 39.0771V33.6041V17.1852V2.00296e-06L71.5483 0C53.923 0 37.432 10.8365 27.3105 28.8973L0 81L966 81V63.7054Z' fill='%23047940'/%3E%3C/svg%3E");;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: bottom left;
    }

    .vision-bar::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        background-color: white;
        width: 100%;
        height: 10px;
        border-radius: 5% 95% 0% 100% / 100% 0% 100% 0%;
    }

    .quicklink-col span {
        font-size: 18px;
    }

}

@media (min-width: 1280px) {
    .vision-bar {
        max-width: 65%;
    }
}

@media (min-width: 99em) {
    .banner-text h2 {
        font-size: 1.8rem;
        margin-bottom: .75rem;
    }

    .banner-text .banner-buttons {
        margin-top: 1rem;
    }

    .quicklink-col {
        width: calc((100% - 7rem) / 8);
    }

    .vision-bar {
        max-width: 65%;
    }

    .mission-bar {
        max-width: 73%;
    }
}

@media (min-width: 1500px) {
    .vision-bar {
        max-width: 66%;
    }
}

@media (min-width: 1860px) {
    .vision-bar {
        max-width: 68%;
    }
}

/* Home - News, Events */
.news-img-wrapper {
    background-color: var(--light-grey);
}

.news-img-wrapper,
.news-img-wrapper img {
    aspect-ratio: 360/322;
}

.news-img-wrapper.no-cover img {
    aspect-ratio: unset;
    object-fit: contain;
    width: 80%;
    margin: auto;
}

.news-content {
    margin-top: .75rem;
}

.news-content .format-date {
    font-weight: var(--font-medium);
}

.news-buttons.desktop-only {
    flex-wrap: wrap;
    gap: 1rem;
}

.home-events {
    background: var(--light-grey);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.title-row {
    margin-bottom: 1rem;
}

.title-row h3 {
    color: var(--dark-font-color);
}

.event-item {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--dark-font-color);
    background: var(--light-grey);
    margin-bottom: 1.25rem;
	height: 100%;
}

.event-date-wrapper {
    background-color: var(--secondary);
    color: white;
    position: relative;
    text-align: center;
    padding: 0 .25rem;
    line-height: 1.4;
    width: 4rem;
    min-height: 4rem;
    height: 100%;
    aspect-ratio: 1 / 1;
}

.event-date-wrapper .month {
	font-size: .8rem;
    text-transform: uppercase;
    font-weight: var(--font-bold);
    font-family: var(--heading-font);
}

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

.event-name {
    padding: 0 .75rem;
    border-left: none;
    width: calc(100% - 4rem);
    height: 100%;
}

.event-title {
    color: var(--dark-font-color);
    font-weight: var(--font-bold);
    font-family: var(--heading-font);
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.event-time {
    font-size: .9rem;
    margin-top: 3px;
    font-weight: var(--font-regular);
}

.home-quote {
    background-color: var(--primary);
    color: white;
    padding: 2rem 1.5rem;
    font-style: italic;
}

.home-quote p {
    text-align: center;
    line-height: 2;
}

.home-quote h3 {
    text-align: center;
}

.home-quote a {
    margin-left: auto;
    margin-right: auto;
}

.quote-circle {
    border: 4px solid white;
    border-radius: 50%;
    width: 4rem;
    height: fit-content;
    aspect-ratio: 1 / 1;
    padding: 1rem;
    margin: 0 auto 1rem;
}

.quote-circle img {
    width: 100%;
    object-fit: contain;
}

.home-landack {
    color: white;
    text-align: center;
    font-weight: var(--font-medium);
    font-size: 1.25rem;
    padding: 2.5rem 1rem;
}

.home-schools {
    text-align: center;
    margin-top: 1rem;
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
}

.home-schools h4 {
    font-size: 1.1rem;
}

.home-schools .btn {
    margin: .5rem auto 0;
}

.home-school-tile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    min-width: 170px;
    padding: 0;
}

.home-schools img {
    width: 10rem;
    height: 10rem;
    object-fit: contain;
    margin: auto;
}

.news-buttons.mobile-only {
    display: flex!important;
    margin-top: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.explore h3 {
    text-align: left;
}

@media (min-width: 62em) {
    .news-container {
        padding: 1.5rem 2rem 0;
    }

    .news-buttons.desktop-only {
        display: flex!important;
    }

    .home-school-tile {
        min-width: 200px;
    }

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

    .event-container {
        margin-left: 2rem;
    }

}

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

    .home-events { 
        grid-area: 1 / 1 / 3 / 2; 
        padding: 3rem 8% 3rem calc(10% + 2rem);
    }

    .quote-circle {
        width: 12rem;
        margin: 0;
    }

    .home-quote { 
        grid-area: 1 / 2 / 2 / 3; 
        padding: 3rem 5%;
        display: flex;
        gap: 2rem;
    }

    .home-quote h3,
    .home-quote p {
        text-align: left;
    }

    .home-quote a {
        margin-left: 0;
    }

    .home-landack { 
        grid-area: 2 / 2 / 3 / 3; 
        padding: 3rem 8%;
    }

    .home-school-tile {
        min-width: calc((100% - 6rem) / 7);
    }

    .home-events .title-row {
       margin-left: -2rem;
       margin-bottom: 2rem;
    }

    .event-container {
        margin-left: 0;
    }

    .explore h3 {
        text-align: center;
    }

    .home-schools {
        margin-top: 2rem;
    }

}

/* Subpage */
.page-header {
    background-color: var(--primary);
    color: white;
    text-align: center;
    position: relative;
    padding: 3rem 1rem;
    width: 100%;
    margin-bottom: 0;
}

.page-header.with-img {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.page-header h1 {
    color: white;
    font-size: 2rem;
}

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

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

.page-content-inner .btn {
    text-decoration: none;
}

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

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

.page-content-inner h2,
.page-content-inner h3,
.page-content-inner h4,
.page-content-inner h5,
.page-content-inner h6 {
    font-weight: var(--font-medium);
    margin-bottom: .5rem;
}

@media (min-width: 62em){
    .page-header {
        padding: 5rem 5%;
    }
	.page-content-inner {
		margin-left: 1rem;
		margin-top: 3rem;
        margin-bottom: 4rem;
	}
	
	.no-side-nav .page-content-inner {
		margin-left: 0;
	}
}

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

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

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

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

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

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

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

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


/* Side Navigation */
.header-cookie {
    display: none;
    font-weight: var(--font-semibold);
    padding: 1rem 5rem 1rem 2rem;
    position: absolute;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: cover;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='60' viewBox='0 0 360 60' fill='none'%3E%3Cpath d='M-194 47.1892L-194 41.1082C-194 37.0541 -194 41.1082 -194 33.0001C-194 31.4596 -194 28.946 -194 28.946L-194 24.892L-194 12.7298L-194 4.99159e-05L318.967 3.58721e-06C329.075 2.70353e-06 338.533 8.02702 344.337 21.4054L360 60L-194 60L-194 47.1892Z' fill='%23047940'/%3E%3C/svg%3E");
}

.header-cookie a {
    color: white;
}

.sidebar {
	font-weight: var(--font-medium);
    background: var(--light-grey);
	color: var(--dark-font-color);
	padding: .75rem 1rem;
	margin-top: 1rem;
}

.sidebar-wrapper a {
	color: var(--dark-font-color);
    font-weight: var(--font-semibold);
    font-size: .9rem;
}
.nav-secondary {
	display: none;
	margin-top: 1rem;
}

.cookie {
    padding-bottom: 0.5rem;
}

.cookie a {
    display: flex;
    align-items: center;
}

.cookie svg path {
    fill: var(--dark-font-color);
}

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

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

.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: 0 0 0 .5rem;
    font-weight: var(--font-regular);
}

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

@media (min-width: 62em){
    .header-cookie {
        display: block;
    }
	.nav-secondary {
		display: block!important;
		margin: unset;
	}
	.sidebar {
        margin-top: .5rem;
        margin-bottom: .5rem;
		padding: 2rem;
        z-index: 9;
        position: relative;
	}
	.current-page {
		display: none;
	}

    .cookie {
        margin-bottom: 2rem;
        display: none;
    }

    .secondary-nav-item {
        padding-bottom: .75rem;
    }
}

/* News, Event Article */
.article-title {
    margin-bottom: .75rem;
    color: var(--secondary);
}
.publish-date {
    font-weight: var(--font-semibold);
    color: var(--dark-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;
    color: var(--dark-font-color);
}

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

/* News Archive */
.news-archive a {
    color: var(--dark-font-color)!important;
}

/* Contact Page */
.contact-school-info {
    margin-bottom: 2rem;
}

address {
    font-style: normal;
}

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

.contact-school-info p {
    margin-bottom: .5rem;
}

/* General DCT Template */
.content-row {
    margin-bottom: 2rem;
}

.content-row.spacing-bottom {
    margin-bottom: 3rem;
}

.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 h2 {
    margin-bottom: .5rem;
}

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

.content-row .btn {
  margin-bottom: 1rem;
  display: inline-block;
}

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

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

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

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

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

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

.useful-link i,
.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;
}

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

.useful-link a:hover span,
.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;
}

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

/* 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) {
    .content-row.spacing-bottom {
        margin-bottom: 3.5rem;
    }
}

@media (min-width: 62em) and (max-width: 99em) {
	.useful-link span {
		font-size: 0.9rem;
	}
}

/* Schools Page */
.school-list-item {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    align-items: flex-start;
    border-bottom: 1px solid #e0e0e0;
}

.school-list-item:last-of-type {
    border-bottom: none;
}

.school-list-logo {
    width: 9rem;
    object-fit: contain;
}

.school-list-contact {
    margin-bottom: .25rem;
}

.school-list-btn {
    margin-top: 1rem;
}

/* Staff Directory */
.staff-directory-wrapper {
    align-items: flex-start;
}

#staff-list .input-field {
    margin-bottom: 2rem;
}

.staff-title {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    row-gap: .5rem;
}

.staff-info {
    width: calc(100% - 8.5rem);
}

.staff-content {
    display: none;
    width: 100%;
}

.simple-btn {
    background-color: var(--primary);
    color: white;
    padding: .5rem 1.25rem;
    border-radius: 20px;
    cursor: pointer;
}

.staff-img-wrapper {
    width: 80px;
    aspect-ratio: 1/1;
}

.staff-img-wrapper.no-img {
    background-color: var(--light-grey);
    padding: .5rem;
}

.staff-img {
    width: 100%;
    aspect-ratio: 1/1;
}

.staff-info h4,
.staff-info p {
    margin-bottom: .5rem;
}

.staff-title > .flex-row {
    gap: 1rem;
    align-items: flex-start;
}

.staff-contact {
    gap: 1rem;
}

.staff-content {
    margin: 1rem 0;
}

@media (min-width: 48em) {
    .staff-img-wrapper {
        width: 7.5rem;
    }
}

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

.image-links {
    margin-bottom: 2rem;
}

.image-links-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.image-links-list a {
    display: block;
}

.image-links-item img {
    width: 8rem;
}

.g-signin {
    display: block;
    text-align: center;
}