*,
*: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: #3A6EA6;
    --secondary: #687501;
    --accent-1: #F0B348;
    --dark-font-color: #2A2A2A;
    --light-font-color: #fff;
    --dark-grey: #434345;
    --light-grey: #EFEFEF;

    --body-font: "Fustat", sans-serif;
    --heading-font: "Asap", 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: white;
}

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

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

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

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


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

.page-content a {
    color: var(--primary);
}

.editor a {
    text-decoration: underline;
}

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 calc(3% + 1rem);
        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;
}

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

.search-button {
    display: none;
}

.input-field input[type="text"].search-box {
    padding: .75rem 1rem;
    margin-bottom: 0;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    width: 100%;
    color: white;
    border-radius: 20px;
}

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

.search-form {
    position: relative;
}

.search-form .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;
    left: .5rem;
    color: white;
    font-size: 24px;
}

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

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

.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;
    border-radius: 20px;
}


/* 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-semibold);
    padding: .55rem 1rem;
}

.btn-primary {
    color: var(--dark-font-color)!important;
    background-color: var(--accent-1);
    border-radius: 50px;
}

.btn-secondary {
    color: white!important;
    background-color: var(--primary);
    border-radius: 50px;
}

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

@media (min-width: 75em) {
    .btn {
        padding: .65rem 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 * {
    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);
    border-radius: 15px;
}

#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: .75rem;
    border-radius: 15px;
}

textarea {
    min-height: 200px;
}

input[type="submit"] {
    background: var(--primary);
    color: white!important;
    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;
}

select {
    width: 100%;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-image: linear-gradient(45deg, transparent 50%, var(--dark-font-color) 50%), linear-gradient(135deg, var(--dark-font-color) 50%, transparent 50%);
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
    background-color: white;
    appearance: none;
    font-family: var(--body-font);
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
    padding: 0.75rem;
    border-radius: 15px;
    border: solid 1px #e4e4e4;
}

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

.contact-form-button {
    font-family: var(--body-font);
    border-radius: 15px;
}

.contact-form-page {
    margin-top: 2rem;
}

@media(min-width: 62em) {
    .contact-form-page {
        max-width: 70%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* 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);
    text-align: left;
}

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

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

.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-video {
    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-video iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute !important;
}

/* Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12.5px);
    margin: 1rem 3% 0;
    padding: 0 1rem;
    position: relative;
    z-index: 100;
}

.site-logo {
    width: 100%;
    padding: .5rem 0;
    margin-left: 1rem;
}

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

.main-nav a:hover,
.main-nav a:focus {
    color: var(--primary);
}

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

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

.subpage .main-header {
    background: rgba(239, 239, 239, 0.3);
    margin: 1rem 3%;
}
.main-nav-wrapper {
    gap: 2rem;
    padding-right: 1rem;
}

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

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

    .site-logo {
        width: 60px;
        margin-left: 0;
    }
}

@media (min-width:75em) {
    .main-nav-ul {
        display: flex;
        flex-wrap: wrap;
        column-gap: 1.5rem;
        margin-bottom: 0;
        justify-content: flex-end;
    }

    .site-logo {
        width: auto;
        max-height: 80px;
        height: auto;
    }

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

    .add-icon {
        font-size: .75rem;
    }

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

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

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

.collapsible-menu a {
    color: white;
}

.collapsible-menu a:hover, .collapsible-menu a:focus {
    color: var(--primary);
}

.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.5rem;
    cursor: pointer;
}

.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;
    height: 100%;
    display: block;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.service-icon {
    font-size: 1.5rem;
    padding: 1rem;
    height: 100%;
}

.service-label {
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: var(--font-semibold);
    margin-top: 10px;
}

.service-slide {
    height: auto;
}

.modal-info .service-icon {
    background: rgb(180 180 180 / 30%);
    padding: 2rem 1rem 1.5rem;
    border-radius: 10px;
}

.modal-info .service-label {
    margin-top: .5rem;
}

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

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

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

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

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

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


@media (min-width: 75em) {
    .collapsible-menu {
        width: 35%;
        left: auto;
        right: 0;
        max-width: 31rem;
        border-radius: 0 0 0 20px;
    }

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

    .nav-app {
        font-size: 1.1rem;
    }
}

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

.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);
    border-radius: 20px;
}

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

.modal-trigger {
    cursor: pointer;
    transition: all .3s ease-in-out;
}

/* .modal-trigger:hover,
.modal-trigger:focus {
    color: var(--primary);
} */

@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% - 1rem) / 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%;
        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 {
    background-image: url('/images/0126f24b-945e-4620-b19f-8583279d543a');
    background-repeat: no-repeat;
    background-size: cover;
    font-weight: var(--font-semibold);
    position: relative;
    padding-top: 5%;
}

