.main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  align-items: center;

  .bg {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: start;
    gap: 1rem;
    width: 100%;
  }

  .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
  }

  &__image {
    display: block;
    height: 100%;
    width: 100%;

    img {
      display: block;
      object-fit: contain;
      width: 100%;
      max-width: 245px;
      max-height: 24dvh;
      margin: 0 auto;
    }
  }

  .title {
    color: $c-black;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 48px */

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

  .main__link {
    display: flex;
    padding: 20px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 92.308% */
    text-decoration: none;
    max-width: 260px;
    width: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, #761b86 0%, #b22ac9 100%);
  }

  .description {
    color: $c-black;
    text-align: left;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    opacity: 0.4;
  }

  .back {
    color: $c-black;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: 1px solid $c-black;
    opacity: 0.4;
    padding: 10px 20px;
    border-radius: 100px;
    text-decoration: none;
  }

  .profile {
    display: block;
    object-fit: contain;
    object-position: left center;
    max-height: 34px;
    height: 100%;
    width: 100%;
  }
}
