* {
  padding: 0;
  margin: 0;
  border: 0
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

:active,
:focus {
  outline: 0
}

a:active,
a:focus {
  outline: 0
}

aside,
footer,
header,
nav {
  display: block
}

body,
html {
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable
}

button,
input,
textarea {
  font-family: inherit
}

input::-ms-clear {
  display: none
}

input,
textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: inherit
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: inherit
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: inherit
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: inherit
}

input::placeholder,
textarea::placeholder {
  color: inherit
}

button {
  cursor: pointer;
  background-color: transparent
}

button::-moz-focus-inner {
  padding: 0;
  border: 0
}

a {
  display: inline-block;
  color: inherit
}

a,
a:visited {
  text-decoration: none
}

a:hover {
  text-decoration: none
}

ul li {
  list-style: none
}

img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  vertical-align: top
}

svg {
  display: block;
  width: 100%;
  height: 100%
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit
}

picture {
  display: block;
  width: 100%;
  height: 100%
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0
}

input[type=number] {
  -moz-appearance: textfield
}

@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/Roboto-Regular.woff2) format("woff2")
}

@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/Roboto-Medium.woff2) format("woff2")
}

@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/Roboto-Bold.woff2) format("woff2")
}

:root {
  --font-main: "Roboto", sans-serif;
  --container-width: 1500px;
  --container-step: 20px;
  --container-step-tablet: 15px;
  --container-step-mobile: 10px;
  --container: calc(var(--container-width) + (var(--container-step) * 2));
  --background-page: rgb(3, 37, 33);
  --main: #ffffff;
  --black: #000000;
  --black-050: rgba(0, 0, 0, .5);
  --white: #ffffff;
  --green: rgb(4, 47, 41);
  --green-050: rgba(4, 47, 41, 0.50);
  --green-l: #053d36;
  --purple: rgb(177, 10, 219);
  --hover: #388a80;
  --active: #388a80
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-step)
}

@media (max-width:991px) {
  .container {
    padding: 0 var(--container-step-tablet)
  }
}

@media (max-width:600px) {
  .container {
    padding: 0 var(--container-step-mobile)
  }
}

.rd-transfer {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: var(--font-main);
  min-height: 100vh;
  overflow: hidden;
  color: var(--main);
  background-color: var(--background-page)
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto
}

.main:not(:last-child) {
  margin-bottom: 100px
}

@media (max-width:991px) {
  .main:not(:last-child) {
    margin-bottom: 80px
  }
}

@media (max-width:600px) {
  .main:not(:last-child) {
    margin-bottom: 60px
  }
}

.main_no-margin:not(:last-child) {
  margin-bottom: 0
}

a,
button {
  color: var(--main)
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0)
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 3px;
  position: static
}

.pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: .3;
  border-radius: 50%;
  margin: 0 !important;
  background-color: var(--white)
}

.pagination .swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  opacity: 1
}

.tx-main {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2
}

@media (max-width:991px) {
  .tx-main {
    font-size: 14px
  }
}

@media (max-width:600px) {
  .tx-main {
    font-size: 12px
  }
}

.tx-48-32 {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2
}

@media (max-width:991px) {
  .tx-48-32 {
    font-size: 38px
  }
}

@media (max-width:600px) {
  .tx-48-32 {
    font-size: 32px
  }
}

.tx-32-24 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2
}

@media (max-width:991px) {
  .tx-32-24 {
    font-size: 28px
  }
}

@media (max-width:600px) {
  .tx-32-24 {
    font-size: 24px
  }
}

.tx-12-10 {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2
}

@media (max-width:600px) {
  .tx-12-10 {
    font-size: 10px
  }
}

.tx-24-18 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2
}

@media (max-width:991px) {
  .tx-24-18 {
    font-size: 20px
  }
}

@media (max-width:600px) {
  .tx-24-18 {
    font-size: 18px
  }
}

.but {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px 24px;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: var(--white);
  background-color: var(--green);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 40px;
  min-width: 110px;
  -webkit-transition: background-color .3s ease-in-out;
  transition: background-color .3s ease-in-out
}

.but_purple {
  background-color: var(--purple)
}

@media (any-hover:hover) {
  .but:hover {
    background-color: var(--hover)
  }
}

.but:focus-visible {
  background-color: var(--hover)
}

