
.horizontal-scrolling-container {
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    width: 100%;
    height: 40px; /* Adjust as needed */
    display: flex;
    align-items: center;
  }
  
  .horizontal-scrolling-items {
    display: flex;
    font-size: 16px;
    font-weight: 600;
    animation-name: infiniteScroll;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }
  
  .horizontal-scrolling-items__item {
    white-space: nowrap;
    padding: 0 20px;
  }
  
  @keyframes infiniteScroll {
    from {
        transform: translateX(10%);
    }
    to {
        transform: translateX(-100%);
    }
  }
  