@media (max-width: 1000px) {
    .ticker-item {
      width: 20rem;
    }
    .ticker-item p {
      font-size: 15px;
      font-weight: normal;
    }
    img {
      height: 3rem;
    }
    .ticker:hover .ticker-items {
      animation-play-state: running;
    }
    .ticker-items {
      animation: scroll 30s linear infinite;
    }
  }
  @media (max-width: 800px) {
    .ticker-item {
      gap: 0.3rem;
    }
    .ticker-item p {
      font-size: 15px;
      font-weight: normal;
    }
    img {
      height: 2.5rem;
    }
  }