.main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  &__title {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    margin: 0;
    padding: 0;

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

    &-description {
      text-align: center;
      font-family: 'Inter', sans-serif;
      font-size: 20px;
      font-style: normal;
      font-weight: 400;
      
      @media (max-height: $h-media-x) {
        font-size: 14px;
        margin-bottom: 5px;
      }
    }
  }

  &__image {
    object-fit: contain;
    padding: 22px 0;
    margin-bottom: 15px;
    width: 100%;
    max-height: 240px;
    @media (max-height: $h-media-x) {
      padding: 10px 0 5px;
      max-height: 230px;
    }
  }

  &__btn {
    display: block;
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    text-align: center;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-radius: 14px;
    padding: 25px;
    margin-bottom: 18px;
    
    @media (max-height: $h-media-x) {
      padding: 22px;
      font-size: 20px;
      margin-bottom: 15px;
    }

    &-green {
      background: $c-purple;
    }
  }


  &__back {
    margin: 0 auto;
    max-width: max-content;
    padding: 3px 10px;
    font-size: 15px;
    font-weight: 400;
    line-height: 26.68px;
    letter-spacing: 0.4765027165412903px;
    text-decoration: none;
    color: rgba($c-white, 0.7);
    text-align: center;
    border: 1px solid rgba($c-white, 0.7);
    border-radius: 100px;
    margin-bottom: 10px;

    &-container {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
    }
  }

  &__description {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
    
    @media (max-height: $h-media-x) {
      font-size: 14px;
      margin-bottom: 10px;
    }
  }
}