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

.italic {
    font-style: italic;
}

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

.rich-text [id]::before {
  content: '';
  display: block;
  height:      250px;
  margin-top: -250px;
  visibility: hidden;
}

div[data-lexical-layout-container="true"] {
    grid-gap: 2rem;
}

/* Variables */
:root {
    --primary: #071D49;
    --secondary: #FFC72C;
    --secondary-text: #000000;
    --division: #FFC72C;
    --dark-font-color: #000;
    --light-font-color: #fff;
    --dark-grey: #434345;
    --light-grey: #EFEFEF;

    --body-font: "Source Sans 3", sans-serif;
    --heading-font: "Source Sans 3", sans-serif;
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
}

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

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

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

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

/* TYPOGRAPHY
Using the Perfect Fifth factor from https://www.gridlover.net/try
*/
html {
    font-size: 16px;
    line-height: 21px;
    scroll-behavior: smooth;
}

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

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

body {
    max-width: 2560px;
    padding: 0;
    margin: 0 auto;
    font-family: var(--body-font);
    font-style: normal;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--dark-font-color);
    display: flex;
    flex-direction: column;
}

body.lb-disable-scrolling {
    overflow: hidden;
}

.wrapper {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}

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

h1, h2 {
    font-weight: var(--font-bold);
}

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

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

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

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

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


h2,
.h2 {
    font-size: 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: 1.2rem;
    margin-top: 1.3125rem;
    margin-bottom: 0.75rem;
}

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


@media all and (max-width: 991px) {
    h1,
    .h1 {
        font-size: 2rem;
    }

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

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

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

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

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

    .editor details summary h3 {
        margin: 0;
    }

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

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

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

.page-content a {
    color: var(--primary);
    /*color: var(--secondary);*/
    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);
    padding: 2rem;
    margin: 0;
    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, figurecaption {
    font-weight: var(--font-medium);
    font-size: .85rem;
    color: var(--dark-grey);
    text-align: left;
    margin: 0;
    padding: .5rem;
    display: block;
}

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

.btn {
    display: block;
    width: fit-content;
    font-weight: var(--font-semibold);
    padding: .55rem 1rem;
    text-decoration: none!important;
}

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


.btn-link {
    font-weight: var(--font-semibold);
    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 img {
    display: none;
}

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

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

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

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

.goog-te-gadget {
    color: white!important;
}

/* INPUT FIELDS */
input:-webkit-autofill,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:focus {
    border: none;
    -webkit-text-fill-color: none;
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}

.input-field input[type="text"],
.input-field input[type="password"],
.input-field input[type="date"],
.input-field input[type="tel"],
.input-field input[type="email"],
input[type="search"],
textarea {
    width: 100%;
    box-sizing: border-box;
    border: solid 1px #e4e4e4;
    transition: 0.5s;
    padding: .5rem;
}

textarea {
    min-height: 200px;
}

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

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

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

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

.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: 3.5rem;
    cursor: pointer;
    color: white;
    font-size: 24px;
}

.search-bar-wrapper .search-icon {
    position: absolute;
    right: 0;
    font-size: 24px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--primary);
    appearance: none;
    border: none;
    cursor: pointer;
    width: 42.4px;
    height: 42.4px;
    padding: 0;
    top: 50%;
    transform: translateY(-50%);
}

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


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

.alert-btn {
    margin: auto;
}

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

.table {
    margin: 0 0 2rem;
    overflow-x: auto;
    box-shadow: none;
    border-radius: 20px;
    border: 4px solid #EFEFEF;
}

.table thead th a {
    color: white;
}

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

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

.table table {
    font-weight: normal;
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    white-space: normal;
    background-color: white;
}

.table table td,
.table table th {
    padding: 10px 15px;
    width: auto !important;
}

.table table td {
    border-right: 2px solid #EFEFEF;
    width: auto !important;
}

.table 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: #ffffff;
}

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

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

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

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

tr {
    border-bottom: 2px solid #efefef;
}

tr:last-of-type {
    border-bottom: none;
}
.editor-table {
    box-shadow: none;
    margin: 0;
}

/* Tab Header */
.ui-widget-header {
    border: none;
    background: transparent;
}