footer::after {
    content: "";
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.footer-content {
    position: relative;
    z-index: 10;
}

footer .row {
    row-gap: 2rem;
}

footer h2 {
    max-width: 22rem;
    font-size: 1.2rem;
    line-height: 1.3;
}

.erase-logo {
    max-width: 7rem;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-slogan, .footer-nav {
    font-weight: var(--font-bold);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0;
}

address {
    font-style: normal;
    margin-bottom: 1rem;
}

.footer-contact-info {
    line-height: 2;
}

.copyright {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12.5px);
    font-weight: var(--font-medium);
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-top: 2rem;
}

footer a:hover,
footer a:focus {
    color: var(--primary);
}

@media (max-width: 991px) {
    footer, footer * {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-contact-info {
        margin-bottom: 2rem;
    }

    .ie-link {
        margin-top: 1rem;
    }
}

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

    .footer-nav {
        margin-top: .5rem;
    }

    footer {
        padding-top: 10%;
    }
}

/* Home - Banner */
.swiper img {
    width: 100%;
}

.banner-swiper-1 .swiper-slide {
    width: 25%;
    height: 100%;
}

.banner-swiper-1 img {
    aspect-ratio: 350/230;
    border-radius: 10px;
}

.banner-swiper-2 img {
    aspect-ratio: 1920/942;
    width: 100%;
    max-height: 100vh;
}

.splide__slide img {
    aspect-ratio: 1920/942;
    width: 100%;
}

.banner-swiper-2 {
    position: relative;
}

.banner-content {
    position: absolute;
    color: white;
    z-index: 10;
    left: calc(3% + 1rem);
    top: 50%;
    transform: translateY(-50%);
}

.banner-credit {
    position: absolute;
    bottom: 2rem;
    left: calc(3% + 1rem);
    color: white;
    padding-left: 1rem;
    border-left: 2px solid var(--accent-1);
}

.banner-title {
    font-weight: var(--font-semibold);
}

.banner-section {
    margin-top: calc(-120px - 1rem);
    position: relative;
}

.swiper-pagination-bullets.swiper-pagination-horizontal.banner-pagination {
    width: 15rem;
    display: flex;
    align-items: center;
    position: static;
}

.banner-pagination .swiper-pagination-bullet {
    border-radius: 0;
    width: calc(15rem / 2);
    height: 4px;
    margin: 0!important;
    background: rgba(42, 42, 42, 0.3);
    opacity: 1;
}

.banner-pagination .swiper-pagination-bullet-active {
    background-color: var(--dark-font-color);
}

.banner-pagination .swiper-pagination-bullet:has(~.swiper-pagination-bullet-active) {
    background-color: var(--dark-font-color);
}

.banner-pagination-wrapper {
    padding-top: 2rem;
    width: fit-content;
    gap: 1rem;
    font-weight: var(--font-bold);
}

.custom-button-next, .custom-button-prev {
    position: static;
    transform: unset;
    margin: 0;
    font-size: 1.2rem;
}

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

.custom-button-prev {
    color: var(--dark-font-color);
}

.custom-button-next {
    color: var(--accent-1);
}

@media(max-width: 1199px) {
    .banner-pagination-wrapper, .banner-credit {
        display: none;
    }

    .banner-swiper-2 img {
        aspect-ratio: 320 / 462;
        max-height: 600px;
    }

    .banner-swiper-1 {
        margin: -5% 1.5rem 0;
    }

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

    .banner-content {
        width: calc(100% - 6% - 2rem);
    }
    
    .banner-section {
        margin-bottom: 2rem;
    }
}

@media (min-width: 48em) and (max-width: 1199px) {
    .banner-title {
        font-size: 2.5rem;
    }
}

@media(min-width: 75em) {
    .banner-title {
        font-size: 4rem;
        line-height: 1.3;
    }

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

    .banner-swiper-1 {
        margin-top: -9.5%;
        max-width: 55%;
        margin-right: calc(3% + 1rem);
    }

    .banner-swiper-1 .swiper-wrapper {
        margin-right: calc(3% + 1rem);
        width: fit-content;
    }
}

/* Home News */
.news-img {
    aspect-ratio: 16/9;
    background-color: var(--light-grey);
    border-radius: 10px;
}

.news-img img {
    aspect-ratio: 16/9;
    border-radius: 10px;
}

.news-img .news-logo {
    max-width: 40%;
    width: 40%;
    aspect-ratio: unset;
    object-fit: contain;
    margin: auto;
}

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

.news-swiper h3 {
    font-weight: var(--font-medium);
    margin: .5rem 0 .25rem;
}

.news-section {
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .news-section {
        padding-right: 0;
    }

    .news-section .title-wrapper {
        padding-right: calc(3% + 1rem);
    }
}

/* Home - CTA, Events, Land */
.cta-content {
    padding: 2rem 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    font-weight: var(--font-semibold);
    line-height: 2;
}

.cta-section img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.events-section {
    background-image: url('/images/68ce2d8b-b0de-4d36-85ba-280335654b0c');
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 15%;
    padding-bottom: 15%;
    margin-top: -12%;
}

.event-link {
    display: block;
    background-color: rgba(239, 239, 239, 0.6);
    padding: 1.5rem;
    height: 100%;
    text-align: center;
    border-radius: 10px;
}

.event-link h3 {
    font-size: 1.5rem;
    font-weight: var(--font-medium);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.event-date {
    color: var(--primary);
    font-family: var(--heading-font);
    border-bottom: 2px solid #ddd;
    padding-bottom: 1rem;
}

.month {
    font-weight: var(--font-medium);
    font-size: 1.5rem;
}

.day {
    font-weight: var(--font-semibold);
    font-size: 3rem;
}

.event-time {
    font-weight: var(--font-semibold);
}

.land-ack {
    margin-top: -12%;
}

.land-ack img {
    width: 100%;
    aspect-ratio: 1760/540;
}

.landack-content {
    position: relative;
    width: 90%;
    margin: -20% auto 0;
    padding: 2rem 1rem;
    border-radius: 10px;
}

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

.landack-content p {
    line-height: 2;
    font-weight: var(--font-semibold);
    font-size: 1.1rem;
}


@media (max-width: 991px) {
    .cta-section {
        padding-left: 3%;
        padding-right: 3%;
    }
    .cta-content {
        margin: -45% -1.5rem 0;
        padding-top: 45%;
        padding-bottom: 3rem;
        text-align: center;
    }

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

    .cta-img {
        position: relative;
    }

    .cta-2 .cta-img {
        order: -1;
    }

    .event-wrapper {
        flex-wrap: nowrap;
        overflow-x: auto;
        margin-right: calc(-1rem - 3%);
    }

    .event-wrapper .col-xs-12.col-md-3 {
        flex-basis: 80%;
        max-width: 80%;
        padding: 0 .5rem;
    }

    .events-section .btn-link {
        display: none;
    }

    .events-section h2 {
        text-align: center;
        margin: 1rem auto;
    }

    .events-section .btn-link.mobile-only {
        margin-top: 2rem;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }

    .land-ack {
        padding: 0;
    }

    .land-ack img {
        aspect-ratio: 322 / 424;
        max-height: 500px;
    }

    .landack-content {
        margin: -20% auto 0;
        width: 95%;
    }

    .news-section .title-wrapper {
        justify-content: center;
    }

    .news-section .title-item {
        flex-basis: 100%;
        max-width: 100%;
        text-align: center;
    }

    .flex-row.title-item {
        justify-content: center;
        margin-bottom: 1rem;
    }
}

@media (max-width: 600px) {
    .landack-content {
        margin: -40% auto 0;
    }
}

@media (min-width: 62em) {
    .cta-content {
        padding: 5%;
        height: 100%;
        border-radius: 10px;
    }

    /*.cta-img {
        padding-right: 0;
    }*/

    .day {
        font-size: 3.5rem;
        line-height: 1.3;
    }

    .event-link h3, .month {
        font-size: 1.65rem;
    }

    .landack-text {
        width: 90%;
        margin: auto;
    }

    .landack-content {
        padding: 3% 0;
        margin: -15% auto 0;
    }

    .land-ack img {
        border-radius: 10px;
    }
}

/* Subpage */
.page-header {
    aspect-ratio: 1920/402;
    margin-bottom: 1rem;
    padding: 1rem;
}

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

.page-content-inner ol {
    padding-left: 2rem;
}

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

@media (min-width: 62em) {
    .page-header {
        margin-bottom: 2rem;
    }

    .page-content-inner {
        margin-top: 2rem;
    }
}

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

.landing-link h3 {
    font-weight: var(--font-medium);
    color: var(--dark-font-color);
}

.arrow {
    position: absolute;
    right: -.5rem;
    background: var(--accent-1);
    border-radius: 50%;
    width: 2.25rem;
    height: 2.25rem;
    margin: auto;
    color: var(--dark-font-color);
}

/* Focus Area Landing */
.landing-fa {
    margin-top: 2rem;
}

.landing-fa .landing-link {
    text-align: left;
    color: var(--dark-font-color);
    aspect-ratio: unset;
    height: 100%;
    justify-content: flex-start;
}

.landing-fa .landing-item .landing-link:hover,
.landing-fa .landing-item .landing-link:focus {
    filter: brightness(1.2);
}


@media (min-width: 99em) {
    .landing-fa .landing-item {
        flex-basis: 20%;
        max-width: 20%;
    }
}

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

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

.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;
    font-weight: var(--font-semibold);
}

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

/* News Archive */
.news-archive {
    margin-top: 2rem;
}
.news-archive a {
    color: var(--dark-font-color);
}

.news-archive h3 {
    margin-bottom: .5rem;
    font-weight: var(--font-medium);
}

/* 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%;
  min-height: unset;
}

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

/* 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 */
.sidebar {
	font-weight: var(--font-semibold);
    background: var(--light-grey);
	color: var(--dark-font-color);
	padding: .75rem 1rem;
	margin-top: 1rem;
    margin-bottom: 1rem;
    border-radius: 10px;
}

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

.nav-secondary {
	display: none;
	margin-top: 1rem;
}
         
.cookie {
    padding-bottom: 0.75rem;
}

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

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

.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(--secondary);
    font-weight: var(--font-bold);
}

