.banner-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 790px;
}
.banner-slider-section.inner_page {
    min-height: 500px;
}
.bannerSwiper,
.bannerSwiper .swiper-wrapper,
.bannerSwiper .swiper-slide {
    width: 100%;
    height: 100%;
}
.banner {
    position: relative;
    display: flex;
    align-items: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}
.banner.home_page,
.banner.home_page:not(.ban_video_bg) {
    min-height: 790px;
    height: auto;
}
.banner.inner_page,
.banner.inner_page:not(.ban_video_bg) {
    min-height: 500px;
    max-height: none;
    height: auto;
}
.banner.ban_color_bg {
    background: var(--banner-bg-color);
}
.banner.ban_img_bg {
    background-image: var(--desktopBGImg);
}
.banner.ban_video_bg {
    background: var(--black);
}
.banner-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.banner .container {
    position: relative;
    z-index: 3;
}

.banner.ban_img_bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25); /* Adjust 0.15 - 0.35 */
    z-index: 1;
    pointer-events: none;
}

.banner .row {
    min-height: calc(790px - var(--header-height, 120px));
    display: grid;
    /*grid-template-columns: minmax(0, 640px) 1fr;*/
    grid-template-columns: 1fr;
    align-items: center;
}
.banner.inner_page .row {
    min-height: calc(500px - var(--header-height, 120px));
    grid-template-columns: 1fr;
}

.banner .content-flex-col {
    position: relative;
    z-index: 3;
    padding: 7rem 0 7.25rem;
}
.banner.inner_page .content-flex-col {
    padding: 0;
}
.banner-title * {
    margin: 0;
}
.banner-title .banner-pre-heading {
    margin-bottom: 10px;
    color: var(--white);
    font-family: var(--h1FontFamily);
    font-size: var(--h3DeskFont);
    font-weight: var(--h3FontWt);
    line-height: var(--h3DeskLineHt);
    text-transform: uppercase;
    letter-spacing: 0.2px;
}
.banner-title .banner-main-heading {
    margin-bottom: 15px;
    color: var(--white);
    font-family: var(--h1FontFamily);
    font-size: clamp(var(--h1MobFont), 4.8vw, var(--h1DeskFont));
    font-weight: var(--h1FontWt);
    line-height: var(--h1DeskLineHt);
    text-transform: uppercase;
    letter-spacing: 0.2px;
}
.banner-title .banner-sub-heading {
    /*max-width: 660px;*/
    margin-bottom: 35px;
    color: var(--white);
    font-family: var(--h2FontFamily);
    font-size: var(--h2DeskFont);
    font-weight: var(--h2FontWt);
    line-height: var(--h2DeskLineHt);
    text-transform: none;
    letter-spacing: 0.2px;
}
.banner .desc *,
.banner .desc.bottom-content * {
    /*max-width: 660px;*/
    color: var(--white);
    font-family: var(--defaultFontFamily);
    font-size: var(--defaultDeskFont);
    font-weight: var(--defaultFontWt);
    line-height: var(--defaultDeskLineHt);
}
.banner .desc {
    margin-bottom: 35px;
}

/* Swiper navigation */
.bannerSwiper .swiper-button-prev,
.bannerSwiper .swiper-button-next {
    width: 34px;
    height: 34px;
    color: transparent;
}
.bannerSwiper .swiper-button-prev {
    left: 24px;
}
.bannerSwiper .swiper-button-next {
    right: 24px;
}
.bannerSwiper .swiper-button-prev::after,
.bannerSwiper .swiper-button-next::after {
    content: "";
    width: 16px;
    height: 16px;
    border-top: 4px solid var(--white);
}
.bannerSwiper .swiper-button-prev::after {
    border-left: 4px solid var(--white);
    transform: rotate(-45deg);
}
.bannerSwiper .swiper-button-next::after {
    border-right: 4px solid var(--white);
    transform: rotate(45deg);
}
.bannerSwiper .swiper-pagination {
    bottom: 12px;
}
.bannerSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: transparent;
    border: 1px solid var(--white);
    opacity: 1;
}
.bannerSwiper .swiper-pagination-bullet-active {
    background: var(--white);
    outline: none;
}

/* Responsive */
@media (max-width: 1399.98px) {
    .banner-slider-section,
    .banner.home_page {
        min-height: 680px;
    }
    .banner:not(.home_page) {
        min-height: 470px;
    }
    .banner .row {
        min-height: calc(680px - var(--header-height, 120px));
    }
    .banner:not(.home_page) .row {
        min-height: calc(470px - var(--header-height, 120px));
    }
    .banner .content-flex-col {
        padding: 6.5rem 0 6rem;
    }
}

@media (max-width: 1199.98px) {
    .banner-slider-section,
    .banner.home_page {
        min-height: 620px;
    }
    .banner:not(.home_page) {
        min-height: 430px;
    }
    .banner .row {
        grid-template-columns: minmax(0, 680px) 1fr;
        min-height: calc(620px - var(--header-height, 120px));
    }
    .banner:not(.home_page) .row {
        min-height: calc(430px - var(--header-height, 120px));
    }
    .banner .content-flex-col {
        padding: 5.75rem 0 5.25rem;
    }
    .banner-title .banner-main-heading {
        font-size: clamp(2.6rem, 4.8vw, 4.4rem);
    }
    .banner-title .banner-sub-heading,
    .banner .desc {
        font-size: 1.05rem;
    }
}

@media (max-width: 991.98px) {
    .banner-slider-section,
    .banner.home_page {
        min-height: 760px;
    }
    .banner:not(.home_page) {
        min-height: 520px;
    }
    .banner .row {
        grid-template-columns: 1fr;
        min-height: calc(760px - var(--header-height, 120px));
    }
    .banner:not(.home_page) .row {
        min-height: calc(520px - var(--header-height, 120px));
    }
    .banner .content-flex-col {
        max-width: 560px;
    }
    .banner-title .banner-main-heading {
        line-height: normal;
    }
    .bannerSwiper .swiper-button-prev {
        left: 12px;
    }
    .bannerSwiper .swiper-button-next {
        right: 12px;
    }
}

@media (max-width: 767.98px) {
    .banner.ban_img_bg {
        background-image: var(--mobileBGImg);
    }
    .banner-slider-section,
    .banner.home_page {
        min-height: 720px;
    }
    .banner:not(.home_page) {
        min-height: 460px;
    }
    .banner .row {
        min-height: calc(720px - var(--header-height, 120px));
    }
    .banner:not(.home_page) .row {
        min-height: calc(460px - var(--header-height, 120px));
    }
}

@media (max-width: 575.98px) {
    .banner-slider-section,
    .banner.home_page {
        min-height: 680px;
    }
    .banner:not(.home_page) {
        min-height: 390px;
    }
    .banner .row {
        min-height: calc(680px - var(--header-height, 120px));
    }
    .banner:not(.home_page) .row {
        min-height: calc(390px - var(--header-height, 120px));
    }
    .banner-title .banner-sub-heading,
    .banner .desc {
        max-width: 100%;
    }
    .btns-wrap {
        gap: 0.85rem;
        flex-direction: column;
        align-items: stretch;
        display: flex;
        width: 100%;
    }
    .btns-wrap .primary-btn {
        width: 100%;
    }
    .bannerSwiper .swiper-button-prev,
    .bannerSwiper .swiper-button-next {
        display: none;
    }
}