/* 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: -10;
  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;
  border-radius: 3rem;
  padding: 4rem 2rem;
  background-color: #69339e;
}

.section__table {
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
  border-collapse: collapse;
  width: 100%;
  min-width: 80rem;
  line-height: 150%;
}

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

.section__table tr {
  position: relative;
}

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

.section__table tr th {
  font-weight: 400;
  text-align: left;
}

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

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

.section__table tr td,
.section__table tr th {
  vertical-align: top;
  padding: 2rem;
}

.section__table tr td:first-child,
.section__table tr th:first-child {
  background-color: #592d84;
}

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

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

.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__list--hyphen li {
  position: relative;
  padding-left: 1rem;
  font-size: clamp(
    1.6rem,
    1.4545454545rem + 0.4545454545vw,
    2rem
  );
}

.section__list--hyphen li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 0.4rem;
  height: 0.1rem;
  background-color: var(--clr-default-100);
}

.section__list--hyphen li + li {
  margin-top: 1rem;
}

.section__item--mark {
  position: relative;
  padding-left: 2rem;
  font-size: clamp(
    1.6rem,
    1.4545454545rem + 0.4545454545vw,
    2rem
  );
}

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

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

.conclusion {
  padding-bottom: 14rem;
}

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

.vip {
  position: relative;
}

.vip .section__bg {
  top: 50rem;
}

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

.live {
  position: relative;
}

.center {
  text-align: center;
}

.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: 12rem;
}

.hero__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero__info {
  margin-left: 1.5em;
  max-width: 54rem;
}

.hero__img {
  position: absolute;
  left: -40rem;
  top: 50%;
  max-width: 100.8rem;
  transform: translateY(-50%);
}

.hero__img img {
  border-top-right-radius: 2.5rem;
  border-bottom-right-radius: 2.5rem;
}

.hero__content {
  margin-top: 8rem;
}

.hero .section__item--mark {
  font-size: 1.6rem;
}

.plus {
  position: relative;
  padding-top: 5rem;
}

.plus .section__bg {
  top: -20rem;
}

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

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

.plus__item {
  border-radius: 3rem;
  padding: 2rem;
  box-shadow: 0px 40px 55px rgba(16, 9, 20, 0.5);
  background-color: #69339e;
}

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

.plus__text {
  margin-top: 1rem;
  font-size: clamp(
    1.6rem,
    1.4545454545rem + 0.4545454545vw,
    2rem
  );
  line-height: 160%;
}

.registration__list {
  margin-top: 5rem;
}

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

.registration__item .section__text {
  margin-top: initial;
  margin-bottom: initial;
  max-width: 60rem;
}

.registration__item:first-child .section__text {
  margin-left: 4rem;
}

.registration__item:last-child .section__text {
  margin-right: 4rem;
}

.registration__item + .registration__item {
  margin-top: 3rem;
}

.registration__img {
  max-width: 58.2rem;
}

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

.registration .section__btn {
  display: flex;
  margin-top: 5rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 30rem;
}

.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);
}

.online {
  position: relative;
}

.online .section__bg {
  top: -30rem;
}

.online__content {
  overflow: auto;
  margin-bottom: 5rem;
  border-radius: 3rem;
  padding: 4rem 2rem;
  background-color: #69339e;
}

.online__table {
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
  border-collapse: collapse;
  width: 100%;
  min-width: 80rem;
  line-height: 150%;
}

.online__table tbody tr:nth-child(2n-1) {
  background-color: #592d84;
}

.online__table tr {
  position: relative;
}

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

.online__table th {
  font-weight: 400;
  text-align: left;
  color: rgba(255, 255, 255, 0.66);
}

.online__table td,
.online__table th {
  vertical-align: top;
  padding: 2rem;
}

.online .section__btn {
  display: flex;
  margin-top: 5rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 40rem;
}

.games__content {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.games__content td:first-child,
.games__content th:first-child {
  width: 20%;
}

.games__content td:nth-child(2),
.games__content th:nth-child(2) {
  width: 40%;
}

.games__content td:last-child,
.games__content th:last-child {
  width: 40%;
}

.games__content tr::before {
  display: none;
}

.games__content thead {
  position: relative;
  color: rgba(255, 255, 255, 0.66);
}

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

.games .section__btn {
  display: flex;
  margin-top: 5rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 3rem;
}

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

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

.tournaments__content {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.tournaments__content tr::before {
  display: none;
}

.tournaments__content thead {
  position: relative;
  color: rgba(255, 255, 255, 0.66);
}

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

.tournaments .section__btn {
  display: flex;
  margin-top: 5rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 3rem;
}

.gifts {
  position: relative;
}

.gifts .section__bg {
  top: 14rem;
}

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

.gifts__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;
}

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

.gifts__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%);
}

.gifts__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;
  margin-bottom: 5rem;
}

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

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

.payment__list {
  display: grid;
  grid-gap: 3rem;
  grid-template-columns: repeat(3, 1fr);
}

.payment__item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2.5rem;
  padding: 2rem;
  font-size: clamp(
    1.6rem,
    1.4545454545rem + 0.4545454545vw,
    2rem
  );
  line-height: 160%;
  background-color: #592d84;
}

.payment .section__text:last-child {
  margin-bottom: initial;
}

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

@media (max-width: 75em) {
  .section__content {
    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;
  }

  .plus__list {
    grid-gap: 1.5rem;
  }

  .registration__item:first-child .section__text {
    margin-left: 1.5rem;
  }

  .registration__item:last-child .section__text {
    margin-right: 1.5rem;
  }

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

  .online__content {
    padding: 2rem;
  }

  .faq__list {
    grid-gap: 1.5rem;
  }

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

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

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

  .section__table tr td,
  .section__table tr th {
    padding: 1.5rem;
  }

  .plus__list {
    grid-template-columns: repeat(3, 1fr);
  }

  .registration__item .section__text {
    max-width: initial;
  }

  .registration__item:first-child {
    flex-direction: column-reverse;
  }

  .registration__item:first-child .section__text {
    margin-bottom: 2rem;
    margin-left: initial;
  }

  .registration__item:last-child {
    flex-direction: column;
  }

  .registration__item:last-child .section__text {
    margin-right: initial;
    margin-bottom: 2rem;
  }

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

  .online__content {
    margin-bottom: 3rem;
    padding: 1rem;
  }

  .online__table td,
  .online__table th {
    padding: 1.5rem;
  }

  .games__content thead::before {
    left: 1.5rem;
    width: calc(100% - 3rem);
  }

  .promotions__list {
    grid-gap: 2rem;
    margin-top: 3rem;
  }

  .tournaments__content thead::before {
    left: 1.5rem;
    width: calc(100% - 3rem);
  }

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

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

  .registration .section__btn {
    margin-top: 3rem;
    max-width: initial;
  }

  .online .section__btn {
    margin-top: 3rem;
    max-width: initial;
  }

  .games .section__btn {
    margin-top: 3rem;
    max-width: initial;
  }

  .tournaments .section__btn {
    margin-top: 3rem;
    max-width: initial;
  }

  .faq__list {
    display: block;
  }

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

  .faq__img {
    margin-top: 7rem;
  }
}

@media (max-width: 81.25em) {
  .hero__wrapper {
    flex-direction: column-reverse;
    justify-content: space-between;
  }

  .hero__info {
    margin-bottom: 3rem;
    margin-left: initial;
    max-width: initial;
  }

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

  .hero__img {
    position: relative;
    left: initial;
    top: initial;
    transform: initial;
  }
}

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

  .section__text {
    margin-bottom: 2.5rem;
  }

  .conclusion {
    padding-bottom: 7rem;
  }

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

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

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

  .hero {
    padding-top: 6rem;
  }

  .hero__content {
    margin-top: 3rem;
  }

  .plus__list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .registration__list {
    margin-top: 3rem;
  }

  .mobile__wrapper {
    flex-direction: column;
  }

  .mobile__info {
    max-width: initial;
  }

  .mobile__img {
    display: none;
  }

  .games__content {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .promotions__list {
    display: block;
  }

  .promotions__item + .promotions__item {
    margin-top: 2rem;
  }

  .tournaments__content {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .gifts .section__bg {
    top: 7rem;
  }

  .gifts__wrapper {
    flex-direction: column;
  }

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

  .faq__list {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

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

  .payment__item {
    padding: 1.5rem;
  }
}

@media (max-width: 28.75em) {
  .plus__list {
    display: block;
  }

  .plus__item-img {
    margin-right: auto;
    margin-left: auto;
  }

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

  .plus__text {
    text-align: center;
  }

  .payment__list {
    display: block;
  }

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

@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 */