.swiper-button-prev,
.swiper-button-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    color:var(--sch-primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .12);
    transition: .3s;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 18px;
    font-weight: 700;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--sch-primary);
    color: #fff;
    transform: translateY(-3px);
}

.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d1d5db;
    opacity: 1;
    transition: .3s;
}

.swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 20px;
    background: var(--sch-primary);
}

