.landing-hero {
  min-height: 670px;
  background-color: $gray-70;
  padding: 60px 0;

  @include sm {
    min-height: 400px;
    padding: 30px 0;
  }

  &--title_header {
    min-height: auto;
  }

  &__content {
    max-width: $max-width;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 0 $gutter;

    @include md {
      flex-wrap: wrap;
    }
  }

  &__box {
    width: 45%;

    @include md {
      width: 100%;
    }

    h1 {
      color: $white;
      font-size: 5.8rem;
      line-height: 6.8rem;
      margin: 0;
    }

    h2 {
      color: $white;
      font-size: 36px;
      line-height: normal;
      margin: 0;
    }

    h3 {
      color: $white;
      font-size: 30px;
      font-weight: 700;
      line-height: normal;
      margin: 0;
    }

    h4 {
      color: $white;
      font-size: 30px;
      font-weight: 500;
      margin: 0;
      line-height: normal;
    }

    p {
      color: $white;
      font-size: 21px;
      margin: 0;
    }

    @include md {
      h1 {
        font-size: 36px;
        line-height: 40px;
      }

      h2 {
        font-size: 30px;
        line-height: 34px;
      }

      h3 {
        font-size: 22px;
        line-height: 25px;
      }

      h4 {
        font-size: 22px;
        line-height: 25px;
      }

      p {
        font-size: 18px;
      }
    }

    &--left {
      margin-right: 20px;

      @include md {
        margin-right: 0;
      }
    }
  }

  &__boxes-wrapper {
    display: flex;
  }

  &__box-wrap {
    position: relative;
  }

  &__box-bg {
    background-color: #fff;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  &__box-content {
    position: relative;
    padding: 30px 36px 92px;
    color: $secondary-color;
    width: 100%;
    min-height: 520px;

    @include md {
      min-height: 0px;
    }
  }

  &__box-button {
    position: absolute;
    bottom: 22px;
    left: 37px;
    height: 48px;
    font-size: 19px;
    line-height: 50px;
    background-color: $secondary-color;
    padding: 0 45px;
    color: #fff;
    white-space: nowrap;

    @include sm {
      padding: 0 20px;
      font-size: 1.4rem;
      height: 40px;
      line-height: 4rem;
    }
  }

  &--with-headline {
    padding-top: 0;
  }

  &--title_header {
    padding-bottom: 0;
  }

  &__headline-wrap {
    width: 100%;
  }

  &__headline {
    margin: 50px 0;
    text-align: center;

    @include sm {
      margin: 30px 0;
    }

    h1 {
      color: #fff;
      font-size: 50px;
      text-align: center;
      font-weight: 700;
      line-height: 55px;
      width: 100%;
      max-width: 800px;
      font-style: normal;
      margin: 0 auto;

      @include sm {
        font-size: 30px;
        line-height: 35px;
      }
    }
  }
}
