.general-slider {

  width: 100%;
  height: 250px;

  .swiper-button-prev, .swiper-button-next {
    color: white;
  }

  .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background-color: #000000;
    opacity: .5;
  }

  .swiper-pagination-bullet-active {
    background-color: black;
    opacity: 1;
  }

  .swiper-wrapper {
    -webkit-transition-timing-function:linear!important; 
    -o-transition-timing-function:linear!important;
    transition-timing-function:linear!important; 
  }

  .swiper-slide {
    height: 100%;
    padding: 10px;

    a {
      display: inline-block;
      width: 100%;
      height: 100%;
      overflow: hidden;
      position: relative;
      border-radius: 10px;
      box-shadow: 0 0 0 1px rgba(0, 0, 0, .5), 0 0 6px black;

      img {
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
  }
}