

.mobile-mover300{
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

.mobile-move-track300 {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.mobile-move-track301 {
  display: flex;
  width: max-content;
  animation: scroll2 40s linear infinite;
}

 .mobile-mover300 div:hover {
  animation-play-state: paused;
}

.mobile-move {
  flex: 0 0 auto; /* Prevent shrinking */
  width: 400px;   /* Set desired width for each image block */
  /* height: 500px; */
  margin-right: 5px; /* Optional spacing */
}
.mobile-move img {
  width: 100%;  
  object-fit: contain;     
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}