    
.swiper-container-wrapper {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: 1300px;
      margin: auto;
    }
    .swiper {
      width: 90%;
      padding-bottom: 3rem;
    }
    .swiper-slide {
      text-align: center;
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background: #fff;
      overflow: hidden;
      padding-bottom: 1rem;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      /*padding-bottom: 1rem; background: #fff;*/
    }
    .swiper-slide img {
      width: 100%;
      height: auto;
      display: block;
      -moz-transition: all 0.7s;
        -webkit-transition: all 0.7s;
        transition: all 0.7s;
    }
    .swiper-slide:hover img {
      -moz-transform: scale(1.3);
      -webkit-transform: scale(1.3);
      transform: scale(1.3);
    }
    .swiper-slide p {
      margin: 0.5rem 0 0;
      font-size: 1rem;
      font:bold 18px/18px Cabin Sketch;
      color: #333;
    }
    .swiper-button-prev,
    .swiper-button-next {
      color: #000;
      top: 50%;
      transform: translateY(-50%);
      position: absolute;
      z-index: 10;
    }
    .swiper-button-prev {
      left: -10px;
    }
    .swiper-button-next {
      right: -10px;
    }
    .swiper-pagination {
      bottom: 0;
      position: absolute;
      width: 100%;
      text-align: center;
    }  
    
    .btnPrevNext {
        
         font:bold 25px Cabin Sketch; color:#000000;  text-decoration:none;
        color: #fff;
        padding: 10px;
        font-size: 0.5rem;
        border: none;
        border-radius: 2rem;
        cursor: pointer;
        background: #3b96e5;
        transition-duration: 0.4s;
         box-shadow: 3px 3px  3px rgba(0,0,0,0.6);
        -moz-box-shadow: 3px 3px  3px rgba(0,0,0,0.6);
        -webkit-box-shadow: 3px 3px  3px rgba(0,0,0,0.6);
        -o-box-shadow: 3px 3px  3px rgba(0,0,0,0.6);
    }

.btnPrevNext:hover {
        background: #fff;
        box-shadow: 0px 2px 20px 10px #999999;
        color: #ff0000;
    }