.newcomers-subscription {
  background-color: #EAF4E9;
  padding-top: 240px;
  margin-bottom: 240px;
  position: relative;

  @media screen and (max-width: 768px) {
    padding-top: 160px;
    margin-bottom: 100px;
  }

  &::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 240px;
    background-color: #EAF4E9;
    clip-path: ellipse(63% 68% at 39% 14%);
    z-index: 1;

    @media screen and (max-width: 768px) {
      height: 100px;
    }
  }

  .newcomers-section-title {
    padding-top: 40px;
  }

  .newcomers-subscription__text {
    font-family: 'Noto Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
    margin-bottom: 48px;
  }

  .newcomers-subscription__features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 36px;
    @media screen and (max-width: 768px) {
      gap: 40px;
    }

    .newcomers-subscription__feature {
      width: 48%;

      @media screen and (max-width: 768px) {
        width: 100%;
      }

      .newcomers-subscription__feature--title {
        font-family: 'Noto Sans', sans-serif;
        font-style: normal;
        font-weight: 700;
        font-size: 16px;
        line-height: 150%;
        color: rgb(var(--nicobay-green));
        margin-bottom: 6px;
      }

      .newcomers-subscription__feature--description {
        font-family: 'Noto Sans', sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 150%;
      }
    }
  }

  .newcomers-subscription__title {
    font-family: 'Noto Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    margin-bottom: 30px;
  }

  .newcomers-subscription__promote {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 30px;

    @media screen and (max-width: 768px) {
      gap: 16px;
    }

    .newcomers-subscription__promote--left {
      width: 48%;

      @media screen and (max-width: 768px) {
        width: 100%;
      }

      .newcomers-subscription__promote--left-image {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
    }

    .newcomers-subscription__promote--right {
      width: 48%;

      @media screen and (max-width: 768px) {
        width: 100%;
      }

      .newcomers-subscription__promote--text {
        font-family: 'Noto Sans', sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 150%;
        text-align: center;
        margin-bottom: 24px;
      }

      .newcomers-subscription__promote--merits {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        gap: 10px;
        margin-bottom: 18px;

        .newcomers-subscription__promote--merit {
          display: flex;
          justify-content: center;
          align-items: center;
          font-family: 'Noto Sans', sans-serif;
          font-style: normal;
          font-weight: 400;
          font-size: 14px;
          line-height: 150%;
          color: rgb(var(--nicobay-green));
          height: 48px;
          padding: 0;
          border-radius: 3px;
          background-color: #fff;
          flex: 1;

          @media screen and (max-width: 768px) {
            font-size: 12px;
          }
        }
      }

      .newcomers-subscription__promote--features {
        width: 260px;
        margin: 0 auto 12px;

        .newcomers-subscription__promote--features-image {
          display: block;
          width: 100%;
        }
      }

      .newcomers-subscription__promote--fees {
        width: 210px;
        margin: 0 auto;

        .newcomers-subscription__promote--fees-image {
          display: block;
          width: 100%;
        }
      }
    }
  }

  .newcomers-subscription__cta {
    .newcomers-subscription__cta--text {
      font-family: 'Noto Sans', sans-serif;
      font-style: normal;
      font-weight: 700;
      font-size: 16px;
      line-height: 150%;
      text-align: center;
      text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
      margin-bottom: 8px;

      .large {
        font-size: 24px;
      }
    }

    .newcomers-subscription__cta--button {
      width: 200px;
      height: 50px;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      padding: 0 15px;
      gap: 10px;
      background: rgb(var(--nicobay-green));
      border-radius: 40px;
      color: #fff;
      text-decoration: none;
      margin: 0 auto;
      font-weight: bold;
    }
  }
}