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

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

.clearfix:after {
    clear: both;
}

.editor-list-ul {
    list-style: disc;
}

.editor-list-ul li {
    margin-bottom: 10px;
    margin-left: 20px;
}

.editor-list-ul li::marker {
    color: var(--primary-brand);
    /* Change only the bullet color */
}

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

.aria-hide {
    display: none;
}

/* Variables */
:root {
    --primary-brand: #8224E4;
    --secondary-brand: #03BCD7;
    --accent-1: #F463F7;
    --dark-font-color: #7B7B7B;
    --light-font-color: #FCFCFC;
    --light-grey: #f4f4f4;
    --dark-grey: #7B7B7B;
    --pink: #F463F7;
    --purple: #8224E4;
    --blue: #03BCD7;
    --blurple: #191970;
    --black: #1E1E1E;
    --navy: #323293;
    --dark-purple: #4F2E5F;
    --gold: #F6AE2D;

    --body-font: "poppins", sans-serif;
    --heading-font: "arboria", sans-serif;

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

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

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

.bg-grey {
    background: #8f8c8c;
}

.bg-lightgrey {
    background: #F4F4F4;
}

/* 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-weight: 400;
    font-style: normal;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--dark-font-color);
}

body.school {
    color: var(--black);
}

h1,
.h1 {
    font-family: var(--heading-font);
    font-weight: var(--font-medium);
    font-style: normal;
    font-size: 3.25rem;
    margin-top: 1.3125rem;
    margin-bottom: 2.625rem;
}

h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: var(--heading-font);
    font-weight: var(--font-medium);
    font-style: normal;
}

.page-template h1,
.page-template h2,
.page-template h3,
.page-template h4,
.page-template h5,
.page-template h6 {
    font-family: var(--heading-font);
}

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

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

h4,
.h4 {
    font-size: 1rem;
    margin-top: 1.3125rem;
    margin-bottom: 0rem;
}

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

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

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

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

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

main {
    margin-bottom: 2rem;
}

.home main {
    margin-bottom: 0;
}

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

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

.image img {
    margin: auto;
    display: block;
}

a {
    text-decoration: none;
}

blockquote {
    border-left: 5px solid var(--accent-1);
    padding: 1.5rem;
    margin: 0 0 1.5rem;
    position: relative;
    font-style: italic;
    font-weight: 300;
    font-size: 1.1rem;
}

/*blockquote {
	background: var(--light-grey);
	border-radius: 2px;
	border-left: 0.5rem solid var(--secondary-brand);
	padding: 1rem;
	margin: 0 0 1rem 0;	
}*/

blockquote::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f10e";
    position: absolute;
    top: 50%;
    left: -1.25rem;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-style: normal;
    color: var(--accent-1);
    background: var(--light-font-color);
    padding: .5rem;
}

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

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

.no-padding {
    padding: 0;
}

.no-margin {
    margin: 0;
}

.mt0 {
    margin-top: 0;
}

.mb0 {
    margin-bottom: 0;
}

.margin-top-bottom {
    margin: 1rem 0;
}

.margin-left-right {
    margin-left: 1rem;
    margin-right: 1rem;
}

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

.align-center {
    margin: auto;
    display: block;
    text-align: center;
}

.align-right {
    margin-left: auto;
    display: block;
    text-align: right;
}

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

.flex-row>i {
    margin-bottom: 5px;
}

.flex-row.icon-text-row {
    column-gap: .5rem;
}

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

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

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

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

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

.page {
    padding: 2rem 0;
}

.content {
    width: 100%;
}

.swiper-container {
    position: relative;
}

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

.wrapper {
    display: block;
    width: 100%;
}

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

section {
    margin: 0 0 2.5rem;
}

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

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

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

@media all and (min-width: 75em) {
    .wrapper {
        display: flex;
        width: 100%;
    }

    section {
        margin: 0 0 2rem;
    }

    .district-body.home section {
        margin-bottom: 4.5rem;
    }

    blockquote {
        padding: 2rem
    }

    .search-result {
        flex-basis: calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }

    .col-lg-2 {
        flex-basis: calc(1/6 * 100%);
        max-width: calc(1/6 * 100%);
    }

}

/* Container */
@media only screen and (min-width: 48em) {
    .container {
        width: 90%;
    }

    .content-container {
        padding: 0 5vw;
    }
}

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

