body {
  margin: 0;
}

.marquee {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  height: auto; /* Adjust the height based on your logo size */
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px; /* Adjust the width of the blurred overlay */
  background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15)); /* Adjust the color and opacity of the gradient */
  pointer-events: none;
  z-index: 1;
  filter: blur(10px); /* Adjust the amount of blur */
}

.marquee::before {
  left: -16px;
}

.marquee::after {
  right: -16px;
  transform: scaleX(-1);
}

.marquee-content {
  display: inline-block;
  animation: scrolling 10s linear infinite;
}

.marquee-content .logo-img {
  display: inline-block;
  height: 150px; /* Adjust the height based on your logo size */
  margin-right: 50px;
}

