@keyframes scroll {
      0% {
        transform: translateX(0%);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    .animate-scroll {
      display: flex;
      width: max-content;
      animation: scroll 20s linear infinite;
    }

    .animate-scroll:hover {
      animation-play-state: paused;
    }

    select,
    option {
      color: #1f2937 !important;
      /* gray-800 */
      background: white !important;
    }