.partners-container {
  width: calc(100vw - 30px); /* Le conteneur occupe toute la largeur de la page */
  overflow: hidden; /* Empêche les éléments de sortir de la zone visible */
}

.partners-carousel {
  display: flex; /* Aligne les éléments en ligne */
  flex-direction: row;
  animation: scroll 20s linear infinite; /* Animation fluide */
  width: 100%; /* Assurez-vous que le carrousel occupe toute la largeur de la page */
}

.partner {
  flex: 0 0 25%; /* Each partner now occupies 45% of the available width */
  box-sizing: border-box;
  text-align: center;
  margin-right: 0;
  width: 100%;
  text-decoration: none;
}

.partner > img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  max-width: 170px%; /* Ensure it is responsive */
}

@media screen and (max-width: 1000px) {
  .partners-container{width: calc(100vw - 30px);}
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}