  .ticker-bar {
      width: 100%;
      background: #fff;
      border-bottom: 1.5px solid #e8e8e8;
      padding: 8px 0;
      overflow: hidden;
      display: flex;
      text-decoration: none;
      cursor: pointer;
  }

  .ticker-bar:hover .ticker-track {
      animation-play-state: paused;
  }

  .ticker-track {
      display: flex;
      align-items: center;
      white-space: nowrap;
      animation: ticker-scroll 35s linear infinite;
      will-change: transform;
      padding-left: 20px;
  }

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

      100% {
          transform: translateX(-50%);
      }
  }

  .ticker-item {
      display: inline-flex;
      align-items: center;
      padding: 0 40px 0 0;
      font-size: 12px;
      color: #1a2a4a;
      white-space: nowrap;
  }

  .ticker-item b {
      font-weight: 700;
      color: #e83a3a;
  }

  .ticker-sep {
      display: inline-block;
      width: 4px;
      height: 4px;
      background: #00A788;
      border-radius: 50%;
      margin-right: 40px;
      flex-shrink: 0;
  }

  .eng_banner {
      width: 100%;
      padding-top: 5.5%;
  }

  @media (max-width: 500px) {
  .eng_banner {
      width: 100%;
      padding-top: 26%;
  }
}