.hero {
  position: relative;
  padding: 3.5rem 0 3.5rem 0;
  margin-block-end: 60px;
  overflow: hidden;
  width: 100%;
  text-align: left;
}
.hero--simple {
  background-color: var(--color-orange);
  color: white;
}
.hero--simple::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10.5625rem;
  height: 12.375rem;
  background-image: url("../../assets/images/orange-squares-big.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 3;
}
.hero--simple::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 7.375rem;
  height: 12.375rem;
  background-image: url("../../assets/images/orange-squares-vertical.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 3;
}
.hero--background {
  color: white;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero--background::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 9.375rem;
  height: 9.375rem;
  background-image: url("../../assets/images/orange-squares-holes.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 3;
}
.hero_title {
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.9375rem;
  position: relative;
  z-index: 10;
}
.hero_subtitle {
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.75rem;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .hero_title {
    font-size: 2.25rem;
    line-height: 1.875rem;
  }
  .hero_subtitle {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .hero--simple::before {
    width: 8.5rem;
    height: 10rem;
  }
  .hero--simple::after {
    display: none;
  }
  .hero--background::before {
    width: 3.75rem;
    height: 3.75rem;
  }
}