.static-home-hero {
  position: relative;
  width: 100vw;
  max-width: none;
  height: 660px;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: #181818;
}

.static-home-hero > .static-home-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.static-home-hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, 1230px);
  height: 100%;
  margin: 0 auto;
  padding: 98px 30px 0;
}

.static-home-hero__tagline {
  position: relative;
  z-index: 1;
  display: inline-block;
  max-width: calc(100% - 40px);
  margin: 0 0 0 20px;
  color: #30b2b3;
  font-family: "Rubik", sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.32;
  text-transform: uppercase;
}

.static-home-hero__tagline::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 -20px;
  background: #181818;
  transform: skewX(-20deg);
}

@media (max-width: 1024px) {
  .static-home-hero__tagline {
    font-size: 20px;
  }
}

@media (max-width: 778px) {
  .static-home-hero {
    height: 560px;
  }

  .static-home-hero__content {
    padding: 82px 20px 0;
    text-align: center;
  }

  .static-home-hero__tagline {
    font-size: 18px;
    margin-inline: 20px;
  }
}

@media (max-width: 480px) {
  .static-home-hero {
    height: 480px;
  }

  .static-home-hero__content {
    padding: 64px 15px 0;
  }

  .static-home-hero__tagline {
    font-size: 16px;
  }
}
