* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background-color: #000;
  font-family: "Sora", sans-serif;
  color: #fff;
  font-weight: 200;
  font-size: 18px;
  line-height: 120%;
}

a,
button {
  cursor: pointer;
  font-family: inherit;
  display: block;
  text-decoration: none;
  color: inherit;
  border: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  line-height: 0;
}

section {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (min-width: 1200px) {
  section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

ul,
ol {
  padding-left: 22px;
  margin: 0;
  line-height: inherit;
}

.container {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  max-width: 430px;
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
    padding: 0 60px;
  }
}

.title {
  font-weight: 400;
  font-size: 28px;
  line-height: 130%;
  text-transform: uppercase;
  text-align: center;
}

@media (min-width: 1200px) {
  .title {
    font-size: 40px;
  }
}

.link {
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  color: #fff;
}

.link:hover, .link:focus {
  color: #a85fe0;
}

.link:active {
  color: #540c92;
}

.logo {
  position: relative;
  z-index: 5;
  font-weight: 600;
  font-size: 26px;
  line-height: 150%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo span {
  font-weight: 200;
}

.logo img {
  width: 100%;
  max-width: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.btn {
  font-family: inherit;
  width: 100%;
  max-width: 205px;
  background: #a85fe0;
  border: 1px solid #540c92;
  padding: 18px;
  font-weight: 600;
  font-size: 18px;
  line-height: 110%;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.btn:hover, .btn:focus {
  background: #540c92;
}

.btn:active {
  background: #a85fe0;
}

.accent {
  color: #a85fe0;
}

.white {
  color: #fff;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  background: transparent;
  width: 100%;
  padding: 10px 0;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.header.fixed {
  background: #000;
}

.header__content {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.header__list {
  z-index: 4;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: #000;
  padding-left: 0;
  list-style: none;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 45px;
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: -0.03em;
  text-align: center;
}

.header__list.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 1200px) {
  .header__list {
    position: static;
    top: auto;
    left: auto;
    max-width: 100%;
    height: auto;
    background: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.header__menu-btn {
  position: relative;
  z-index: 10;
  width: 34px;
  height: 20px;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5px;
  background: transparent;
}

.header__menu-btn span {
  width: 100%;
  height: 1px;
  background: #fff;
}

@media (min-width: 1200px) {
  .header__menu-btn {
    display: none;
  }
}

.hero {
  padding-top: 140px;
  background-image: url(/wp-content/themes/site/assets/img/herobg.webp);
  background-position: top 0 center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

@media (min-width: 1200px) {
  .hero {
    padding-top: 170px;
  }
}

.hero__content {
  position: relative;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin: auto;
}

@media (min-width: 1200px) {
  .hero__content {
    gap: 40px;
  }
}

.hero__title {
  font-weight: 700;
  font-size: 46px;
  line-height: 130%;
  text-transform: uppercase;
  text-align: justify;
  -webkit-transform: rotate(6deg);
          transform: rotate(6deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 500px;
}

.hero__title span {
  display: block;
  padding: 18px;
  background: #540c92;
}

.hero__title strong {
  font-size: 104px;
}

@media (min-width: 1200px) {
  .hero__title {
    font-size: 80px;
    max-width: 700px;
  }
  .hero__title strong {
    font-size: 180px;
  }
}

.hero__text {
  max-width: 620px;
  margin-right: auto;
}

.hero-img-one {
  position: absolute;
  top: 10px;
  left: -120px;
  z-index: -1;
  pointer-events: none;
}

.hero-img-two {
  position: absolute;
  top: -240px;
  right: -60px;
  z-index: -1;
  pointer-events: none;
}

.hero-img-three {
  position: absolute;
  bottom: -80px;
  right: 10px;
  z-index: -1;
  pointer-events: none;
}

@media (min-width: 768px) {
  .hero-img-three {
    right: 50px;
  }
}

.about__text {
  font-weight: 400;
  font-size: 26px;
  line-height: 130%;
  text-transform: uppercase;
  text-align: justify;
}

@media (min-width: 1200px) {
  .about__text {
    font-size: 40px;
  }
}

.infinite-bg {
  overflow: hidden;
  background: #a85fe0;
}

.infinite-bg.bg-second {
  width: 120%;
  background: #540c92;
  -webkit-transform: rotate(-6deg);
          transform: rotate(-6deg);
  position: relative;
  z-index: 2;
  top: -60px;
  left: -40px;
}

.infinite-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 300;
  font-size: 11px;
  line-height: 130%;
  text-align: justify;
  -webkit-animation: scrollText 10s linear infinite;
          animation: scrollText 10s linear infinite;
  padding: 2px;
}

.infinite-text img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 30px;
}

@media (min-width: 1200px) {
  .infinite-text img {
    max-width: 70px;
  }
}

.infinite-text.cross {
  -webkit-animation: scrollTextCross 10s linear infinite;
          animation: scrollTextCross 10s linear infinite;
}

@media (min-width: 1200px) {
  .infinite-text {
    font-size: 26px;
  }
}

@-webkit-keyframes scrollText {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes scrollText {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@-webkit-keyframes scrollTextCross {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes scrollTextCross {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.advantages {
  background-image: url(/wp-content/themes/site/assets/img/blur.svg), url(/wp-content/themes/site/assets/img//blur.svg);
  background-position: top 20px left -100px, bottom 50px right -50px;
  background-repeat: no-repeat, no-repeat;
}

.advantages.page {
  padding-top: 140px;
}

@media (min-width: 1200px) {
  .advantages.page {
    padding-top: 170px;
  }
}

.advantages__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 1200px) {
  .advantages__content {
    gap: 30px;
  }
}

.advantages__line {
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 1200px) {
  .advantages__line {
    -ms-grid-columns: 1fr 1.2fr 0.9fr;
        grid-template-columns: 1fr 1.2fr 0.9fr;
  }
}

.advantages__line img {
  width: 100%;
}

.advantages__line-two {
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-height: 250px;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .advantages__line-two {
    gap: 50px;
  }
}

.advantages__line-two img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top 0 left 0;
     object-position: top 0 left 0;
}

.reviews {
  background-image: url(/wp-content/themes/site/assets/img/blur.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.reviews__content {
  padding-top: 40px;
  padding-bottom: 40px;
}

.reviews__slider {
  position: relative;
}

.reviews__nav {
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  z-index: 5;
}

.reviews__prev, .reviews__next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  cursor: pointer;
  position: relative;
}

.reviews__prev::after, .reviews__next::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.reviews__prev::after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.reviews__next::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.swiper .slide {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 300px;
}

@media (min-width: 1200px) {
  .swiper .slide {
    -ms-grid-columns: 40% 60%;
        grid-template-columns: 40% 60%;
  }
}

.swiper .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper .slide__text-block {
  padding: 60px;
  color: #fff;
}

.swiper .slide__text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
}

.swiper .slide__title {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: right;
  margin-bottom: 20px;
}

.footer {
  padding-top: 20px;
  padding-bottom: 200px;
  background-image: url(/wp-content/themes/site/assets/img/blur.svg), url(/wp-content/themes/site/assets/img/footer.webp);
  background-position: bottom -420px center, bottom 0 right 30%;
  background-repeat: no-repeat;
}

@media (min-width: 1200px) {
  .footer {
    padding-bottom: 100px;
  }
}

.footer__content {
  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;
  gap: 30px;
}

@media (min-width: 1200px) {
  .footer__content {
    gap: 40px;
  }
}

.footer__title {
  font-weight: 800;
  font-size: 45px;
  line-height: 90%;
  text-transform: uppercase;
  text-align: center;
}

.footer__title span {
  font-weight: 200;
}

@media (min-width: 768px) {
  .footer__title {
    font-size: 85px;
  }
}

@media (min-width: 1200px) {
  .footer__title {
    font-size: 126px;
  }
}

.footer__address {
  font-style: normal;
  text-align: center;
  width: 100%;
  text-transform: uppercase;
}

@media (min-width: 1200px) {
  .footer__address {
    text-align: left;
  }
}

.footer__links {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 30px;
  width: 100%;
}

@media (min-width: 1200px) {
  .footer__links {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  width: 100%;
}

@media (min-width: 1200px) {
  .footer__nav {
    gap: 30px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.how {
  padding-top: 140px;
}

@media (min-width: 1200px) {
  .how {
    padding-top: 170px;
  }
}

.how__content {
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (min-width: 1200px) {
  .how__content {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.how__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 1200px) {
  .how__list {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
}

.how__item {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  background: #540c92;
}

.how__item:nth-child(2) {
  background: #a85fe0;
}

.how__item-title {
  text-transform: uppercase;
}

.game {
  padding-top: 140px;
}

@media (min-width: 1200px) {
  .game {
    padding-top: 170px;
  }
}

.game__content {
  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;
  gap: 20px;
}

@media (min-width: 1200px) {
  .game__content {
    gap: 30px;
  }
}

.game__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 1200px) {
  .game__wrapper {
    -ms-grid-columns: 1fr 200px;
        grid-template-columns: 1fr 200px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.game img {
  width: 100%;
  max-width: 500px;
}

.legal {
  padding-top: 140px;
}

@media (min-width: 1200px) {
  .legal {
    padding-top: 170px;
  }
}

.legal__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.legal__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.legal h3 {
  margin-top: 10px;
}

.cookie {
  width: 100%;
  position: fixed;
  z-index: 8;
  bottom: 0;
  left: 0;
  margin-bottom: 15px;
  display: none;
}

.cookie.show {
  display: block;
}

.cookie__content {
  position: relative;
  border: 3px solid rgba(55, 0, 255, 0.3);
  border-radius: 30px;
  padding: 20px;
  -webkit-box-shadow: 0 0 20px 0 rgba(55, 0, 255, 0.3);
          box-shadow: 0 0 20px 0 rgba(55, 0, 255, 0.3);
  background: #00111c;
  color: #fff;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
}

.cookie__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  width: 100%;
}

.cookie__btns .btn {
  padding-top: 18px;
  padding-bottom: 18px;
  max-width: 100%;
}

@media (min-width: 768px) {
  .cookie__btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .cookie__btns .btn {
    max-width: 220px;
  }
}
/*# sourceMappingURL=styles.css.map */