.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){
	.nav-secondary {
		display: block!important;
		margin: unset;
	}
	.sidebar {
		padding: 1.5rem 2rem;
        z-index: 9;
        position: relative;
        margin-top: -5rem;
	}
	.current-page {
		display: none;
	}

    .cookie a {
        font-weight: var(--font-regular);
    }

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

/* School Directory */
#reset-table {
    cursor: pointer;
    font-weight: var(--font-bold);
    color: var(--primary);
    text-align: right;
    margin-top: 1rem;
    margin-left: auto;
    width: fit-content;
    display: block;
}

.school-select-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.school-filters {
    margin-bottom: 1rem;
}

.school-filter {
    flex-basis: 100%;
    max-width: 100%;
}

@media(min-width: 48em) {
    .school-filter {
        flex-basis: calc(50% - .5rem);
        max-width: calc(50% - .5rem);
    }
}

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

.contact-template .contact-text {
    margin-bottom: .25rem;
}

.contact-template .contact-address {
    margin-bottom: .75rem;
}

/* Focus Area */
[data-name*="collective responsibility"],
[data-name*="Collective Responsibility"] {
    background-color: rgba(166, 137, 80, 0.5);
    color: var(--dark-font-color);
}

[data-name*="instructional capacity"],
[data-name*="Instructional Capacity"] {
    background-color: rgba(240, 179, 72, 0.5);
    color: var(--dark-font-color);
}

