@media (max-width:768px) {
  .slider {
    width: 100%;
    overflow: hidden;
    background: #00007c;
    padding: 10px 0;
  }
  .slider-track {
    display: flex;
    gap: 28px;
    white-space: nowrap;
    will-change: transform;
    animation: scroll 10s linear infinite;
  }
  .item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    border-radius: 12px;
    font-family: sans-serif;
    font-size: 14px;
    white-space: nowrap;
  }
  .item img,
  .item svg {
    width: 22px;
    height: 22px;
  }

}
 
