.hero2-image {
    width: 100%;
    height: 80vh;
}

.section-hero2 .swiper-slide {
    position: relative;
}

.section-hero2 .swiper-slide::after {
    content: '';
    background-image: url(../../img/hero.png);
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 435px;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.9;
    z-index: 1;
}

.hero2-slide-content {
    position: absolute;
    bottom: 55px;
    left: 0;
    width: 100%;
    z-index: 2;
}

.hero2-slide-content .container {
    display: flex;
    gap: 36px;
}

.hero2-content {
    width: 100%;
}

.hero2-content-head {
    display: flex;
    justify-content: space-between;
}

.hero2-content-image {
    border-radius: 16px;
	aspect-ratio: 1 / 1;
}

.hero2-content-title {
    font-weight: 600;
    font-size: 44px;
    line-height: 60px;
    color: #fff;
    margin-bottom: 16px;
}

.hero2-content-description span {
    font-size: 22px;
    line-height: 32px;
    color: #fff;
}

.hero2-content-description p {
    font-size: 20px;
    line-height: 32px;
    text-align: justify;
    color: #fff;
    margin-top: 16px;
}

@media (max-width: 991px) {
    .section-hero2 .swiper-slide::after {
        display: none;
    }

    .hero2-image {
        height: 506px;
        object-fit: cover;
    }

    .hero2-slide-content .container {
        flex-direction: column;
        gap: 12px;
        padding: 0;
        align-items: center;
    }

    .hero2-content-image {
        width: 100px;
        height: 100px;
    }

    .hero2-content-head {
        flex-direction: column;
        align-items: center;
    }

    .hero2-content-description {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .section-hero2 .swiper-pagination {
        margin: 0;
        position: absolute;
        bottom: 16px;
        z-index: 2;
        left: 50%;
        transform: translateX(-50%);
    }

    .section-hero2 .swiper-pagination .swiper-pagination-bullet {
        background: rgba(255, 255, 255, 1);
    }

    .section-hero2 .swiper-pagination .swiper-pagination-bullet-active {
        background: rgba(255, 255, 255, 1);
    }
}