.swiper-container {
    border-radius: 5px;
    width: 100%;
    overflow: hidden;
    height: fit-content;
    height: fit-content;
    font-size: 50px;
    position: relative;
    padding-bottom: 50px;
    /* font-family: sans-serif; */
  }
  
  .swiper-slide {
    width: auto;
    height: fit-content;
    display: flex;
    height: auto;
    border-radius: 5px;
    overflow: hidden;
    align-items: flex-start;
    flex-direction: column;
    padding: 0px;
    /* font-family: Nunito; */
    /* background-color: #f6f4f1; */
    /* border-top-left-radius: 50px;
    border-top-right-radius: 100px;
    border-bottom-left-radius: 20px; */
  
  }
  
  .swiper-slide .ImgHolder {
    background-color: #c0cfc2;
    display: flex;
    width: 100%;
    height: auto;
    padding: 30px;
    border-top-left-radius: 50px;
    border-top-right-radius: 100px;
    border-bottom-left-radius: 20px;
  
  }

  .swiper-slide .ImgHolder2 {
    background-color: #ffffff;
    display: flex;
    width: 100%;
    height: auto;
    padding: 30px;
    border-top-left-radius: 50px;
    border-top-right-radius: 100px;
    border-bottom-left-radius: 0px;
  
  }
  
  .ContentHolder::before {
    background-color: #c0cfc2;
    content: '';
    width: 50px;
    height: 50px;
    position: absolute;
    top: -5px;
    z-index: -1;
    right: 0px;
  }
  
  .ContentHolder {
    position: relative;
    padding: 10px;
    
    background-color: #c0cfc2;
    
    
  }
  .ContentHolder2::before {
    background-color: #ffffff;
    content: '';
    width: 50px;
    height: 50px;
    position: absolute;
    top: -5px;
    z-index: -1;
    right: 0px;
  }
  
  .ContentHolder2 {
    position: relative;
    padding: 10px;
    width: 100%;
    background-color: #f6f4f1;
    border-top-right-radius: 20px;
    
  }
  
  .swiper-pagination-bullet {
    background-color: #f6f4f1;
    opacity: 1;
    border: 1px solid #f9a531;
  }
  
  .swiper-pagination-bullet-active {
    background-color: #c0cfc2;
  }
  
  .swiper-button {
    border: 1px solid #f6f4f1;
  }
  
  .ImgHolder img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: auto;
    object-fit: cover;
    border: 3px solid #f9a531;
    outline: 2px solid #f6f4f1;
  }

  .ImgHolder2 img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin: auto;
    object-fit: cover;
    border: 3px solid #f9a531;
    outline: 2px solid #f6f4f1;
  }
  
  .swiper-slide h3 {
    font-size: 1.1rem;
    text-align: center;
    font-weight: bold;
  }
  
  .swiper-slide p {
    font-size: 0.9rem;
    padding: 5px;
  }
  
  @media (max-width:638px) {
    .swiper-container {
      width: 100%;
    }
  }
  
  @media (max-width:500px) {
    .swiper-container {
      width: 100%;
    }
  }
  
  @media (max-width:300px) {
    .swiper-container {
      width: 100%;
    }
  
    .swiper-slide {
      border-radius: 0px;
    }
  
    .swiper-container .ImgHolder {
      border-radius: 0px;
    }
    .ContentHolder{
      border-radius: 0px;
    }
  }
  
  .boxy {
    animation: boxy 60s linear infinite;
  }

  @keyframes boxy {
    0%{
       transform: rotate(0deg);
      }
   100%{
       transform: rotate(360deg);
      }
   }