.ui-tabs .ui-tabs-nav {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    row-gap: .5rem;
    border-bottom: 2px solid var(--primary);
    border-radius: 0;
}

.ui-tabs .ui-tabs-nav li {
    font-weight: 700;
    border: none;
    background: var(--light-grey);
    transition: all .2s ease-in-out;
    margin: 0 .5rem 0 0;
    border-radius: 0;
}

.ui-tabs .ui-tabs-nav li:hover {
    filter: brightness(1.02);
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
    margin-bottom: 0;
    padding-bottom: 0;
    background: var(--primary);
    border: none;
}

/* Tab Content */
.ui-tabs .ui-tabs-panel {
    padding: 1rem 0.25rem;
    margin-top: 0;
}

.ui-widget-content a {
    color: var(--link-color);
}

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

.ui-widget-content .btn-primary {
    color: white;
}

.ui-widget-content .btn-link {
    color: var(--primary);
}

.tab-item-content {
    padding: 1rem 0;
}

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

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

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

/* Header */
.main-header {
    background: white;
    z-index: 100;
    position: sticky;
    top: 0;
    border-bottom: 1px solid #EFEFEF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .3s ease-in-out;
}

.logo-wrapper {
    gap: 1rem;
}

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

.site-name {
    font-weight: var(--font-semibold);
    font-size: 1.375rem;
    max-width: 11rem;
    line-height: 1.3;
}

.site-name-longer {
    max-width: 13rem;
}

.nav-icons {
    display: flex;
    gap: .75rem;
    align-items: center;
}

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

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

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

.sub-li {
    margin-bottom: .75rem;
    line-height: 1.2;
}

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

.main-nav-wrapper {
    gap: 2rem;
    padding-right: 1rem;
}

.nav-icons i {
    font-size: 1.5rem;
    cursor: pointer;
}

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

    .site-logo {
        width: 60px;
    }
}

@media (max-width: 768px) {
    .site-name {
        display: none;
    }
}

@media (min-width:75em) {
    .main-header {
        padding-top: .75rem;
        padding-bottom: .75rem;
    }

    .site-logo, .site-name, .main-header {
        transition: all .1s ease;
    }

    .main-header.sticky-active .site-logo {
        width: 60px;
    }

    .main-header.sticky-active .site-name {
        font-size: 1.1rem;
    }

    .main-header.sticky-active {
        /* padding-top: 0;
        padding-bottom: 0; */
        /* position: fixed; */
        left: 0;
        right: 0;
    }

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

    .nav-link.flex-row {
        gap: .25rem;
    }

    .site-logo {
        width: 50px;
    }

    .site-name {
        font-size: 1.1rem;
        max-width: 8rem;
    }

    .site-name-longer {
        max-width: 10rem;
    }

    .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.multi-col {
        column-count: 2;
        min-width: 500px;
    }

    .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: 350px;
        opacity: 0;
        margin-top: .5rem;
        border-radius: 20px;
    }

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

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

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

    .main-nav-ul li:first-of-type .main-dropdown-menu,
    .main-nav-ul li:nth-of-type(2) .main-dropdown-menu {
        left: 0;
        right: auto;
    }
}

@media (min-width: 99em) {
    .site-logo {
        width: 70px;
    }

    .site-name {
        font-size: 1.375rem;
        max-width: 12rem;
    }

    .site-name-longer {
        max-width: 13rem;
    }

    .main-nav-ul {
        column-gap: 1.5rem;
    }

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

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

    .nav-link.flex-row {
        gap: .5rem;
    }

    .main-nav-ul li:first-of-type .main-dropdown-menu,
    .main-nav-ul li:nth-of-type(2) .main-dropdown-menu {
        left: auto;
        right: 0;
    }
}

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

.collapsible-menu a {
    color: white;
}

.menu-close {
    /* position: absolute;
    right: 1.5rem;
    top: 2rem; */
    font-size: 1.5rem;
    cursor: pointer;
}

.login-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: .5rem;
    column-gap: .75rem;
    margin-bottom: 1.5rem;
    font-size: 14px;
}


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

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

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

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

.mobile-main-nav .main-dropdown .main-dropdown-menu {
    display: block;
    transform: scaleY(0);
    transition: transform .3s ease-in-out;
    transform-origin: top center;
    height: 0;
}

