.brand-marquee {
  background: #2d2d2d;
  padding: 20px 10px;
  overflow: hidden;
  position: relative;
}

.brand-header h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #d7d7d7;
}

.marquee {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 60px;
  white-space: nowrap;
  will-change: transform;
}

.brand-item {
  flex: 0 0 auto;
  padding: 10px;
}

.brand-item img {
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: all .5s cubic-bezier(1, 2, 1, 2);
  opacity: 0.8;
  border-radius: 10px;
}

.brand-item img:hover {
  opacity: 1;
  transform: scale(1.08);
}

@media (max-width:768px) {
  .brand-item img {
    height: 70px;
  }
}

