

.slide-container {
  /* max-width: 1120px; */
  width: 100%;
  padding: 40px 0;
}

.slide-content {
  margin: 0 40px;
  overflow: hidden;
}

.card {
  background-color: #FFF;
}
/* .card.swiper-slide.swiper-slide-next {
  height: 307px;
} */

/* image  */
.image-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  row-gap: 5px;
}
.card-image {
  position: relative;
  height: 200px;
  width: 100%;
  border-radius: 50%;
  background: #FFF;
  padding: 3px;
}

.card-image .card-img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}


/* Text  */
.card-content {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
}
.name {
  font-size: 18px;
  font-weight: 500;
  color: #333;
}
.description {
  font-size: 14px;
  color: #707070;
}







.itemScrollBtn {
  /* need to remove the display none  */
  /* display: none; */
  border: none;
  font-size: 16px;
  color: white;
  padding: 8px 16px;
  background-color: #707070;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.itemScrollBtn:hover {
  background: var(--accent-color)
}
.swiper-navBtn {
  color: #000000;
  transition: color 0.2s ease;
}

.swiper-navBtn:hover {
  color:  #7a7a7a;
}

.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 35px;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev {
  left: 0;
}

.swiper-pagination-bullet {
  background-color: #7a7a7a;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #000000;
}

@media screen and (max-width: 768px) {
  .slide-content {
    margin: 0 10px;
  }

  .swiper-navBtn {
    display: none;
  }
}