.hero-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 4rem 2rem;
  background-color: #F5F1E7;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}
.hero-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  pointer-events: none;
}
.hero-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
}
.hero-banner__inner img {
  width: 100%;
  max-width: 300px;
}
.hero-banner__inner h1 {
  margin-top: 80px;
  font-size: 50px;
}
.hero-banner__title {
  margin: 0 0 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .hero-banner__title {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .hero-banner__title {
    font-size: 3.5rem;
  }
}
.hero-banner__content {
  margin-bottom: 2rem;
  font-size: 1.125rem;
  line-height: 1.6;
}
.hero-banner__content p:last-child {
  margin-bottom: 0;
}