#hero-outer {
  background-image: url("/assets/templates/main/images/hero/bg-pattern-dark.png");
  background-repeat: repeat;
  position: relative;
}
#hero-outer .width-limiter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#hero-outer .hero-left {
  background-color: rgba(34,34,34,0.4);
}
#hero-outer .hero-left,
#hero-outer .hero-right {
  width: calc(50% - 20px);
}
#hero-outer .hero-right img,
#hero-outer .hero-left img {
  width: 100%;
}
#hero-outer .hero-left img {
  max-width: 350px;
}
@media all and (min-width: 801px) {
  #hero-outer .hero-left {
    margin-right: 10px;
  }
  #hero-outer .hero-right {
    margin-left: 10px;
  }
}
@media all and (max-width: 800px) {
  #hero-outer .width-limiter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #hero-outer .hero-left,
  #hero-outer .hero-right {
    width: 100%;
  }
}
@media all and (max-width: 570px) {
  #hero-outer {
    padding-top: 210px;
    background-image: none;
  }
  #hero-outer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-image: url("/assets/templates/main/images/hero/bg-pattern-dark.png");
    background-repeat: repeat;
    width: 100%;
    height: 200px;
  }
}