#hero-outer {
  background-image: url("/assets/templates/main/images/hero/hero.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
#hero-outer .hero-bottom {
  margin-top: 20px;
}
#hero-outer .hero-top {
  background-color: rgba(34,34,34,0.4);
  margin: 0 auto;
  width: 50%;
  text-align: center;
}
#hero-outer .hero-top .hero-top-img img {
  max-width: 250px;
  width: 100%;
}
#hero-outer ul.brand-promises {
  list-style-position: inside;
  padding-left: 0;
}

@media all and (max-width: 800px) {
  #hero-outer .hero-top {
    width: 100%;
  }
  #hero-outer {
    background-image: none;
    position: relative;
    padding-top: 310px;
  }
  #hero-outer::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 300px;
    background-image: url("/assets/templates/main/images/hero/hero.jpg"); /*replace with tablet hero path */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

@media all and (max-width: 570px) {
  #hero-outer {
    padding-top: 210px;
  }
  #hero-outer::before {
    height: 200px;
    background-image: url("/assets/templates/main/images/hero/hero.jpg"); /*replace with mobile hero path */
  }
}

/* Quicklinks not part of this pattern, just filler */
#quicklinks .secondary-tools-heading {
  text-align: center;
}
#quicklinks div.quicklink-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;  
}
#quicklinks div.quicklink-container > a {
  width: 100%;
  margin: 10px 10px 10px;
  background-color: #e8e8e8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  padding: 120px 15px 15px;
  text-decoration: none;
  position: relative;
}
#quicklinks div.quicklink-container > a:hover,
#quicklinks div.quicklink-container > a:active {
  background-color: #b3b3b3;
}
#quicklinks div.quicklink-container > a:first-of-type {
  margin-left: 0px;
}
#quicklinks div.quicklink-container > a:last-of-type {
  margin-right: 0px;
}

#quicklinks div.quicklink-container > a span {
  margin: 0 auto;
}
#quicklinks a div.ql-image {
  height: 100px;
  width: 100%;
  position: absolute;
  top: 15px;
  left:0px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(/assets/templates/main/images/quicklinks/icon-placeholder.png);
}

@media all and (max-width: 800px) {
  #quicklinks div.quicklink-container > a {
    padding-top: 80px;
  }

  #quicklinks a div.ql-image {
    height: 60px;
  }
}
@media all and (max-width: 570px) {
  #quicklinks div.quicklink-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #quicklinks div.quicklink-container > a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 2px 0px;
    padding-top: 15px;
    padding-left: 90px;
    min-height: 90px;
  }
  #quicklinks div.quicklink-container > a:last-of-type {
    margin-bottom: 0px;
  }
  #quicklinks a div.ql-image {
    left: 15px;
    top: 0px;
    width: 60px;
    height: 100%;
  }
  #quicklinks div.quicklink-container > a span {
    text-align: left;
    margin: 0px;
  }
}
/* End quicklinks */