.hero-title h1 a {
    font-size: 40px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    text-decoration: none;
}

.hero-title h4 a {
    text-align: center !important;
    color: #DB163C !important;
    text-decoration: none !important;
}

.popup-overlay,
.verify-form {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 200ms ease-in-out;
}

.popup-overlay.show,
.verify-form.show {
  visibility: visible;
  opacity: 1;
}

.popup-overlay,
.verify-form {
  padding: 0 15px;
}