.main {
  background: $c-black;
  min-height: 80dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  &-2 {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
  }
  &__title {
    font-size: 26px;
    line-height: 1.5;
    font-style: normal;
    font-weight: 400;
    color: $c-white;
    text-wrap: balance;
    text-align: center;
    position: relative;
    z-index: 10;

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

    span {
      display: block;
      font-size: 20px;
      font-style: normal;
      font-weight: 400;
      line-height: 1;
      padding: 5px 10px;
      border-radius: 10px;
      margin: 10px auto;
      border: 1px solid $c-white;

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

  &__content {
    flex: 0 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  &__image {
    display: block;
    object-fit: contain;
    object-position: top center;
    height: 100%;
    width: 100%;
    max-width: 280px;
    max-height: 250px;
    margin: 0 auto;
    padding-top: 10px;
    padding-bottom: 10px;

    &.big {
      flex: 1 0 auto;
      position: relative;
      z-index: -1;
      transform: scale(2.5) translateY(10%);
      max-height: 210px;
      max-width: 380px;

      // @media (max-width: $h-media-y) {
      // }
    }
    //@media (max-width: $h-media-x) {
    //  padding-bottom: 20px;
    //}
    //
    //@media (max-height: $h-media-x) {
    //  max-height: 250px;
    //}
  }

  &__button {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  &__link {
    text-decoration: none;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: $c-white;
    width: 100%;
    padding: 20px 15px;
    border-radius: 190px;
    background: $c-green;
    text-align: center;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;

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

  &__pay {
    opacity: 0.7;
    text-align: center;
    color: $c-white;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 20px;
  }

  &__back {
    margin: 0 auto;
    max-width: max-content;
    padding: 2px 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;
  }

  &__promo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    margin-top: 10px;

    img {
      display: block;
      max-width: 55px;
      width: 100%;
      object-fit: contain;
      @media (max-width: $h-media-y) {
        max-width: 50px;
      }
    }

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

      .price {
        color: #00b956;
        font-size: 34px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
        @media (max-width: $h-media-y) {
          font-size: 28px;
        }
      }

      .desc {
        color: #333;
        font-size: 17px;
        font-style: normal;
        font-weight: 900;
        line-height: normal;
        text-transform: uppercase;

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

  .image__player {
    width: 100%;
    object-fit: contain;
    display: block;
    margin-bottom: 5px;
  }
}