.mobile-main-nav .main-dropdown.show .main-dropdown-menu {
    transform: scaleY(1);
    height: auto;
    padding: .5rem;
}

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

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

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

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

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

.service-link:hover .circle-arrow,
.service-link:focus .circle-arrow {
    transform: rotate(90deg);
}

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

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

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

.service-slide {
    height: auto;
}

.service-link {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    padding: 1.5rem 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-link .circle-arrow {
    width: 2.25rem;
    height: 2.25rem;
    right:0;
    bottom: 0;
}

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

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

.contact-text {
    display: flex;
    flex-wrap: wrap;
}

.contact-label {
    flex-basis: 6.25rem;
    max-width: 6.25rem;
}

.collapsible-menu .collapsible-social-wrapper {
    flex-direction: row;
    padding: 0;
    gap: .5rem;
}

.collapsible-menu .collapsible-social-wrapper a {
    background: var(--secondary);
    color: var(--primary);
    width: 2.25rem;
    height: 2.25rem;
}

.collapsible-menu .collapsible-social-wrapper i {
    font-size: .9rem;
}

.collapsible-menu address {
    margin-bottom: 0;
}

@media (min-width: 75em) {
    .collapsible-menu {
        width: 35%;
        top: 1.5rem;
        left: auto;
        right: 1.5%;
        max-width: 31rem;
        border-radius: 20px;
        min-height: unset;
        padding: 1.5rem;
        border: 1px solid white;
    }

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

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

    /* .menu-close {
        right: 2.25rem;
    } */
}

/* 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(7, 29, 73, 0.60);
    backdrop-filter: blur(12.5px);
    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(--primary);
    color: white;
}

.modal-info a {
    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;
    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;
    height: auto;
    padding: 1.5rem;
}

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

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


/* Landing Page */
.landing-wrapper {
    margin: 1rem -.5rem 2rem;
}
.landing-link {
    background: var(--primary);
    text-align: center;
    aspect-ratio: 430/250;
    padding: 1.5rem;
    position: relative;
    border-radius: 20px;
}

.landing-link h3 {
    font-weight: var(--font-bold);
    color: white;
}

.landing-link:hover .circle-arrow,
.landing-link:focus .circle-arrow {
    transform: rotate(90deg);
}

.landing-item {
    padding-left: .5rem;
    padding-right: .5rem;
}

/* News, Event Article */
.publish-date {
    font-weight: var(--font-semibold);
    color: var(--dark-grey);
    margin: 1rem 0;
}

.recent-item {
    margin-bottom: 1rem;
    display: block;
    color: var(--primary);
}

.sidebar-wrapper .recent-item, .page-content .recent-item {
    color: var(--primary);
}

.recent-wrapper .btn-link {
    color: var(--primary);
    margin-top: 2rem;
    display: block;
}

.recent-item h4 {
    font-size: 1rem;
}

.recent-wrapper {
    margin-bottom: 2rem;
    border-radius: 20px;
    border: 4px solid #EFEFEF;
    height: fit-content;
    padding: 1rem 1.5rem;
}

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

.sidebar-wrapper .recent-wrapper {
    margin-top: 1rem;
}

.page-content-inner .back-link {
    display: block;
    font-weight: var(--font-semibold);
    color: var(--primary);
    text-decoration: none;
}

.article-template .page-header {
    margin-bottom: 0;
}

.article-content {
    order: -1;
}

.page-image {
    display: block;
    width: 100%;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    aspect-ratio: 16/9;
}

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

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

.news-archive h3 {
    font-size: 1.2rem;
    color: white;
}

.news-archive .row {
    margin-left: -.5rem;
    margin-right: -.5rem;
}

.news-archive .col-xs-12 {
    padding: 0 .5rem;
}

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

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

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

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

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

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

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

.content-row h2 {
    margin-bottom: .5rem;
}

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

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

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

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

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

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

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

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

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

.useful-link i,
.useful-link span {
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

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

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

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

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

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

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

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

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

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

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

.img-box-wrapper img {
    width: 100%;
    aspect-ratio: 3/2;
}

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

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

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

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

.formatted-content .img-box-wrapper {
    height: 100%;
}

/* DCT - Photo Gallery */
.gallery-item {
	margin-bottom: 1rem;
}
.gallery-item img {
    min-height: unset;
	aspect-ratio: 4/3;
	width: 100%;
}

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

@media (min-width: 62em) {
    .content-row.spacing-bottom {
        margin-bottom: 3.5rem;
    }
}

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

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

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

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

/* Expand all */
.editor {
    position: relative;
}
.expand-all {
	cursor: pointer;
	display: none;
	align-items: center;
	gap: .5rem;
    background: var(--light-grey);
    padding: .5rem 1rem;
    border-radius: 25px;
    font-weight: var(--font-bold);
	width: fit-content;
    margin-bottom: 1rem;
    position: sticky;
    top: 100px;
    right: 0;
    margin-left: auto;
    z-index: 90;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.expand-all i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Side Navigation */
.sidebar {
	font-weight: var(--font-semibold);
    background: var(--primary);
	color: white;
	padding: .75rem 1rem;
	/* margin-top: 1rem; */
    border-radius: 20px;
}

.sidebar-wrapper a {
	color: white;
    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);
}

.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: 3rem 2rem;
        z-index: 9;
        position: relative;
	}
	.current-page {
		display: none;
	}

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

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

/* Home Banner */
.banner-img {
    position: relative;
    aspect-ratio: 1800/865;
    /* background-repeat: no-repeat;
    background-position: center;
    background-size: cover; */
    border-radius: 20px;
    width: 100%;
}

/* .banner-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(54, 54, 54, 0.4);
    border-radius: 20px;
} */

.banner-title {
    font-weight: var(--font-bold);
    margin: 0;
    line-height: 1.4;
}

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

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

.banner-button-prev,
.banner-button-next {
    position: static;
    transform: none;
    color: var(--primary);
    margin-top: 0;
    font-size: 16px;
}

.banner-button-prev {
    color: #808080;
}

.banner-cta {
    border-radius: 20px;
    background: rgba(7, 29, 73, 0.50);
    backdrop-filter: blur(10px);
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 2;
    color: white;
    gap: 1rem;
    font-weight: var(--font-semibold);
    padding: .75rem;
}

.banner-cta:hover .circle-arrow,
.banner-cta:focus .circle-arrow {
    transform: rotate(90deg);
}

.cta1-img {
    border-radius: 15px;
    aspect-ratio: 175/140;
    width: 40%;
}

.banner-cta img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
}

