.swiper-slide {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.swiper-button-next
{
    position: absolute;
    background-image: url('/images/backgrounds/pages/slider/arrow_right.png');
    background-repeat: no-repeat;
    background-size: cover;
    right: 0px!important;
    height: 90px!important;
    width: 58px!important;
    outline: 0px; 
    cursor: pointer;   
}

  .swiper-button-prev
{
    background-image: url('/images/backgrounds/pages/slider/arrow_left.png');
    background-repeat: no-repeat;
    background-size: cover;
    left: 0px!important;
    height: 90px!important;
    width: 58px!important;
    outline: 0px;
    position: absolute;
    cursor: pointer;
}


.swiper-button-next::after, .swiper-button-prev::after {
    display: none;
  }


.control-mobile{
    position: fixed;
    display: none; 
    height: 50px;
    width: 100%;
    background: rgba(0,0,0,0.25);
    bottom: 10px;
    z-index: 2;
    justify-content: center;
    align-items: center;
    padding: 0px 30px;
}

.swiper-slide {
    padding: 85px 15px;
}

.control-m-prev {
    background-image: url('/images/backgrounds/pages/slider/arrow-point-to-left.png');
    height: 19px;
    width: 19px;
    background-position: center center;
    background-size:cover;
}

.control-m-next {
    background-image: url('/images/backgrounds/pages/slider/arrow-point-to-right.png');
    height: 19px;
    width: 19px;
    background-position: center center;
    background-size:cover;
}


.control-mobile .spacing {
    flex: 1;
}


 @media (orientation: portrait){

    
    .swiper-slide {
        padding: 75px 15px;
    }

    .swiper-button-next::after, .swiper-button-prev::before {
        display: none;
      }

      .control-desktop{
          display: none;
      }

    .control-mobile {
        display: flex;
    }

}

