section.hero {
  height: 100vh;
}
section.hero .hero-wrapper {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  -ms-grid-row: 1;
  -ms-grid-row-span: 9;
  grid-row: 1/10;
}
section.hero .hero-wrapper img {
  -o-object-fit: cover;
  object-fit: cover;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%) scale(1);
  z-index: 1;
}
section.hero .hero-wrapper .image-overlay {
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  width: 100%;
  height: 100vh;
  z-index: 8;
}
section.hero .hero-content {
  -ms-grid-row: 5;
  grid-row: 5;
  text-align: center;
  z-index: 9;
}
section.hero .hero-content h1 {
  color: var(--white);
}