/* ==========================================================================
   HERO SWIPER SLIDER BANNER - BEM 
   ========================================================================== */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero__container {
    width: 100%;
    min-height: clamp(650px, 85vh, 850px);
}

.hero__slide {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: clamp(650px, 85vh, 850px);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 300px;
    box-sizing: border-box;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero__slide>.container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* CONTAINER BAO BÊN NGOÀI: TẤT CẢ THẺ CON SẼ KẾ THỪA COLOR VÀ TEXT-ALIGN TỪ ĐÂY */
.hero__content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    box-sizing: border-box;
}

.hero__content.align-left {
    align-items: flex-start;
    text-align: left;
    margin-left: 0;
}

/* THẺ PHÂN TRANG SWIPER SLIDER */
.hero__pagination {
    position: absolute;
    bottom: 35px;
    left: 0;
    width: 100%;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.hero__pagination .swiper-pagination-bullet {
    width: 45px;
    height: 3px;
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0.45);
    opacity: 1;
    margin: 0;
    transition: var(--transition-base);
    cursor: pointer;
}

.hero__pagination .swiper-pagination-bullet-active {
    background-color: var(--text-white);
    width: 75px;
}

@media (max-width: 767px) {

    .hero__container,
    .hero__slide {
        min-height: 540px;
    }

    .hero__slide {
        padding-top: 250px;
        padding-bottom: 50px;
    }

    .hero__pagination {
        bottom: 20px;
    }

    .hero__pagination .swiper-pagination-bullet {
        width: 35px;
    }

    .hero__pagination .swiper-pagination-bullet-active {
        width: 55px;
    }
}