.swiper {
  width: 100%;
  height: 100%;
}
.big-banner {
  background-color: #dff9e9;
  border-radius: 8px;
  padding: 12px 24px;
  display: flex;
  flex-direction: column;
}
.swiper-backface-hidden .swiper-slide {
  display: flex;
  gap: 16px;
}
.swiper-slide {
  padding: 40px;
  display: flex;
  flex-direction: row !important;
  justify-content: center;
  align-items: stretch; /* Ensures all flex items have the same height */
}
.card-client {
  width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Pushes .info to the bottom */
  gap: 16px;
  background-color: rgb(245, 245, 245);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0px 8px 24px 0px rgba(75, 41, 126, 0.2392156863);
}
.card-client img {
  width: 40px;
  height: 40px;
  border-radius: 20px;
}
.card-client .info {
  display: flex;
  align-items: center;
  gap: 15px;
}
