.main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: $c-white;

  &__container {
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
    max-width: 420px;
  }

  &__title {
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2; /* 126.316% */
    color: $c-white;
    text-align: center;
    margin-bottom: 30px;

    @media (max-height: $h-media-x) {
      font-size: 22px;
      margin-bottom: 15px;
    }
  }

  &__promo {
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 5px;

    span {
      font-size: 35px;
      text-transform: uppercase;
      font-weight: 800;
    }

    @media (max-height: $h-media-x) {
        font-size: 24px;
      span {
        font-size: 28px;
      }
    }
  }

  &__button {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  &__link {
    text-decoration: none;
    font-size: 23px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: $c-white;
    width: 100%;
    padding: 20px 25px;
    border-radius: 44px;
    background: linear-gradient(90deg, #019345 0%, #1BC068 100%);
    text-align: center;
    margin-bottom: 10px;

    @media (max-width: $h-media-y) {
      font-size: 20px;
      padding: 10px 10px;
      max-width: 300px;
      margin: 0 auto 10px;
    }
  }

  &__pay {
    text-align: center;
    color: $c-white;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
  }

  &__prev {
    color: $c-white;
    border: 1px solid $c-white;
    text-decoration: none;
    display: block;
    text-align: center;
    width: max-content;
    padding: 2px 10px;
    border-radius: 15px;
    margin: 0 auto;
    opacity: .7;
  }
  &__decoration {
    display: block;
    object-fit: cover;
    width: 100%;
    padding: 10px 0;

    @media (max-height: $h-media-x) {
      max-height: 220px;
      object-fit: contain;
    }
  }
}

.decoration {
  &.container {
    padding: 0;
    max-width: 600px;

  }
}