 .marquee-horizontal {
    display: flex;
    width: 100%;
    height: 152px;
    justify-content: flex-start;
    align-items: center;
    position: relative;
   overflow: hidden;
  }

  @media  screen and (max-width: 414px) {
    .marquee-horizontal {
      height: 75px;
    }
  }

  .track-horizontal {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .logos-wrap {
    display: block;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  @media screen and (max-width: 414px) {
    .logos-wrap {
      margin-top: 10px;
      margin-bottom: 10px;
    }
  }

  .logo-list {
    display: flex;
    grid-auto-columns: 1fr;
    grid-column-gap: 18px;
    grid-row-gap: 16px;
    grid-template-columns: 0.4fr 1fr 0.5fr 1fr 1fr 1fr;
    grid-template-rows: auto;
  }

  .logo-item {
    position: static;
    display: flex;
    min-width: 120px;
    margin-right: 100px;
    justify-content: center;
    align-items: center;
    object-fit: fill;
    grid-column-start: span 1;
    grid-column-end: span 1;
    grid-row-start: span 1;
    grid-row-end: span 1;
  }

  

.track-horizontal {
      position: absolute;
      white-space: nowrap;
      will-change: transform;
      animation: marquee-horizontal 20s linear infinite;
      /* manipulate the speed of the marquee by changing "40s" line above*/
    }
    @media  screen and (max-width: 414px) {
      

      

      .logo-item {
        
        margin-right: 0;
        
      }

      .logo-item img {
        width: 70%;
      }

      
    }
    @keyframes  marquee-horizontal {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    @media  screen and (max-width: 414px) {
      @keyframes  marquee-horizontal {
        from { transform: translateX(0); }
        to { transform: translateX(-50%); }
      }
    }