.oc-hero-banner {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #1f2d24;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.oc-hero-banner--no-image {
    background-image: none !important;
}

.oc-hero-banner__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #102619 0%, #1b3323 42%, rgba(27, 51, 35, 0.35) 72%, rgba(27, 51, 35, 0.12) 100%);
    z-index: 1;
}

.oc-hero-banner__container {
    position: relative;
    z-index: 2;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.oc-hero-banner__inner {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.oc-hero-banner-content-width-sm {
    max-width: 36rem;
}

.oc-hero-banner-content-width-md {
    max-width: 46rem;
}

.oc-hero-banner-content-width-lg {
    max-width: 58rem;
}

.oc-hero-banner-height-sm {
    min-height: 24rem;
}

.oc-hero-banner-height-md {
    min-height: 32rem;
}

.oc-hero-banner-height-lg {
    min-height: 40rem;
}

.oc-hero-banner__title {
    margin: 0 0 1rem 0;
    color: inherit;
    line-height: 1.05;
    font-size: clamp(2.25rem, 5vw, 4.75rem);
    font-weight: 500;
}

.oc-hero-banner__lead {
    margin: 0 0 2rem 0;
    max-width: 42rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1.05rem, 2vw, 1.5rem);
    line-height: 1.6;
}

.oc-hero-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    align-items: center;
}

.oc-hero-banner__btn,
.oc-hero-banner__btn:link,
.oc-hero-banner__btn:visited,
.oc-hero-banner__btn:hover,
.oc-hero-banner__btn:focus,
.oc-hero-banner__btn:active {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.85rem 1.35rem;
    border-radius: 9999px;
    text-decoration: none !important;
    white-space: nowrap;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}

.oc-hero-banner__btn i {
    line-height: 1;
}

.oc-hero-banner__btn span {
    display: inline-block;
}

.oc-hero-banner__btn:focus,
.oc-hero-banner__btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.oc-hero-banner__btn--primary,
.oc-hero-banner__btn--primary:link,
.oc-hero-banner__btn--primary:visited {
    background-color: #ffffff;
    border: 1px solid #ffffff;
    color: #163322 !important;
}

.oc-hero-banner__btn--primary:hover,
.oc-hero-banner__btn--primary:focus,
.oc-hero-banner__btn--primary:active {
    background-color: #f3f4f2;
    border-color: #f3f4f2;
    color: #102619 !important;
}

.oc-hero-banner__btn--secondary,
.oc-hero-banner__btn--secondary:link,
.oc-hero-banner__btn--secondary:visited {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.42);
    color: #ffffff !important;
}

.oc-hero-banner__btn--secondary:hover,
.oc-hero-banner__btn--secondary:focus,
.oc-hero-banner__btn--secondary:active {
    background-color: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.7);
    color: #ffffff !important;
}

.oc-hero-banner__btn--tertiary,
.oc-hero-banner__btn--tertiary:link,
.oc-hero-banner__btn--tertiary:visited {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.95) !important;
    text-decoration: none !important;
}

.oc-hero-banner__btn--tertiary:hover,
.oc-hero-banner__btn--tertiary:focus,
.oc-hero-banner__btn--tertiary:active {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.38);
    color: #ffffff !important;
}

@media (max-width: 991.98px) {
    .oc-hero-banner {
        min-height: 28rem;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

@media (max-width: 767.98px) {
    .oc-hero-banner__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .oc-hero-banner__btn,
    .oc-hero-banner__btn:link,
    .oc-hero-banner__btn:visited,
    .oc-hero-banner__btn:hover,
    .oc-hero-banner__btn:focus,
    .oc-hero-banner__btn:active {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .oc-hero-banner__container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .oc-hero-banner {
        min-height: 24rem;
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
}