.swiper-prev, .swiper-next {
    color: blueviolet;
}

.swiper-prev {
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 10;
}
.swiper-next {
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 10;
}

@media screen and (max-width: 1024px){
    .swiper-prev, .swiper-next {
        display: none;
    }
}
.swiper-image-container {
    width:100%;
}
.swiper-image::after {
    content: '';
    background-image: linear-gradient(rgb(5, 6, 30, 0) 85%, rgba(5, 6, 30, 1) 95%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.swiper-image{display: flex; justify-content: center; }
@media (min-width: 768px){
    .swiper-image-container { width: 50%;}
    .swiper-image-container::after {
        content: '';
        background-image: linear-gradient(to left, rgb(5, 6, 30, 0), rgba(5, 6, 30, 1) 95%);
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        /*z-index: 1;*/
    }

}
