.hero-color {
  display: none;
  z-index: 2;
  background-color: var(--color-primary);
  width: 100%;
}
.hero-image {
  z-index: 1;
}
.hero-information {
  padding: 3.875rem 0;
}
.hero-info {
  position: relative;
  z-index: 3;
}
@media (min-width: 768px) {
  .hero {
    position: relative;
  }
  .hero-bg {
    width: 100%;
    position: absolute;
    inset: 0;
  }
  .hero-color {
    display: block;
    width: 70%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
  }
  .hero-information:after {
      content: "";
      max-width: calc(100% - 35.875rem);
      shape-margin: 50%;
      top: -3.875rem;
      bottom: -8.875rem;
      height: 100%;
      position: relative;
      height: 100%;
      width: 35%;
      float: right;
      background-color: red;
      clip-path: polygon(0 0,100% 0,65% 100%,0 100%);
    }
}
@media (min-width: 998px) {
  .hero-color {
      width: 60%;
  }
}
@media (max-width: 767px) {
  .hero {
    display: flex;
    flex-flow: column-reverse;
  }
  .hero-info {
    background-color: var(--color-primary);
    padding-inline: 1rem;
  }
}
.hero-image img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%;
}
@media (min-width: 75em) {
  .hero-image {
      left: 30rem;
  }
}
@media (min-width: 62em) {
  .hero-image {
      left: 25rem;
  }
}
@media (min-width: 48em) {
  .hero-image {
      bottom: 5rem;
      left: 18.75rem;
      position: absolute;
      right: 0;
      top: 0;
  }
}
.hero-info {
  max-width: var(--max-width);
  width: 100%;
  margin-inline: auto;
}
/* INFO WRAPPER */
@media (min-width: 48em) {
  .hero-information {
    max-width: 35.875rem;
    width: width: 70%;
  }
}
@media (min-width: 998px) {
  .hero-information {
      width: 60%;
  }
}
.hero-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .hero-title {
      font-size: 3.25rem;
      line-height: 3.82rem;
  }
}
.hero-subtitle {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5rem;
  margin-bottom: 1.5rem;
}
.hero .button {
  width: fit-content;
  min-width: 198px;
  min-height: 40px;
}
.hero .button.-secondary {
  font-size: 20px;
}
.hero-subtitle * {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
@media (min-width: 48em) {
  .hero-subtitle,
  .hero .button {
    max-width: 22.5rem;
  }  
}
.hero-cta-wrapper {
  display: flex;
  flex-flow: column;
  gap: 24px;
  margin-top: 36px;
}