.swiper-main-wrapper {
    overflow: hidden;
    border-radius: 10px;
    margin-top: 15px;
}

.swiper-main-wrapper .swiper {
    width: 100%;
    height: 100%;
}

.swiper-main-wrapper .swiper-slide a {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 224px;
}

.swiper-main-wrapper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.swiper-main-wrapper .swiper-pagination {
    display: none;
    position: static;
}

.swiper-main-wrapper .swiper-pagination-bullet {
    background-color: #dadcde;
}

.swiper-main-wrapper .swiper-pagination-bullet-active {
    background-color: #767d83;
}

.swiper-main-wrapper .swiper-button-next,
.swiper-main-wrapper .swiper-button-prev {
    width: 30px;
    height: 36px;
    margin-top: -18px;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,.15);
    color: #000;
}

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

@media (max-width: 767px) {
    .swiper-main-wrapper .swiper-main-wrapper {
        margin: 15px 15px 0 15px;
    }

    .swiper-main-wrapper .swiper-slide a  {
        height: 130px;
    }

    .swiper-main-wrapper .swiper-pagination {
        display: block;
        bottom: 0;
    }

    .swiper-main-wrapper .swiper-button-next,
    .swiper-main-wrapper .swiper-button-prev {
        display: none;
    }
}