a:hover,
a:focus {
    filter: brightness(90%)
}

.btn {
    padding: .75rem 1.5rem .65rem;
    margin-bottom: 30px;
    display: block;
    width: fit-content;
    /* min-width: 140px; */
    transition: all .3s ease-in-out;
    border-radius: 25px;
    color: var(--light-font-color);
    text-align: center;
    font-weight: var(--font-medium);
}

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

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

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

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

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

textarea {
    min-height: 200px;
}

input[type="submit"] {
    font-weight: var(--font-semibold);
    background: var(--pink);
    color: white;
    border-radius: 50px;
    border: 0;
    cursor: pointer;
    padding: .75rem 1.5rem .5rem;
    -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 {
    font-weight: var(--font-bold);
    margin-top: 1rem;
    display: block;
    width: fit-content;
    color: var(--light-font-color);
    background: var(--accent-1);
}

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

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

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

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

.schools-select button {
    background-color: var(--accent-1);
    border: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    padding: .75rem 1.5rem .65rem;
    margin-bottom: 0;
}

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

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

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

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

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

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

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

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


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

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

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

.table img {
    width: 100%;
}

.table table,
.editor-table {
    border-radius: 10px;
    border: 2px solid #F4F4F4;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05);
    border-collapse: separate;
    border-spacing: 0;
}

.table table th,
.editor-table th,
.editor-table th:nth-child(even) {
    color: var(--dark-purple);
    background-color: #f5f5f5;
    font-weight: var(--font-medium);
    text-align: left;
    font-size: 1.1rem;
}

.table table p:last-of-type,
.editor-table p:last-of-type {
    margin-bottom: 0;
}

.page-content .table table td,
.editor-table td {
    border-right: 2px solid #F4F4F4 !important;
}

.page-content .document-table a {
    color: var(--purple);
    text-decoration: none;
}

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

.page-title {
    position: relative;
    color: white;
}

.title-bg {
    background-color: #191970;
    padding: 3rem 0;
    position: relative;
}

.title-bg h1 {
    text-align: center;
}

.title-bg.no-bg-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(/images/b5004991-4118-4043-900e-a59918bbb43d);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.page-title-text {
    width: fit-content;
    margin: auto;
    position: relative;
    text-align: center;
}

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

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

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

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

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

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

.staff-content {
    justify-content: center;
    background: var(--navy);
    width: fit-content;
    margin: .5rem auto 0;
    padding: .5rem 1.5rem;
    border-radius: 30px;
}

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

.editor-nested-listitem:before,
.editor-nested-listitem:after {
    display: none;
}

.editor-list-ol {
    list-style-type: none;
    counter-reset: item;
    margin: 0;
    padding: 0;
}

.editor-list-ol>.editor-listitem:not(.editor-nested-listitem) {
    display: table;
    counter-increment: item;
    margin-bottom: 0.6em;
}

.editor-list-ol>.editor-listitem:not(.editor-nested-listitem):before {
    content: counters(item, '.') '. ';
    display: table-cell;
    padding-right: 0.6em;
}

.editor-listitem:not(.editor-nested-listitem) .editor-list-ol>.editor-listitem:not(.editor-nested-listitem) {
    margin: 0;
}

.editor-listitem:not(.editor-nested-listitem) .editor-list-ol>.editor-listitem:not(.editor-nested-listitem):before {
    content: counters(item, '.') ' ';
}

.editor-list-ol {
    padding: 0;
    margin: 0;
}

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

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

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

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


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

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

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

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

    .side-container {
        padding: 0 5% 0 0;
    }

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

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

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

    .title-bg.no-bg-image {
        width: 90%;
        margin-left: auto;
        border-radius: 1000px 0 0 1000px;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .title-bg.no-bg-image.has-sidenav {
        border-radius: unset;
        width: 100%;
    }

    .title-bg.no-bg-image .page-title-text {
        width: 90vw;
        margin-left: -5vw;
        max-width: unset;
    }

    .title-bg.no-bg-image.has-sidenav .page-title-text {
        width: 100%;
        margin: 0 auto;
    }

    .title-bg.no-bg-image::before {
        background-size: 150%;
    }
}

/* Side Navigation */
.sidebar-wrapper {
    font-weight: var(--font-semibold);
    background: #F2E9FC;
    color: var(--dark-font-color);
    padding: 1rem;
    margin: 0 auto;
    border-radius: 20px;
}

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

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

.cookie a {
    display: flex;
    align-items: center;
    color: #4F2E5F;
    font-weight: var(--font-medium);
}

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

.secondary-nav-item.active {
    font-size: 1rem;
    border-left: 1.5px solid var(--purple);
    padding-left: .5rem;
}

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

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

.nav-secondary-ul {
    margin: 1rem 0 0 .5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.current-page {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #4F2E5F;
}

.sidebar-col img {
    display: none;
    margin-top: -1.5rem;
    width: 31vw;
    max-width: unset;
}

@media (min-width: 62em) {
    .sidebar-wrapper {
        position: relative;
    }

    .sidebar-col {
        padding-left: 0;
    }

    .sidebar-col img {
        display: block;
    }

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

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

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

.change-font-size span {
    color: var(--black);
    font-weight: var(--font-semibold);
}

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

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

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

    .current-page {
        display: none;
    }

    .change-font-size {
        margin-top: 0;
        margin-left: auto;
    }
}


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

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

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

.collapsible-box-title {
    background-color: var(--light-grey);
    border-radius: 10px;
    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);
    border-radius: 10px;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    margin: 0;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.editor details summary h3 {
    margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.page-content .landing-link {
    padding: 3rem 1.5rem;
    position: relative;
    border-radius: 20px;
    text-decoration: none;
    background-color: var(--light-grey);
    color: var(--black);
    height: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: .5rem;
    text-align: center;
    min-height: 150px;
}

.page-content-inner .landing-link h3 {
    width: 90%;
    margin: auto;
    transition: transform 0.3s ease;
    color: var(--black);
    font-size: 1.25rem;
}

.circle-icon {
    border-radius: 50%;
    background-color: var(--pink);
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.landing-icon {
    width: 100%;
    opacity: 0;
    transition: all .3s ease-in-out;
    height: 0;
}

.landing-content {
    transition: all .3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.landing-link:hover,
.landing-link:focus {
    background-color: #FEEFFE;
    color: var(--pink);
    filter: none;
}

.landing-link:hover .landing-content,
.landing-link:focus .landing-content {
    transform: translateY(-15px);
}


.landing-link:hover .landing-icon,
.landing-link:focus .landing-icon {
    opacity: 1;
}

.landing-link:hover h3,
.landing-link:focus h3 {
    color: var(--pink);
}

/* Better Landing Page */
.page-content .better-landing-link {
    display: flex;
    padding: 0;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: space-between;
}

.page-content-inner .better-landing-link h3 {
    width: 80%;
    transition: all .3s ease;
    text-align: left;
}

.better-landing-content {
    flex-grow: 1;
    transition: all .35s ease;
}

.nav-thumbnail {
    width: 200px;
    transition: all .35s ease;
}

.nav-thumbnail img {
    border-radius: 10px;
    aspect-ratio: 1/1;
    height: 100%;
    width: 100%;
    transition: transform 0.4s ease;
}

.better-landing-icon {
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    height: 0;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
}



/* .better-landing-link-image:hover .nav-thumbnail { */
/* order: -1;
    transform: translateX(-1px); */
/* transform: translateX(-100%); */
/* } */

/* .better-landing-link-image:hover .better-landing-content,
.better-landing-link-image:focus .better-landing-content {
    transform: translateX(100%);
} */

.better-landing-link:hover .better-landing-icon,
.better-landing-link:focus .better-landing-icon {
    opacity: 1;
    height: auto;
}

/* News Archive */
/* Home News */
.home-news-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.home-news-item {
    display: block;
    border-radius: 10px;
    aspect-ratio: 425 / 500;
    padding: 1.5rem;
    color: #FCFCFC;
    position: relative;
    background: var(--dark-purple);
}

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

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

.home-news-item .news-link {
    color: var(--blue);
    font-weight: var(--font-semibold);
}

.home-news-item .news-inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    position: relative;
    transition: justify-content 0.3s ease;
}

.home .home-news-item:hover .news-inner {
    justify-content: flex-start;
}

.news-content {
    transition: all 0.3s ease;
    z-index: 2;
}

.news-excerpt {
    margin-top: 1rem;
    line-height: 1.6;
    color: var(--light-grey);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.home-news {
    padding: 0 1rem;
    position: relative;
    z-index: 3;
}

.home-all-news {
    background-color: rgba(244, 99, 247, 0.1);
    color: var(--pink);
    font-weight: var(--font-semibold);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.home-all-news i {
    color: var(--light-font-color);
    background: var(--pink);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home-all-news .flex-row {
    justify-content: center;
    gap: .75rem;
}

.news-tag {
    position: relative;
    z-index: 10;
    border-radius: 100px;
    background-color: var(--blurple);
    padding: .5rem .75rem .4rem;
    width: fit-content;
    font-size: .8rem;
    margin-bottom: .5rem;
    text-transform: capitalize;
}

.news-hover {
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
    pointer-events: none;
    height: 0;
    margin: 0;
}

.home .home-news-item:hover .news-hover {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    height: auto;
}

.home .home-news-item:hover .news-link {
    margin-top: 2rem;
}

.home .home-news-item:hover .news-excerpt {
    margin-top: 1rem;
}

.home .home-news-item:hover .news-tag {
    display: none;
}

.home-news-item:not(.home-all-news):after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 100%);
    transition: background 0.3s ease;
    border-radius: 10px;
}

.home .home-news-item:not(.home-all-news):hover::after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.60) 100%);
}


.home-news-item.no-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(/images/b5004991-4118-4043-900e-a59918bbb43d);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.home-news-item.no-img {
    background-color: var(--blue);
}

.news-archive-wrapper .home-news-item {
    width: 100%;
    color: var(--light-font-color);
    text-decoration: none;
    aspect-ratio: 1/1;
}

.news-archive-wrapper {
    row-gap: 1rem;
}

/* Alerts */

.banner-alert-wrapper {
    padding: 1rem;
    color: #1E1E1E;
    background-color: #FDEFD5;
    font-size: 1rem;
    border-bottom: none;
}

.modal-content {
    background-color: #FDEFD5;
    color: #1E1E1E;
    margin: 15% auto;
    padding: 0;
    border: none;
    border-radius: 20px;
}

#popup-container .popupContent {
    padding: 10px 30px;
}

#popup-container .popupImage img {
    height: 100%;
    border-radius: 20px 20px 0 0;
}

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


