/**
* Hero images
**/
#hero-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 640px) {
  #hero-flex {
    display: block !important;
  }
}
.hero-image-customer {
  background-image: url("../img/faces2.jpg");
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
}
.hero-home {
  width: 100%;
  height: 456px;
  background-size: cover;
  background-position: center;
}
.hero-home .hero-home-inner {
  height: 456px;
  width: 100%;
  background: rgba(0,0,0,0.25);
}
.hero-home .hero-home-inner .hero-home-title {
  max-width: 960px;
  text-align: center;
  margin: 0 auto;
  padding-top: 50px;
  color: #fff;
  font-size: 45px;
}
.hero-action {
  width: 100%;
}
.hero-action .hero-action-button {
  height: 50px;
  max-width: 520px;
  width: 100%;
  background-color: #d71921;
  border-radius: 23px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0 auto;
  text-align: center;
  display: table;
  color: #fff;
  vertical-align: middle;
  text-align: center;
  line-height: 50px;
  font-weight: bold;
  text-transform: uppercase;
}
.hero-action .hero-action-button:hover {
  background-color: #961117;
}
