
.swiper {
    width: 100%;
    height: 100%;
  }
  
  .swiper-wrapper {
    margin-top: 2em;
    margin-bottom:3rem;
    
  }
  
  .swiper-slide {
    font-size: 1.125rem;
    background: #fff;
  
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex; */
   
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:100px;
    
  -webkit-box-pack: center;
    

  }
  
  .swiper-button-prev,
  .swiper-button-next {
    background: rgba(0, 0, 30, 0.5);
    border-radius: 50%;
    color: var(--white);
    width: 20px;
  }
  
  .swiper-button-prev {
  
    background: url('../assets/images/about/arrow-left-icon.png') no-repeat;
    background-size: 30%;
    background-color: rgba(0, 0, 30, 0.5);
    background-position: 45% 50%;
    margin-top:0.5rem;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    overflow: hidden;
  }
  
  .swiper-button-next {
   
    background: url('../assets/images/about/arrow-right-icon.png') no-repeat;
    background-size: 30%;
    background-color: rgba(0, 0, 30, 0.5);
    background-position: 57.5% 50%;
    margin-top:0.5rem;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    overflow: hidden;
  }
  
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    background-color: var(--blue-primary);
  }
  
  .swiper-button-prev::after,
  .swiper-button-next::after {
    display: none;
  }
  
  .swiper-pagination-bullet-active {
    background: var(--blue-primary);
  }


  @media screen and (min-width:768px) and (max-width:991px){
    .swiper-slide {
      
      gap:50px; 
  
    }

  }
  @media screen and (max-width:768px){
    .swiper-slide {
   
    
      display: flex;
     
      flex-direction:column;
      
      
   
      
  
    }

  }