.main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;

  &__center {
    margin: auto 0;
  }

  &__title {
    font-size: 38px;
    font-style: normal;
    font-weight: 900;
    line-height: 48px; /* 126.316% */
    text-transform: uppercase;
    color: $c-white;
    text-align: center;
    text-shadow: 0px 0px 20px #000;

    @media (max-width: $h-media-y) {
      font-size: 30px;
      font-style: normal;
      font-weight: 900;
      line-height: 42px;
    }


    span {
      font-size: 30px;
      font-style: normal;
      font-weight: 900;
      line-height: 38px; /* 126.667% */
      text-transform: uppercase;

      @media (max-width: $h-media-y) {
        font-size: 24px;
        font-style: normal;
        font-weight: 900;
        line-height: 30px;
      }
    }
  }

  &__content {
    position: relative;
  }

  &__image {
    display: block;
    object-fit: contain;
    width: 100%;
    padding-bottom: 100px;

    @media (max-width: $h-media-x) {
      padding-bottom: 60px;
    }
  }

  &__button {
    display: flex;
    flex-direction: column;

    width: 100%;
  }

  &__link {
    text-decoration: none;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: $c-white;
    width: 100%;
    padding: 27px 15px;
    border-radius: 14px;
    background: $c-green;
    text-align: center;
    margin-bottom: 20px;

    @media (max-width: $h-media-y) {
      font-size: 20px;
    }
  }

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