.but:active {
  background-color: var(--active);
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.mb-16:not(:last-child) {
  margin-bottom: 16px
}

.mb-24:not(:last-child) {
  margin-bottom: 24px
}

.mb-8:not(:last-child) {
  margin-bottom: 8px
}

.mb-32-16:not(:last-child) {
  margin-bottom: 32px
}

@media (max-width:991px) {
  .mb-32-16:not(:last-child) {
    margin-bottom: 24px
  }
}

@media (max-width:600px) {
  .mb-32-16:not(:last-child) {
    margin-bottom: 16px
  }
}

.mb-60-32:not(:last-child) {
  margin-bottom: 60px
}

@media (max-width:1220px) {
  .mb-60-32:not(:last-child) {
    margin-bottom: 54px
  }
}

@media (max-width:991px) {
  .mb-60-32:not(:last-child) {
    margin-bottom: 48px
  }
}

@media (max-width:600px) {
  .mb-60-32:not(:last-child) {
    margin-bottom: 32px
  }
}

.mb-100-60:not(:last-child) {
  margin-bottom: 100px
}

@media (max-width:991px) {
  .mb-100-60:not(:last-child) {
    margin-bottom: 80px
  }
}

@media (max-width:600px) {
  .mb-100-60:not(:last-child) {
    margin-bottom: 60px
  }
}

.img-contain {
  -o-object-fit: contain;
  object-fit: contain
}

.img-cover {
  -o-object-fit: cover;
  object-fit: cover
}

.underline {
  text-decoration: underline
}

.text-center {
  text-align: center
}

.text-right {
  text-align: right
}

.uppercase {
  text-transform: uppercase
}

.lowercase {
  text-transform: lowercase
}

.fw-100 {
  font-weight: 100
}

.fw-200 {
  font-weight: 200
}

.fw-300 {
  font-weight: 300
}

.fw-400 {
  font-weight: 400
}

.fw-500 {
  font-weight: 500
}

.fw-600 {
  font-weight: 600
}

.fw-700 {
  font-weight: 700
}

.fw-800 {
  font-weight: 800
}

.fw-900 {
  font-weight: 900
}

.rd-upload img {
  opacity: 0;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out
}

.rd-load img {
  opacity: 1
}

.scroll {
  padding-bottom: 10px;
  overflow: auto
}

.scroll::-webkit-scrollbar {
  height: 4px;
  background-color: var(--white)
}

.scroll::-webkit-scrollbar-thumb {
  background-color: var(--green-l)
}

.logo {
  display: block;
  width: 150px;
  height: 33px;
  margin-bottom: 8px;
  -ms-flex-negative: 0;
  flex-shrink: 0
}

@media (max-width:991px) {
  .logo {
    margin-bottom: 0
  }
}

.header {
  padding: 15px 0;
  background-color: var(--green-l)
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px
}

@media (max-width:991px) {
  .header__container {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
  }
}

@media (max-width:991px) {
  .header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--green);
    z-index: 100;
    padding: 100px 30px 30px 30px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: auto;
    -webkit-transition: opacity .2s ease-in-out, visibility .2s ease-in-out, pointer-events .2s ease-in-out;
    transition: opacity .2s ease-in-out, visibility .2s ease-in-out, pointer-events .2s ease-in-out
  }
}

@media (max-width:600px) {
  .header__menu {
    padding: 80px 30px 30px 30px
  }
}

.header__menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: visible
}

.header__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 24px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-left: auto
}

@media (max-width:991px) {
  .header__links {
    display: none
  }
}

.header__exit-menu {
  display: none;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: transparent
}

@media (max-width:991px) {
  .header__exit-menu {
    display: block;
    top: 30px;
    right: 30px
  }
}

@media (max-width:600px) {
  .header__exit-menu {
    top: 15px;
    right: 15px
  }
}

.header__exit-menu::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg)
}

.header__exit-menu::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg)
}

.nav_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px 80px
}

@media (max-width:991px) {
  .nav_footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px
  }
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

@media (max-width:991px) {
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px
  }
}

.nav__list_footer {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px
}

.nav__link {
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out
}

@media (any-hover:hover) {
  .nav__link:hover {
    color: var(--hover)
  }
}

.nav__link:focus-visible {
  color: var(--hover)
}

.nav__link:active {
  color: var(--active);
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.burger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  width: 36px;
  height: 18px;
  background-color: transparent
}

@media (max-width:991px) {
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }
}

.burger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--white);
  border-radius: 8px
}

.hero {
  padding-top: 60px
}

.hero-slider__slide {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 240px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 30px 30px 40px 30px;
  height: auto
}

.hero-slider__slide picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1
}

.hero-slider__slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black-050);
  z-index: 2;
  display: none
}

@media (max-width:600px) {
  .hero-slider__slide::before {
    display: block
  }
}

.hero-slider__descr {
  position: relative;
  z-index: 3;
  max-width: 420px
}

