/* stylelint-disable */

/* stylelint-disable */

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

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

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

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

@font-face {
  font-family: "SegoeUI";
  src: url("../fonts/SegoeUI.woff2") format("woff2");
  font-weight: 400;
  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: "Segoe UI", sans-serif;
  --font-weight: 400;
  --content-width: 122rem;
  --container-offset: 7rem;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --transition: 0.3s;
  --clr-default-100: #fff;
  --clr-default-200: #fffaf3;
  --clr-default-400: #292526;
  --clr-default-500: #1f1a1b;
  --clr-default-600: #161616;
  --clr-default-700: #fec882;
  --clr-default-800: #94897a;
  --clr-default-900: #000;
  --clr-primary-200: rgba(255, 250, 243, 0.15);
  --clr-primary-300: rgba(255, 255, 255, 0.66);
  --clr-primary-400: linear-gradient(180deg, #fec882 0%, #f98745 100%);
  --clr-primary-500: #E36D22;
  --clr-primary-600: #8f8f8f;
  --clr-primary-800: #161616;
  --clr-primary-900: #111111;
}

body {
  font-weight: var(--font-weight);
  font-size: 1.8rem;
  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: 5;
  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;
  border-right: 0.1rem solid rgba(255, 255, 255, 0.15);
  border-left: 0.1rem solid rgba(255, 255, 255, 0.15);
  padding-right: var(--container-offset);
  padding-left: var(--container-offset);
  width: 100%;
  max-width: var(--container-width);
  background-color: var(--clr-default-400);
}

.container--top {
  border-top: 0.1rem solid rgba(255, 255, 255, 0.15);
  border-radius: 1.5rem 1.5rem 0 0;
}

.container--bottom {
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.15);
  border-radius: 0 0 1.5rem 1.5rem;
}

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

.content {
  padding-top: 10rem;
}

.title {
  font-weight: 600;
  font-size: clamp(
    2.6rem,
    2.1076923077rem + 1.5384615385vw,
    4.2rem
  );
  line-height: 114%;
  color: var(--clr-default-700);
}

.description {
  font-size: clamp(
    1.6rem,
    1.5384615385rem + 0.1923076923vw,
    1.8rem
  );
  line-height: 145%;
  color: var(--clr-default-200);
}

.main__link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.5rem;
  padding-right: 2rem;
  padding-left: 2rem;
  width: max-content;
  min-width: 100%;
  min-height: 7rem;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 125%;
  text-align: center;
  text-transform: uppercase;
  color: var(--clr-default-400);
  background-image: var(--clr-primary-400);
  transition: box-shadow var(--transition);
}

.main__link:hover {
  box-shadow: 1px 1px 25px rgba(249, 139, 73, 0.15);
  transition: box-shadow var(--transition);
}

.image__text {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  font-weight: 600;
  font-size: clamp(
    1.8rem,
    0.5076923077rem + 4.0384615385vw,
    6rem
  );
  text-align: center;
  -webkit-text-stroke: 0.2rem var(--clr-primary-500);
  text-transform: uppercase;
  color: var(--clr-default-100);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.image__text::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: 50rem;
  height: 32rem;
  background-color: var(--clr-primary-500);
  opacity: 0.77;
  filter: blur(14rem);
  transform: translate(-50%, -50%);
}

.image-border img {
  border: 2px solid var(--clr-default-700);
  border-radius: 1.5rem;
  filter: drop-shadow(1px 1px 25px rgba(254, 200, 130, 0.15));
}

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

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

.menu__item a {
  font-weight: 600;
  line-height: 111%;
  color: var(--clr-default-800);
  transition: color var(--transition);
}

.menu__item:hover a {
  color: var(--clr-default-700);
  transition: color var(--transition);
}

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

.burger {
  display: none;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 13rem;
}

.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: auto;
  margin-left: auto;
  max-width: 122rem;
}

.header__link {
  margin-left: 2rem;
  min-width: 20.5rem;
}

.header .container {
  border-right: initial;
  border-left: initial;
  background-color: initial;
}

