/* stylelint-disable */

/* stylelint-disable */

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

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

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

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

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

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-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%;
  -o-object-fit: cover;
  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: "Poppins", sans-serif;
  --font-weight: 400;
  --content-width: 118rem;
  --container-offset: 1.5rem;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --transition: 0.3s;
  --clr-default-100: #fff;
  --clr-default-200: #24092E;
  --clr-default-300: rgba(0, 0, 0, 0.25);
  --clr-default-400: #1A0119;
  --clr-default-450: #160071;
  --clr-default-460: #110017;
  --clr-default-500: #14001C;
  --clr-default-600: #0F0015;
  --clr-default-700: #000;
  --clr-primary-300: #FFA601;
  --clr-primary-310: #eeb242;
  --clr-primary-350: #704B09;
  --clr-primary-400: #4361F5;
  --clr-primary-450: #D60E7A;
  --clr-primary-500: #37263E;
  --clr-primary-600: rgba(47, 18, 57, 0.3);
  --clr-primary-700: rgba(47, 18, 57, 0.7);
  --clr-primary-800: #0F0015;
}

body {
  font-size: 1.4rem;
  color: var(--clr-default-100);
  background-color: var(--clr-default-500);
}

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 {
  padding-top: 13rem;
}

.text {
  line-height: 155%;
}

.main__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-top-left-radius: 5% 50%;
  border-top-right-radius: 5% 50%;
  border-bottom-right-radius: 5% 50%;
  border-bottom-left-radius: 5% 50%;
  padding-right: 3.5rem;
  padding-left: 3.5rem;
  width: max-content;
  min-width: 23rem;
  min-height: 6.8rem;
  font-weight: 600;
  font-size: clamp(
    1.6rem,
    1.5280898876rem + 0.2247191011vw,
    1.8rem
  );
  text-transform: uppercase;
  color: var(--clr-default-200);
  background-color: var(--clr-primary-300);
  transition: background-color var(--transition);
}

.main__link p {
  z-index: 1;
}

.main__link:before,
.main__link::after {
  content: "";
  position: absolute;
  left: 50%;
}

.main__link::before {
  bottom: 0;
  z-index: -1;
  border-top-left-radius: 5% 50%;
  border-top-right-radius: 5% 50%;
  border-bottom-right-radius: 5% 50%;
  border-bottom-left-radius: 5% 50%;
  width: 100%;
  height: 6.5rem;
  background-color: var(--clr-primary-350);
  transform: translate(-50%, 13%);
  transition: transform var(--transition);
}

.main__link::after {
  top: 50%;
  width: 18rem;
  height: 6.5rem;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.45) 48.33%, rgba(255, 255, 255, 0) 100%);
  transform: translate(-50%, -50%);
}

.title {
  font-weight: 600;
  font-size: clamp(
    1.8rem,
    1.4404494382rem + 1.1235955056vw,
    2.8rem
  );
  line-height: 115%;
}

.line__decor::before {
  content: "";
  position: absolute;
  height: 0.1rem;
  background-image: url(../img/ui/line-decor.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

.banner a img {
  border-radius: 3.3rem;
}

.image__border img {
  border-radius: 3.3rem;
}

.menu {
  margin-right: 2rem;
}

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

.menu__item {
  position: relative;
}

.menu__item::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: var(--clr-primary-310);
  transform: translate(-50%, 0);
  transition: width 0.3s;
}

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

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

.menu__item--mobile p {
  font-weight: 600;
  color: var(--clr-default-200);
}

.logo {
  margin-right: 5rem;
  max-width: 15rem;
}

.burger {
  display: none;
}

.header {
  z-index: 1;
  padding-top: 3rem;
  min-height: 10rem;
}

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

.header__link {
  margin-left: auto;
  min-width: 27rem;
}

.footer {
  padding-bottom: 5rem;
}

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

.footer__menu {
  margin-right: 2rem;
}

.footer__menu-list {
  display: flex;
  align-items: center;
}

.footer__menu-item {
  position: relative;
}

.footer__menu-item::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: var(--clr-primary-310);
  transform: translate(-50%, 0);
  transition: width 0.3s;
}

.footer__menu-item:not(:last-child) {
  margin-right: 2rem;
}

.footer__menu-link {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 110%;
  color: var(--clr-default-100);
}

.hero {
  position: relative;
}

.hero:before,
.hero:after {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: var(--clr-primary-400);
  filter: blur(14rem);
}

.hero:before {
  left: 0;
  top: 0;
  width: 45rem;
  height: 44rem;
  transform: translate(-43%, -83%);
}

.hero:after {
  left: 50%;
  top: 50%;
  width: 32rem;
  height: 32rem;
  transform: translate(-50%, -200%);
}

