/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} */

/* body {
  background: #f2f2f2;
} */

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 60px 0;
  background: transparent;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  /* background: linear-gradient(to left, rgba(255, 255, 255, 0), white); */
  /* background: linear-gradient(to left, rgba(255, 255, 255, 0), #3c2f2f); */
}

.logos:after {
  right: 0;
  /* background: linear-gradient(to right, rgba(255, 255, 255, 0), white); */
  /* background: linear-gradient(to right, rgba(255, 255, 255, 0), #3c2f2f); */
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.logos-slide img {
  height: 50px;
  margin: 0 40px;
  box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.55); 
  /* box-shadow: 0 0 10px 2px rgba(255, 100, 0, 0.5);  */
    /* box-shadow: 0 0 5px 1px rgba(220, 220, 220, 0.3);  */


  border-radius: 5px; /* Optional: adds rounded corners to the box shadow */
}