/* Hero Section */
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #hero-997 {
        z-index: 1;
        overflow: hidden;
        position: relative;
        padding: clamp(12.5rem, 25.95vw, 18.75rem) 1rem 0;
        padding-bottom: clamp(6.25rem, 25.95vw, 15.625rem);
    }
    #hero-997 .cs-container {
        width: 100%;
        margin: auto;
        display: flex;
        max-width: 80rem;
        position: relative;
        flex-direction: column;
        align-items: flex-start;
        gap: clamp(6.25rem, 25vw, 12.5rem);
    }
    #hero-997 .cs-content {
        width: 100%;
        display: flex;
        max-width: 59.6875rem;
        flex-direction: column;
        box-sizing: border-box;
        align-items: flex-start;
        justify-content: flex-start;
    }
    #hero-997 .cs-topper {
        width: 100%;
        gap: 1.25rem;
        display: flex;
        text-align: left;
        font-weight: 700;
        line-height: 1.2em;
        position: relative;
        white-space: nowrap;
        align-items: center;
        letter-spacing: 0.1rem;
        margin-bottom: 1.75rem;
        text-transform: uppercase;
        justify-content: flex-start;
        color: var(--bodyTextColorWhite);
        font-size: clamp(0.8125rem, 1.6vw, 1rem);
    }
    #hero-997 .cs-topper:after {
        /* white line */
        width: 50%;
        opacity: 1;
        content: "";
        height: 1px;
        display: block;
        max-width: 7.5rem;
        position: relative;
        background: currentColor;
    }
    #hero-997 .cs-title {
        width: 100%;
        max-width: 20ch;
        font-weight: 900;
        text-align: left;
        line-height: 1.2em;
        margin: 0 0 2rem 0;
        position: relative;
        color: var(--bodyTextColorWhite);
        font-size: clamp(2.4375rem, 6.4vw, 5rem);
    }
    #hero-997 .cs-color {
        color: var(--primary);
    }
    #hero-997 .cs-text {
        width: 100%;
        text-align: left;
        line-height: 1.5em;
        margin: 0 0 2rem 0;
        max-width: 39.375rem;
        color: var(--bodyTextColorWhite);
        font-size: clamp(1rem, 1.95vw, 1.25rem);
    }
    #hero-997 .cs-button-box {
        gap: 1.25rem;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
    }
    #hero-997 .cs-button-transparent {
        margin: 0;
        padding: 0;
        z-index: 1;
        color: #FFF;
        font-size: 1rem;
        width: 11.25rem;
        font-weight: 700;
        transition: 0.3s;
        position: relative;
        align-items: center;
        white-space: nowrap;
        display: inline-flex;
        text-decoration: none;
        box-sizing: border-box;
        border-radius: 0.75rem;
        justify-content: center;
        background: transparent;
        text-transform: uppercase;
        font-family: var(--bodyFont);
        height: clamp(2.875rem, 5.5vw, 3.5rem);
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        border: 2px solid var(--bodyTextColorWhite);
    }
    #hero-997 .cs-button-transparent:hover {
        color: #1A1A1A;
        background: #FFF;    
    }
    #hero-997 .cs-background {
        /* Background Image */
        top: 0;
        left: 0;
        width: 100%;
        z-index: -2;
        height: 100%;
        display: block;
        position: absolute;
    }
    #hero-997 .cs-background:before {
        /* Black Color Overlay */
        content: "";
        width: 100%;
        height: 100%;
        background: linear-gradient(
        41deg,
        rgba(26, 26, 26, 0.9) 30%,
        rgba(26, 26, 26, 0.3) 100%
        );
        top: 0;
        left: 0;
        opacity: 1;
        z-index: 1;
        display: block;
        position: absolute;
        pointer-events: none;
    }
    #hero-997 .cs-background img {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
    }
}
/* Large Desktop Parallax Effect - 1300px */
@media only screen and (min-width: 81.25rem) {
    #hero-997 {
        background: url("../img/hero.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }
    #hero-997 .cs-background img {
        display: none;
    }
}