#categorie-wrapper{
    margin: 0 auto;
    padding: 20px 0 20px 0;
    overflow: hidden;
    display: flex;
    > * {
      flex: 0 0 100%;
    }
    &:hover .group-categorie {
        animation-play-state: paused;
    }
}
.group-categorie{
    display: flex;
    gap: 20px;
    padding-right: 20px;
}

.home-category-box{
    min-width: 20vw;
    max-width: 20vw;
    margin: 0 auto;
}
.home-category-box figure{
  height: 120px;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 678px) {
    .home-category-box{
        min-width: 75vw;
        max-width: 75vw;
        margin: 0 10px;
    }
}

.group-categorie {
    will-change: transform;
    animation: scrolling 30s linear infinite;
  }

  @keyframes scrolling {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    } 
}

@media (max-width: 1400px) {
  #categorie-wrapper{
    padding: 10px 0;
  }
  .home-category-box figure{
    height: 100px;
}
}
@media (max-width: 768px) {
  #categorie-wrapper{
    padding: 10px 0 80px;
  }
}