.hero__wrapper {
  position: relative;
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.hero__content {
  z-index: 1;
  max-width: 67.5rem;
}

.hero__title {
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: clamp(
    2.4rem,
    1.1056179775rem + 4.0449438202vw,
    6rem
  );
  line-height: 110%;
}

.hero__text {
  margin-bottom: 5rem;
}

.hero__text p {
  font-size: 1.4rem;
  line-height: 155%;
}

.hero__text p:not(:last-child) {
  margin-bottom: 2rem;
}

.hero__image {
  position: absolute;
  right: -56rem;
  top: -25rem;
  width: 106.5rem;
  height: 78.5rem;
}

.info {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: var(--clr-default-500);
}

.info:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4rem;
  background-color: var(--clr-default-450);
  transform: translateY(-2.2rem) rotate(-1deg);
}

.info::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 70rem;
  height: 70rem;
  background-color: rgba(245, 67, 238, 0.25);
  filter: blur(14rem);
  transform: translate(22%, -3%);
}

.info__title {
  margin-bottom: 2.5rem;
}

.info__text {
  margin-bottom: 5rem;
}

.info__text p:not(:last-child) {
  margin-bottom: 1.5rem;
}

.info__table {
  position: relative;
  overflow: auto;
  margin-bottom: 6rem;
  border: 0.1rem solid var(--clr-primary-500);
  border-radius: 6rem;
  padding-top: 4rem;
  padding-right: 3rem;
  padding-bottom: 4rem;
  padding-left: 3rem;
  background-color: var(--clr-primary-700);
}

.info__table:before {
  left: 19rem;
  top: 0;
  width: 40%;
}

.info__table table {
  border-collapse: collapse;
}

.info__table tbody tr {
  border-bottom: 0.1rem solid var(--clr-primary-500);
}

.info__table tbody td {
  padding-top: 0.8rem;
  padding-right: 1.2rem;
  padding-bottom: 0.8rem;
  padding-left: 1.2rem;
  line-height: 135%;
}

.info__table tbody td:first-child {
  vertical-align: top;
  min-width: 27rem;
  font-weight: 500;
  word-break: break-word;
}

.info__table tbody td a {
  color: var(--clr-default-100);
}

.info__link {
  margin-right: auto;
  margin-left: auto;
}

.benefits {
  position: relative;
}

.benefits::after {
  content: "";
  position: absolute;
  right: 217px;
  top: 270px;
  z-index: -1;
  width: 65rem;
  height: 65rem;
  background-color: rgba(245, 67, 67, 0.17);
  filter: blur(14rem);
}

.benefits__wrapper {
  position: relative;
}

.benefits__title {
  margin-bottom: 5rem;
}

.benefits__body {
  display: flex;
  margin-bottom: 5rem;
}

.benefits__body-wrapper {
  max-width: 79rem;
}

.benefits__body-title {
  margin-bottom: 2.5rem;
  font-size: clamp(
    1.8rem,
    1.7280898876rem + 0.2247191011vw,
    2rem
  );
  line-height: 155%;
  text-transform: uppercase;
}

.benefits__plus-list {
  display: grid;
  grid-gap: 2.5rem;
  grid-template-columns: repeat(2, 1fr);
}

.benefits__plus-item {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid var(--clr-primary-500);
  padding-top: 2rem;
  padding-right: 2rem;
  padding-bottom: 2rem;
  padding-left: 8rem;
  min-height: 9rem;
  background-color: var(--clr-default-300);
}

.benefits__plus-item::before {
  top: 0;
  width: 100%;
}

.benefits__plus-item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1rem;
  width: 100%;
  height: 2rem;
  background-image: radial-gradient(50% 50% at 50% 50%, rgba(210, 166, 255, 0.55) 0%, rgba(210, 166, 255, 0) 98.85%);
  filter: blur(5.5px);
  mix-blend-mode: screen;
  transform: translateX(-50%);
}

.benefits__item-text {
  position: relative;
  line-height: 155%;
}

.benefits__item-text--1,
.benefits__item-text--2,
.benefits__item-text--3,
.benefits__item-text--4,
.benefits__item-text--5,
.benefits__item-text--6,
.benefits__item-text--7,
.benefits__item-text--8,
.benefits__item-text--9,
.benefits__item-text--10 {
  position: relative;
}

.benefits__item-text--1::before,
.benefits__item-text--2::before,
.benefits__item-text--3::before,
.benefits__item-text--4::before,
.benefits__item-text--5::before,
.benefits__item-text--6::before,
.benefits__item-text--7::before,
.benefits__item-text--8::before,
.benefits__item-text--9::before,
.benefits__item-text--10::before {
  content: "";
  position: absolute;
  left: -6.5rem;
  top: 50%;
  width: 5.2rem;
  height: 5.2rem;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}

.benefits__item-text--1::before {
  background-image: url(../img/benefits/decor1.svg);
}

.benefits__item-text--2::before {
  background-image: url(../img/benefits/decor2.svg);
}

.benefits__item-text--3::before {
  background-image: url(../img/benefits/decor3.svg);
}

.benefits__item-text--4::before {
  background-image: url(../img/benefits/decor4.svg);
}

.benefits__item-text--5::before {
  background-image: url(../img/benefits/decor5.svg);
}

.benefits__item-text--6::before {
  background-image: url(../img/benefits/decor6.svg);
}

