:root {
  --grid-gutter-width: 30px;
  --border-opacity: 1;
}

@media (max-width: 767px) {
  :root {
    --grid-gutter-width: 40px;
  }
}
.hero {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.hero__bg {
  background: #000;
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%;
  object-fit: cover;
}
.hero__bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.hero__bg video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.hero .svg-hero {
  position: absolute;
  top: 16rem;
  right: 0;
  z-index: 11;
  pointer-events: none;
  display: block;
}
.hero .svg-hero svg {
  display: block;
  transform: translate(50%, 0);
}
.hero .ia-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
  padding-top: 16rem;
  padding-bottom: 7rem;
  box-sizing: border-box;
}
.hero h1 {
  text-align: center;
  text-transform: uppercase;
}
.hero .content-entry {
  max-width: 51rem;
  margin-left: 18.2%;
}

@media (max-width: 768px) {
  .hero .ia-container {
    padding-bottom: 5rem;
    min-height: 95vh;
  }
  .hero .svg-hero {
    display: none;
  }
  .hero .content-entry {
    margin-left: 0;
    max-width: 313px;
  }
  .hero h1 {
    align-self: flex-start;
    text-align: left;
    hyphens: manual;
  }
  .hero h1 + .text-center {
    text-align: left !important;
  }
}

/*# sourceMappingURL=hero.css.map */