
  .marquee {
    position: relative;
    width: 100vw;
    max-width: 153%;
    height: 30px;
    overflow-x: hidden;
  }
  
  .track {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 32s linear infinite;
    color: #fff;
    font-size: 30px;
    font-family: 'Roboto', sans-serif !important;
  }
  
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  
  .marq{
    color: #fff;
    
  }