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

.marquee-advertisement span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 10s linear infinite;
}

.marquee-advertisement span:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0%   { transform: translate(0); }
  100% { transform: translate(-50%); }
}



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

.move-track300 {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}
 .mover300 div:hover {
  animation-play-state: paused;
}

.move300 {
  flex: 0 0 auto; /* Prevent shrinking */
  width: 200px;   /* Set desired width for each image block */
  height: 500px;
  margin-right: 10px; /* Optional spacing */
}

.move300 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.defaulter300 {
   width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

.default-track300 {
  display: flex;
  width: max-content;
  animation: moving 80s linear infinite;
}
 .defaulter300 div:hover {
  animation-play-state: paused;
}

.defaulter300 {
  flex: 0 0 auto; /* Prevent shrinking */
  width: 100%;   /* Set desired width for each image block */
  height: auto;
  margin-right:2px; /* Optional spacing */
}

.defaulter300 img {
  
  object-fit: cover;
}

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