

/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #hero-219 {
        /* Centers button */
        text-align: left;
        /* 144px - 300px - leaving extra space for the navigation */
        padding-top: clamp(6.25rem, 5.114rem + 5.682vw, 9.375rem);
        /* 130px - 200px */
        padding-bottom: clamp(8.125rem, 12.5vw, 25rem);
        position: relative;
        z-index: 1;
    }
    #hero-219 .cs-background {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -2;
        
    }
    #hero-219 .cs-background:before {
        /* Overlay */
        content: "";
        width: 100%;
        height: 100%;
        background-color: rgba(0, 11, 41, 0.486);
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        z-index: 1;
        /* prevents the cursor from interacting with it */
        pointer-events: none;
    }
    #hero-219 .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    #hero-219 .cs-container {
        width: 100%;
        max-width: 60rem;
        margin: clamp(0.625rem, -0.057rem + 3.409vw, 2.5rem);
        margin-top: 0;
    }
    #hero-219 .cs-title {
        /* 39px - 61px */
        font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
        font-weight: 700;
        line-height: 1.2em;
        text-align: left;
        max-width: 61.8125rem;
        /* 16px - 24px */
        margin: 0;
        color: #fff;
        position: relative;
    }
    #hero-219 .cs-underline{
      fill:#fff;
      max-width: 300px;
    }
    #hero-219 .cs-text {
        /* 18px - 26px */
        font-size: clamp(1.125rem, 0.943rem + 0.909vw, 1.625rem);
        line-height: 1em;
        text-align: left;
        width: 100%;
        /* 464px - 622px */
        max-width: 95%;
        margin: 0 auto 0 0;
        padding: 0 10px 0 0;
        /* 40px - 48px */
        margin-bottom: clamp(2.5rem, 4vw, 3rem);
        color: #fff;
    }
    #hero-219 .cs-button-solid {
        font-size: clamp(1.125rem, 0.898rem + 1.136vw, 1.75rem);
        line-height: 3.5rem;
        text-decoration: none;
        font-weight: 700;
        margin: auto;
        color: #fff;
        padding: 0 .5rem;
        background-color: var(--primary);
        border-radius: .5rem;
        display: inline-block;
        position: relative;
        z-index: 1;
    }
    #hero-219 .cs-button-solid:before {
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 0%;
        background: var(--primaryDark);
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: .5rem;
        transition: width 0.3s;
    }
    #hero-219 .cs-button-solid:hover:before {
        width: 100%;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #hero-219:before,
    body.dark-mode #hero-219:after {
        background: var(--dark);
    }
    body.dark-mode #hero-219 .cs-background:before {
        opacity: 0.85;
    }
}