.footer {
  display: flex;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.footer .container {
  border: initial;
  background-color: initial;
}

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

.footer__menu {
  margin-right: 2rem;
}

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

.footer__item a {
  font-weight: 600;
  font-size: clamp(
    1.6rem,
    1.5384615385rem + 0.1923076923vw,
    1.8rem
  );
  color: var(--clr-default-800);
  transition: color var(--transition);
}

.footer__item:not(:last-child) {
  margin-right: 4rem;
}

.footer__item:hover a {
  color: var(--clr-default-700);
  transition: color var(--transition);
}

.footer__btn-link {
  min-width: 20rem;
}

.hero__wrapper {
  padding-top: 7rem;
}

.hero__title {
  margin-bottom: 2rem;
  font-size: clamp(
    2.8rem,
    2.0615384615rem + 2.3076923077vw,
    5.2rem
  );
  text-align: center;
}

.hero__text {
  margin-bottom: 4rem;
  text-align: center;
}

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

.hero__image {
  position: relative;
  margin-right: auto;
  margin-bottom: 3rem;
  margin-left: auto;
  max-width: 122rem;
}

.hero__image--text {
  max-width: 36rem;
}

.hero__link {
  min-width: 100%;
}

.info__table {
  overflow: auto;
  border-radius: 1.5rem;
  background-color: var(--clr-default-600);
}

.info__table table {
  overflow: hidden;
  border-collapse: collapse;
  border-radius: 1.5rem;
  min-width: 51rem;
}

.info__table table tr td {
  vertical-align: top;
  padding-top: 2rem;
  padding-right: 4rem;
  padding-bottom: 2rem;
  padding-left: 4rem;
  font-size: clamp(
    1.6rem,
    1.5384615385rem + 0.1923076923vw,
    1.8rem
  );
  line-height: 145%;
}

.info__table table tr td:first-child {
  min-width: 28rem;
  background-color: var(--clr-default-900);
}

.info__table table tr td:last-child {
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.05);
}

