#hero {
  margin-top: 12px;
  height: 276px;
}

#hero .text-inner {
  width: 100%;
  margin: 0 10px;
  overflow: hidden;
}

#hero .hero-text {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: image-set(
    url('../../images/homestaging/homestaging-pattern.jpg') 1x,
    url('../../images/homestaging/homestaging-pattern@2x.jpg') 2x);
  width:50%;
  padding: 0 70px;
  overflow: hidden;
}

#hero h1 {
  font-size: 47px;
  line-height: 47px;
  padding-bottom: 10px;
}

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

#hero .flex {
	height: 100%
}
#hero .affordable {
  font-size: 0.925em;
}

#hero .hero-image {
  position: relative;
  overflow: hidden;
  width: 50%;
}

#hero img {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  min-height: 100%;
  min-width: 100%;
  width:auto;
  height: auto;
}

@media screen and (max-width: 991px ) {
  #hero {
	  height:100%;
	  text-align:center;
    margin-top: 22px;
  }
  #hero .inner {
    flex-wrap: wrap;
  }
  #hero h1 {
    font-size: 38px;
    margin: 0 auto;
  }
  #hero .hero-text {
    padding: 29px 0 17px 0;
  }
  #hero .hero-text,
  #hero .hero-image {
    flex-basis: 100%;
    max-width: unset;
	  width:100%
  }
  #hero .hero-image img {
    position: relative;
    width: 100%;
  }
}

@media screen and (max-width: 567px){
  #hero h1 {
    font-size: 29px;
    line-height: 34px;
  }
  #hero h1 span::before {
    top: 14px;
    left: -66px;
    width: 49px;
  }
  #hero h1 span::after {
    top: 14px;
    right: -66px;
    width: 49px;
  }
}

