/* HERO: used for landing page hero image */
.hero {
  position: relative;
}
.hero-img {
  min-height: 250px;
  width: 100%;
  background-size: cover;
  margin-bottom: 20px;
}

#page h1.hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  font-size: 32px;
  letter-spacing: 1.07px;
  color: #ffffff;
  transform: translate(-50%, -50%);
}

@media (min-width: 768px) {
  #page h1.hero-title {
    font-size: 50px;
  }

  .hero-img {
    min-height: 300px;
    overflow: hidden;

  }
}

@media (min-width: 1200px) {
  #page h1.hero-title {
    font-size: 64px;
  }
}
