.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;
    }
  }

  &__image {
    object-fit: contain;
    padding: 42px 0 26px;
    margin-bottom: 10px;
    width: 100%;
    @media (max-height: $h-media-x) {
      padding: 34px 0;
      margin-bottom: 14px;
    }
  }

  &__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;
    color: $c-white;
    
    @media (max-height: $h-media-x) {
      padding: 22px;
      font-size: 20px;
      margin-bottom: 15px;
    }

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

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