.sliderContainer {
    overflow: hidden;
    width: 100vw;
    height: 300px;
  }
  
  .logoSlider>img {
      height: 3rem;
      width: auto;
      margin: 20rem;
    }
  
  .logoSlider {
    display: flex;
    animation: slideshow 6s infinite linear;
  }
  
  @keyframes slideshow {
    from {
      transform: translate(800px);
    }
    to {
      transform: translate(-1800px);
    }
  }