.circle-arrow {
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    position: absolute;
    right: -.25rem;
    bottom: -.25rem;
    border-radius: 50%;
    align-items: center;
    font-weight: var(--font-semibold);
    color: var(--primary);
    transform: rotate(45deg);
}

.social-wrapper {
    display: flex;
    flex-direction: column;
    padding: 0 0 2rem 1.5rem;
    gap: 1rem;
}

.social-wrapper a {
    color: white;
    border-radius: 50%;
    background: rgba(7, 29, 73, 0.50);
    backdrop-filter: blur(10px);
    width: 3rem;
    height: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

    .banner-img {
        aspect-ratio: 280/350;
        max-height: 600px;
        width: 100%;
    }

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

    .banner-nav-wrapper {
        position: absolute;
        right: 0;
        bottom: 0;
    }

    .banner-content {
        min-height: 141.59px;
    }
}

@media (min-width: 75em) {
    .banner-content-wrapper {
        position: absolute;
        z-index: 2;
        left: 0;
        bottom: 0;
        width: 42%;
    }
    .banner-content {
        background-color: white;
        padding: 1.5rem;
        border-radius: 0 20px 0 0;
    }


    .homepage .banner-title {
        font-size: 2rem;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .banner-nav-wrapper {
        position: absolute;
        z-index: 2;
        right: -104px;
        bottom: 0;
        background: white;
        border-radius: 0 20px 0 0;
        padding: 20px;
        width: 104px;
        gap: 1rem;
    }

    .banner-nav-wrapper::before {
        content: "";
        background-color: transparent;
        position: absolute;
        top: -50px;
        left: 0;
        height: 50px;
        width: 20px;
        border-bottom-left-radius: 20px;
        box-shadow: 0 20px 0 0 white;
    }

    .banner-social-wrapper {
        position: relative;
    }

    .banner-social-wrapper::after {
        content: "";
        background-color: transparent;
        position: absolute;
        bottom: 0;
        left: 0;
        height: 50px;
        width: 20px;
        border-bottom-left-radius: 20px;
        box-shadow: 0 20px 0 0 white;
    }

    .banner-content::after {
        content: "";
        background-color: transparent;
        position: absolute;
        bottom: 0;
        right: -124px;
        height: 50px;
        width: 20px;
        border-bottom-left-radius: 20px;
        box-shadow: 0 20px 0 0 white;
    }

    .banner-cta {
        width: 35%;
    }

    .cta1-content p {
        width: 90%;
        margin: auto;
        display: block;
    }

    .banner-img {
        max-height: calc(100dvh - 121.45px - 2rem);
    }
}

@media (min-width: 99em) {
     .banner-img {
        max-height: calc(100dvh - 126.45px - 2rem);
    }

    .homepage .banner-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 125em) {
     .banner-img {
        max-height: calc(100dvh - 131.45px - 2rem);
    }
}

/* Home Quicklinks */
.quicklink-item {
    color: white;
    font-size: 1.2rem;
    font-weight: var(--font-semibold);
}

.quicklink-wrapper {
    flex-basis: 100%;
    max-width: 100%;
    text-align: center;
}

.quicklinks {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-radius: 20px;
    row-gap: 1rem;
}

@media (min-width: 48em) {
    .quicklink-wrapper {
        flex-basis: 50%;
        max-width: 50%;
        border-right: 2px solid rgba(255, 255, 255, 0.1);
    }

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

@media (min-width: 75em) {
    .quicklink-wrapper {
        flex-basis: 20%;
        max-width: 20%;
    }
}

/* Home News */
.news-events-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.home-news-wrapper {
    border-radius: 20px;
    border: 4px solid var(--light-grey);
    padding: 1rem;
}

.home-news-wrapper .btn {
    margin-top: 1rem;
}

.home-news-wrapper .card-description {
    line-height: 2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news-img,
.news-img img {
    aspect-ratio: 1/1;
    border-radius: 20px;
    background-color: var(--light-grey);
    position: relative;
}

.news-img img {
    height: 100%;
    width: 100%;
}

.news-img.no-img img {
    aspect-ratio: unset;
    object-fit: contain;
    width: 30%;
    height: fit-content;
    margin: auto;
    position: absolute;
    top: 1rem;
    right: 1rem;
    border-radius: unset;
}

/* .home-more-news {
    display: flex;
    gap: 1rem;
} */

/* .news-item {
    flex-basis: calc((100% - 2rem) / 3);
    max-width: calc((100% - 2rem) / 3);
} */

.divider {
  display: flex;
  align-items: center;
  color: #707070;
  margin: 1.5rem 0;
}

.divider::before, .divider::after {
  flex: 1;
  content: '';
  padding: 1px;
  background-color: var(--light-grey);
}

.divider::before {
    margin-right: 1rem
}

.divider::after {
    margin-left: 1rem;
}

.news-item {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 20px;
    color: white;
    padding: 0 .25rem .25rem 0;
}

.circle-arrow {
    transition: all .3s ease-in-out;
}

.news-item .circle-arrow {
    bottom: 0;
    right: 0;
}

.news-item:hover .circle-arrow,
.news-item:focus .circle-arrow {
    transform: rotate(90deg);
}

.news-title, .news-arrow {
    position: absolute;
}

.news-title {
    width: calc(100% - 70px);
    font-size: 1.2rem;
    left: 1rem;
    bottom: 1rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.3;
}

.news-title.no-img {
    color: var(--dark-font-color);
}

.news-arrow {
    right: 0;
    bottom: 0;
}

.title-wrapper {
    margin-bottom: 1.3125rem;
}

.title-wrapper a, .events-wrapper .btn-link {
    color: var(--primary);
}

.events-wrapper {
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    justify-content: space-between;
}

.events-wrapper .btn-link {
    text-align: right;
}

.event-svg {
    position: absolute;
    right: -1.5rem;
    top: 1.5rem;
    display: none;
}

.event-svg rect {
    fill: var(--secondary);
}

.home-news-wrapper, .events-wrapper {
    width: 100%;
}

.event-time {
    font-size: .9rem;
}

@media (max-width: 991px) {
    .spotlight-news {
        row-gap: 1rem;
    }

    .spotlight-news h3 {
        margin: .5rem 0;
    }

    .news-item {
        flex-basis: unset;
        max-width: unset;
    }
}

@media (max-width: 640px) {
    .home-more-news {
        margin-right: -2.5rem;
    }

    .all-link {
        display: none;
    }

    .all-link-mobile {
        display: block;
        margin: 1rem auto 0;
        text-align: center;
    }
}

@media (min-width: 641px) {
    .all-link-mobile {
        display: none;
    }
}

@media (min-width: 62em) {
    .home-news-wrapper, .events-wrapper {
        flex-basis: calc((100% - 1rem) / 2);
        max-width: calc((100% - 1rem) / 2);
    }

    .home-news-wrapper {
        padding: 2rem;
    }

    .event-svg {
        display: block;
    }
}

/* Home Events */
.event-link {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.day {
    background-color: var(--primary);
    color: white;
    font-weight: 900;
    padding: .5rem;
    width: 65px;
    height: 65px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 30px;
}

.event-title {
    margin-top: 0;
    margin-bottom: 0;
}

.event-list {
    margin-bottom: 1rem;
}

.calendar-list {
    height: 26rem;
    overflow-y: auto;
    margin-bottom: 1rem;
}

@media (max-width: 991px) {
    .calendar-list {
        height: auto !important;
    }
}

/* Second CTA */
.cta2 {
    border-radius: 20px;
}

.cta2-img img {
    width: 100%;
    border-radius: 20px 20px 0 0;
}

.cta2-content {
    padding: 1.5rem;
    text-align: center;
}

.cta2-content p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.8;
}

.cta2 .btn {
    margin: 1.5rem auto .5rem;
}

.story-button-prev, .story-button-next {
    position: static;
    color: var(--primary);
    margin-top: 0;
}

.story-swiper {
    padding-left: 1.5rem;
}

@media (min-width: 48em) {
    .story-swiper {
        padding-left: 3%;
    }
}

@media (min-width: 62em) {
    .cta2 {
        display: flex;
    }

    .cta2-content {
        order: -1;
        flex-grow: 1;
        flex-basis: 0;
        max-width: 100%;
        text-align: left;
        padding: 5%;
        justify-content: space-evenly;
    }

    .cta2-img {
        flex-basis: 40%;
        max-width: 40%;
        border-radius: 0 20px 20px 0;
    }

    .cta2-img img {
        border-radius: 0 20px 20px 0;
        height: 100%;
    }

    .cta2 .btn {
        margin-left: 0;
        margin-top: 3rem;
        margin-bottom: 0;
    }
}

/* Land Acknowledgment */
.land-ack {
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.landack-content {
    padding: 2rem 1.5rem;
    border-radius: 20px;
    background-position: center bottom 26%!important;
    color: white;
}

.landack-text p {
    font-weight: var(--font-semibold);
    line-height: 2;
}

@media (min-width: 62em) {
    .landack-content {
        aspect-ratio: 1600/364;
        width: 80%;
        margin: auto;
    }

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

/* Footer */
footer {
    position: relative;
    padding-top: 10rem;
    margin-top: -10rem;
}

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

footer h3 {
    text-align: center;
}

footer img {
    margin: 0 auto 3rem;
    max-width: 130px;
    width: 100%;
    object-fit: contain;
}

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

footer a {
    color: white;
}

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

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

.footer-social-wrapper {
    flex-direction: row;
    justify-content: center;
    padding: 2rem 0 0;
}

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

.footer-social-wrapper a {
    background-color: var(--secondary);
    color: var(--primary);
}

.copyright {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin-top: 2rem;
    text-align: center;
    line-height: 3;
}

.copyright a {
    color: var(--secondary);
    font-weight: var(--font-semibold);
}

.footer-li a {
    font-weight: var(--font-semibold);
    font-size: 1.1rem;
}


@media (min-width: 62em) {
    footer {
        padding-top: 7rem;
        margin-top: -6rem;
    }

    .copyright {
        padding-top: 1rem;
        padding-bottom: 1rem;
        line-height: 2;
    }
    .copyright .content-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .copyright-col-1 {
        display: flex;
        gap: 1rem;
    }

    .copyright-col-1 a {
        padding: 0 .5rem;
    }

    .copyright-policy {
        position: relative;
    }

    .copyright-policy::before {
        content: "|";
        position: absolute;
        left: -.5rem;
    }

    footer img {
        margin: 0;
    }

    .footer-col-1 {
        display: flex;
        gap: 2rem;
        align-items: flex-start;
        text-align: left;
    }

    footer h3 {
        text-align: left;
    }

    .footer-col-1 .footer-social-wrapper {
        display: none;
    }

    .footer-col-3 .footer-social-wrapper {
        flex-direction: column;
        align-items: flex-end;
        padding: 0;
    }

    .footer-nav {
        margin: 0;
        column-count: 2;
        display: block;
    }

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

    .footer-contact {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    address {
        margin-bottom: 0;
    }

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


/* Subpage */
.breadcrumbs-wrapper, .top-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.breadcrumbs a {
    margin: 0 .5rem;
    font-weight: var(--font-semibold);
    color: var(--primary);
    text-decoration: none;
}

.breadcrumbs span:first-of-type a {
    margin-left: 0;
}

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

.page-title {
    margin-bottom: .5rem;
}

.page-header {
    position: relative;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.no-side-nav .page-header {
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.drop {
    position: absolute;
    top: -1.5rem;
    z-index: -1;
    left: -2.5rem;
    height: 5rem;
}

.subpage .land-ack {
    margin-top: 2rem;
}

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

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

.editor img {
    border-radius: 20px;
}

@media (max-width: 767px) {
  div[data-lexical-layout-container="true"] {
    display: block!important;
  }
}

@media (min-width: 62em) {
    .page-content-inner {
        padding-left: 1rem;
    }
}

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

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

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

/* @keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
        border-radius: 100px;
    }
    50% {
        opacity: 1;
    }
}

.animate__1s {
    --animate-duration: 1s;
}

.banner-slide[data-swiper-slide-index="0"] .banner-content-text {
    animation: zoomIn; 
    animation-duration: 2s; 
    animation-delay: calc(var(--animate-delay)* 2);
    animation-fill-mode: both;
}

.banner-slide[data-swiper-slide-index="0"] .banner-cta {
    animation: zoomIn; 
    animation-duration: 2s; 
    animation-delay: calc(var(--animate-delay)* 2.5);
    animation-fill-mode: both;
} */


.motion-div {
    opacity: 0;
}

/* .banner-content-text, .banner-cta {
    transform: scale(0.4);
} */

.banner-cta-wrapper {
    transform-origin: center;
}

/* .banner-slide[data-swiper-slide-index="0"] .banner-img {
    z-index: 100;
} */

/* Careers */
.job-link {
    color: var(--primary)!important;
    font-weight: var(--font-semibold);
}

.job-section {
    margin: 2rem 0;
}

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

.job-section .job-position {
    width: 50%!important;
}

.job-section .job-term, 
.job-section .job-closing {
    width: 25%!important;
}

.job-info {
    margin-bottom: 2rem;
}

@media (min-width: 48em) {
    .job-info {
        display: flex;
        gap: 2rem;
    }
}

/* School Directory */
.school-info {
    border: 2px solid #efefef;
    border-radius: 20px;
    padding: 1.5rem;
    height: 100%;
    justify-content: space-between;
}

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

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

.school-contact {
    margin-top: .5rem;
}

#school-directory {
    margin-top: 2rem
}

#school-directory h2 {
    margin-bottom: 1rem;
}

.staff-contacts [data-lexical-layout-container] img {
    aspect-ratio: 3/4;
}

/* School Specific */
.--New-Sarepta-Community-High-School .main-nav a:hover, 
.--New-Sarepta-Community-High-School .main-nav a:focus,
.--New-Sarepta-Community-High-School .secondary-nav-item.active a,
.--New-Sarepta-Community-High-School .cookie:hover a,
.--New-Sarepta-Community-High-School .cookie:focus a,
.--New-Sarepta-Community-High-School .secondary-nav-item:hover a,
.--New-Sarepta-Community-High-School .secondary-nav-item:focus a{
    color: var(--division);
}

/* Bus Status */
#bus_status_widget {
    height: 26px!important;
}

#bus_status_widget .icon svg {
    width: 26px!important;
    height: 26px!important;
}