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

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

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

  &__banner {
    background: $c-purple-mf;
    padding: 19px;
    color: $c-white;

    @media (max-height: $h-media-x) {
      padding-top: 14px;
      padding-bottom: 12px;
    }


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

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

  &__relative {
    position: relative;
    padding-top: 52px;
    @media (max-height: $h-media-x) {
      padding-top: 50px;
    }
  }

  &__image {
    object-fit: contain;
    width: 100%;
    max-height: 350px;
    margin-bottom: 35px;
    @media (max-height: $h-media-x) {
      top: -24px;
      max-height: 310px;
      margin-bottom: 3px;
    }
  }



  &__btn {
    position: relative;
    z-index: 2;
    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: 12px;
    padding: 25px;
    margin-bottom: 18px;
    
    @media (max-height: $h-media-x) {
      padding: 22px;
      font-size: 20px;
      margin-bottom: 15px;
    }

    &-green {
      background: $c-purple-mf;
      color: $c-white;
    }
  }

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