
.logo-items-wrap {
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 20px;
}
.logo-items-wrap:before,
.logo-items-wrap:after {
  content: "";
  height: 100%;
  top: 0;
  width: 10%;
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.logo-items-wrap:before {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(17 34 45 0) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}
.logo-items-wrap:after {
  right: 0;
  background: linear-gradient(
    90deg,
    rgba(17 34 45 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}
.logo-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  counter-reset: item;
  justify-content: space-around;
  min-width: 100%;
}
.logo-item {
  width: calc(50% - 5px);
  height: 100px;
  flex: 0 0 auto;
  counter-increment: item;
  background: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  font-weight: bold;
  color: #fff;
  transition: all 0.1s ease-in-out;
  padding: 25px;
}
  .logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(1);
  }  
@media (min-width: 576px){
  .logo-item {
    padding: 25px 48px;
  }
}
@media (min-width: 768px){
  .section--logos{
    padding: 29px 10px 49px !important
  }
  .logo-items {
    justify-content: center;
  }
  .logo-item {
    width: 300px;
    height: 181px;
  }
}
@media (min-width: 1200px){

  .logo-items {
    flex-shrink: 0;
    display: flex;
    gap: 10px;
    counter-reset: item;
    justify-content: space-around;
    min-width: 100%;
  }
  .section--logos{
    padding: 90px 0 !important;
  }
  .logo-item {
    padding: 50px 60px;
  }
  .logo-item:hover {
    /* transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); */
  }

  .marquee {
    animation: scroll 20s linear infinite;
  }
  .reverce {
    animation-direction: reverse;
  }
  /* .logo-items-wrap:hover .marquee { */
    /* animation-play-state: paused;
  } */


  @keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-100% - 20px));
    }
  }
}