.custom-text-animation-wrapper {
  overflow: hidden;
}

.custom-text-animation {
  display: flex;
  width: 6600px;
  animation-name: infiniteScroll;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  overflow: hidden;
  padding: 20px 0;
}

.custom-text-animation {
  white-space: nowrap;
  margin: 0;
  font-size: 40px;
}

@keyframes infiniteScroll {
  from {
    transform: translateX(0);
  }

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

.dark-blue {
  color: #003957;
  font-family: Helvetica, Arial, sans-serif;
}