.benefits__item-text--7::before {
  background-image: url(../img/benefits/decor7.svg);
}

.benefits__item-text--8::before {
  background-image: url(../img/benefits/decor8.svg);
}

.benefits__item-text--9::before {
  background-image: url(../img/benefits/decor9.svg);
}

.benefits__item-text--10::before {
  background-image: url(../img/benefits/decor10.svg);
}

.benefits__image {
  position: absolute;
  right: -48.8rem;
  top: 6.5rem;
  width: 85rem;
  height: 63rem;
}

.benefits__misus-list {
  display: grid;
  grid-gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
}

.benefits__misus-item {
  position: relative;
  padding-left: 4.5rem;
}

.benefits__misus-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3.2rem;
  height: 3.2rem;
  background-image: url(../img/benefits/decor-minus.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

.registration {
  position: relative;
}

.registration::after {
  content: "";
  position: absolute;
  right: -49rem;
  top: 22.5rem;
  z-index: -1;
  width: 70rem;
  height: 45rem;
  background-color: var(--clr-primary-400);
  filter: blur(26rem);
}

.registration__wrapper {
  position: relative;
  display: flex;
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.registration__image {
  position: absolute;
  left: -30rem;
  top: 50%;
  width: 87rem;
  height: 74rem;
  transform: translateY(-50%);
}

.registration__image::after {
  content: "";
  position: absolute;
  left: 0;
  top: 11.5rem;
  z-index: -1;
  width: 70rem;
  height: 70rem;
  background-color: rgba(245, 67, 238, 0.25);
  filter: blur(14rem);
}

.registration__info {
  margin-left: auto;
  max-width: 57.5rem;
}

.registration__title {
  margin-bottom: 2.5rem;
  max-width: 39rem;
  text-transform: uppercase;
}

.registration__text {
  margin-bottom: 2.5rem;
}

.registration__text p:not(:last-child) {
  margin-bottom: 1.5rem;
}

.registration__list {
  list-style: decimal;
  margin-bottom: 2.5rem;
  padding-left: 2rem;
}

.registration__item {
  line-height: 155%;
}

.registration__item:not(:last-child) {
  margin-bottom: 1rem;
}

.registration__item-list {
  list-style: disc;
  padding-left: 2rem;
}

.registration__item-item {
  line-height: 155%;
}

.registration__description {
  margin-bottom: 2.5rem;
  border-top-left-radius: 3% 50%;
  border-top-right-radius: 3% 50%;
  border-bottom-right-radius: 3% 50%;
  border-bottom-left-radius: 3% 50%;
  padding-top: 2rem;
  padding-right: 4rem;
  padding-bottom: 2rem;
  padding-left: 4rem;
  box-shadow: inset 0px 0px 9px rgba(255, 255, 255, 0.35);
  background-color: var(--clr-default-400);
  -webkit-backdrop-filter: blur(0.35rem);
  backdrop-filter: blur(0.35rem);
}

.slots {
  position: relative;
}

.slots::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: -1;
  width: 130rem;
  height: 70rem;
  background-color: rgba(245, 67, 88, 0.25);
  filter: blur(20rem);
  transform: translate(-50%, 0%);
}

.slots__title {
  margin-bottom: 2.5rem;
}

.slots__text {
  margin-bottom: 3rem;
}

.slots__text p:not(:last-child) {
  margin-bottom: 1.5rem;
}

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

.slots__left {
  margin-right: 2rem;
  border-top-left-radius: 3% 50%;
  border-top-right-radius: 3% 50%;
  border-bottom-right-radius: 3% 50%;
  border-bottom-left-radius: 3% 50%;
  padding: 3.5rem;
  min-width: 43.5rem;
  box-shadow: inset 0px 0px 9px rgba(255, 255, 255, 0.35);
  background-color: var(--clr-default-400);
}

.slots__list {
  list-style: disc;
  padding-left: 2rem;
}

.slots__item:not(:last-child) {
  margin-bottom: 0.5rem;
}

.slots__right {
  max-width: 67.5rem;
}

.slots__table {
  overflow: auto;
  border: 0.1rem solid var(--clr-primary-500);
  border-radius: 3rem;
  background-color: var(--clr-primary-700);
}

.slots__table table {
  position: relative;
  border-collapse: collapse;
  min-width: 100%;
}

.slots__table table::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: -1;
  width: 63rem;
  height: 44rem;
  background-color: rgba(245, 67, 238, 0.25);
  filter: blur(9rem);
  transform: translate(22%, -3%);
}

.slots__table table thead th {
  padding-top: 1.5rem;
  padding-right: 3rem;
  padding-bottom: 1.5rem;
  padding-left: 3rem;
  font-weight: 500;
  text-align: start;
}

.slots__table table thead th:first-child {
  min-width: 30rem;
}

.slots__table table tbody td {
  padding-top: 1.5rem;
  padding-right: 3rem;
  padding-bottom: 1.5rem;
  padding-left: 3rem;
}

.slots__table table tbody td:first-child {
  font-weight: 500;
}

.table__title {
  margin-bottom: 2.5rem;
}

