
body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.header-info {
  background: #e27419;
  border-bottom: 1px solid #e9e9e9;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 5px 0;
  width: 100%;
}

.scrolling-text-container {
  width: 100%;
  overflow: hidden;
  height: 25px;
  font-size: 18px;
}

.scrolling-text {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 60s linear infinite;
}

.scrolling-text span {
  display: inline-block;
  padding-right: 20px;
}

@keyframes scroll-left {
  from {
    transform: translateX(100vw);
  }
  to {
    transform: translateX(-100%);
  }
}
