.section-brands {
  overflow: hidden;
  padding: 0;
  width: 100%;
  margin: 0 auto;
  max-width: 1428px;
}

.section-brands div {
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  animation: scroll-left 30s linear infinite;
}

.section-brands div ul {
  display: flex;
  list-style: none;
  align-items: center;
  padding: 30px 0 73.31px 0;
  margin: 0;
}

.section-brands div ul li {
  width: 100%;
  margin: 0 20px;
}

.section-brands div ul li img {
  filter: grayscale(1) invert(0);
}

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

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1025px) {
  .section-brands div ul {
    padding: 34.92px 0;
  }

  .section-brands div ul li {
    margin: 0 10px;
  }
}
