.swiper {
    width: 1200px;
    height: 400px;
    position: relative;
  }
  
  .swiper .swiper-slide {
    height: 400px;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
  }
  
  .material-icons {
    font-size: 30px;
    color: black;
    
  }
  
  .swiper-button-prev::after,
  .swiper-button-next::after{
    content: "";
    display: none;
  }
  
  .swiper-pagination {
    color: black;
  }
  
  .swiper-button-prev,
  .swiper-button-next {
    width: 30px;
    height: 30px;
    border: 2px solid black;
    border-radius: 50%;
    position: absolute;
    top: 100px;
    z-index: 1;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .swiper-button-prev {
    left: 20px;
  }
  .swiper-button-next {
    right: 20px;
  }
   