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

#hero .inner {
  overflow: hidden;
}

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

#hero .title::before,
#hero .title::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 2px;
  top: 28px;
  background-color: #fff;
}

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

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

#hero p {
  font-size: 17px;
  line-height: 24px;
  max-width: 630px;
  margin: 0 auto;
}

@media screen and (max-width: 567px ) {
  #hero {
    margin-top: 19px;
    margin-bottom: 21px;
    padding: 24px 0 27px 0px;
  }
  #hero .title {
    font-size: 40px;
    margin-bottom: 5px;
  }
  #hero p {
    font-size: 14px;
    line-height: 19px;
    margin: 0 auto;
  }
  #hero .title::after,
  #hero .title::before {
    display: none;
  }
}