.benefits .container {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.benefits__wrapper {
  position: relative;
  z-index: 1;
  margin-left: -7rem;
  padding-right: 7rem;
  padding-bottom: 10rem;
  padding-left: 7rem;
  width: calc(100% + 14rem);
  background-image: -webkit-image-set(url(../img/benefits/bg@2x.png) 2x, url(../img/benefits/bg@1x.png) 1x);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.benefits__wrapper::before,
.benefits__wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 15rem;
  background: linear-gradient(180deg, #292526 0%, rgba(41, 37, 38, 0) 100%);
}

.benefits__wrapper::before {
  top: 0;
}

.benefits__wrapper::after {
  bottom: 0;
  transform: scale(1, -1);
}

.benefits__title {
  margin-bottom: 3rem;
  text-align: center;
}

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

.benefits__item {
  min-width: 58rem;
}

.benefits__item:first-child {
  margin-right: 2rem;
}

.benefits__item-title {
  position: relative;
  margin-bottom: 3rem;
  font-weight: 600;
  line-height: 150%;
  text-transform: uppercase;
  color: var(--clr-default-700);
}

.benefits__item-title::after {
  content: "";
  position: absolute;
  right: -7rem;
  top: 50%;
  width: 100%;
  height: 0.2rem;
  background-image: url(../img/benefits/title-decor.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.benefits__item-title--cons::after {
  content: "";
  position: absolute;
  right: 3rem;
  top: 50%;
  width: 75%;
  height: 0.2rem;
  background-image: url(../img/benefits/title-decor.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.benefits__item-item {
  position: relative;
  padding-left: 6.5rem;
  font-weight: 600;
  font-size: clamp(
    1.8rem,
    1.7384615385rem + 0.1923076923vw,
    2rem
  );
  line-height: 150%;
}

.benefits__item-item--pros::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5.2rem;
  height: 5.2rem;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}

.benefits__item-item--vip::before {
  background-image: url(../img/benefits/vip.svg);
}

.benefits__item-item--chat::before {
  background-image: url(../img/benefits/chat.svg);
}

.benefits__item-item--license::before {
  background-image: url(../img/benefits/license.svg);
}

.benefits__item-item--register::before {
  background-image: url(../img/benefits/register.svg);
}

.benefits__item-item--cons::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  background-color: var(--clr-primary-600);
  transform: translateY(-50%);
}

.benefits__item-item--cons::after {
  content: "";
  position: absolute;
  left: 1.3rem;
  top: 50%;
  width: 1.4rem;
  height: 1.4rem;
  background-image: url(../img/benefits/cons.svg);
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}

.benefits__item-item:not(:last-child) {
  margin-bottom: 4rem;
}

.register .container {
  background-color: var(--clr-primary-900);
}

.register__wrapper {
  padding-bottom: 14rem;
}

.register__title {
  margin-bottom: 2rem;
}

.register__text {
  margin-bottom: 5rem;
}

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

.register__list {
  margin-bottom: 5rem;
}

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

.register__item:nth-child(even) {
  flex-direction: row-reverse;
}

.register__item:nth-child(even) .register__item-text {
  margin-right: initial;
  margin-left: 3rem;
}

.register__item:not(:last-child) {
  margin-bottom: 5rem;
}

.register__item-text {
  margin-right: 3rem;
  max-width: 59rem;
}

.register__item-title {
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: clamp(
    1.8rem,
    1.7384615385rem + 0.1923076923vw,
    2rem
  );
  text-transform: uppercase;
  color: var(--clr-default-700);
}

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

.register__item-image {
  position: relative;
  max-width: 59rem;
}

.register__item-image .image__text {
  min-width: 50rem;
}

.register__item-image .image__text::before {
  width: 29rem;
  height: 27rem;
  filter: blur(7rem);
}

.app .container {
  overflow: hidden;
}

.app__wrapper {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding-top: 19.5rem;
  padding-bottom: 19.5rem;
  max-width: 59.5rem;
}

.app__wrapper::before,
.app__wrapper::after {
  content: "";
  position: absolute;
  width: 58.4rem;
  height: 79.5rem;
  background-size: contain;
  background-repeat: no-repeat;
}

.app__wrapper::before {
  left: -46.5rem;
  top: -8rem;
  background-image: -webkit-image-set(url(../img/app/app-left@2x.png) 2x, url(../img/app/app-left@1x.png) 1x);
}

.app__wrapper::after {
  right: -48rem;
  top: -6rem;
  background-image: -webkit-image-set(url(../img/app/app-right@2x.png) 2x, url(../img/app/app-right@1x.png) 1x);
}

.app__title {
  margin-bottom: 2rem;
  text-align: center;
}

.app__text {
  text-align: center;
}

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

.mobile__title {
  margin-bottom: 2rem;
}

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

.promotional__title {
  margin-bottom: 2rem;
}

.promotional__text {
  margin-bottom: 5rem;
}

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

.promotional__list {
  margin-bottom: 5rem;
}

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

.promotional__item:nth-child(even) {
  flex-direction: row-reverse;
}

.promotional__item:nth-child(even) .promotional__item-text {
  margin-right: initial;
  margin-left: 3rem;
}

.promotional__item:not(:last-child) {
  margin-bottom: 5rem;
}

.promotional__item-text {
  margin-right: 3rem;
  max-width: 50rem;
}

.promotional__item-title {
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: clamp(
    1.8rem,
    1.7384615385rem + 0.1923076923vw,
    2rem
  );
  line-height: 150%;
  color: var(--clr-default-700);
}

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

.promotional__list-item {
  font-size: clamp(
    1.6rem,
    1.5384615385rem + 0.1923076923vw,
    1.8rem
  );
  line-height: 145%;
}

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

.promotional__item-image img {
  border: 0.2rem solid var(--clr-default-700);
  border-radius: 2.4rem;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.vip .container {
  position: relative;
  overflow: hidden;
  padding-top: 14rem;
}

.vip .container:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #292526 0%, rgba(41, 37, 38, 0) 100%);
  transform: rotate(180deg);
  pointer-events: none;
}

.vip__wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-left: -7rem;
  padding-right: 7rem;
  padding-bottom: 10rem;
  padding-left: 7rem;
  width: calc(100% + 14rem);
  background-image: -webkit-image-set(url(../img/vip/bg@2x.png) 2x, url(../img/vip/bg@1x.png) 1x);
  background-size: cover;
  background-repeat: no-repeat;
}

.vip__content {
  z-index: 2;
  margin-right: 3rem;
  max-width: 80rem;
}

.vip__title {
  margin-bottom: 2rem;
}

.vip__text {
  margin-bottom: 3rem;
}

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

.vip__promotional-title {
  margin-bottom: 3rem;
  font-weight: 600;
  font-size: clamp(
    1.8rem,
    1.7384615385rem + 0.1923076923vw,
    2rem
  );
  text-transform: uppercase;
}

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

.vip__item {
  line-height: 145%;
}

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

.vip__image {
  position: absolute;
  right: -1rem;
  bottom: -1.2rem;
  width: 45.5rem;
  height: 59rem;
}

.vip__image .image__text {
  width: 48rem;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.vip__image .image__text::before {
  width: 35rem;
  height: 26rem;
  filter: blur(10rem);
  transform: translate(-50%, -50%) rotate(-116deg);
}

.vip__image img {
  filter: initial;
}

.tournament__title {
  margin-bottom: 2rem;
}

.tournament__text {
  margin-bottom: 3rem;
}

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

.tournament__table {
  overflow: auto;
  border-radius: 1.5rem;
  background-color: var(--clr-default-600);
}

.tournament__table table {
  border-collapse: collapse;
  min-width: 70rem;
}

.tournament__table table thead tr {
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.11);
}

.tournament__table table thead th {
  vertical-align: top;
  padding-top: 4rem;
  padding-right: 2rem;
  padding-bottom: 2rem;
  padding-left: 4rem;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 145%;
  text-align: start;
  color: var(--clr-primary-300);
}

.tournament__table table thead th:first-child {
  padding-top: 4rem;
  padding-left: 4rem;
  min-width: 38rem;
  background-color: var(--clr-default-900);
}

.tournament__table table tbody td {
  vertical-align: top;
  padding-top: 2rem;
  padding-right: 2rem;
  padding-bottom: 2rem;
  padding-left: 4rem;
  line-height: 145%;
}

.tournament__table table tbody td:first-child {
  font-weight: 600;
  font-size: clamp(
    1.8rem,
    1.7384615385rem + 0.1923076923vw,
    2rem
  );
  line-height: 150%;
  color: var(--clr-default-700);
  background-color: var(--clr-default-900);
}

.slot__title {
  margin-bottom: 2rem;
}

.slot__text {
  margin-bottom: 3rem;
}

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

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

.slot__table table thead th:first-child {
  min-width: initial;
  max-width: 38rem;
}

.slot__table table tbody tr:not(:last-child) {
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.11);
}

.slot__table table tbody td:first-child {
  color: var(--clr-default-100);
}

.games .container {
  overflow: hidden;
}

.games__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 3rem;
}

.games__image {
  position: absolute;
  left: -14rem;
  width: 66rem;
  height: 50rem;
  max-width: 66rem;
}

.games__content {
  margin-left: auto;
  max-width: 65rem;
}

.games__title {
  margin-bottom: 2rem;
}

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

.games__item {
  font-size: clamp(
    1.6rem,
    1.5384615385rem + 0.1923076923vw,
    1.8rem
  );
  line-height: 145%;
}

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

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

.live__content-wrapper::before {
  content: "";
  position: absolute;
  right: -9rem;
  width: 65rem;
  height: 40rem;
  background: radial-gradient(73.86% 235.72% at 31.11% 48.7%, rgba(255, 165, 111, 0.05) 0%, rgba(255, 165, 111, 0) 100%);
  filter: blur(3rem);
}

.live__content {
  margin-right: 2rem;
  max-width: 70rem;
}

.live__title {
  margin-bottom: 2rem;
}

.live__text {
  margin-bottom: 3rem;
}

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

.live__text-bottom p {
  font-weight: 700;
  font-size: clamp(
    1.6rem,
    1.5384615385rem + 0.1923076923vw,
    1.8rem
  );
}

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

.live__list {
  list-style: disc;
  padding-left: 2.5rem;
}

.live__item {
  font-weight: 400;
  font-size: clamp(
    1.8rem,
    1.6153846154rem + 0.5769230769vw,
    2.4rem
  );
  line-height: 145%;
  color: var(--clr-default-700);
}

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

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

.license__title {
  margin-bottom: 2rem;
}

.faq__title {
  margin-bottom: 3rem;
}

.faq__list {
  display: grid;
  grid-gap: 3rem;
  grid-template-columns: 1fr 1fr;
}

.faq__item {
  border: 0.2rem solid var(--clr-primary-200);
  border-radius: 1.5rem;
  padding: 4rem;
  background-color: var(--clr-default-600);
}

.faq__item:nth-child(3) {
  grid-column: 1/3;
}

.faq__item-title {
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: clamp(
    1.8rem,
    1.6153846154rem + 0.5769230769vw,
    2.4rem
  );
  line-height: 150%;
}

.payment__wrapper {
  display: flex;
  align-items: center;
  padding-bottom: 10rem;
}

.payment__content {
  margin-right: 3rem;
  max-width: 60rem;
}

.payment__title {
  margin-bottom: 2rem;
}

.payment__text {
  margin-bottom: 3rem;
}

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

.payment__list {
  list-style: disc;
  padding-left: 2.5rem;
}

.payment__item {
  font-weight: 600;
  font-size: clamp(
    1.8rem,
    1.7384615385rem + 0.1923076923vw,
    2rem
  );
  line-height: 150%;
}

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

.payment__image {
  max-width: 59rem;
}

.resume .container {
  overflow: hidden;
}

.resume__wrapper {
  position: relative;
  z-index: 1;
  margin-left: -7rem;
  padding-right: 7rem;
  padding-bottom: 14.5rem;
  padding-left: 7rem;
  width: calc(100% + 14rem);
  background-image: -webkit-image-set(url(../img/resume/bg@2x.png) 2x, url(../img/resume/bg@1x.png) 1x);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.resume__content-wrapper {
  margin-bottom: 5rem;
}

.resume__content:not(:last-child) {
  margin-bottom: 10rem;
}

.resume__title {
  margin-bottom: 2rem;
}

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

@media (max-width: 85em) {
  .container {
    border-top: initial;
    border-radius: initial;
  }

  .app__wrapper::before,
  .app__wrapper::after {
    display: none;
  }

  .app__wrapper {
    padding-top: 10rem;
    padding-bottom: 10rem;
    max-width: initial;
  }
}

@media (max-width: 80em) {
  .vip__content {
    max-width: 65rem;
  }

  .games__wrapper {
    padding-bottom: initial;
  }

  .games__image {
    position: initial;
    margin-right: 3rem;
    width: initial;
    height: initial;
    max-width: 66rem;
  }

  .games__content {
    max-width: 55rem;
  }
}

@media (max-width: 75em) {
  .logo {
    max-width: 15rem;
  }

  .header__wrapper {
    margin-right: initial;
    margin-left: initial;
    max-width: initial;
  }

  .header {
    min-height: 10rem;
  }

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

  .benefits__item {
    min-width: initial;
  }

  .benefits__item-title::after {
    display: none;
  }

  .register__item-text {
    max-width: 50rem;
  }

  .register__item-image .image__text {
    min-width: 30rem;
    font-size: 4rem;
  }

  .register__item-image .image__text::before {
    height: 17rem;
  }

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

  .live__content-wrapper::before {
    display: none;
  }

  .live__content {
    max-width: 55rem;
  }

  .payment__content {
    max-width: 55rem;
  }
}

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

  .main__link {
    min-height: 6rem;
  }

  .image__text::before {
    width: 30rem;
    height: 20rem;
  }

  .image__text {
    -webkit-text-stroke: 0.1rem var(--clr-primary-500);
  }

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

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

  .menu__item a {
    color: var(--clr-default-100);
  }

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

  .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__link {
    margin-right: 2rem;
    margin-left: auto;
    min-width: 17rem;
  }

  .header {
    min-height: 9rem;
  }

  .footer__wrapper {
    flex-direction: column;
  }

  .footer__logo {
    margin-bottom: 5rem;
  }

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

  .footer__item:not(:last-child) {
    margin-right: 3rem;
  }

  .hero__wrapper {
    padding-top: 5rem;
  }

  .hero__link {
    min-width: 100%;
  }

  .info__table table tr td:first-child {
    min-width: 23rem;
  }

  .benefits .container {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .benefits__wrapper {
    padding-bottom: 8rem;
  }

  .register__wrapper {
    padding-bottom: 8rem;
  }

  .register__item:nth-child(even) .register__item-text {
    margin-left: initial;
  }

  .register__item:nth-child(even) {
    flex-direction: column;
  }

  .register__item {
    flex-direction: column;
  }

  .register__item-text {
    margin-right: initial;
    max-width: initial;
  }

  .register__item-description {
    margin-bottom: 3rem;
  }

  .app__wrapper {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .promotional__item:nth-child(even) .promotional__item-text {
    margin-left: initial;
  }

  .promotional__item:nth-child(even) {
    flex-direction: column;
  }

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

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

  .promotional__item-image {
    margin-right: auto;
    margin-left: auto;
    max-width: 70rem;
  }

  .vip .container {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .vip__wrapper {
    flex-direction: column;
  }

  .vip__content {
    margin-right: initial;
    margin-bottom: 5rem;
    max-width: initial !important;
  }

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

  .tournament__table table thead th:first-child {
    padding: 2rem;
    min-width: 20rem;
  }

  .tournament__table table thead th {
    padding: 2rem;
  }

  .tournament__table table tbody td {
    padding: 2rem;
  }

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

  .games__image {
    margin-right: initial;
  }

  .games__content {
    margin-bottom: 5rem;
    margin-left: initial;
    max-width: initial;
  }

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

  .live__content {
    margin-right: initial;
    margin-bottom: 5rem;
    max-width: initial;
  }

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

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

  .payment__wrapper {
    flex-direction: column;
    align-items: initial;
    padding-bottom: 8rem;
  }

  .payment__content {
    margin-right: initial;
    margin-bottom: 5rem;
    max-width: initial;
  }

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

  .resume__wrapper {
    padding-bottom: 8rem;
  }

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

@media (max-width: 86.875em) {
  .container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .benefits__wrapper {
    margin-left: -1.5rem;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    width: calc(100% + 3rem);
  }

  .vip .container:before {
    display: none;
  }

  .vip .container {
    overflow: initial;
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .vip__wrapper {
    margin-left: -1.5rem;
    padding-right: 1.5rem;
    padding-bottom: initial;
    padding-left: 1.5rem;
    width: calc(100% + 3rem);
    background-image: initial;
  }

  .vip__image .image__text {
    width: 35rem;
    transform: translate(-50%, -50%) rotate(0);
  }

  .vip__image {
    position: relative;
    right: initial;
    bottom: initial;
    width: initial;
    height: initial;
    height: max-content;
    max-width: 45.5rem;
  }
}

@media (max-width: 68.75em) {
  .vip__content {
    max-width: 50rem;
  }
}

@media (max-width: 47.9375em) {
  .main__link {
    border-radius: 1rem;
    min-height: 5rem;
  }

  .image__text::before {
    width: 25rem;
    height: 15rem;
  }

  .footer__wrapper {
    align-items: initial;
  }

  .footer__logo {
    margin-bottom: 3rem;
  }

  .footer__menu {
    margin-bottom: 3rem;
  }

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

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

  .hero__wrapper {
    padding-top: 3rem;
  }

  .hero__text {
    margin-bottom: 3rem;
  }

  .info__table table tr td:first-child {
    min-width: 18rem;
  }

  .info__table table tr td {
    padding-left: 2rem;
  }

  .benefits__list {
    flex-direction: column;
  }

  .benefits__item:first-child {
    margin-right: initial;
  }

  .benefits__item:not(:last-child) {
    margin-bottom: 6rem;
  }

  .register__item-image .image__text {
    font-size: clamp(
    1.8rem,
    1.1230769231rem + 2.1153846154vw,
    4rem
  );
  }

  .register__item-image .image__text::before {
    height: 7rem;
  }

  .faq__item {
    padding: 3rem;
  }
}

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

  .image__text {
    -webkit-text-stroke: 0.05rem var(--clr-primary-500);
  }

  .header__link {
    margin-right: initial;
    margin-left: initial;
  }

  .footer__btn-link {
    min-width: 100%;
  }

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

  .info__table table tr td {
    padding-top: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 1.5rem;
  }

  .benefits .container {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .benefits__wrapper::before,
  .benefits__wrapper::after {
    height: 6rem;
  }

  .benefits__wrapper {
    padding-bottom: 5rem;
  }

  .benefits__item:not(:last-child) {
    margin-bottom: 4rem;
  }

  .benefits__item-title {
    margin-bottom: 2rem;
  }

  .benefits__item-item--pros::before {
    width: 3.2rem;
    height: 3.2rem;
  }

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

  .benefits__item-item {
    padding-left: 5rem;
  }

  .register__wrapper {
    padding-bottom: 5rem;
  }

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

  .app__wrapper {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

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

  .promotional__item-image img {
    border-radius: 1.4rem;
  }

  .vip .container {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .vip__content {
    margin-bottom: 3rem;
  }

  .vip__image .image__text {
    width: 24rem;
    font-size: 3rem;
  }

  .games__content {
    margin-bottom: 3rem;
  }

  .live__content-wrapper {
    margin-bottom: 3rem;
  }

  .live__content {
    margin-bottom: 3rem;
  }

  .faq__item {
    padding: 2rem;
  }

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

  .payment__wrapper {
    padding-bottom: initial;
  }

  .payment__content {
    margin-bottom: 3rem;
  }

  .payment__list {
    padding-left: 2rem;
  }

  .resume__wrapper {
    padding-bottom: 5rem;
  }

  .resume__content-wrapper {
    margin-bottom: 3rem;
  }
}
/*# sourceMappingURL=style.css.map */