.HomeHero {
  position: relative;
  display: flex;
  justify-content: center;
  max-width: 1920px;
  margin: 0 auto;
  border-top: 1px solid var(--colorOutlines);
  border-bottom: 1px solid var(--colorOutlines);
}

.HomeHero-frame {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  position: relative;
  align-items: flex-start;
  justify-content: center;
  min-height: 100%;
  padding-left: 8%;
}

.HomeHero-image {
  color: var(--colorBrand);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  clip: rect(0, auto, auto, 0);
  overflow: hidden;
}

.HomeHero-image img, .HomeHero-image svg, .HomeHero-image:after {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.HomeHero-image img {
  object-fit: cover;
}

.HomeHero-image svg:last-of-type {
  position: fixed;
}

.HomeHero-image:after {
  content: ' ';
  background: linear-gradient(9deg, transparent 50%, #00000096 100%);
}

.HomeHero-title {
  color: #fff;
  margin: 0;
  text-shadow: 0 0 11px #000000a6;
  font-weight: 800;
  font-size: 5em;
  line-height: 1.05;
}

@media (max-width: 80rem) {
  .HomeHero-title {
    font-size: var(--textXxxl);
  }
}

@media (max-width: 32rem) {
  .HomeHero-title {
    font-size: var(--textXxl);
  }
}

.HomeHero-perex {
  color: #fff;
  text-shadow: 0 0 7px #000000;
  margin-top: var(--spaceSm);
  font-size: var(--textXl);
  max-width: 33em;
  font-weight: 200;
}

@media (max-width: 64rem) {
  .HomeHero-perex {
    font-size: var(--textLg);
  }
}

.HomeHero-btn {
  margin-top: var(--spaceLg);
}

/*# sourceMappingURL=home-hero.min.css.map */
