#hero {
  margin-top: 12px;
}

#hero {
  background-image: url('../../images/custom-orders/hero-bg.png');
  background-image: image-set( 
    url('../../images/custom-orders/hero-bg@2x.png') 2x);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#hero .inner {
  padding: 49px 0 44px 0;
}

#hero .title {
  font-size: 38px;
  line-height: 0.9;
  margin-bottom: 11px;
}

#hero .title span {
  position: relative;
}
#hero .title span::before {
  content: '';
  position: absolute;
  background-color: var(--yellow);
  height: 2px;
  width: 69px;
  left: -91px;
  top: 13px;
}
#hero .title span::after {
  content: '';
  position: absolute;
  background-color: var(--yellow);
  height: 2px;
  width: 69px;
  right: -91px;
  top: 13px;
}

#hero p {
  font-size: 19px;
  line-height: 26px;
  max-width: 560px;
  margin: 0 auto;
}

#hero .button {
  color: #000;
  height: 51.5px;
  font-size: 17px;
  line-height: 57px;
  padding: 0 23px;
  margin-top: 19px;
}

@media screen and (max-width: 567px ) {
  #hero {
    background-image: url('../../images/custom-orders/hero-bg-m.png');
    background-image: image-set( 
      url('../../images/custom-orders/hero-bg-m@2x.png') 2x);
    margin-top: 22px;
  }
  #hero .inner {
    padding: 35px 0 34px 0;
  }
  #hero .title {
    font-size: 31.5px;
    line-height: 1;
  }
  #hero .title span::before {
    width: 30px;
    left: -51px;
    top: 11px;
  }
  #hero .title span::after {
    width: 30px;
    right: -51px;
    top: 11px;
  }
  #hero p {
    font-size: 14px;
    line-height: 19px;
  }
  #hero .button {
    margin-top: 14px;
  }
}