/* (A) FIXED WRAPPER */
.hwrap {
  /*overflow: hidden;*/  /* HIDE SCROLL BAR */
  /* background: #fff; */
  margin-bottom: 5px;
  margin-top: 5px;
  width: 100%; /*1140px*/
  position: relative;
}
 
/* (B) MOVING TICKER WRAPPER */
.hmove { 
  display: flex;
  animation: linear infinite;
  animation-fill-mode: both;
  animation-play-state: running; /* Ensure the animation is initially running */
}

/* (C) ITEMS - INTO A LONG HORIZONTAL ROW */
.hitem {
  flex-shrink: 0;
  width: 10%;
  box-sizing: border-box;
  padding: 10px;
  /* padding-left: 4px;
  padding-right: 4px; */
  text-align: left;
}
 
/* (D) ANIMATION - MOVE ITEMS FROM RIGHT TO LEFT */
/* 4 ITEMS -400%, CHANGE THIS IF YOU ADD/REMOVE ITEMS */
@keyframes tickerh {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-200%); }
}

.hmove { 
  animation: tickerh linear 55s infinite; /* Adjust the duration to control the speed */
  /* Optionally, you can add animation-timing-function: linear; to ensure smooth continuous movement */
}