#hero {
  background-image: image-set(
    url('../../images/online-application/online-application-hero.png') 1x,
    url('../../images/online-application/online-application-hero@2x.png') 2x);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 12px;
}

#hero h1 {
  font-size: 38px;
  line-height: 0.9;
  overflow: hidden;
}

#hero h1 span {
  position: relative;
}
#hero h1 span::before {
  content: '';
  position: absolute;
  background-color: var(--yellow);
  height: 2px;
  top: 15px;
  left: -56px;
  width: 40px;
}
#hero h1 span::after {
  content: '';
  position: absolute;
  background-color: var(--yellow);
  height: 2px;
  top: 15px;
  right: -56px;
  width: 40px;
}

#hero .inner {
  padding: 43px 0;
}

#hero p {
  font-size: 1.1875em;
  line-height: 1.3684em;
}

@media screen and (max-width: 767px ) {
  #hero br {
    display: none;
  }
  #hero h1 span::before,
  #hero h1 span::after {
    display: none;
  }
}

@media screen and (max-width: 567px ) {
  #hero {
    margin-top: 22px;
  }
  #hero .inner {
    padding: 32px 0;
  }
  #hero h1 {
    font-size: 31px;
  }
}