.hero {
  position: relative;
  width: 100%;
  margin-bottom: 100px;
}

.hero__container {
  position: relative;
  width: 100vw;
  height: calc(100vh - 50px);
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero h1 {
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  text-shadow: 0 3px 6px #000;
  letter-spacing: 9px;
  text-align: center;
}

@media only screen and (max-width: 1000px) {
  .hero h1 {
    font-size: 30px;
    letter-spacing: 2px;
  }
}

@media only screen and (max-width: 600px) {
  .hero__container {
    height: calc(75vh - 50px);
  }
}

.acf-block-preview .hero {
  width: 100%;
}