@media (min-width: 48em) {
    #popup-container .popupContent {
        padding: 0px 50px 0px 10px;
    }

    #popup-container .popupImage img {
        border-radius: 20px 0 0 20px;
    }

    #popup-container {
        text-align: left;
    }
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

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

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

.modal-trigger {
    cursor: pointer;
}

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

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

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

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

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

.form-close {
    color: white;
}

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

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

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

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

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


.modal-info .input-field input[type="text"].search-box {
    background-color: white;
    border-radius: 10px;
    padding: .75rem 1rem .6rem;
}

.search-modal label {
    display: none;
}

.search-api-form {
    position: relative;
    margin-bottom: 0;
}

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

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

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

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

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }
}

/* Subpage with CTA */
.page-content-inner h2,
.page-content-inner h3,
.page-content-inner h4,
.page-content-inner h5,
.page-content-inner h6 {
    color: var(--dark-purple);
}

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

.cta-box {
    border-radius: 10px;
    width: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white !important;
    aspect-ratio: 16/9;
    text-decoration: none !important;
}

.cta-box h3 {
    color: white;
}

.cta-box .btn {
    margin-bottom: 0;
    text-decoration: none;
}

.page-cta {
    position: relative;
}

.page-cta-intro h2 {
    margin-bottom: 0;
}

