/* mega swapper end */

/* Globaelly style the swiper navigation buttons */
.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

/* ADD CUSTOM ICON */
.swiper-button-prev::before {
    content: "\f284";
    font-family: "bootstrap-icons";
    font-size: 18px;
    color: var(--primary-color);
}

.swiper-button-next::before {
    content: "\f285";
    font-family: "bootstrap-icons";
    font-size: 18px;
    color: var(--primary-color);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #000;
}

.swiper-button-next:hover::before,
.swiper-button-prev:hover::before {
    color: #fff;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    z-index: 10;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #726e6e7d;
    border: 1px solid #706a68;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}


.app-brands-swiper-button-next {
    right: -8px;

}

.app-brands-swiper-button-prev {
    left: -8px;

}

.testimonial-prev {
    left: -8px;
}

.testimonial-next {
    right: -8px;
}



/* 📱 Mobile (600px se niche) */
@media (max-width: 600px) {


    .testimonial-prev {
        left: 5px;
    }

    .testimonial-next {
        right: 5px;
    }

    .app-brands-swiper-button-next {
        right: 5px;

    }

    .app-brands-swiper-button-prev {
        left:5px;
    }



    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
}