#hero {
  margin-top: 12px;
  background-image: url('../../images/how-it-works/hero-bg.png');
  background-image: image-set(url('../../images/how-it-works/hero-bg.png') 1x,
    url('../../images/how-it-works/hero-bg@2x.png') 2x);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 32px 0 32px 0px;
  margin-bottom: 15px;
  overflow: hidden;
}

#hero .inner {
  overflow: hidden;
}

#hero .title {
  font-size: 47px;
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto 2px auto;
}

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

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

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

#hero p {
  font-size: 16px;
  line-height: 21px;
  max-width: 620px;
  margin: 0 auto;
}

.bc-inner {
  padding-top: 17px;
}

@media screen and (max-width: 567px ) {
  #hero {
    margin-top: 22px;
    padding: 33px 0 33px 0px;
  }
  #hero .title {
    font-size: 31.5px;
  }
  #hero p {
    font-size: 14px;
    line-height: 19px;
    max-width: 322px;
    margin: 0 auto;
  }
  #hero .title::before {
    width: 84px;
    top: 13px;
  }
  #hero .title::after {
    width: 84px;
    top: 13px;
  }
}