.logos-defilants {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  animation: defilement 10s linear infinite;
}
.logos-defilants img {
  margin-right: 20px; /* Espacement entre les logos */
  
}

@keyframes defilement {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

.actualites .blog-item{
    border-radius: 10px;
    margin-right: 20px;
    box-shadow: 0 5px 25px rgba(1 1 1 / 100%);
    margin: 10px;
    transition: 0.7s ease;
    width: 25rem;
}

.actualites .blog-item:hover{
   transform: scale(0.9);
   border-radius: 10px;
   padding :15px;
}

.actualites .img{
    height: 12.5rem;
}

.greta .blog-item{
    border-radius: 10px;
    margin-right: 20px;
    box-shadow: 0 5px 25px rgba(1 1 1 / 100%);
    margin: 10px;
    transition: 0.7s ease;
    width: 34rem;
}

.greta .blog-item:hover{
   transform: scale(0.9);
   border-radius: 10px;
   padding :15px;
}

