#hero p {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

#hero p span {
  color: #FE510F;
  position: relative;
}

#hero p span::before {
  content: "";
  height: 30px;
  width: 2px;
  position: absolute;
  top: 50%;
  right: -8px;
  background: #fff;
  transform: translateY(-45%);
  animation: blink 0.7s infinite;
}

#hero p span.stop-blinking::before {
  animation: none;
}

@keyframes blink {
  50% { opacity: 0 }
}