.marquee-wrapper {
  text-align: center;
      width: 80%;
      max-width: 100%;
}

.marquee-wrapper .container {
  overflow: hidden;
}

.marquee-inner span {
  float: left;
  width: 50%;
}

.marquee-wrapper .marquee-block {
  --total-marquee-items: 5;
  height: 15em;
  width: calc(250px * var(--total-marquee-items));
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  margin: 20px auto;
  padding: 30px 0;
}

.marquee-inner {
  display: block;
  width: 200%;
  position: absolute;
}

.marquee-inner.to-left {
  animation: marqueeLeft 25s linear infinite;
}

.marquee-inner.to-right {
  animation: marqueeRight 25s linear infinite;
}

.marquee-item {
  width: 20em;
  height: 15em;
  display: inline-block;
  margin: 0 10px;
  float: left;
  transition: all 0.2s ease-out;
  background: none; /* Removed background color */
}

.marquee-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@keyframes marqueeLeft {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}

@keyframes marqueeRight {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}
