/* Carousel / Swiper overrides */

.clients-carousel {
    padding-bottom: 50px;
}

.clients-carousel .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--color-text-gray);
    opacity: 0.4;
    transition: all var(--transition-speed) ease;
}

.clients-carousel .swiper-pagination-bullet-active {
    background-color: var(--color-accent-lime);
    opacity: 1;
    transform: scale(1.2);
}

.clients-carousel .swiper-button-next,
.clients-carousel .swiper-button-prev {
    color: var(--color-accent-lime);
    width: 44px;
    height: 44px;
}

.clients-carousel .swiper-button-next::after,
.clients-carousel .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.clients-carousel .swiper-button-next:hover,
.clients-carousel .swiper-button-prev:hover {
    transform: scale(1.1);
}
