.home-hero-swiper .swiper-pagination {
    bottom: 28px !important;
}

.home-hero-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.45);
    border-radius: 9999px;
    height: 14px;
    margin: 0 6px !important;
    opacity: 1;
    overflow: hidden;
    position: relative;
    transition: width 0.28s ease, background-color 0.28s ease;
    width: 14px;
}

.home-hero-swiper .swiper-pagination-bullet::before {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 9999px;
    content: "";
    inset: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left center;
}

.home-hero-swiper .swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 0.28);
    width: 38px;
}

.home-hero-swiper .swiper-pagination-bullet-active::before {
    animation: homeHeroPaginationFill 5000ms linear forwards;
}

@keyframes homeHeroPaginationFill {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.home-services-swiper,
.home-formation-swiper {
    overflow: hidden;
}

@media (min-width: 1024px) {
    .home-services-swiper,
    .home-formation-swiper {
        overflow: visible;
    }

}

.home-services-pagination,
.home-formation-pagination {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 16px;
}

.home-services-pagination .swiper-pagination-bullet,
.home-formation-pagination .swiper-pagination-bullet {
    background: #4a5565;
    height: 8px;
    margin: 0;
    opacity: 0.35;
    width: 8px;
}

.home-services-pagination .swiper-pagination-bullet-active,
.home-formation-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

@media (min-width: 1024px) {
    .home-services-pagination,
    .home-formation-pagination {
        display: none;
    }
}