.page-cta-intro p {
    margin-top: .5rem;
    margin-bottom: 0;
}

.page-cta-intro {
    margin-bottom: 1.5rem;
}

.page-links .row {
    row-gap: 1rem;
}

.page-content .link-box {
    text-decoration: none !important;
    color: var(--black);
}

.link-box-content {
    background-color: var(--light-grey);
    border-radius: 10px;
    padding: 1rem;
    height: 100%;
}

.link-box-content h4 {
    color: var(--black);
    margin-bottom: 0;
    font-weight: var(--font-semibold);
}

.link-box-content i {
    font-size: 1.5rem;
}

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

    .cta-box:last-of-type {
        width: 40%;
        aspect-ratio: unset;
    }

    .cta-box:first-of-type {
        flex-grow: 1;
        aspect-ratio: 735/303;
    }

    .page-cta {
        margin-top: 2rem;
    }

    .page-cta::before {
        content: '';
        border-radius: 0 200px 0 0;
        opacity: 0.6;
        background: #F4F4F4;
        position: absolute;
        width: 100vw;
        height: 250px;
        z-index: -1;
        top: -2rem;
        right: calc(-5vw + 2px);
    }

    .link-box-content {
        padding: 1.5rem;
    }
}

/* Contact Page */
.contact-template .sidebar-wrapper {
    background-color: #F4F4F4;
}

