
html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: "helvetica-neue-lt-pro", sans-serif;
    height: 40px;
    width: 100vw;
    font-size: 13px;
  }
  
  .scroll-wrapper {
    width: 100%;
    height: 40px;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    color:#000 ;
    
  }
  
  .scroll-track {
    display: inline-flex;
    white-space: nowrap;
    animation: scroll-left linear infinite;
  }
  
  .scroll-wrapper:hover .scroll-track {
    animation-play-state: paused;
  }

  .scroll-powered {
    font-size: 10px;
  }

  
  .scroll-item {
    display: inline-block;
    padding-right: 2rem;
  }

  .scroll-item img {
    height: 13px;
	width: 20px;
  }

  .powered-by-logo img {
    height: 10px;
    margin-bottom: -2px;
	width: 130px;
  }
  
  @keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }