/* =============================================================================
   LDES Consortium - Landing Page Stylesheet
   Sitecore 9.0.1 Site
   Mobile-First Responsive Design
   ============================================================================= */

/* =============================================================================
   1. CSS Reset & Base Styles
   ============================================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #666;
    background-color: #fff;
}

/* =============================================================================
   2. Color Scheme (LDES Brand)
   ============================================================================= */

:root {
    --primary-teal: #00A8A8;
    --dark-blue: #003d5c;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f5f5f5;
    --border-color: #ddd;
    --footer-dark: #002060;
    --transition: all 0.3s ease;
}

/* =============================================================================
   3. Typography
   ============================================================================= */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark-blue);
}

h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
    color: var(--primary-teal);
}

h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

h4, h5, h6 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

a {
    color: var(--primary-teal);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

a u {
    text-decoration: underline;
}

/* =============================================================================
   4. Header Styles
   ============================================================================= */

.header {
    background-color: #fff;
    border-bottom: 3px solid var(--primary-teal);
    padding: 1.5rem 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.logo-section {
    flex-shrink: 0;
}

.logo {
    height: 80px;
    width: auto;
    display: block;
}

.title-section {
    flex: 1;
}

.site-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.3;
}

/* =============================================================================
   5. Content Wrapper
   ============================================================================= */

.content-wrapper {
    min-height: calc(100vh - 250px);
    padding: 2rem 1rem;
    background-color: #fff;
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* =============================================================================
   6. Footer Styles
   ============================================================================= */

.footer {
    background-color: #fff;
    margin-top: 3rem;
}

.footer-top {
    padding: 2rem 1rem;
    border-top: 1px solid var(--border-color);
    background-color: #f9f9f9;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-brand {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0;
}

.footer-contact-section {
    flex: 1;
}

.footer-text {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

.footer-text p {
    line-height: 1.6;
}

.footer-text a {
    text-decoration: underline;
    color: var(--primary-teal);
}

.footer-text a:hover {
    color: var(--dark-blue);
}

.footer-bottom {
    background-color: var(--footer-dark);
    color: #fff;
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 0.875rem;
}

/* =============================================================================
   7. Content Block Styles
   ============================================================================= */

.content-block {
    margin-bottom: 0;
}

.content-block h2 {
    font-size: 1.375rem;
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
}

.content-block p {
    margin-bottom: 1.25rem;
    text-align: justify;
}

.content-block p:last-child {
    margin-bottom: 0;
}

/* =============================================================================
   8. Common Components
   ============================================================================= */

button, .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-teal);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

button:hover, .btn:hover {
    background-color: var(--dark-blue);
    text-decoration: none;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =============================================================================
   9. Tablet Styles (640px and up)
   ============================================================================= */

@media (min-width: 640px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .header {
        padding: 2rem 2rem;
    }

    .header-content {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 2rem;
    }

    .logo-section {
        flex-shrink: 0;
    }

    .logo {
        height: 100px;
    }

    .title-section {
        display: flex;
        align-items: center;
    }

    .site-title {
        font-size: 1.75rem;
    }

    .content-wrapper {
        padding: 3rem 2rem;
    }

    .footer-top {
        padding: 3rem 2rem;
    }

    .footer-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 3rem;
    }

    .footer-logo-section {
        flex-shrink: 0;
        min-width: 250px;
    }

    .footer-logo {
        height: 50px;
    }

    .footer-brand {
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
}

/* =============================================================================
   10. Desktop Styles (1024px and up)
   ============================================================================= */

@media (min-width: 1024px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .site-title {
        font-size: 2rem;
    }

    .logo {
        height: 120px;
    }

    .footer-logo {
        height: 60px;
    }
}

/* =============================================================================
   11. Large Desktop Styles (1440px and up)
   ============================================================================= */

@media (min-width: 1440px) {
    html {
        font-size: 18px;
    }

    .header-container,
    .content-container,
    .footer-container {
        max-width: 1400px;
    }
}

/* =============================================================================
   12. Print Styles
   ============================================================================= */

@media print {
    .header,
    .footer {
        border-top: 1px solid #000;
        border-bottom: 1px solid #000;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    a {
        text-decoration: underline;
    }

    .content-wrapper {
        min-height: auto;
    }
}

/* =============================================================================
   13. Accessibility & Preferences
   ============================================================================= */

@media (prefers-contrast: more) {
    :root {
        --primary-teal: #005580;
        --dark-blue: #001a33;
    }

    body {
        color: #000;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* =============================================================================
   14. Dark Mode Support (Optional)
   ============================================================================= */

@media (prefers-color-scheme: dark) {
    body {
        background-color: #1a1a1a;
        color: #e0e0e0;
    }

    .header {
        background-color: #0a0a0a;
        border-bottom-color: #0083BE;
    }

    .content-wrapper {
        background-color: #1a1a1a;
    }

    .footer-top {
        background-color: #0a0a0a;
        border-top-color: #333;
    }

    .footer-text {
        color: #ccc;
    }

    h1, h2, h3, h4, h5, h6 {
        color: #e0e0e0;
    }

    p {
        color: #b0b0b0;
    }
}

/*================
    EEI css
==================*/

.has-border-bottom {
    padding-bottom: 2.5em;
    border-bottom: 2px solid var(--primary-teal);
}

.section {
    margin-bottom: 2.5rem;
}

.visually-hidden {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    margin: -1px;
    padding: 0;
    border: 0;
    width: 1px;
    height: 1px;
}

    .visually-hidden.focusable:active, .visually-hidden.focusable:focus {
        position: static;
        overflow: visible;
        clip: auto;
        margin: 0;
        width: auto;
        height: auto;
    }

    .visually-hidden.help-box, .visually-hidden.skip-link {
        transition: all 0.0s;
        box-shadow: 3px 3px 6px rgba(0, 0, 0, 0);
    }

        .visually-hidden.help-box p, .visually-hidden.skip-link p {
            max-width: 60em;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 0;
        }

        .visually-hidden.help-box:active, .visually-hidden.help-box:focus, .visually-hidden.skip-link:active, .visually-hidden.skip-link:focus {
            position: fixed;
            z-index: 9999;
            display: block;
            top: 0;
            left: 0;
            right: 0;
            padding: 1.5em 3em;
            font-size: 1.125rem;
            line-height: 1.8;
            color: #fff;
            background: #FBA700;
            box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
        }

/* ================================================================
   Hero Callouts Styles
  ================================================================ */
/****** Slideshow ADJUSTMENT ******/
.hero .slick-prev,
.hero .slick-next {
    z-index: 1;
    height: 50px;
    width: 40px;
    margin-top: -25px;
}

    .hero .slick-prev:before,
    .hero .slick-next:before {
        content: "";
        display: block;
        height: 30px;
        width: 30px;
        border-top: 5px solid #c5c8bd;
        border-right: 5px solid #c5c8bd;
        position: absolute;
        opacity: 1;
    }

.hero .slick-prev {
    left: 20px;
}

    .hero .slick-prev:before {
        -webkit-transform: rotate(-135deg);
        -moz-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
        -o-transform: rotate(-135deg);
        transform: rotate(-135deg);
        margin-top: 9px;
        top: 0;
        left: 0;
    }

.hero .slick-next {
    right: 20px;
}

    .hero .slick-next:before {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        margin-top: -9px;
    }

    .hero .slick-next.slick-disabled:before,
    .hero .slick-prev.slick-disabled:before {
        opacity: 1;
    }

.slick-arrow:not(.slick-disabled):hover:before, .slick-arrow:not(.slick-disabled):focus:before {
    border-color: #fff;
}

@media screen and (max-width: 47.99em) {
    .hero .slick-next,
    .hero .slick-prev {
        display: none !important;
    }
}

.hero .slick-dots {
    display: block;
    position: absolute;
    bottom: 10px;
    left: 0px;
    text-align: center;
}

    .hero .slick-dots li {
        width: 10px;
        height: 10px;
        border: 1px solid #fff;
        background: none;
        display: block;
        display: inline-block;
        margin-right: 20px;
        border-radius: 50%;
    }

        .hero .slick-dots li.slick-active {
            background: #fff;
        }

        .hero .slick-dots li:before {
            display: none;
        }

@media screen and (max-width: 47.938em) {
    .hero .slick-dots {
        bottom: 15px;
        left: 0;
        right: 0;
        text-align: center;
        min-width: 0;
    }
}

@media print, (min-width: 64em) {
    .hero .slick-dots {
        bottom: 45px;
    }
}

.hero .slide {
    position: relative;
    overflow: hidden;
    background-color: #525252;
}

@media screen and (max-width: 47.938em) {
    .hero .content {
        display: block;
    }
}

.section .hero {
    margin: 0;
}

@media print, (min-width: 85em) {
    .section .hero {
        padding: 0 70px;
    }
}

.hero .media.is-bg {
    position: relative;
    min-height: 550px;
}

@media print, (min-width: 64em) {
    .hero .media.is-bg {
        min-height: 600px;
    }
}

@media print, (min-width: 80em) {
    .hero .media.is-bg {
        min-height: 640px;
    }
}

/* Interiors Hero */
.hero.hero-view-01 .content p {
    margin: 0;
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hero.hero-view-01 .media.is-bg {
    min-height: 400px;
}

@media print, (min-width: 64em) {
    .hero.hero-view-01 .media.is-bg {
        min-height: 450px;
    }
}

@media print, (min-width: 80em) {
    .hero.hero-view-01 .media.is-bg {
        min-height: 544px;
    }
}

.hero.hero-view-01.hero-height-01 .media.is-bg {
    min-height: 250px;
}

@media print, (min-width: 64em) {
    .hero.hero-view-01.hero-height-01 .media.is-bg {
        min-height: 325px;
    }
}

@media print, (min-width: 80em) {
    .hero.hero-view-01.hero-height-01 .media.is-bg {
        min-height: 400px;
    }
}

.hero .content {
    text-align: left;
    height: 100%;
    color: #fff;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 300;
}

    .hero .content > div {
        height: 100%;
    }

        .hero .content > div > div {
            height: 100%;
            display: flex;
            align-items: center;
        }

            .hero .content > div > div > div {
                width: 736px;
                max-width: 90%;
            }

    .hero .content .text-box {
        height: 100%;
        display: table-cell;
        vertical-align: middle;
    }

    .hero .content:after {
        background: none;
    }

    .hero .content .title {
        font-size: 48px;
        font-size: 3rem;
        line-height: 1em;
        margin-bottom: 30px;
        font-weight: 400;
        margin-left: -2px;
    }

@media screen and (max-width: 47.938em) {
    .hero .content .text-box {
        display: block;
        margin: 0 auto;
        text-align: center;
    }

    .hero .content .title {
        margin-left: -3px;
    }
}

@media print, (min-width: 48em) {
    .hero .content {
        padding: 1.75rem 3rem;
    }

        .hero .content .text-box {
            padding-right: 0;
        }
}

@media print, (min-width: 60em) {
    .hero .content .text-box {
        padding-right: 160px;
    }
}

@media print, (min-width: 64em) {
    .hero .content .text-box {
        padding-right: 200px;
    }

    .hero .content .title {
        font-size: 50px;
        font-size: 3.125rem;
    }

    .hero .content p {
        font-size: 24px;
    }
}

@media print, (min-width: 72em) {
    .hero .content .text-box {
        padding-right: 220px;
    }
}

@media print, (min-width: 80em) {
    .hero .content .title {
        margin-bottom: 25px;
    }

    .hero .content p {
        margin-bottom: 25px;
    }
}

@media print, (min-width: 85em) {
    .hero .content .text-box {
        padding-right: 310px;
    }
}

@media screen and (max-width: 47.938em) {
    .hero .content {
        padding: 20px 0 50px;
    }

        .hero .content > div > div > div {
            padding-left: 50px;
            width: 520px;
        }

        .hero .content .slick-dots {
            left: 0;
            text-align: center;
            min-width: 0;
        }
}

.hero .slick-dots button {
    display: none !important;
}

@media print, (min-width: 48em) {
    .section .hero {
        margin: 0 !important;
    }
}

.hero {
    position: relative;
}

.section .hero {
    margin: 0;
}

.hero .slide {
    position: relative;
    z-index: 10;
}

    .hero .slide.has-overlay:before {
        content: "";
        position: absolute;
        z-index: 1;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#141859+0,141859+0,000000+100&1+0,1+0,0+100 */
        background: -moz-linear-gradient(left, #141859 0%, rgba(0, 0, 0, 0) 100%);
        /* FF3.6-15 */
        background: -webkit-linear-gradient(left, #141859 0%, rgba(0, 0, 0, 0) 100%);
        /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to right, #141859 0%, rgba(0, 0, 0, 0) 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    }

.hero.slick-slideshow {
    overflow: hidden;
}

    .hero.slick-slideshow .slide {
        float: left;
        width: 100%;
    }

        .hero.slick-slideshow .slide + .slide {
            display: none;
        }

    .hero.slick-slideshow .slick-track .slide + .slide {
        display: block;
    }

.hero .is-bg {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    width: 100%;
}

    .hero .is-bg img {
        position: absolute;
        object-fit: cover;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.hero .media.inactive {
    background-image: none !important;
}

    .hero .media.inactive:before {
        content: " ";
        position: absolute;
        z-index: -1;
        top: 50%;
        left: 50%;
        border-radius: 50%;
        margin: -.5em 0 0 -.5em;
        width: 1em;
        height: 1em;
        animation: loader 1.3s infinite linear;
        transform: translateZ(0);
    }

.hero .content {
    position: absolute;
    z-index: 5;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    text-decoration: none;
}

.hero .content p {
    margin-bottom: 2.5rem;
    font-size: 20px;
    font-size: 1.25rem;
}

.hero .content h2 {
    color: #fff;
}

@media screen and (max-width: 47.938em) {
    .hero .content {
        padding: 30px 0 50px 0;
    }
}

.hero.view-01 .slide a {
    color: inherit;
}

.js-click-user .hero.view-01 .slide a:focus .more {
    color: #98012e;
    outline: 0;
}

.hero.view-01 .slide a:focus .more,
.hero.view-01 .slide a:hover .more,
.js-click-user .hero.view-01 .slide a:hover .more {
    color: #000;
}

.hero.view-01 .more {
    color: #98012e;
    font-size: 18px;
    font-size: 1.125rem;
    transition: color 0.3s ease-in-out;
}

.hero.view-02, .hero.view-03 {
    padding-bottom: 0;
    color: #fff;
}

    .hero.view-02 .slide, .hero.view-03 .slide {
        background: #094982;
    }

        .hero.view-02 .slide a:focus .btn-secondary, .hero.view-03 .slide a:focus .btn-secondary {
            color: #fff;
            border-color: #fff;
        }

        .hero.view-02 .slide a:hover .btn-secondary,
        .js-keyboard-user .hero.view-02 .slide a:focus .btn-secondary, .hero.view-03 .slide a:hover .btn-secondary,
        .js-keyboard-user .hero.view-03 .slide a:focus .btn-secondary {
            color: currentColor;
            border-color: #98012e;
            background: #98012e;
        }

    .hero.view-02 .media, .hero.view-03 .media {
        position: absolute;
        z-index: -1;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        min-height: 0;
        color: #fff;
    }

        .hero.view-02 .media:after, .hero.view-03 .media:after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: .8;
            background: #094982;
        }

    .hero.view-02 .content, .hero.view-03 .content {
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
        position: relative;
        padding: 40px 20px;
        min-height: 254px;
        color: #fff;
    }

        .hero.view-02 .content .btn-secondary, .hero.view-03 .content .btn-secondary {
            color: currentColor;
            border-color: currentColor;
        }

        .hero.view-02 .content:after, .hero.view-03 .content:after {
            display: none;
        }

    .hero.view-02 .slick-dots, .hero.view-03 .slick-dots {
        margin: 0 auto;
        max-width: 1220px;
    }

        .hero.view-02 .slick-dots li, .hero.view-03 .slick-dots li {
            border: 0;
            border-left: 1px solid #B2D5F0;
        }

            .hero.view-02 .slick-dots li:first-child, .hero.view-03 .slick-dots li:first-child {
                border-left: 0;
            }

    .hero.view-02 .slides-tooltip, .hero.view-03 .slides-tooltip {
        color: #fff;
    }

        .hero.view-02 .slides-tooltip:after, .hero.view-03 .slides-tooltip:after {
            display: none;
        }

    .hero.view-03 .media:after {
        display: none;
    }

    .hero.view-03 .content .title {
        font-size: 40px;
        font-size: 2.5rem;
    }

        .hero.view-03 .content .title span {
            display: block;
            font-size: 30px;
            font-size: 1.875rem;
        }

    .hero.view-03 .content p {
        margin: .5em 0 1em;
    }

@media print, (min-width: 48em) {
    .alert-widget + .section .hero {
        margin-top: 0;
    }

    .hero .content {
        padding: 28px 45px;
        padding: 1.75rem 2.8125rem;
    }

        .hero .content > div > div {
            width: 100%;
        }

        .hero .content p {
            font-size: 20px;
            font-size: 1.25rem;
            line-height: 1.2;
        }

    .hero .slides-tooltip {
        display: none;
    }

    .hero.view-01 .more {
        font-size: 24px;
        font-size: 1.5rem;
    }

    .hero.view-02 .content {
        min-height: 254px;
        padding: 35px;
    }

        .hero.view-02 .content p {
            margin-bottom: 1em;
        }

    .hero.view-03 .media {
        min-height: 460px;
    }

    .hero.view-03 .content {
        min-height: 460px;
        padding: 35px;
    }

        .hero.view-03 .content .title {
            font-size: 60px;
            font-size: 3.75rem;
        }

            .hero.view-03 .content .title span {
                font-size: 40px;
                font-size: 2.5rem;
            }
}

@media print, (min-width: 60em) {
    .hero .content {
        padding: 28px 45px;
        padding: 1.75rem 2.8125rem;
    }

        .hero .content .title {
            font-size: 50px;
            font-size: 3.125rem;
        }
}

@media print, (min-width: 72em) {
    .hero .content .title {
        font-size: 72px;
        font-size: 4.5rem;
    }

    .hero .content p {
        font-size: 24px;
        font-size: 1.5rem;
    }
}

.js-keyboard-user .hero .content:focus .btn {
    color: #fff;
    background: #000000;
    box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.3);
}

.hero-data-component {
    min-height: 330px;
    display: flex;
    justify-content: center;
    margin-top: 50px;
    background-size: cover;
    background-position: center center;
    border-top: 2px solid #F0AA24;
}

    .hero-data-component .info-container {
        margin: 30px 0;
        max-width: 800px;
        width: 100%;
        color: #fff;
    }

        .hero-data-component .info-container .title {
            text-align: center;
            font-size: 24px;
            margin: 0 10px;
        }

            .hero-data-component .info-container .title.print {
                display: none;
            }

        .hero-data-component .info-container .data-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }

            .hero-data-component .info-container .data-container .data {
                text-align: center;
                max-width: calc(80% - 80px);
                max-width: 100%;
                min-width: 220px;
                width: 100%;
                margin: 20px 40px;
            }

                .hero-data-component .info-container .data-container .data .heading {
                    display: inline-block;
                    font-size: 30px;
                    font-weight: 700;
                    text-transform: uppercase;
                    position: relative;
                }

                    .hero-data-component .info-container .data-container .data .heading::before {
                        content: "";
                        display: block;
                        height: 1px;
                        width: 100%;
                        position: absolute;
                        bottom: 0;
                        background: #F0AA24;
                    }

                .hero-data-component .info-container .data-container .data .info {
                    margin-top: 6px;
                    display: block;
                }

                    .hero-data-component .info-container .data-container .data .info.print {
                        display: none;
                    }

    .hero-data-component .image {
        display: none;
    }

@media (min-width: 60em) {
    .hero-data-component {
        height: 330px;
    }

        .hero-data-component .info-container .data-container .data {
            max-width: calc(50% - 80px);
        }

        .hero-data-component .image {
            display: block;
            background-repeat: no-repeat;
            width: 330px;
            background-position: center 10px;
            margin-top: -35px;
        }
}

.hero.hero-view-01.hero-height-01 .media.is-bg {
    min-height: 200px;
}

.section .hero {
    padding: 0;
}

.content-block ul > li::before {
    content: "\25A0";
    display: inline-block;
    color: var(--primary-teal);
    width: 1.8em;
    vertical-align: text-bottom;
    font-size: 0.7rem;
}

.content-block ol {
    padding-left: 1.2em;
}

.content-block ul li {
    margin-bottom: 15px;
    list-style: none;
}