.production-photogallery {
    padding: 50px 0;
}
.production-photogallery-slide {
    display: block;
    background-size: cover;
    text-align: center;
}
.production-photogallery .swiper-button {
    background-size: 30%;
    height: 54px;
    width: 54px;
    border-radius: 27px;
    transition: all .2s linear;
    background-attachment: inherit;
    background-color: #96bf01;
    background-repeat: no-repeat;
    background-position: 50%;  
    outline: none;
}
.production-photogallery .swiper-button-prev {
    background-image: url(img/slider-arr-prev.png);
    left: 10%;
}
.production-photogallery .swiper-button-next {
    background-image: url(img/slider-arr-next.png);
    right: 10%;
}
.production-photogallery .swiper-button-prev:hover {
    left: calc(10% - 5px);
}
.production-photogallery .swiper-button-next:hover {
    right: calc(10% - 5px);
}

@media only screen and (max-width: 1150px) {
    .production-photogallery .swiper-button {
        display: none;
    }
}