.hero-marketing {
  width: 100%;
  margin: 0 0 75px;
  padding: 64px 0;
  overflow: hidden;
  position: relative;
  background-color: $primary-color;

  .header-over & {
    padding-top: 164px;
  }

  @include md {
    padding: 0 $gutter-mobile 24px;

    .header-over & {
      padding-top: 64px;
    }
  }

  @include sm {
    margin: 0 0 50px;
  }

  &.hero-marketing--light-blue {
    background-color: $gray-bluish;
  }

  .background-wrapper & {
    background-color: transparent;
  }

  &__waves {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: auto;
    bottom: 0;
    left: 0;
  }

  &__wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: $max-width;
    margin: 0 auto;
  }

  &__container {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    @include md {
      flex-direction: column-reverse;
      padding-left: 0;
    }
  }

  &__info {
    width: calc(100% / 12 * 7);
    padding-left: calc(100% / 12 + #{$half-gutter});
    padding-right: $half-gutter;
    padding-top: 30px;

    @include md {
      width: 100%;
      padding-left: 0;
      padding-right: 0;
      padding-top: 0;
    }
  }

  &__title {
    font-size: 5.8rem;
    line-height: 6.4rem;
    font-weight: 700;
    color: $white;
    margin: 0;

    @include md {
      font-size: 4.8rem;
      line-height: 5.2rem;
    }

    @include sm {
      font-size: 3.8rem;
      line-height: 4.2rem;
    }

    .hero-marketing--light-blue & {
      color: $primary-color;
    }

    .hero-marketing--luumo & {
      color: $primary-color;
    }
  }

  &__description {
    margin: 32px 0 48px;

    @include md {
      margin: 16px 0 24px;
    }

    &.rich-content-system {
      * {
        color: $white;

        .hero-marketing--light-blue & {
          color: $primary-color;
        }

        .hero-marketing--luumo & {
          color: $primary-color;
        }
      }

      ul {
        padding: 0 0 0 28px;
        list-style: none;

        li {
          font-size: 2.4rem;
          position: relative;
          padding-inline-start: 16px;

          &::before {
            content: "";
            mask-image: url("../img/svg/icon-check-product-grid.svg");
            mask-repeat: no-repeat;
            mask-size: contain;
            background-color: $secondary-color;
            width: 24px;
            height: 24px;
            position: absolute;
            left: -25px;

            .hero-marketing--luumo & {
              mask-image: url("../img/svg/icon-check-medium.svg");
              background-color: $medium-color;
            }
          }

          @include sm {
            font-size: 1.6rem;
            padding-inline-start: 12px;

            &::before {
              width: 20px;
              height: 20px;
            }
          }
        }
      }
    }
  }

  &__btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    @include sm {
      flex-direction: column;
      align-items: flex-start;
    }

    .std-button {
      margin-right: 16px;
      max-width: 400px;

      @include sm {
        margin-right: 0;
        width: 100%;
        justify-content: center;
      }

      &:nth-child(2) {
        margin-right: 0;

        @include sm {
          margin-top: 16px;
        }
      }

      .hero-marketing--luumo & {
        padding: 0 40px;
      }
    }
  }

  &__subtitle {
    font-size: 1.8rem;
    line-height: 2.2rem;
    font-weight: 700;
    color: $white;
    margin-top: 48px;

    @include md {
      margin-top: 32px;
    }

    @include sm {
      text-align: center;
      margin-top: 28px;
    }

    .hero-marketing--light-blue & {
      color: $primary-color;
    }
  }

  &__logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-top: 16px;

    @include md {
      margin-top: 8px;
    }

    @include sm {
      justify-content: center;
    }
  }

  &__logo {
    width: 100px;
    display: block;
    margin-right: 30px;

    @include sm {
      width: 70px;
      margin-right: 15px;
    }

    &:last-child {
      margin-right: 0;
    }
  }

  &__logo-image {
    @include image-aspect-ratio(100%, 50%);
  }

  &__image-desktop {
    position: relative;
    width: calc(100% / 12 * 5);
    height: 30vw;
    max-height: 475px;

    @include md {
      display: none;
    }

    img {
      position: absolute;
      left: 0;
      height: 100%;
      width: auto;
      max-width: none;
    }
  }

  &__image-mobile {
    display: none;
    margin-top: 24px;

    img {
      display: block;
    }

    @include md {
      display: block;
    }
  }
}
