.brands-marquee-container {
  overflow: hidden;

  padding: 20px 0;
}

.brands-marquee-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}

.brand-item {
  flex: 0 0 auto;
  margin-right: 32px;
  cursor: grab;
}

.brand-item img {
  display: block;
  max-height: 80px;
  transition: transform 0.6s ease-in-out;
}

.brand-item:hover img {
  transform: scale(1.05);
}

.brand-item:first-child {
  margin-left: 32px;
}
.brand-item:last-child {
  margin-right: 32px;
}

@media (min-width: 1024px) {
  .brands-marquee-wrapper .brand-item img {
    max-height: 100px !important;
  }
}
