@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,600&display=swap');

.card .image {
  width: 100%;
  height: 100%;
  padding: 2px;
  background: #fff;
}
.card h3 {
  text-align: center;
}

.card p {
  color: orange;
  text-align: center;
}

.swiper-container {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.swiper {
  margin: 0 auto;
  cursor: grab;
  margin-top: 20px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-button-next,
.swiper-button-prev {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px #ccc;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
  color: #000;
}

.swiper-button-next:hover {
  transform: scale(1.2) translateX(80%);
}

.swiper-button-prev:hover {
  transform: scale(1.2) translateX(-80%);
}

.swiper-button-next {
  transform: translateX(100%);
}

.swiper-button-prev {
  transform: translateX(-100%);
}

.swiper-pagination {
  transform: translateY(200%);
}

.swiper-pagination-bullet {
  background: #fff;
  width: 15px;
  height: 15px;
}

/* Media query for smaller screens */
@media (max-width: 900px) {
  .card {
    max-width: 100%; /* Set maximum width for smaller screens */
  }
}