.contact-template .contact-col {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    font-weight: var(--font-medium);
}

.contact-template .contact-col a {
    color: var(--pink);
}

.input-buttons,
input[type="submit"].contact-form-button {
    border-radius: 100px;
}

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

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

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

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

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

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

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

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

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

.tagify {
    border: none;
    background: rgba(244, 244, 244, 0.80);
    border-radius: 10px;
}

.tagify__input {
    min-height: unset;
    padding: 8px 12px 5px;
    margin: 0;
    color: #727272;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

}


/* News Archive with filters */

.filter-sidebar-wrapper {
    background-color: #F4F4F4;
    /* margin-top: 2rem; */
    margin-bottom: 2rem;
}

.filter-sidebar-wrapper h2,
.filter-sidebar-wrapper h3 {
    color: var(--black);
}

.filter-sidebar-wrapper h2 {
    margin-bottom: 1rem;
}

.filter-sidebar-wrapper .title-wrapper {
    margin-bottom: .5rem;
    align-items: baseline;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.filter-date {
    margin-top: 1.5rem;
}

.ui-datepicker-header,
#ui-datepicker-div {
    background-color: white;
}

#ui-datepicker-div {
    border: 1px solid #c5c5c5;
}

#reset,
#reset-date {
    cursor: pointer;
    color: var(--secondary-brand);
    display: block;
    width: fit-content;
    font-weight: var(--font-medium);
}

.date-picker {
    margin-bottom: 0;
}

.date-picker input[type="text"] {
    border-radius: 10px;
    border: none;
    margin: .5rem 0;
    padding: 1rem 1rem .8rem;
    min-width: unset;
}

.date-picker .date-input {
    position: relative;
}

.date-picker .date-input button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    appearance: none;
    border: none;
    background: none;
    color: #B9B9B9;
}

.date-picker .date-input button::after {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font: var(--fa-font-solid);
    content: "\f073";
}

#date-apply {
    border: none;
    margin-top: 1rem;
    background-color: var(--blue);
    cursor: pointer;
}

#date-apply::before,
#date-apply::after {
    content: none
}

#date-apply:hover,
#date-apply:focus {
    filter: brightness(1.1);
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.pagination-controls i {
    cursor: pointer;
    color: var(--secondary-brand);
    font-weight: bold;
}


#search-news {
    border: none;
    border-radius: 10px;
    padding: 1rem 1rem .8rem;
}

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

