


/**
 * Homepage - Hero
 */
.content__heading {
  position: relative;
}
 .content-heading__hero {
  position: relative;
}

.content-heading__hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.05);
}

 .content-heading__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  font-weight: 600;
}

.content-heading__hero-title {
  font-size: 2.25rem;
  margin-bottom: 5px;
  color: var(--white);
  line-height: 54px;
}

.path-frontpage .content__main > div:nth-child(2) {
  margin-top: 3rem;
}
.path-frontpage .content__main > div:nth-child(2),
.path-frontpage .content__main > div:nth-child(3) {
  background-color: var(--tertary);
  position: relative;
}

.path-frontpage .content__main > div:nth-child(2)::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  width: 100%;
  height: 140px;
  background-repeat: no-repeat;
  background-size: cover;
  height: 59px;
  background-image: url(../../images/homepage/wave-homepage-mobile.svg);
  z-index: 1;
}

@media all and (min-width: 1000px) {
  .content-heading__hero-content {
    left: 36%;
    max-width: 700px;
  }
  .content-heading__hero-title {
    line-height: 90px;
    font-size: 3.556rem;
  }
  .path-frontpage .content__main > div:nth-child(2) {
    background-color: inherit;
  }

  .path-frontpage .content__main > div:nth-child(2)::before{
    content: inherit;
  }
  .path-frontpage .content__main > div:nth-child(3)::before {
    content: "";
    position: absolute;
    top: -440px;
    left: 0;
    right: 0;
    width: 100%;
    height: 140px;
    background-repeat: no-repeat;
    background-size: cover;
    height: 458px;
    background-image: url(../../images/homepage/wave-homepage-dekstop.svg);
    z-index: 1;
  }
}
