:root {
  --marquee-speed: 35s;
  --marquee-gap: 5rem;
}

.marquee {
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--marquee-gap);
  padding: 12px 0;
  margin-bottom: 3pt;
  mask-image: linear-gradient(
	to right,
	rgba(0, 0, 0, 0) 0%,
	rgba(0, 0, 0, 1) 10%,
	rgba(0, 0, 0, 1) 90%,
	rgba(0, 0, 0, 0) 100%
  );
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-width: 100%;
  gap: var(--marquee-gap);
  animation: scroll var(--marquee-speed) linear infinite;
}

@keyframes scroll {
  from {
	transform: translateX(0);
  }
  to {
	transform: translateX(calc(-50% - (var(--marquee-gap) / 2)));
  }
}

.marquee-content img {
  height: 50px;
  width: auto;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.marquee-content img:hover {
  opacity: 1;
}