.hero-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  min-height: 30vh;
  margin: 0 auto 2rem auto;
}
.hero-banner__content {
  max-width: 800px;
}
.hero-banner__content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.hero-banner__content p {
  font-size: 1.25rem;
  line-height: 1.6;
}
.hero-banner.fixed {
  background-attachment: fixed;
  min-height: 40vh;
}
.hero-banner.offsetTop-10 {
  margin-top: 10px;
}
.hero-banner.offsetTop-20 {
  margin-top: 20px;
}
.hero-banner.offsetTop-30 {
  margin-top: 30px;
}
.hero-banner .align-left {
  text-align: left;
}
.hero-banner .align-center {
  text-align: center;
}
.hero-banner .align-right {
  text-align: right;
}