.nav-app {
    width: 50px;
    height: 50px;
    background-color: rgba(50, 50, 147, 0.20);
    color: var(--navy);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.menu-app {
    background-color: var(--navy);
    color: var(--light-font-color);
}

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

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

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

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

.all-links {
    color: var(--purple);
    margin-bottom: -.25rem;
}

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

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


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

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

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

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

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

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

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

.service-icon img {
    width: 2.5rem;
    object-fit: contain;
}

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

.app-contact {
    margin: 0 1.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.app-wrapper {
    padding-bottom: 1rem;
}

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

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

.cm-edit span {
    margin-bottom: -.25rem;
}

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

.signin-buttons {
    gap: 1rem;
    flex-wrap: wrap;
}

@media (min-width: 75em) {
    .mobile-main-nav {
        display: none;
    }

    .collapsible-menu {
        margin: 0;
        position: absolute;
        top: 0;
        left: auto;
        right: 0;
        z-index: 100;
        width: 26rem;
        height: fit-content;
        max-height: 1200px;
        min-height: fit-content;
        border-radius: 0 0 0 20px;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        background: white;
        padding: 1.5rem 0 1.5rem 1.5rem;
        color: var(--black);
        overflow: auto;
    }
}


/* Mobile navigation */
.menu-close-icon {
    margin-left: auto;
    width: fit-content;
    color: var(--black);
    font-size: 1.5rem;
    margin-right: 1.5rem;
    cursor: pointer;
}

.mobile-main-nav a {
    color: var(--black);
}

.mobile-main-nav .nav-link {
    padding: 1rem 1.5rem 1rem 0;
    justify-content: space-between;
}

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

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

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

/* Home News */
.home-news h2 {
    color: var(--dark-purple);
}

@media (max-width: 991px) {
    .home-news-item.home-all-news {
        aspect-ratio: 3 / 1;
    }

    .home-news {
        margin-bottom: 1rem;
    }
}

@media (min-width: 48em) and (max-width: 75em) {
    .home-news-item {
        padding: 1rem;
    }

    .home-news-item h3 {
        font-size: 1.2rem;
    }
}

@media (min-width: 48em) {
    .home-news-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .home-news {
        padding-left: 5vw;
        padding-right: 0;
    }

    .home-all-news {
        border-radius: 10px 0 0 10px;
    }

}

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

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

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

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

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

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

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

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

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

/* Staff Directory */
.staff-directory .input-field {
    margin-bottom: 2rem;
}

.staff-item img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 5px;
}

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

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

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

.search-row {
    position: relative;
}

.search-row label {
    display: none;
}

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

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

.input-field input[type="text"].search-box,
#search-jobs {
    width: 100%;
    box-sizing: border-box;
    border: solid 1px #e4e4e4;
    transition: 0.5s;
    padding: .75rem;
    border-radius: 10px;
    padding-left: 2rem;
    background: var(--medium-grey);
}


.contact-form-element h1 {
    margin-bottom: .5rem;
}

@media (min-width: 99em) {
    .staff-item {
        flex-basis: calc(100%/6);
        max-width: calc(100%/6);
    }
}

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

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

.bus-container-route {
    height: 105px;
    margin: 1vh;
    padding: 1vw;
    background: #F5F5F5;
}

h5.bus-route-name {
    font-size: 1.1rem;
    font-weight: 500;
}

.bus-on-time {
    border-left: 10px solid #7BBE2E;
}

.bus-on-time h5 {
    padding-top: 6px;
}

.status-on-time {
    color: #7BBE2E !important;
    font-weight: 600;
    font-size: 1.2rem;
    padding-top: 6px;
}

.bus-cancelled {
    border-left: 10px solid #E05B2A;
}

.status-cancelled {
    color: #E05B2A !important;
    font-weight: 600;
    font-size: 1.2rem;
}

.bus-delayed {
    border-left: 10px solid #F5B61F;
}

.status-delayed {
    color: #F5B61F !important;
    font-weight: 600;
    font-size: 1.2rem;
}

.bus-grid-row {
    display: grid;
    grid-template-columns: 20% 20% 5% 20% 20% 15%
}

.last-updated {
    font-size: 1rem;
}

.tooltip {
    display: flex;
    align-items: center;
}

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

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

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

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

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

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

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

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

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


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


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

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

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

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

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


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

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

@media (max-width: 62em) {
    .flex-row-between {
        flex-wrap: wrap;
    }

    .bus-container-route {
        height: auto;
        width: 100%;
    }

    .bus-container-route h5 p {
        font-size: 0.9rem !important;
    }

    .bus-route-name {
        font-size: 1rem;
    }

    .last-updated {
        font-size: 1rem;
    }

    .bus-pad-side {
        padding-left: 10px;
        padding-right: 10px;
    }

    #transportation-column-container {
        display: flex;
        flex-direction: column;
    }
}

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

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

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: sticky;
    z-index: 100;
    top: 0;
    background: white;
}

header.utility .main-nav {
    margin-left: auto;
}

header.utility {
    gap: 1rem;
}

header .btn {
    margin: 0;
}

.logo-wrapper {
    gap: 1rem;
}

.site-logo {
    /* display: block; */
    padding: .5rem 0;
}

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

.site-name {
    font-weight: var(--font-semibold);
    font-size: 1.1rem;
    max-width: 12rem;
    line-height: 1.2;
    color: var(--blurple);
}

.main-nav>ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0;
    font-weight: var(--font-medium);
}

.main-nav>ul a {
    color: #1E1E1E;
}