.hero-slider__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1
}

.hero-slider__pagination {
  position: absolute;
  bottom: 10px;
  left: 0;
  z-index: 1
}

.updated {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px
}

.updated__wrapper-dates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.footer {
  padding-top: 40px;
  background-color: var(--green-l);
  padding-bottom: 40px
}

.io__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px 40px
}

.io__item {
  height: 30px
}

.games__el {
  position: relative
}

.games__top {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px 24px;
  border-radius: 32px;
  border: 2px solid var(--green-l);
  background-color: var(--green-050)
}

@media (max-width:991px) {
  .games__top {
    gap: 16px
  }
}

@media (max-width:600px) {
  .games__top {
    gap: 10px
  }
}

.games__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  flex-shrink: 0
}

@media (max-width:991px) {
  .games__icon {
    width: 42px;
    height: 42px
  }
}

@media (max-width:600px) {
  .games__icon {
    width: 32px;
    height: 32px
  }
}

.games-slider {
  overflow: visible;
  position: static
}

.games-slider__slide {
  width: 182px;
  height: 260px;
  border-radius: 32px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover
}

@media (any-hover:hover) {
  .games-slider__slide:hover .games-slider__hover {
    opacity: 1
  }
}

.games-slider__hover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 20px;
  background-color: var(--black-050);
  opacity: 0;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out
}

@media (max-width:991px) {
  .games-slider__hover {
    background-color: transparent;
    opacity: 1
  }
}

.games-slider__name {
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center
}

@media (max-width:991px) {
  .games-slider__name {
    display: none
  }
}

.games-slider__link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--green);
  padding: 10px 10px 10px 13px;
  -webkit-transition: background-color .3s ease-in-out;
  transition: background-color .3s ease-in-out
}

@media (max-width:991px) {
  .games-slider__link {
    opacity: 0
  }
}

.games-slider__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 1
}

@media (max-width:991px) {
  .games-slider__link::before {
    display: block
  }
}

@media (any-hover:hover) {
  .games-slider__link:hover {
    background-color: var(--hover)
  }
}

.games-slider__link:focus-visible {
  background-color: var(--hover)
}

.games-slider__link:active {
  background-color: var(--active);
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.games-slider__controls {
  position: absolute;
  top: 32px;
  right: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px
}

@media (max-width:991px) {
  .games-slider__controls {
    position: static;
    padding-top: 24px
  }
}

.games-slider__button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 10px;
  background-color: var(--green);
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out
}

.games-slider__button.swiper-button-disabled {
  opacity: .3;
  pointer-events: none
}

@media (any-hover:hover) {
  .games-slider__button:hover {
    color: var(--hover)
  }
}

.games-slider__button:focus-visible {
  color: var(--hover)
}

.games-slider__button:active {
  color: var(--active);
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.games-slider__button svg {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg)
}

.games-slider-prev {
  padding-right: 14px
}

.games-slider-prev svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg)
}

.games-slider-next {
  padding-left: 14px
}

.reviews__item {
  border: 2px solid var(--green);
  border-radius: 32px;
  padding: 40px
}

@media (max-width:991px) {
  .reviews__item {
    padding: 24px 16px
  }
}

@media (max-width:600px) {
  .reviews__item {
    padding: 24px 10px
  }
}

.reviews__item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.reviews__icon {
  width: 60px;
  height: 60px
}

.wrapper-table {
  padding-bottom: 10px
}

.wrapper-table__table {
  min-width: 900px
}

.wrapper-table__th {
  padding: 15px;
  text-align: left;
  border: 2px solid var(--green-l)
}

.wrapper-table__td {
  padding: 15px;
  border: 2px solid var(--green-l)
}

.faq__item {
  border-bottom: 2px solid var(--green-l)
}

.faq__item.active .faq__button {
  background-color: var(--green-l);
  border-color: transparent
}

.faq__item.active .faq__item-bottom {
  display: block
}

.faq__item-top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 20px
}

.faq__button {
  width: 16px;
  height: 16px;
  border: 2px solid var(--white);
  border-radius: 50%;
  -webkit-transition: border-color .3s ease-in-out, background-color .3s ease-in-out;
  transition: border-color .3s ease-in-out, background-color .3s ease-in-out
}

@media (any-hover:hover) {
  .faq__button:hover {
    border-color: var(--hover)
  }
}

.faq__button:focus-visible {
  border-color: var(--hover)
}

.faq__button:active {
  border-color: var(--active);
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.faq__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1
}

.faq__item-bottom {
  display: none
}

.faq__texts {
  padding-bottom: 20px
}