/* stylelint-disable */

/* stylelint-disable */

/* stylelint-disable scss/operator-no-unspaced */

/* stylelint-disable scss/dollar-variable-colon-newline-after */

@font-face {
  font-family: "OpenSans";
  src: url("../fonts/OpenSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "OpenSans";
  src: url("../fonts/OpenSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "OpenSans";
  src: url("../fonts/OpenSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

html {
  font-family: var(--font-family);
  font-weight: var(--font-weight);
  font-size: 62.5%;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

pre {
  font-family: monospace;
  font-size: 1em;
}

a {
  text-decoration: none;
}

img {
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

button {
  border: none;
  text-align: left;
  background-color: transparent;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

input {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}

input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
  display: none;
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.focus-visible {
  outline: auto 1px;
}

.ios .lock {
  position: relative;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

:root {
  --font-family: "OpenSans", sans-serif;
  --font-weight: 400;
  --content-width: 119rem;
  --container-offset: 1.5rem;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --transition: 0.3s;
  --clr-default-100: #fff;
  --clr-default-400: #181818;
  --clr-default-900: #000;
}

body {
  font-size: 1.6rem;
  color: var(--clr-default-100);
  background-color: #2b0f46;
}

body.lock {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  overscroll-behavior: none;
}

.wrapper {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  min-width: 32rem;
  min-height: 100%;
}

.wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.wrapper[data-overlay=true]::before {
  opacity: 1;
  visibility: visible;
  transition: opacity var(--transition), visibility var(--transition);
}

main {
  flex-grow: 1;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--container-offset);
  padding-left: var(--container-offset);
  width: 100%;
  max-width: var(--container-width);
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.section__pt140 {
  padding-top: 14rem;
}

.section__bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  max-width: 192rem;
}

.section__bg img {
  height: initial;
}

.section__title--small {
  font-weight: 600;
  font-size: clamp(
    2.4rem,
    2.1090909091rem + 0.9090909091vw,
    3.2rem
  );
  line-height: 120%;
}

.section__title--large {
  font-weight: 700;
  font-size: clamp(
    3.4rem,
    2.1636363636rem + 3.8636363636vw,
    6.8rem
  );
}

.section__title--middle {
  font-weight: 600;
  font-size: clamp(
    2.8rem,
    2.0727272727rem + 2.2727272727vw,
    4.8rem
  );
  line-height: 120%;
}

.section__text {
  position: relative;
  z-index: 5;
  margin-top: 2.5rem;
  margin-bottom: 5rem;
  font-size: clamp(
    1.6rem,
    1.4545454545rem + 0.4545454545vw,
    2rem
  );
  line-height: 160%;
}

.section__text p + p {
  margin-top: 1.5rem;
}

.section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 8px solid #821278;
  border-radius: 1.5rem;
  padding-right: 3rem;
  padding-left: 3rem;
  min-width: 25.6rem;
  min-height: 7.6rem;
  font-weight: 600;
  font-size: clamp(
    1.6rem,
    1.3090909091rem + 0.9090909091vw,
    2.4rem
  );
  line-height: 80%;
  text-transform: uppercase;
  color: var(--clr-default-100);
  background-color: #b82cac;
  transition: box-shadow var(--transition);
}

.section__content {
  overflow: auto;
}

.section__table {
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
  border-radius: 3rem;
  padding: 4rem 2rem;
  width: 100%;
  min-width: 80rem;
  line-height: 150%;
  background-color: #69339e;
  /*Table with three columns*/
  /* Stripe table */
}

.section__table-row {
  position: relative;
  display: flex;
}

.section__table-row::before {
  content: "";
  position: absolute;
  left: 2rem;
  bottom: 0;
  border-radius: 1.5rem;
  width: calc(100% - 2rem);
  height: 0.1rem;
  background-color: rgba(255, 255, 255, 0.11);
}

.section__table-row:first-child .section__table-left {
  border-top-left-radius: 2.5rem;
  border-top-right-radius: 2.5rem;
}

.section__table-row:last-child::before {
  bottom: 2rem;
}

.section__table-row:last-child .section__table-left {
  border-bottom-right-radius: 2.5rem;
  border-bottom-left-radius: 2.5rem;
  padding-bottom: 4rem;
}

.section__table-left {
  padding: 2rem;
  width: 100%;
  max-width: 24rem;
  background-color: #592d84;
}

.section__table-right,
.section__table-center {
  padding: 2rem 3.5rem;
  width: 100%;
}

.section__table--center .section__table-row::before {
  display: none;
}

.section__table--center .section__table-row:first-child {
  color: rgba(255, 255, 255, 0.66);
}

.section__table--center .section__table-row:first-child::before {
  display: block;
}

.section__table--stripe {
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
  border-radius: 2.5rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
  width: 100%;
  min-width: 40rem;
  line-height: 150%;
  background-color: #69339e;
}

.section__table--stripe .section__table-row:nth-child(2n) {
  background-color: #592d84;
}

.section__table--stripe .section__table-row:first-child {
  color: rgba(255, 255, 255, 0.66);
}

.section__table--stripe .section__table-row::before {
  left: 4rem;
  bottom: -0.1rem;
  width: calc(100% - 8rem);
}

.section__table--stripe .section__table-row:last-child::before {
  bottom: 0;
}

.section__table-left--stripe,
.section__table-right--stripe {
  flex: 0 0 50%;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.section__table-right--stripe {
  padding-right: 4rem;
}

.section__table-left--stripe {
  padding-left: 4rem;
}

.section__img {
  position: relative;
  z-index: 4;
}

.section__img::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: 53rem;
  height: 32.8rem;
  background-color: #8200ff;
  filter: blur(14rem);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.section__img-text {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  font-weight: 700;
  font-size: clamp(
    2.6rem,
    2.0181818182rem + 1.8181818182vw,
    4.2rem
  );
  text-align: center;
  -webkit-text-stroke: 0.1rem #592d84;
  text-transform: uppercase;
  color: var(--clr-default-100);
  transform: translate(-50%, -50%);
}

.section__item--mark {
  position: relative;
  padding-left: 2rem;
}

.section__item--mark::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 0.6rem;
  border-radius: 50%;
  width: 0.3rem;
  height: 0.3rem;
  background-color: var(--clr-default-100);
}

.section__item--mark + li {
  margin-top: 0.7rem;
}

.menu__list {
  display: flex;
  align-items: center;
}

.menu__btn {
  margin-top: auto;
  width: 100%;
}

.menu__item a {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 110%;
  color: var(--clr-default-100);
  transition: color var(--transition);
}

.menu__item:not(:last-child) {
  margin-right: 2.5rem;
}

.logo {
  margin-right: 1.5rem;
  max-width: 18rem;
}

.burger {
  display: none;
}

.header {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-left: 1.5rem;
  border: 0.2rem solid #8b3fd6;
  border-radius: 1.2rem;
  padding-right: 3rem;
  padding-left: 3rem;
  min-width: 21rem;
  min-height: 6.8rem;
  font-weight: 700;
  font-size: clamp(
    1.8rem,
    1.5818181818rem + 0.6818181818vw,
    2.4rem
  );
  line-height: 80%;
  text-transform: uppercase;
  color: var(--clr-default-100);
  background-color: rgba(139, 63, 214, 0.05);
  transition: background-color var(--transition);
}

.footer {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0.2rem;
  background-color: rgba(255, 255, 255, 0.15);
}

.footer .section__bg {
  top: initial;
  bottom: 0;
}

.footer__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  padding-top: 9rem;
}

.hero__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero__info {
  width: 100%;
  max-width: 70rem;
}

.hero__img {
  margin-left: 1.5rem;
  max-width: 58.4rem;
}

.hero .section__text {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.hero .section__btn {
  margin-bottom: 3rem;
}

.experience {
  position: relative;
  z-index: 1;
  padding-top: 8rem;
}

.experience .section__content {
  margin-top: 5rem;
}

.plus {
  padding-top: 5rem;
}

.plus__wrapper {
  display: flex;
  justify-content: space-between;
}

.plus__left,
.plus__right {
  flex: 0 0 49%;
}

.plus__list {
  margin-top: 3rem;
}

.plus__item {
  display: flex;
  font-size: clamp(
    1.8rem,
    1.5818181818rem + 0.6818181818vw,
    2.4rem
  );
  line-height: 150%;
}

.plus__item-img {
  margin-right: 1rem;
  width: 100%;
  max-width: 4.4rem;
}

.plus__item + .plus__item {
  margin-top: 2.5rem;
}

.mobile__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile__info {
  width: 100%;
  max-width: 80rem;
}

.mobile__img {
  margin-left: 1.5rem;
  max-width: 39.1rem;
}

.mobile .section__img::after {
  left: 2rem;
  width: 26.1rem;
  height: 74rem;
  transform: translateY(-50%) rotate(4.6deg);
}

.mobile .section__img-text {
  left: -5rem;
  min-width: 60rem;
  font-weight: 800;
  font-size: clamp(
    3.4rem,
    1.2181818182rem + 6.8181818182vw,
    9.4rem
  );
  transform: translateY(-50%) rotate(-85.4deg);
}

.registration__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.registration__info {
  width: 100%;
  max-width: 60rem;
}

.registration .section__btn {
  position: relative;
  z-index: 2;
}

.registration__img {
  margin-right: 1.5rem;
  max-width: 69.6rem;
}

.registration__img img {
  border-radius: 2.5rem;
}

.review {
  position: relative;
}

.review .section__bg {
  top: 90rem;
}

.live__img {
  margin-top: 14rem;
  max-width: 122rem;
}

.events .section__title--large {
  position: relative;
  z-index: 1;
}

.bonus .section__btn {
  margin-top: 5rem;
}

.vip {
  position: relative;
}

.vip .section__bg {
  top: 10rem;
}

.gift {
  position: relative;
}

.gift .section__bg {
  top: 14rem;
}

.gift__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 2.5rem;
  padding: 2rem 4rem;
  background-color: #572686;
}

.gift__title {
  position: relative;
  max-width: 53rem;
  font-weight: 700;
  font-size: clamp(
    2.6rem,
    2.0181818182rem + 1.8181818182vw,
    4.2rem
  );
  line-height: 110%;
  text-align: center;
  -webkit-text-stroke: 0.1rem #592d84;
  text-transform: uppercase;
}

.gift__title span {
  position: relative;
  z-index: 2;
}

.gift__title::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: 53rem;
  height: 32.8rem;
  background-color: #8200ff;
  filter: blur(14rem);
  transform: translate(-50%, -50%);
}

.gift__img {
  margin-left: 1.5rem;
  max-width: 50.2rem;
}

.faq__list {
  display: grid;
  grid-gap: 3rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 5rem;
}

.faq .section__text {
  margin-bottom: initial;
}

.payment__content {
  overflow: auto;
  margin-bottom: 5rem;
}

.payment__table {
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
  border-radius: 2.5rem;
  padding: 6rem 4rem;
  width: 100%;
  min-width: 60rem;
  background-color: #69339e;
}

.payment__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.payment__right {
  margin-left: 3rem;
}

.summary {
  padding-bottom: 14rem;
}

.summary__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5rem;
}

.summary .section__btn {
  position: relative;
  z-index: 5;
}

.summary__img {
  margin-left: 1.5rem;
  max-width: 80.4rem;
}

@media (min-width: 75.0625em) {
  .menu__btn {
    display: none;
  }
}

@media (max-width: 75em) {
  .section__table {
    padding: 2rem;
  }

  .menu__list {
    flex-direction: column;
    margin: auto;
    padding-block: 4rem;
  }

  .menu__item a {
    font-size: 2.4rem;
  }

  .menu__item:not(:last-child) {
    margin-right: 1.5rem;
  }

  .menu__item:not(:last-child) {
    margin-right: initial;
    margin-bottom: 3rem;
  }

  .menu {
    position: fixed;
    right: -100%;
    top: 0;
    z-index: 10;
    display: flex;
    overflow: auto;
    width: 100%;
    height: 100%;
    max-width: 32rem;
    background-color: var(--clr-default-900);
    transition: right var(--transition);
  }

  .menu--active {
    right: 0;
    transition: right var(--transition);
  }

  .burger {
    position: relative;
    z-index: 15;
    display: block;
    width: 2.5rem;
    height: 2rem;
    background-color: transparent;
  }

  .burger::after,
  .burger::before,
  .burger span {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.4rem;
    background-color: var(--clr-default-100);
  }

  .burger::before {
    top: 0;
    transition: transform var(--transition), top var(--transition);
  }

  .burger::after {
    bottom: 0;
    transition: transform var(--transition), bottom var(--transition);
  }

  .burger span {
    top: 0.8rem;
    transition: transform var(--transition);
  }

  .burger--active::before {
    top: 0.8rem;
    transform: rotate(45deg);
    transition: transform var(--transition), top var(--transition);
  }

  .burger--active::after {
    bottom: 0.8rem;
    transform: rotate(-45deg);
    transition: transform var(--transition), bottom var(--transition);
  }

  .burger--active span {
    transform: scale(0);
    transition: transform var(--transition);
  }

  .header__btn {
    margin-left: initial;
  }

  .header--hide {
    display: none;
  }

  .mobile .section__img-text {
    left: -8rem;
  }

  .faq__list {
    grid-gap: 1.5rem;
  }
}

@media (max-width: 62em) {
  .section__table {
    padding: 1rem;
  }

  .section__table-left {
    padding: 1.5rem;
  }

  .section__table-right,
  .section__table-center {
    padding: 1.5rem;
  }

  .section__table--stripe {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero__wrapper {
    flex-direction: column;
  }

  .hero__info {
    max-width: initial;
  }

  .hero__img {
    margin-top: 2rem;
    margin-left: initial;
  }

  .mobile__info {
    max-width: initial;
  }

  .mobile .section__img-text {
    left: -10rem;
  }

  .registration__wrapper {
    flex-direction: column-reverse;
  }

  .registration__info {
    max-width: initial;
  }

  .registration__img {
    margin-top: 2rem;
    margin-right: initial;
  }

  .faq__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 36em) {
  .section__btn {
    position: relative;
    z-index: 1;
    width: 100%;
    min-width: initial;
    min-height: 6rem;
  }

  .mobile__img {
    display: none;
  }

  .live__img {
    margin-top: 7rem;
  }

  .faq__list {
    display: block;
  }

  .faq__item + .faq__item {
    margin-top: 1.5rem;
  }
}

@media (max-width: 47.9375em) {
  .section__pt140 {
    padding-top: 7rem;
  }

  .section__text {
    margin-bottom: 2.5rem;
  }

  .section__table--stripe {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .section__table--stripe .section__table-row::before {
    left: 1.5rem;
    width: calc(100% - 3rem);
  }

  .section__table-right--stripe {
    padding-right: 1.5rem;
  }

  .section__table-left--stripe {
    padding-left: 1.5rem;
  }

  .header {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .footer {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .experience {
    padding-top: 4rem;
  }

  .experience .section__content {
    margin-top: 2.5rem;
  }

  .plus {
    padding-top: 3rem;
  }

  .plus__wrapper {
    flex-direction: column;
  }

  .plus__left + .plus__right {
    margin-top: 3rem;
  }

  .plus__item-img {
    max-width: 2.6rem;
  }

  .mobile__wrapper {
    flex-direction: column;
  }

  .mobile__img {
    margin-top: 2rem;
    margin-left: initial;
  }

  .mobile .section__img-text {
    left: 0;
  }

  .bonus .section__btn {
    margin-top: 3rem;
  }

  .gift .section__bg {
    top: 7rem;
  }

  .gift__wrapper {
    flex-direction: column;
  }

  .gift__img {
    margin-top: 2rem;
    margin-left: initial;
  }

  .faq__list {
    margin-top: 3rem;
  }

  .payment__content {
    margin-bottom: 3rem;
  }

  .payment__table {
    padding: 2rem;
  }

  .payment__right {
    margin-left: 1.5rem;
  }

  .summary {
    padding-bottom: 7rem;
  }

  .summary__inner {
    flex-direction: column;
    margin-top: 3rem;
  }

  .summary__img {
    margin-top: 5rem;
    margin-left: initial;
  }
}

@media (hover) {
  .section__btn:hover {
    box-shadow: 1px 1px 25px rgba(140, 64, 214, 0.25), 1px 1px 24px rgba(0, 0, 0, 0.25);
    transition: box-shadow var(--transition);
  }

  .menu__item a:hover {
    color: #8200ff;
    transition: color var(--transition);
  }

  .header__btn:hover {
    background-color: #8b3fd6;
    transition: background-color var(--transition);
  }
}
/*# sourceMappingURL=style.css.map */