.nav-link {
    padding: 29px .5rem;
    border-top: 2px solid var(--light-font-color);
    transition: all .3s ease-in-out;
}

.utility .nav-app {
    border-radius: 5px;
}

.add-icon {
    color: var(--secondary-brand);
}

/* Mega Menu */
.mega-menu {
    background-color: var(--blurple);
    color: white;
    position: absolute;
    z-index: 100;
    left: 0;
    right: 0;
    padding: 2rem 0;
}

.mega-menu ul a {
    color: white;
}

.sub-li.nav-group>a {
    color: var(--secondary-brand);
    font-size: .8rem;
    font-weight: var(--font-bold);
    display: block;
    margin-bottom: .5rem;
}

.nav-cta {
    border-radius: 20px;
    padding: 1.5rem;
    aspect-ratio: 300 / 376;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

address {
    font-style: normal;
}

@media (max-width: 1199px) {
    .main-header {
        padding-top: .5rem;
        padding-bottom: .5rem;
    }
}

@media (min-width: 1200px) and (max-width: 1440px) {
    .main-header {
        padding: 0 2rem;
    }
}

@media (min-width: 62em) {
    .mega-menu {
        transform: scaleY(0);
        transition: all .3s ease;
        transform-origin: top;
        opacity: 0;
    }

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

    .mega-menu>.container {
        display: flex;
        gap: 1rem;
    }

    .main-dropdown-menu {
        flex-grow: 1;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }

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

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

    .nav-cta {
        width: 20%;
    }
}

/* DCT - Photo Gallery */
.gallery-item {
    margin-bottom: 1rem;
}

.gallery-item img {
    min-height: unset;
    aspect-ratio: 4/3;
    width: 100%;
}

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

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

    .formatted-content .img-box-wrapper {
        border-radius: 40px;
    }
}

.content-boxes .col-xs-12 {
    margin: 0.5rem 0;
}

.content-box {
    background: var(--light-grey);
    padding: 1rem;
    border-left: 5px solid var(--primary-brand);
    padding-left: 1.5rem;
    display: block;
    margin-bottom: 10px;
}

.content-box h3 {
    margin-top: 0;
    color: #4f2f5f;
}

.content-box p {
    color: var(--dark-font-color);
    margin-bottom: 0.5rem;
}

.content-box img {
    width: 100%;
    aspect-ratio: 16/9;
    margin-bottom: 1rem;
}

.page-content .content-box-link {
    text-decoration: none;
}

/* Career Page */
.colour-block {
    background-color: #F2E9FC;
    border-radius: 10px;
    padding: 1rem;
    color: var(--black);
    margin-bottom: 2rem;
}

.colour-block > .editor > :first-child {
    margin-top: 0;
}
.job-post {
    background: var(--light-grey);
    display: block;
    margin-bottom: 1rem;
    padding: 1rem;
}

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

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

#job-list #reset {
    display: block;
    width: fit-content;
    margin: 1rem 0 0;
    border: none;
    appearance: none;
    background: none;
}

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

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

#search-jobs {
    width: 100%;
    height: 50px;
    box-sizing: border-box;
    border: 2px solid #E2E2E2;
    transition: 0.5s;
    padding: 0.75rem 1rem;
    border-radius: 5px;
}

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

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

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

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

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

    .colour-block {
        padding: 1.5rem;
    }
}

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

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

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

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

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

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

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

/* Home - Carousel */
.banner {
    padding: 2rem 0 0;
    background-color: rgba(244, 244, 244, 0.6);
    border-radius: 0 0 0 200px;
    margin-bottom: 0 !important;
}

.banner .container {
    position: relative;
    z-index: 2;
}

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

.banner-title {
    color: #4F2E5F;
    line-height: 1.1;
    font-weight: var(--font-bold);
    margin-bottom: 1.5rem;
}

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

.banner-content p {
    font-weight: var(--font-medium);
    font-size: 1.1rem;
}

.banner.carousel {
    padding-top: 0;
}

.banner-buttons {
    margin-left: auto;
    width: fit-content;
}

.banner.carousel .banner-content {
    padding: 5rem 1.5rem 0;
    height: 100%;
    margin: 0;
}

/* Home - Quicklinks */
.quicklink-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quicklinks {
    background-color: var(--blurple);
    width: fit-content;
    border-radius: 100px 0 0 100px;
    padding: 2rem 1rem 1.75rem;
    margin-left: auto;
}