.table__text {
  margin-bottom: 5rem;
}

.table__text p:not(:last-child) {
  margin-bottom: 1.5rem;
}

.table__body {
  overflow: auto;
  border: 0.1rem solid var(--clr-primary-500);
  border-radius: 3.3rem;
  background-color: var(--clr-primary-700);
}

.table__body table {
  border-collapse: collapse;
}

.table__body table thead th {
  padding-top: 1.5rem;
  padding-right: 3rem;
  padding-bottom: 1.5rem;
  padding-left: 3rem;
  line-height: 155%;
  text-align: start;
}

.table__body table thead th:first-child {
  min-width: 30rem;
}

.table__body table thead th:nth-child(2) {
  width: 50%;
}

.table__body table thead th:nth-child(3) {
  width: 50%;
}

.table__body table tbody tr td {
  padding-top: 1.5rem;
  padding-right: 3rem;
  padding-bottom: 1.5rem;
  padding-left: 3rem;
  line-height: 155%;
}

.table__body table tbody tr td:first-child {
  vertical-align: top;
}

.table__list {
  list-style: disc;
  padding-left: 2rem;
}

.table__item:not(:last-child) {
  margin-bottom: 0.5rem;
  line-height: 155%;
}

.live {
  position: relative;
}

.live::after {
  content: "";
  position: absolute;
  left: -60rem;
  top: 13.5rem;
  z-index: -1;
  width: 70rem;
  height: 60rem;
  background-color: var(--clr-primary-400);
  filter: blur(18rem);
}

.live::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -4.5rem;
  z-index: -1;
  width: 70rem;
  height: 60rem;
  background-color: rgba(245, 67, 238, 0.25);
  filter: blur(18rem);
  transform: translateX(-50%);
}

.live__text-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5rem;
}

.live__title {
  margin-right: 2rem;
  min-width: 35rem;
}

.live__text-top {
  max-width: 67.5rem;
}

.live__text-top p:not(:last-child) {
  margin-bottom: 1.5rem;
}

.live__image-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5rem;
}

.live__text {
  margin-bottom: 5rem;
}

.live__text p:not(:last-child) {
  margin-bottom: 1.5rem;
}

.live__left-image {
  margin-right: 2rem;
  max-width: 37.5rem;
}

.live__right-image {
  max-width: 75rem;
}

.live__body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.live__body::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: -2.5rem;
  z-index: -1;
  width: 55rem;
  height: 55rem;
  background-color: rgba(245, 67, 238, 0.25);
  filter: blur(9rem);
}

.live__body-left {
  margin-right: 3rem;
}

.live__body-title {
  font-size: clamp(
    1.8rem,
    1.7280898876rem + 0.2247191011vw,
    2rem
  );
  text-transform: uppercase;
}

.live__body-image {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  max-width: 57.5rem;
}

.live__list {
  display: grid;
  grid-gap: 2.5rem;
  grid-template-columns: repeat(2, 1fr);
}

.live__item {
  font-size: clamp(
    1.8rem,
    1.7280898876rem + 0.2247191011vw,
    2rem
  );
}

.live__text-arrow {
  position: relative;
  margin-top: 7rem;
  margin-right: auto;
  margin-bottom: 9rem;
  margin-left: auto;
  max-width: 26.5rem;
  font-size: 1.4rem;
  line-height: 130%;
}

