.ngc-hero-slider {
    width: 100%;
    height: var(--ngc-slider-height-desktop, 650px);
    position: relative;
    overflow: hidden;
}

.ngc-hero-slide {
    position: relative;
    height: var(--ngc-slider-height-desktop, 650px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.ngc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.35), rgba(0,0,0,.1));
    z-index: 1;
}

.ngc-hero-container {
    position: relative;
    z-index: 2;
    width: min(1200px, 92%);
    margin: 0 auto;
    color: #fff;
    text-align:center;
    display:flex;
    align-items: center;
    justify-content:center;
    flex-direction:column;
}

.ngc-hero-small-title {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: #fff;
    text-align:center;
}

.ngc-hero-heading {
    max-width: 720px !important;
    margin: 0 0 26px !important;
    font-size: clamp(36px, 5vw, 55px) !important;
    line-height: 1.05 !important;
    font-weight: 800 !important;
    color: #fff !important;
    text-align:center !important;
}

.ngc-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 28px;
    border-radius: 6px;
    background: #e52521;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: transform .25s ease, background .25s ease;
}

.ngc-hero-btn:hover {
    background: #c91f1b;
    color: #fff;
    transform: translateY(-2px);
}

.ngc-hero-slider .swiper-button-prev,
.ngc-hero-slider .swiper-button-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    color: #111;
}

.ngc-hero-slider .swiper-button-prev:after,
.ngc-hero-slider .swiper-button-next:after {
    font-size: 18px;
    font-weight: 700;
}

.ngc-hero-slider .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    background: #fff;
    opacity: .65;
}

.ngc-hero-slider .swiper-pagination-bullet-active {
    background: #e52521;
    opacity: 1;
}

@media (max-width: 767px) {
    .ngc-hero-overlay {
        background: rgba(0,0,0,.62);
    }

    .ngc-hero-heading {
        font-size: 38px;
    }

    .ngc-hero-slider .swiper-button-prev,
    .ngc-hero-slider .swiper-button-next {
        display: none;
    }
}


/* Responsive slider heights configured from Hero Slides > Slider Settings. */
@media (max-width: 1024px) {
    .ngc-hero-slider,
    .ngc-hero-slider .ngc-hero-slide {
        height: var(--ngc-slider-height-tablet, 520px);
    }
}

@media (max-width: 767px) {
    .ngc-hero-slider,
    .ngc-hero-slider .ngc-hero-slide {
        height: var(--ngc-slider-height-mobile, 420px);
    }
}