.quicklinks a {
    color: var(--light-font-color);
}

.quicklink-item {
    gap: 1rem;
}

.quicklink-item i {
    color: var(--blue);
}


/* Swiper navigation */
.swiper-button-next.banner-button-next,
.swiper-button-prev.banner-button-prev {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: var(--light-font-color);
    transform: unset;
    bottom: 2rem;
    background: var(--navy);
    top: 2.5rem;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 0.6;
}

.swiper-button-next.banner-button-next {
    left: unset;
    right: 2rem;
    bottom: 5rem
}

.swiper-button-prev.banner-button-prev {
    left: unset;
    right: calc(2rem + 60px);
    bottom: 5rem
}

/* Pagination */
.swiper-pagination-bullets.swiper-pagination-horizontal.banner-pagination,
.swiper-pagination-bullets.swiper-pagination-horizontal.highlight-pagination {
    top: 2rem;
    left: 5vw;
    right: unset;
    width: fit-content;
}

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

.banner-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--navy);
    opacity: 0.6;
}


.banner-pagination .swiper-pagination-bullet-active {
    background: var(--navy);
    width: 40px;
    border-radius: 100px;
    opacity: 1;
}

.district-body .spotlight {
    margin-top: 2rem;
}

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

    .banner.carousel .banner-img {
        margin: 2rem 0 0;
        height: 100%;
    }

    .banner-slide img {
        height: 100%;
    }

    .banner-swiper .swiper-wrapper {
        align-items: stretch !important;
    }

    .banner-swiper .swiper-slide {
        height: auto !important;
        display: flex !important;
    }

    .banner-slide .row {
        height: 100%;
        display: flex;
    }

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

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

    .banner-img {
        margin: 2rem -2rem 0;
    }

    .quicklinks {
        width: 100%;
        border-radius: 0;
        margin-bottom: 2rem;
    }

    .quicklink-list {
        justify-content: center;
        align-items: center;
    }
}

@media all and (min-width: 75rem) {
    .banner {
        padding: 3rem 0 0;
        position: relative;
    }

    .banner.single-slide .banner-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        margin-top: 0;
        padding: 0 0 10% !important;
    }

    .banner-slide {
        height: auto;
    }

    .banner-slide>.row {
        height: 100%;
    }

    .banner-title {
        max-width: 780px;
        font-size: 4rem;
        line-height: 1.05;
    }

    .banner-img {
        margin-right: calc(-5vw - 1.9rem);
    }

    .banner-content {
        margin-top: 6%;
    }

    .banner-lines {
        position: absolute;
        top: 12%;
        left: -2rem;
        width: 40%;
        height: auto;
        opacity: 0.8;
    }

    .banner-dots {
        display: block;
    }

    .banner.carousel .banner-img {
        margin-right: 0;
        height: 100%;
    }

    .banner.carousel .banner-img img {
        border-radius: 250px 0 0 0;
        height: 100%;
    }

    .banner-content-col {
        padding-left: calc(5vw + 2rem);
        position: relative;
    }

    .banner.carousel .banner-content {
        padding: 6rem 0 5rem;
    }

    .banner-right {
        flex: 0 0 30%;
    }

    .quicklinks {
        margin-top: -3.25rem;
        z-index: 3;
        position: relative;
        width: 65vw;
        padding: 2.5rem 1rem;
    }

    .quicklink-list {
        flex-direction: row;
        gap: 3rem;
        justify-content: center;
    }

    .quicklink-item>div {
        padding-right: 1.5rem;
    }

    .quicklink-item::after {
        content: "";
        width: 2px;
        height: 90%;
        background-color: rgba(244, 244, 244, 0.6);
    }

    .quicklink-item:last-of-type::after {
        content: none;
    }

    .swiper-button-next.banner-button-next {
        right: calc(50vw + 2rem);
    }

    .swiper-button-prev.banner-button-prev {
        right: calc(50vw + 2rem + 60px);
    }

    .swiper-button-next.banner-button-next,
    .swiper-button-prev.banner-button-prev {
        top: unset;
    }

    .swiper-pagination-bullets.swiper-pagination-horizontal.banner-pagination {
        left: calc(5vw + 1rem);
    }

    .district-body .spotlight {
        margin-top: 3.5rem;
    }
}