.moto-main-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.moto-main-slider .swiper-slide {
    width: 66%; /* 80% width means 10% visible on left and 10% on right */
    height: 100%;
    transition: all 0.4s ease;
    /**/
    transform: scale(0.9);
    overflow: hidden;
    background: #000;
}

.moto-main-slider .swiper-slide-active {
    transform: scale(1.05);
    z-index: 2;
}

.moto-main-slider .swiper-slide img {
    width: 100%;
    display: block;
}



/* Скрываем стандартные стрелки swiper, если они есть */
.swiper-button-prev:after, .swiper-button-next:after {
    content: none;
}
@media screen and (max-width: 1240px) {
    .moto-main-slider{
        margin-bottom: 26px;
    }
}
@media screen and (max-width: 960px) {
    .moto-main-slider{
        margin-bottom: 24px;
    }
}
@media (max-width: 640px) {
    .moto-main-slider{
        margin-bottom: 20px;
    }
    .moto-main-slider .swiper-slide {
        width: 100%;
        transform: none;
    }
}

