.block-hero {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-color: var(--dark-brown);
}
.block-hero .hero-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  -webkit-animation: hero-video-in 700ms ease-out 1500ms forwards;
          animation: hero-video-in 700ms ease-out 1500ms forwards;
}
.block-hero .hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 128vw;
  height: 72vw;
  min-height: 128vh;
  min-width: 227.6vh;
  border: 0;
}
@-webkit-keyframes hero-video-in {
  to {
    opacity: 1;
  }
}
@keyframes hero-video-in {
  to {
    opacity: 1;
  }
}
.block-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: var(--hero-overlay, 0.65);
  z-index: 1;
}
.block-hero .hero-overlay:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../../images/graphics/grain.gif);
  opacity: 0.1;
  pointer-events: none;
}
.block-hero .hero-map {
  position: relative;
  z-index: 2;
  width: 1352px;
  max-width: 90vw;
  aspect-ratio: 1352/324;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.46;
  margin: -92px 0 6px;
  pointer-events: none;
}
.block-hero .hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  padding: 120px var(--margin-small) 80px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.block-hero .hero-eyebrow {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--light-white);
  opacity: 0.68;
  margin: 0 0 30px;
}
.block-hero .hero-heading {
  font-family: "Cormorant", "Georgia", serif;
  font-optical-sizing: auto;
  color: var(--light-white);
  font-weight: 400;
  font-size: var(--hero-heading-size, clamp(3.4rem, 7.8vw, 118px));
  line-height: 0.98;
  letter-spacing: 0;
  margin: 0;
}
.block-hero .hero-heading .hero-line {
  display: block;
}
.block-hero .hero-heading em {
  font-style: italic;
  font-weight: 500;
}
.block-hero .hero-heading .hero-red {
  color: var(--terracotta);
}
.block-hero .hero-description {
  font-family: "Space Mono", monospace;
  font-size: 1.15rem;
  line-height: 1.61;
  color: var(--white);
  opacity: 0.68;
  max-width: 605px;
  margin: 34px 0 0;
}
.block-hero .hero-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 44px;
}
.block-hero .hero-divider {
  width: 1px;
  height: 94px;
  background: rgba(255, 255, 255, 0.45);
  margin-top: 46px;
}
@media (max-width: 700px) {
  .block-hero {
    min-height: 90vh;
  }
  .block-hero .hero-heading {
    font-size: clamp(2.2rem, 10vw, var(--hero-heading-size, 118px));
  }
  .block-hero .hero-buttons {
    width: 100%;
  }
  .block-hero .hero-buttons a {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .block-hero .hero-divider {
    display: none;
  }
}