/* .cards {
  display: grid;
  place-items: center;
  min-height: 300px;
  width: 500px;
}
.outer {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cards .card {
  background: white;
  padding: 1.5rem;
  max-width: 50rem;
  min-width: 30rem;
  border-radius: 0.5rem;
  position: absolute;
  pointer-events: none;
  opacity: 0;
  animation: animate 15s infinite linear;
  animation-delay: calc(3s * var(--delay));
}

.profile .header {
  display: flex;
  align-items: center;
}

.header {
  justify-content: space-between;
}

.profile {
  margin-bottom: 1rem;
}

.profile .img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  padding: 5px;
  overflow: hidden;
  background: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.178);
}

.profile .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.profile .details {
  margin-left: 10px;
}

.op-star {
  color: #28223f;
  font-size: 1.1rem;
}

.outer:hover .card {
  animation-play-state: paused;
}

.cards .card:last-child {
  animation-delay: calc(-3s * var(--delay));
}

@keyframes animate {
  0% {
    opacity: 0.04;
    transform: translateY(100%) scale(0.25);
  }

  5%,
  20% {
    opacity: 1;
    transform: translateY(100%) scale(0.5);
  }

  25%,
  40% {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0%) scale(1);
  }

  45%,
  60% {
    opacity: 0.04;

    transform: translateY(-100%) scale(0.5);
  }

  65%,
  100% {
    opacity: 0;

    transform: translateY(-100%) scale(0.25);
  }
} */

#verticalSwiper {
  width: 500px;
  height: 400px; /* Hauteur maximale */
  overflow: hidden;
}

#verticalSwiper .swiper-pagination.swiper-pagination-vertical {
  display: none !important;
  visibility: hidden;
  /* Espace entre le carousel et les bullets */
}

/* Optionnel : Ajoute un peu d'espacement entre les bullets elles-mêmes */
#verticalSwiper .swiper-pagination-bullet:only-child {
  display: none !important;
  visibility: hidden;
  /* Espace entre les bullets si nécessaire */
}

#verticalSwiper swiper-slide {
  background: white;
  padding: 1.5rem;
  max-width: 27rem;
  min-width: 20rem;

  display: flex;
  vertical-align: middle;
  align-items: center;
  border-radius: 0.5rem;
  text-align: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
#verticalSwiper swiper-slide p {
  text-align: center;
}

#verticalSwiper swiper-slide:not(.swiper-slide-active) {
  transform: scale(0.5);
  opacity: 0.4;
  /* background: #f0f0f0; */
}

#verticalSwiper swiper-slide.swiper-slide-active {
  transform: scale(1);
  opacity: 1;
  font-size: 20px;
  /* background: #fff; */
}

#propos-block {
  width: 57%;
}

@media (max-width: 1024px) {
  #propos-block {
    width: 100%;
  }
}