.live__text-arrow:before {
  content: "";
  position: absolute;
  left: -17rem;
  bottom: -2rem;
  width: 16rem;
  height: 3.2rem;
  background-image: url(../img/live/arrow.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

.tournament__wrapper {
  position: relative;
  display: flex;
}

.tournament__image {
  position: absolute;
  left: -38rem;
  top: 0;
  width: 83rem;
  height: 62.5rem;
}

.tournament__info {
  margin-left: auto;
  max-width: 67.5rem;
}

.tournament__title {
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.tournament__text {
  margin-bottom: 5rem;
}

.tournament__text p:not(:last-child) {
  margin-bottom: 1.5rem;
}

.tournament__link {
  margin-bottom: 5rem;
}

.tournament__table {
  overflow: auto;
  border: 0.1rem solid var(--clr-primary-500);
  border-radius: 3.3rem;
  background-color: var(--clr-primary-700);
}

.tournament__table table {
  border-collapse: collapse;
}

.tournament__table table td {
  vertical-align: top;
  padding-top: 1.5rem;
  padding-right: 3rem;
  padding-bottom: 1.5rem;
  padding-left: 3rem;
  line-height: 155%;
}

.tournament__table table td:first-child {
  min-width: 30rem;
}

.tournament__table-list {
  list-style: disc;
  padding-left: 2rem;
}

.tournament__table-item {
  line-height: 155%;
}

.bonus {
  position: relative;
}

.bonus::before {
  content: "";
  position: absolute;
  left: -50rem;
  top: 28.5rem;
  z-index: -1;
  width: 75rem;
  height: 75rem;
  background-color: rgba(67, 97, 245, 0.66);
  filter: blur(40rem);
}

.bonus::after {
  content: "";
  position: absolute;
  left: 88rem;
  top: 96.5rem;
  z-index: -1;
  width: 75rem;
  height: 75rem;
  background-color: rgba(245, 67, 88, 0.25);
  filter: blur(28rem);
}

.bonus__info {
  display: flex;
}

.bonus__title {
  margin-bottom: 2.5rem;
}

.bonus__text {
  margin-bottom: 5rem;
}

.bonus__text p:not(:last-child) {
  margin-bottom: 1.5rem;
}

.bonus__image {
  flex-shrink: 0;
  margin-right: 2.5rem;
  max-width: 47.5rem;
}

.vip__wrapper-top {
  position: relative;
  display: flex;
  padding-top: 17rem;
  padding-bottom: 10rem;
}

.vip__content {
  max-width: 57.5rem;
}

.vip__title {
  margin-bottom: 2.5rem;
}

.vip__text p:not(:last-child) {
  margin-bottom: 1.5rem;
}

.vip__image {
  position: absolute;
  right: -19rem;
  top: 50%;
  width: 79rem;
  height: 54.5rem;
  transform: translateY(-46%);
}

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

.vip__table {
  border: 0.1rem solid var(--clr-primary-500);
  border-radius: 3.3rem;
  width: 100%;
  max-width: 57.7rem;
  background-color: var(--clr-primary-700);
}

.vip__table table {
  border-collapse: collapse;
  width: 100%;
}

.vip__table table thead th {
  padding-top: 1.5rem;
  padding-right: 3rem;
  padding-bottom: 1.5rem;
  padding-left: 3rem;
  font-weight: 400;
  text-align: start;
}

.vip__table table thead th:first-child {
  width: 50%;
}

.vip__table table thead th:last-child {
  width: 50%;
}

.vip__table table tbody tr:nth-child(odd) {
  background-color: var(--clr-primary-600);
}

.vip__table table tbody td {
  padding-top: 1.5rem;
  padding-right: 3rem;
  padding-bottom: 1.5rem;
  padding-left: 3rem;
}

.vip__table:first-child {
  margin-right: 2.5rem;
}

.license {
  position: relative;
  margin-top: 13rem;
}

.license::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: -webkit-image-set(url(../img/license/bg@2x.jpg) 2x, url(../img/license/bg@1x.jpg) 1x);
  background-size: cover;
  background-repeat: no-repeat;
}

.license__wrapper {
  padding-bottom: 4rem;
}

.license__wrapper-top {
  display: flex;
  align-items: center;
}

.license__content {
  margin-right: 2rem;
  max-width: 57.5rem;
}

.license__title {
  margin-bottom: 2.5rem;
}

.license__text {
  margin-bottom: 2.5rem;
}

.license__text p:not(:last-child) {
  margin-bottom: 1.5rem;
}

.license__info {
  position: relative;
  z-index: 2;
  margin-top: -7rem;
  border-radius: 3.3rem;
  padding-top: 5rem;
  padding-right: 10rem;
  padding-bottom: 5rem;
  padding-left: 10rem;
  background-color: var(--clr-default-500);
}

.license__info-image {
  margin-right: auto;
  margin-left: auto;
  max-width: 98rem;
}

.deposit__wrapper-top {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}

.deposit__content {
  margin-right: 2.5rem;
  max-width: 57.5rem;
}

.deposit__title {
  margin-bottom: 2.5rem;
}

.deposit__text p:not(:last-child) {
  margin-bottom: 1.5rem;
}

.deposit__image {
  max-width: 57.5rem;
}

.deposit__table {
  overflow: auto;
  margin-bottom: 6rem;
  border: 0.1rem solid var(--clr-primary-500);
  border-radius: 3.3rem;
  background-color: var(--clr-primary-700);
}

.deposit__table table {
  border-collapse: collapse;
}

.deposit__table table thead th {
  padding-top: 1.5rem;
  padding-right: 3rem;
  padding-bottom: 1.5rem;
  padding-left: 3rem;
  font-weight: 400;
  line-height: 155%;
  text-align: start;
}

.deposit__table table thead th:first-child {
  min-width: 30rem;
}

.deposit__table table thead th:nth-child(2) {
  min-width: 30rem;
}

.deposit__table table tbody tr:nth-child(odd) {
  background-color: var(--clr-primary-600);
}

.deposit__table table tbody td {
  padding-top: 1.5rem;
  padding-right: 3rem;
  padding-bottom: 1.5rem;
  padding-left: 3rem;
  line-height: 155%;
}

.deposit__list {
  list-style: disc;
  padding-left: 2rem;
}

.deposit__item {
  line-height: 155%;
}

.deposit__subtitle {
  margin-bottom: 3rem;
  font-weight: 400;
  font-size: clamp(
    1.8rem,
    1.7280898876rem + 0.2247191011vw,
    2rem
  );
  text-transform: uppercase;
}

.deposit__bottom-table {
  overflow: auto;
  border: 0.1rem solid var(--clr-primary-500);
  border-radius: 3.3rem;
  background-color: var(--clr-primary-700);
}

.deposit__bottom-table table {
  border-collapse: collapse;
  width: 100%;
}

.deposit__bottom-table table tr td {
  padding-top: 1.5rem;
  padding-right: 3rem;
  padding-bottom: 1.5rem;
  padding-left: 3rem;
  width: 50%;
  line-height: 155%;
}

.deposit__bottom-list {
  list-style: disc;
  padding-left: 2rem;
}

.deposit__bottom-item {
  line-height: 155%;
}

.support {
  position: relative;
}

.support::after {
  content: "";
  position: absolute;
  right: -49.2rem;
  top: -3px;
  z-index: -1;
  width: 70rem;
  height: 70rem;
  background-color: rgba(245, 67, 238, 0.25);
  filter: blur(14rem);
}

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

.support__content {
  margin-right: 2rem;
  max-width: 47rem;
}

.support__title {
  margin-bottom: 2.5rem;
}

.support__text {
  margin-bottom: 5rem;
}

.support__text p:not(:last-child) {
  margin-bottom: 1.5rem;
}

.resume {
  margin-top: 7rem;
}

.resume__wrapper {
  position: relative;
  overflow: hidden;
  border: 0.1rem solid var(--clr-primary-700);
  border-radius: 3.3rem;
  padding: 10rem;
  background-color: var(--clr-default-600);
}

.resume__title {
  margin-bottom: 2.5rem;
}

.resume__text {
  margin-bottom: -24rem;
}

.resume__text p:not(:last-child) {
  margin-bottom: 1.5rem;
}

.resume__image {
  position: relative;
  bottom: -29rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 87rem;
}

.faq {
  margin-bottom: 13rem;
}

.faq__title {
  margin-bottom: 5rem;
}

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

.faq__item {
  position: relative;
  border: 0.1rem solid var(--clr-primary-500);
  border-radius: 2.4rem;
  padding: 3rem;
  background-color: var(--clr-default-300);
}

.faq__item:before {
  top: 0;
  width: 100%;
}

.faq__item:last-child {
  grid-column: 1/3;
}

.faq__item-title {
  margin-bottom: 2.5rem;
  font-size: clamp(
    1.8rem,
    1.7280898876rem + 0.2247191011vw,
    2rem
  );
  line-height: 155%;
  text-transform: uppercase;
}

.faq__item-body {
  line-height: 155%;
}

@media (max-width: 85em) {
  .resume__wrapper {
    padding: 3rem;
  }

  .resume__text {
    margin-bottom: 3rem;
  }

  .resume__image {
    bottom: initial;
  }
}

@media (max-width: 80em) {
  .live__text-arrow {
    margin-right: initial;
  }

  .vip__wrapper-top {
    align-items: center;
    padding-top: initial;
    padding-bottom: 3rem;
  }

  .vip__content {
    margin-right: 2rem;
    max-width: 50rem;
  }

  .vip__image {
    position: initial;
    right: initial;
    top: initial;
    width: initial;
    height: initial;
    transform: initial;
  }
}

@media (max-width: 75em) {
  .menu__item:not(:last-child) {
    margin-right: 1.5rem;
  }

  .logo {
    margin-right: 2rem;
    max-width: 12rem;
  }

  .header__link {
    min-width: 23rem;
  }

  .hero__content {
    max-width: 50rem !important;
  }

  .tournament__info {
    max-width: 50rem;
  }

  .tournament__table table td:first-child {
    min-width: 15rem !important;
  }

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

  .bonus__image {
    margin-right: initial;
    margin-right: auto;
    margin-left: auto;
  }

  .bonus__table {
    margin-bottom: 5rem;
  }
}

@media (max-width: 62em) {
  .section {
    padding-top: 8rem;
  }

  .hero:before {
    display: none;
  }

  .hero:after {
    transform: translate(-50%, 22%);
  }

  .hero__wrapper {
    flex-direction: column;
  }

  .hero__content {
    margin-right: initial !important;
    max-width: initial !important;
  }

  .hero__image {
    margin-right: auto;
    margin-left: auto;
    max-width: 55rem;
  }

  .benefits__body {
    flex-direction: column;
  }

  .benefits__body-wrapper {
    margin-right: initial !important;
    margin-bottom: 3rem;
    min-width: 100%;
    max-width: initial !important;
  }

  .registration::after {
    display: none;
  }

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

  .registration__image::after {
    display: none;
  }

  .registration__image {
    margin-right: initial !important;
  }

  .registration__info {
    margin-bottom: 2rem;
    margin-left: initial;
    max-width: initial !important;
  }

  .registration__link {
    margin-right: auto;
    margin-left: auto;
  }

  .slots__info {
    flex-direction: column;
    align-items: initial;
  }

  .slots__left {
    margin-right: initial;
    margin-bottom: 3rem;
    min-width: initial;
  }

  .slots__right {
    max-width: initial;
  }

  .slots__table table thead th:first-child {
    min-width: 25rem;
  }

  .table__body table thead th:first-child {
    min-width: 20rem;
  }

  .live::after {
    display: none;
  }

  .live::before {
    display: none;
  }

  .live__text-wrapper {
    flex-direction: column;
  }

  .live__title {
    margin-right: initial;
    margin-bottom: 2rem;
    min-width: initial;
  }

  .live__text-top {
    max-width: initial;
  }

  .live__body::before {
    display: none;
  }

  .live__body {
    flex-direction: column;
    align-items: initial;
  }

  .live__body-left {
    margin-right: initial;
    margin-bottom: 3rem;
  }

  .live__body-title {
    text-align: center;
  }

  .live__body-image {
    margin-right: auto;
    margin-left: auto;
  }

  .live__list:first-child {
    margin-bottom: 2.5rem;
  }

  .live__text-arrow {
    display: none;
  }

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

  .tournament__image {
    margin-right: auto !important;
    margin-left: auto;
  }

  .tournament__info {
    margin-bottom: 3rem;
    max-width: initial !important;
  }

  .vip__wrapper-top {
    flex-direction: column;
  }

  .vip__content {
    margin-right: initial;
    margin-bottom: 3rem;
    max-width: initial;
  }

  .license {
    margin-top: 8rem;
  }

  .license__wrapper-top {
    flex-direction: column;
  }

  .license__content {
    margin-right: initial;
    margin-bottom: 2rem;
    max-width: initial;
  }

  .deposit__wrapper-top {
    flex-direction: column;
  }

  .deposit__content {
    margin-right: initial;
    margin-bottom: 2rem;
    max-width: initial;
  }

  .deposit__table table thead th:first-child {
    min-width: initial;
  }

  .deposit__table table thead th:nth-child(2) {
    min-width: initial;
  }

  .support::after {
    display: none;
  }

  .support__wrapper {
    flex-direction: column;
  }

  .support__content {
    margin-right: initial;
    margin-bottom: 3rem;
    max-width: initial;
  }

  .faq__list {
    grid-gap: 1.5rem;
  }

  .faq__item {
    padding: 1.5rem;
  }
}

@media (max-width: 111.25em) {
  .hero__wrapper {
    padding-bottom: initial;
  }

  .hero__content {
    margin-right: 2rem;
    max-width: 60rem;
  }

  .hero__image {
    position: initial;
    right: initial;
    top: initial;
    width: initial;
    height: initial;
  }
}

@media (max-width: 105.625em) {
  .tournament__image {
    position: initial;
    left: initial;
    top: initial;
    margin-right: 3rem;
    width: initial;
    height: initial;
    max-width: 83rem;
  }

  .tournament__info {
    max-width: 55rem;
  }

  .tournament__table table td:first-child {
    min-width: 20rem;
  }
}

@media (max-width: 97.5em) {
  .benefits::after {
    display: none;
  }

  .benefits__body {
    align-items: center;
  }

  .benefits__body-wrapper {
    margin-right: 3rem;
    max-width: 65rem;
  }

  .benefits__image {
    position: initial;
    right: initial;
    top: initial;
    width: initial;
    height: initial;
    max-width: 84rem;
  }
}

@media (max-width: 86.875em) {
  .registration__wrapper {
    align-items: center;
    padding-top: initial;
    padding-bottom: initial;
  }

  .registration__image {
    position: initial;
    left: initial;
    top: initial;
    margin-right: 3rem;
    width: initial;
    height: initial;
    max-width: 87rem;
    transform: initial;
  }

  .registration__info {
    max-width: 50rem;
  }

  .registration__title {
    max-width: initial;
  }
}

@media (max-width: 86.25em) {
  .license__wrapper {
    padding-bottom: 2rem;
  }

  .license__wrapper-top {
    margin-bottom: 2rem;
  }

  .license__info {
    margin-top: initial;
    padding: 3rem;
  }
}

@media (max-width: 68.75em) {
  .footer__wrapper {
    flex-direction: column;
  }

  .footer__logo {
    margin-right: initial;
    margin-bottom: 3rem;
  }

  .footer__menu {
    margin-right: initial;
    margin-bottom: 3rem;
  }
}

@media (max-width: 67.5em) {
  .menu__list {
    flex-direction: column;
    margin: auto;
    padding-block: 4rem;
  }

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

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

  .menu {
    position: fixed;
    right: -100%;
    top: 0;
    z-index: 10;
    display: flex;
    overflow: auto;
    margin-right: initial;
    width: 100%;
    height: 100%;
    max-width: 32rem;
    background-color: var(--clr-default-500);
    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__link {
    margin-right: 2rem;
  }

  .hero__content {
    z-index: 0;
  }

  .info {
    z-index: 0;
  }
}

@media (max-width: 67.5em) and (max-width: 35.9375em) {
  .burger {
    margin-left: auto;
  }
}

@media (max-width: 47.9375em) {
  .footer__menu-list {
    flex-direction: column;
  }

  .footer__menu-item:not(:last-child) {
    margin-right: initial;
    margin-bottom: 2rem;
  }

  .info__table tbody td:first-child {
    min-width: 20rem;
  }

  .benefits__title {
    margin-bottom: 3rem;
  }

  .benefits__plus-list {
    display: block;
    grid-gap: initial;
  }

  .benefits__plus-item:not(:last-child) {
    margin-bottom: 3rem;
  }

  .table__body table thead th:first-child {
    min-width: 12rem;
  }

  .table__body table thead th:nth-child(2) {
    width: initial;
  }

  .table__body table thead th:nth-child(3) {
    width: initial;
  }

  .live__image-wrapper {
    flex-direction: column-reverse;
  }

  .live__left-image {
    margin-right: initial;
  }

  .live__right-image {
    margin-bottom: 1rem;
  }

  .deposit__table table {
    min-width: 68rem;
  }

  .faq__title {
    margin-bottom: 3rem;
  }

  .faq__list {
    display: block;
    grid-gap: initial;
  }

  .faq__item:not(:last-child) {
    margin-bottom: 2rem;
  }

  .faq__item-title {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 37.5em) {
  .benefits__misus-list {
    display: block;
    grid-gap: initial;
  }

  .benefits__misus-item::before {
    top: 50%;
    transform: translateY(-50%);
  }

  .benefits__misus-item:not(:last-child) {
    margin-bottom: 3rem;
  }
}

@media (max-width: 35.9375em) {
  .section {
    padding-top: 5rem;
  }

  .main__link {
    min-width: 100%;
  }

  .banner a img {
    border-radius: 1.3rem;
  }

  .image__border img {
    border-radius: 1.3rem;
  }

  .header__link {
    margin-right: initial;
  }

  .footer__link {
    min-width: 20rem;
  }

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

  .hero__text {
    margin-bottom: 3rem;
  }

  .info__table tbody td:first-child {
    min-width: 16rem;
  }

  .info__table tbody td:last-child {
    min-width: 30rem;
  }

  .info__table {
    margin-bottom: 3rem;
    border-radius: 2rem;
    padding-top: 2rem;
    padding-right: 1.5rem;
    padding-bottom: 2rem;
    padding-left: 1.5rem;
  }

  .benefits__plus-item {
    padding-left: 6rem;
  }

  .benefits__item-text--1::before,
  .benefits__item-text--2::before,
  .benefits__item-text--3::before,
  .benefits__item-text--4::before,
  .benefits__item-text--5::before,
  .benefits__item-text--6::before,
  .benefits__item-text--7::before,
  .benefits__item-text--8::before,
  .benefits__item-text--9::before,
  .benefits__item-text--10::before {
    left: -4.5rem;
    width: 3.2rem;
    height: 3.2rem;
  }

  .registration__description {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .registration__link {
    width: initial;
    min-width: initial;
    text-align: center;
  }

  .slots__info {
    margin-bottom: 3rem;
  }

  .slots__table table thead th:first-child {
    min-width: 20rem;
  }

  .slots__table table thead th {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .slots__table table tbody td {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .slots__table {
    border-radius: 1.5rem;
  }

  .table__body table thead th {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .table__body table tbody tr td {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .live__text-wrapper {
    margin-bottom: 2rem;
  }

  .live__image-wrapper {
    margin-bottom: 2rem;
  }

  .live__text {
    margin-bottom: 2rem;
  }

  .live__list {
    display: block;
    grid-gap: initial;
  }

  .live__list:first-child {
    margin-bottom: 2rem;
  }

  .live__item:not(:last-child) {
    margin-bottom: 2rem;
  }

  .tournament__text {
    margin-bottom: 3rem;
  }

  .tournament__table table td:first-child {
    min-width: 10rem !important;
  }

  .tournament__table table td {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .bonus__table table {
    min-width: 45rem;
  }

  .vip__table-wrapper {
    overflow: auto;
  }

  .vip__table table thead th {
    padding-left: 1.5rem;
    padding-left: 1.5rem;
  }

  .vip__table table tbody td {
    padding-left: 1.5rem;
    padding-left: 1.5rem;
  }

  .vip__table:first-child {
    margin-right: 1.5rem;
  }

  .vip__table {
    min-width: 31rem;
  }

  .license {
    margin-top: 5rem;
  }

  .license__info {
    border-radius: 1.5rem;
    padding: 2rem;
  }

  .deposit__table table thead th {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .deposit__table table tbody td {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .deposit__table {
    margin-bottom: 3rem;
  }

  .deposit__bottom-table table tr td {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    width: initial;
  }

  .deposit__bottom-table table tr td:first-child {
    width: 10rem;
  }

  .support__text {
    margin-bottom: 3rem;
  }

  .resume__wrapper {
    border-radius: 1.5rem;
    padding: 1.5rem;
  }
}

@media (hover: hover) {
  .main__link:hover {
    background-color: var(--clr-primary-310);
    transition: background-color var(--transition);
  }

  .main__link:hover::before {
    transform: translate(-50%, 0%);
    transition: transform var(--transition);
  }

  .menu__item:hover::before {
    width: 100%;
    transition: width 0.3s;
  }

  .footer__menu-item:hover::before {
    width: 100%;
    transition: width 0.3s;
  }
}
/*# sourceMappingURL=style.css.map */