#hero {
  margin-top: 12px;
  background-image: url('../../images/contact-us-hero-bg.png');
  background-image: image-set( 
    url('../../images/contact-us-hero-bg.png') 1x, 
    url('../../images/contact-us-hero-bg@2x.png') 2x);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 40px 0 34px 0px;
}

#hero .inner {
  overflow: hidden;
}

#hero .title {
  font-size: 50px;
  line-height: 1em;
  margin: 0 auto 12px auto;
  position: relative;
  display: block;
  width: fit-content;
}

#hero .title::before,
#hero .title::after {
  content: '';
  position: absolute;
  width: 116px;
  height: 2px;
  top: 0.44em;
  background-color: var(--yellow);
}

#hero .title::before {
  left: -134px;
}

#hero .title::after {
  right: -134px;
}

#hero p {
  font-size: 18px;
  line-height: 24px;
  max-width: 600px;
  margin: 0 auto;
  color: #fff;
}
@media screen and (max-width: 567px ) {
  #hero {
    margin-top: 22px;
    padding: 50px 0;
  }
  #hero .title {
    font-size: 36px;
    margin-bottom: 8px;
  }
 #hero p {
    font-size: 16px;
    line-height: 24px;
  }
}