
.swiper-container {
  border-radius: 5px;
  width: 50vw;
  overflow: hidden;
  height: fit-content;
  font-size: 60px;
  position: relative;
  /* padding-bottom: 50px; */ 
}

/* .swiper-slide {
  width: auto;
  height: fit-content;
  display: flex;
  height: 500px;
  border-radius: 5px;
  overflow: hidden;
  align-items: flex-start;
  flex-direction: column;
  padding: 0px;
  font-family: Nunito;
  background-color: white;
} */

.swiper-slide .ImgHolder {
  background-color: #53624e;
  display: flex;
  width: 100%;
  height: auto;
  padding: 30px;
  border-bottom-left-radius: 20px;

}

/* .ContentHolder::before {
  background-color: #53624e;
  content: '';
  width: 50px;
  height: 50px;
  position: absolute;
  top: -5px;
  z-index: -1;
  right: 0px;
} */

.ContentHolder {
  position: relative;
  padding: 10px;
  /* height: 400px; */
  height: auto;
  background-color: #a1845a;
  border-top-right-radius: 20px;
  border-radius: 20px;
  color:white;
}

.swiper-pagination-bullet {
  background-color: #53624e;
  opacity: 1;
  border: 1px solid #53624e;
}

.swiper-pagination-bullet-active {
  background-color: #53624e;
}

.swiper-button {
  border: 1px solid white;
}

.swiper-slide img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: auto;
  object-fit: cover;
  border: 3px solid #53624e;
  outline: 2px solid white;
}

.swiper-slide h3 {
  color:white;
  font-size: 1.3rem;
  text-align: center;
  font-weight: bold;
}

.swiper-slide p {
  font-size: 1rem;
  padding: 5px;
}

@media (max-width: 767px) {
  .swiper-container {
    width: 70vw;
  }
}

@media (max-width:638px) {
  .swiper-container {
    width: 100%;
  }
}

@media (max-width:500px) {
  .swiper-container {
    width: 70vw;
  }
}

@media (max-width:300px) {
  .swiper-container {
    width: 100%;
  }

  .swiper-slide {
    border-radius: 0px;
  }

  .swiper-container .ImgHolder {
    border-radius: 0px;
  }
  .ContentHolder{
    border-radius: 0px;
  }
}