.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: 24px;
    font-style: normal;
    font-weight: 700;
    margin: 0;
    margin-bottom: 12px;
    padding: 0;

    @media (max-height: $h-media-x) {
      font-size: 18px;
      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-green;
    padding: 19px;
    color: $c-white;
    margin-bottom: 10px;

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


    &-text {
      text-align: center;
      font-family: 'Inter', sans-serif;
      font-size: 30px;
      font-style: normal;
      font-weight: 700;
      line-height: normal;
      text-shadow: 0px 4px 4px #00000099;

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


  &__image {
    object-fit: contain;
    width: 100%;
    max-height: 350px;
    @media (max-height: $h-media-x) {
      max-height: 220px;
      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;
    background: $c-white;
    color: $c-black;
    text-decoration: none;
    box-shadow: 0px 10px 10px 0px #00000080;

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

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

  &__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: 13px;
    opacity: .9;
    
    @media (max-height: $h-media-x) {
      font-size: 14px;
      margin-bottom: 10px;
    }
  }
}