[data-name*="inclusive learning communities"],
[data-name*="Inclusive Learning Communities"]  {
    background-color: rgba(104, 117, 1, 0.5);
    color: var(--dark-font-color);
}

[data-name*="indigenous learning and culture"],
[data-name*="Indigenous Learning & Culture"] {
    background-color: rgba(58, 110, 166, 0.5);
    color: var(--dark-font-color);
}

[data-name*="place-based learning"],
[data-name*="Place-Based Learning"] {
    background-color: rgba(132, 44, 44, 0.5);
    color: var(--dark-font-color);
}

.fa-items {
    margin-top: 2rem;
}

.fa-item {
    background: var(--light-grey);
    border-radius: 10px;
    padding: 1rem 1.25rem 1.5rem;
    height: 100%;
    position: relative;
}

.fa-item .card-description {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.school-fa-wrapper .school-fa-item:last-of-type {
    margin-bottom: .5rem;
}

.school-fa-wrapper {
    font-size: .9rem;
}

.page-content .fa-item-link {
    color: var(--dark-font-color);
}

.fa-item .news-img {
    background-color: #c3c3c3;
    margin-top: 1rem;
}

.fa-item .news-img img:not(.news-logo) {
    border-radius: 10px;
    width: 100%;
}

.fa-school-name-wrapper {
    display: none;
    font-style: italic;
    margin-bottom: .5rem;
}

.page-content .fa-school-name {
    margin-bottom: .25rem;
}

.arrow-right {
    position: absolute;
    right: -.75rem;
    top: 2rem;
    background-color: var(--accent-1);
    border-radius: 50%;
    width: 2.25rem;
    height: 2.25rem;
    text-align: center;
    color: var(--dark-font-color);
}

.filter-wrapper {
    background: var(--light-grey);
    border-radius: 10px;
    padding: 1rem 1.25rem 1.5rem;
    display: none;
    position: sticky;
    top: 2rem;
}

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

.search-field {
    position: relative;
}

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

.search-field input {
    padding-left: 2rem;
}

#reset-fas {
    color: var(--primary);
    cursor: pointer;
    font-weight: var(--font-bold);
}