.h-hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: clamp(400px, 70vw, calc(100vh - 100px));
}
.heroSwiper{
    height: 100%;
}
/* Swiper */
.hero-swiper,
.hero-swiper .swiper-slide {
    height: 100%;
}

/* Background */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.h-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(6,78,59,0.55), transparent);
    z-index: 1;
}

/* Content */
.hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--color-white);
}

.hero-buttons {
    display: flex;
    gap: clamp(10px, 2vw, 20px);
    flex-wrap: wrap;
}

/* Pagination */
.hero-pagination {
    position: absolute;
    --swiper-pagination-bottom: clamp(20px, 4vw, 40px);
    --swiper-pagination-bullet-horizontal-gap: 6px;
    right: 0;
    z-index: 10;
    padding-right: clamp(15px, 4vw, 40px);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 100%;
}

.hero-pagination .swiper-pagination-bullet {
    --swiper-pagination-bullet-width: clamp(30px, 6vw, 60px);
    --swiper-pagination-bullet-height: 4px;
    --swiper-pagination-bullet-border-radius: 0;
    background: rgba(var(--white-rgb),0.3);
    opacity: 1;
    cursor: pointer;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--color-tertiary);
}