/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

html, body {
  font-size: 62.5%;
  color: white;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

button, input {
  outline: none;
  border: 0;
  cursor: pointer;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.button {
  border-radius: 50px;
  background: var(--g-2, linear-gradient(162deg, #952EF1 11.11%, #17C4E7 100%));
  box-shadow: 0px 15px 60px 0px rgba(66, 130, 233, 0.45);
  display: flex;
  width: 250px;
  height: 60px;
  padding: 21px 64px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--f-7-f-6-ff, #F7F6FF);
  text-align: center;
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (min-width: 2000px) {
  .button {
    font-size: 30px;
    min-width: 450px;
    height: 75px;
  }
}

.hero {
  padding-top: 20vh;
  position: relative;
}
@media (max-width: 650px) {
  .hero {
    padding-top: 10vh;
  }
}

.hero-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 650px) {
  .hero-wrapper {
    flex-direction: column;
    justify-content: center;
  }
}

.hero-revers-wrapper {
  max-width: 35vw;
}
@media (max-width: 650px) {
  .hero-revers-wrapper {
    max-width: 70vw;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 650px) {
  .hero-left {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
}
.hero-left div:last-child {
  position: relative;
}
.hero-left div:last-child::after {
  content: "";
  background: url(../img/main/controllers.png) no-repeat;
  background-size: contain;
  height: 30vw;
  width: 306px;
  display: inline-block;
  z-index: -1;
  position: absolute;
  top: 61px;
  right: -184px;
}
@media (max-width: 1100px) {
  .hero-left div:last-child::after {
    top: 21px;
    right: -220px;
  }
}
@media (max-width: 650px) {
  .hero-left div:last-child::after {
    width: 200px;
    top: 21px;
    right: -170px;
  }
}
@media (max-width: 590px) {
  .hero-left div:last-child::after {
    width: 200px;
    height: 50vw;
    top: 14px;
    right: -129px;
  }
}
@media (max-width: 470px) {
  .hero-left div:last-child::after {
    width: 150px;
    height: 50vw;
    top: 20px;
    right: -90px;
  }
}
@media (max-width: 360px) {
  .hero-left div:last-child::after {
    width: 80px;
    height: 50vw;
    top: 40px;
    right: -40px;
  }
}

.hero-right {
  max-width: 35vw;
}
@media (max-width: 650px) {
  .hero-right {
    max-width: 70vw;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.hero-text {
  max-width: 35vw;
}
.hero-text__info {
  color: var(--abafe-5, #ABAFE5);
  font-family: Gilroy;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 10px 0 26px;
}
@media (max-width: 590px) {
  .hero-text__info {
    text-align: center;
  }
}

.hero-img {
  width: 30vw;
  margin: 30px 0;
}
@media (max-width: 590px) {
  .hero-img {
    width: 50vw;
  }
}

.benefits-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

.benefits {
  padding-top: 20vh;
}
.benefits__items {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-self: stretch;
}
@media (max-width: 850px) {
  .benefits__items {
    flex-direction: column;
  }
}
.benefits__tab {
  border-radius: 25px;
  background: rgba(31, 37, 63, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: flex;
  padding: 40px 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex: 1 0 0;
  color: var(--f-7-f-6-ff, #F7F6FF);
  text-align: center;
  font-family: Gilroy;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  height: auto;
}
.benefits__tab img {
  width: 120px;
}

.game-info {
  padding-top: 20vh;
}
@media (max-width: 890px) {
  .game-info {
    padding-top: 10vh;
  }
}
.game-info ul {
  margin: 30px 0;
}
.game-info__content {
  color: var(--abafe-5, #ABAFE5);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 36px */
  display: flex;
}
@media (max-width: 890px) {
  .game-info__content {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.game-info__left-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 40vw;
}
@media (max-width: 890px) {
  .game-info__left-side {
    width: auto;
    align-self: stretch;
  }
}
.game-info__right-side {
  width: 40vw;
  display: flex;
  align-items: center;
}
@media (max-width: 590px) {
  .game-info__right-side {
    width: auto;
  }
}
.game-info__description {
  display: flex;
  padding: 24px 32px;
  justify-content: center;
  align-items: center;
  gap: 26px;
  border-radius: 16px;
  background: rgba(31, 37, 63, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  max-width: 400px;
}
@media (max-width: 960px) {
  .game-info__description {
    justify-content: space-between;
  }
}
@media (max-width: 590px) {
  .game-info__description {
    max-width: 100%;
  }
}
.game-info__detail {
  color: var(--f-7-f-6-ff, #F7F6FF);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  /* 27.3px */
  display: flex;
  align-items: center;
}
@media (max-width: 960px) {
  .game-info__detail {
    flex-direction: column;
  }
}
.game-info__detail img {
  margin-right: 8px;
  width: 36px;
  height: 36px;
}
.game-info__title {
  margin-top: 50px;
}
.game-info__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 725px) {
  .game-info__buttons {
    flex-wrap: wrap;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 880px) {
  .game-info__wrap-btn {
    max-width: 240px;
    flex-grow: 1;
  }
  .game-info__wrap-btn :last-child {
    width: 100%;
    flex-grow: 2;
  }
}
@media (max-width: 630px) {
  .game-info__wrap-btn {
    max-width: 100%;
  }
}
.game-info__change {
  color: #737BA1;
  text-align: center;
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 16px;
  background: rgba(31, 37, 63, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: flex;
  height: 60px;
  padding: 26px 36px;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
@media (max-width: 1100px) {
  .game-info__change :last-child {
    max-width: 440px;
  }
}
.game-info__change__active {
  border-radius: 16px;
  background: rgb(31, 37, 63);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: flex;
  height: 60px;
  padding: 26px 36px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--f-7-f-6-ff, #F7F6FF);
  text-align: center;
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.game-info__text {
  color: var(--abafe-5, #ABAFE5);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 36px */
}

.booking {
  padding-top: 20vh;
}

.booking-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20vh;
}
@media (max-width: 1020px) {
  .booking-wrapper {
    flex-direction: column;
    align-items: normal;
    gap: 50px;
    padding-top: 10vh;
    margin-bottom: 10vh;
  }
}

.booking-left {
  width: 40vw;
}
@media (max-width: 1020px) {
  .booking-left {
    width: auto;
  }
}
@media (max-width: 590px) {
  .booking-left {
    margin-bottom: 30px;
  }
}
.booking-left__info {
  margin: 10px 0 20px;
  color: var(--abafe-5, #ABAFE5);
  font-family: Gilroy;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 39px */
}

.booking-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  gap: 20px;
  grid-template-areas: "A B" "C D" "E F" "G G";
  width: 40vw;
}
@media (max-width: 1020px) {
  .booking-right {
    width: auto;
  }
}
@media (max-width: 590px) {
  .booking-right {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    gap: 20px;
    grid-template-areas: "A A" "B B" "C C" "D D" "E E" "F F" "G G";
    width: 100%;
  }
}

.booking-step {
  border-radius: 16px;
  background: rgba(31, 37, 63, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: flex;
  padding: 32px 20px;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
}
@media (max-width: 590px) {
  .booking-step {
    justify-content: start;
    padding-left: 10vw;
  }
}
.booking-step.step-1 {
  grid-area: A;
}
.booking-step.step-2 {
  grid-area: B;
}
.booking-step.step-3 {
  grid-area: C;
}
.booking-step.step-4 {
  grid-area: D;
}
.booking-step.step-5 {
  grid-area: E;
}
.booking-step.step-6 {
  grid-area: F;
}
.booking-step.step-7 {
  grid-area: G;
}
.booking-step__item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.booking-step__img {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.booking-step__descr {
  color: var(--f-7-f-6-ff, #F7F6FF);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  /* 28px */
  text-transform: uppercase;
  word-wrap: normal;
}

.heroGame {
  padding-top: 15vh;
  position: relative;
}
@media (max-width: 1050px) {
  .heroGame {
    padding-top: 10vh;
  }
}

.heroGame-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1050px) {
  .heroGame-wrapper {
    flex-direction: column;
    flex-direction: column-reverse;
    justify-content: center;
  }
}

.heroGame-left {
  max-width: 40vw;
  margin-top: 40px;
}
@media (max-width: 1050px) {
  .heroGame-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 80vw;
  }
}

.heroGame-text__info {
  text-align: left;
  padding: 10px 0 26px;
}
@media (max-width: 1050px) {
  .heroGame-text__info {
    text-align: center;
  }
}

.heroGame-button {
  min-width: 380px;
}
@media (max-width: 370px) {
  .heroGame-button {
    min-width: 100%;
  }
}
@media (min-width: 2000px) {
  .heroGame-button {
    min-width: 450px;
  }
}

.heroGame-right {
  max-width: 40vw;
}
@media (max-width: 1050px) {
  .heroGame-right {
    max-width: 80vw;
  }
}

.unical {
  padding-top: 20vh;
}
.unical__title {
  padding-bottom: 60px;
  text-align: center;
}
.unical__items {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-self: stretch;
}
@media (max-width: 850px) {
  .unical__items {
    flex-direction: column;
  }
}
.unical__item {
  border-radius: 25px;
  background: rgba(31, 37, 63, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: flex;
  padding: 40px 30px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex: 1 0 0;
  color: var(--f-7-f-6-ff, #F7F6FF);
  text-align: center;
  font-family: Gilroy;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  height: auto;
}
.unical__item img {
  width: 120px;
}
@media (max-width: 450px) {
  .unical {
    padding-top: 10vh;
  }
}

.locations {
  padding: 15vh 0 20px;
}
.locations__title {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 750px) {
  .locations {
    padding: 10vh 0 10px;
  }
}

.lobby {
  margin-top: 100px;
  padding: 30vh 0 30vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: url(../img/gamePage/leftUp.png) left 210px top 10px/400px no-repeat, url(../img/gamePage/rightUp.png) right 210px top 10px/400px no-repeat, url(../img/gamePage/leftDown.png) left 210px bottom 0px/400px no-repeat, url(../img/gamePage/rightDown.png) right 210px bottom 0px/400px no-repeat;
}
@media (max-width: 350px) {
  .lobby .container {
    padding: 0;
  }
}
@media (max-height: 640px) {
  .lobby {
    padding: 30vh 0 calc(35vh + 200px);
    background: url(../img/gamePage/leftUp.png) left 210px top 10px/400px no-repeat, url(../img/gamePage/rightUp.png) right 210px top 10px/400px no-repeat, url(../img/gamePage/leftDown.png) left 210px bottom 0px/400px no-repeat, url(../img/gamePage/rightDown.png) right 210px bottom 0px/400px no-repeat;
  }
}
@media (max-width: 1550px) {
  .lobby {
    padding: 30vh 0 calc(30vh + 100px);
    background: url(../img/gamePage/leftUp.png) left 110px top 10px/400px no-repeat, url(../img/gamePage/rightUp.png) right 110px top 10px/400px no-repeat, url(../img/gamePage/leftDown.png) left 110px bottom 0px/400px no-repeat, url(../img/gamePage/rightDown.png) right 110px bottom 0px/400px no-repeat;
  }
}
@media (max-width: 1050px) {
  .lobby {
    background: url(../img/gamePage/leftUp.png) left 10px top 10px/400px no-repeat, url(../img/gamePage/rightUp.png) right 10px top 10px/400px no-repeat, url(../img/gamePage/leftDown.png) left 10px bottom 0px/400px no-repeat, url(../img/gamePage/rightDown.png) right 10px bottom 0px/400px no-repeat;
  }
}
@media (max-width: 850px) {
  .lobby {
    background: url(../img/gamePage/leftUp.png) left -50px top 10px/400px no-repeat, url(../img/gamePage/rightUp.png) right -50px top 10px/400px no-repeat, url(../img/gamePage/leftDown.png) left -50px bottom 0px/400px no-repeat, url(../img/gamePage/rightDown.png) right -50px bottom 0px/400px no-repeat;
  }
}
@media (max-width: 700px) {
  .lobby {
    background: url(../img/gamePage/leftUp.png) left -100px top 10px/400px no-repeat, url(../img/gamePage/rightUp.png) right -100px top 10px/400px no-repeat, url(../img/gamePage/leftDown.png) left -100px bottom 0px/400px no-repeat, url(../img/gamePage/rightDown.png) right -100px bottom 0px/400px no-repeat;
  }
}
@media (max-width: 620px) {
  .lobby {
    background: url(../img/gamePage/leftUp.png) left -150px top 10px/400px no-repeat, url(../img/gamePage/rightUp.png) right -150px top 10px/400px no-repeat, url(../img/gamePage/leftDown.png) left -150px bottom 0px/400px no-repeat, url(../img/gamePage/rightDown.png) right -150px bottom 0px/400px no-repeat;
  }
}
@media (max-width: 510px) {
  .lobby {
    background: url(../img/gamePage/leftUp.png) left -220px top 10px/400px no-repeat, url(../img/gamePage/rightUp.png) right -220px top 10px/400px no-repeat, url(../img/gamePage/leftDown.png) left -220px bottom 0px/400px no-repeat, url(../img/gamePage/rightDown.png) right -220px bottom 0px/400px no-repeat;
  }
}
@media (max-width: 380px) {
  .lobby {
    background: url(../img/gamePage/leftUp.png) left -150px top 10px/300px no-repeat, url(../img/gamePage/rightUp.png) right -150px top 10px/300px no-repeat, url(../img/gamePage/leftDown.png) left -150px bottom 0px/300px no-repeat, url(../img/gamePage/rightDown.png) right -150px bottom 0px/300px no-repeat;
  }
}
.lobby__description {
  max-width: 40vw;
  text-align: center;
}
@media (max-width: 1050px) {
  .lobby__description {
    max-width: 70vw;
  }
}
@media (max-width: 700px) {
  .lobby__description {
    max-width: 90vw;
  }
}
.lobby__button {
  margin-top: 16px;
  width: 380px;
}
@media (min-width: 2000px) {
  .lobby {
    margin-top: 10vh;
  }
}

.lobby-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 350px) {
  .lobby-wrapper {
    max-width: 90vw;
  }
}

.map {
  padding-top: 20vh;
}
.map__left {
  max-width: 35vw;
}
@media (max-width: 1050px) {
  .map__left {
    max-width: 80vw;
  }
}
.map__right {
  max-width: 35vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  gap: 10;
}
@media (max-width: 1050px) {
  .map__right {
    margin-top: 30px;
    max-width: 80vw;
    align-items: center;
  }
}
@media (max-width: 450px) {
  .map {
    padding-top: 10vh;
  }
}
.map__text-info {
  text-align: right;
}
@media (max-width: 1050px) {
  .map__text-info {
    display: block;
    text-align: center;
  }
}
.map__button {
  margin-top: 16px;
  width: 380px;
}

.map-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1050px) {
  .map-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 590px) {
  .map-wrapper {
    flex-direction: column;
    justify-content: center;
  }
}

.gameReal-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 350px) {
  .gameReal-wrapper {
    max-width: 90vw;
  }
}

.gameReal {
  padding: 25vh 0;
  margin: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: url(../img/gamePage/gameTimeLeft.png) left 210px bottom 0px/400px no-repeat, url(../img/gamePage/gameTimeRight.png) right 210px top 0px/400px no-repeat;
}
@media (max-height: 640px) {
  .gameReal {
    padding: 35vh 0;
  }
}
@media (max-width: 1500px) {
  .gameReal {
    background: url(../img/gamePage/gameTimeLeft.png) left 110px bottom 0px/400px no-repeat, url(../img/gamePage/gameTimeRight.png) right 110px top 0px/400px no-repeat;
  }
}
@media (max-width: 1200px) {
  .gameReal {
    background: url(../img/gamePage/gameTimeLeft.png) left 10px bottom 0px/400px no-repeat, url(../img/gamePage/gameTimeRight.png) right 10px top 0px/400px no-repeat;
  }
}
@media (max-width: 900px) {
  .gameReal {
    margin: 50px 0;
    padding: calc(20vh + 200px) 0;
    background: url(../img/gamePage/gameTimeLeft.png) left 10px bottom 0px/400px no-repeat, url(../img/gamePage/gameTimeRight.png) right 10px top 100px/400px no-repeat;
  }
}
@media (max-width: 770px) {
  .gameReal {
    background: url(../img/gamePage/gameTimeLeft.png) left 10px bottom 0px/300px no-repeat, url(../img/gamePage/gameTimeRight.png) right 10px top 10px/300px no-repeat;
  }
}
@media (max-width: 900px) {
  .gameReal__title {
    text-align: center;
  }
}
.gameReal__description {
  max-width: 40vw;
  text-align: center;
}
@media (max-width: 1050px) {
  .gameReal__description {
    max-width: 80vw;
  }
}
@media (max-width: 900px) {
  .gameReal__description {
    max-width: 90vw;
  }
}
.gameReal__button {
  margin-top: 16px;
  width: 380px;
}

.superPuperSwiperCube {
  width: 100%;
  height: 100%;
  height: 80vh;
  min-height: 40vw;
}
.superPuperSwiperCube .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: transparent;
  border-radius: 10px;
  background: var(--g-2, linear-gradient(162deg, #952EF1 11.11%, #17C4E7 100%));
}
.superPuperSwiperCube .swiper-slide__title {
  color: var(--ffffff, #FFF);
  font-family: Gilroy;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  /* 86.4px */
  position: absolute;
  text-align: start;
  bottom: 0;
}
.superPuperSwiperCube .swiper-slide__text {
  color: var(--ffffff, #FFF);
  font-family: Gilroy;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  /* 48px */
  position: absolute;
  text-align: start;
  bottom: 0;
  padding: 30px;
}
@media (max-width: 550px) {
  .superPuperSwiperCube .swiper-slide__text {
    font-size: 20px;
  }
}
.superPuperSwiperCube .swiper-slide__text h2 {
  padding-bottom: 10px;
}
@media (max-width: 550px) {
  .superPuperSwiperCube .swiper-slide__text h2 {
    font-size: 28px;
  }
}
.superPuperSwiperCube .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  padding: 5px 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1440px) {
  .superPuperSwiperCube .swiper-slide img {
    padding: 0 5px;
  }
}

.footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.footer {
  background: rgba(31, 37, 63, 0.6509803922);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 60px 0;
}
@media (max-width: 500px) {
  .footer {
    padding: 30px 0;
  }
}
.footer__navigation {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 420px) {
  .footer__navigation {
    flex-direction: column;
    gap: 10px;
  }
}
.footer a:hover {
  color: #36A0EA;
}
.footer__text {
  color: var(--f-7-f-6-ff, #F7F6FF);
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  text-align: center;
}
@media (min-width: 2000px) {
  .footer__text {
    font-size: 30px;
  }
}
.footer__links-contacts {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.footer__copyright {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}
.footer__copyright :first-child {
  text-align: left;
}
@media (max-width: 590px) {
  .footer__copyright {
    flex-direction: column;
  }
}
.footer__politic {
  color: var(--f-7-f-6-ff, #F7F6FF);
  text-align: right;
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  /* 48.6px */
  text-decoration-line: underline;
  text-align: right;
}
@media (min-width: 2000px) {
  .footer__politic {
    font-size: 30px;
  }
}

@media screen and (max-width: 1080px) {
  .footer .container {
    padding: 2vh 10vw !important;
  }
}
@media screen and (max-width: 630px) {
  .footer__navigation {
    flex-direction: column;
    gap: 10px;
  }
  .footer__copyright {
    flex-direction: column;
    gap: 10px;
  }
  .footer__copyright .footer__politic, .footer__copyright .footer__text {
    text-align: center;
    width: 100%;
  }
  .footer__links-contacts img {
    width: 40px;
  }
}
.header {
  padding: 14px 10%;
  display: flex;
  align-items: center;
  font-family: Gilroy;
}
.header-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.header-logo__name {
  font-size: 30px;
  line-height: 30px;
  text-transform: uppercase;
  color: #F7F6FF;
  font-weight: 700;
}
.header-nav {
  margin: auto;
}
.header-nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  gap: 30px;
}
.header-nav__link {
  font-size: 20px;
  font-weight: 400;
}
.header-nav__link:hover {
  color: #36A0EA;
}
.header-burger {
  display: none;
  position: relative;
  z-index: 50;
  align-items: center;
  justify-content: flex-end;
  width: 30px;
  height: 18px;
}

.open {
  display: flex !important;
}

.header-burger span {
  height: 2px;
  width: 80%;
  transform: scale(1);
  background-color: #FAF6F2;
}

.header-burger::before,
.header-burger::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #FAF6F2;
  transition: all 0.3s ease 0s;
}

.header-burger::before {
  top: 0;
}

.header-burger::after {
  bottom: 0;
}

.header-burger.active span {
  transform: scale(0);
}

.header-burger.active::before {
  top: 50%;
  transform: rotate(-45deg) translate(0, -50%);
}

.header-burger.active::after {
  bottom: 50%;
  transform: rotate(45deg) translate(0, 50%);
}

@media screen and (min-width: 2000px) {
  .header {
    padding: 14px 10vw;
    position: fixed;
    z-index: 1000;
    width: 100%;
    position: fixed;
    background: rgba(31, 37, 63, 0.5);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
  .header-logo__name {
    font-size: 40px;
  }
  .header-nav ul {
    gap: 30px;
  }
  .header-nav__link {
    font-size: 30px;
  }
}
@media screen and (max-width: 2000px) {
  .header {
    padding: 14px 10vw;
    position: fixed;
    z-index: 1000;
    width: 100%;
    position: fixed;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    background: rgba(31, 37, 63, 0.5);
  }
}
@media screen and (max-width: 1050px) {
  .header {
    padding: 14px 10vw;
    position: fixed;
    z-index: 1000;
    width: 100%;
    position: fixed;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    background: rgba(31, 37, 63, 0.5);
  }
  .header-logo {
    gap: 10px;
  }
  .header-logo__link__image {
    width: 28px;
    height: 28px;
  }
  .header-logo__name {
    font-size: 24px;
    line-height: 24px;
  }
  .header-nav ul {
    gap: 30px;
  }
}
@media screen and (max-width: 800px) {
  .header-logo {
    gap: 10px;
  }
  .header-logo__link__image {
    width: 20px;
    height: 20px;
  }
  .header-logo__name {
    font-size: 20px;
    line-height: 20px;
  }
  .header-nav ul {
    gap: 20px;
  }
  .header-nav__link {
    font-size: 18px;
  }
}
@media screen and (max-width: 710px) {
  .header {
    flex-direction: row;
    justify-content: space-between;
    background: rgba(31, 37, 63, 0.5);
  }
  .header-logo {
    gap: 16px;
  }
  .header-logo__link__image {
    width: 26px;
    height: 26px;
  }
  .header-logo__name {
    font-size: 26px;
    line-height: 26px;
  }
  .header-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    width: 100%;
    top: 4px;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    overflow-y: auto;
    margin-top: 50px;
    padding-top: 10px;
    background-color: #2A314F;
    animation: burgerAnimation 0.4s;
  }
  .header-nav ul {
    flex-direction: column;
    width: 100%;
    padding-left: 0;
  }
  .header-nav ul li {
    color: #ABAFE5;
    padding: 12px 0;
    margin: 0 40px;
    border-bottom: 1px solid #ABAFE5;
  }
  .header-nav ul li::after {
    content: url("../img/arrow-right.svg");
    position: absolute;
    right: 40px;
  }
  .header-nav ul li a {
    font-size: 20px;
    width: 100%;
    display: inline-block;
  }
  .header-burger {
    display: flex;
  }
}
@keyframes burgerAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.container2 {
  padding: 10vh 10vw;
}

.hero2-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15vh;
}
.hero2-wrapper img {
  width: 50%;
}
.hero2-text {
  width: 35vw;
}
.hero2-text__info {
  color: var(--abafe-5, #ABAFE5);
  line-height: 150%;
  margin: 10px 0 26px;
}
.hero2-img {
  width: 40vw;
}

.benefits2-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3vh;
}
.benefits2__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  align-self: stretch;
}
.benefits2__tab {
  border-radius: 25px;
  background: rgba(31, 37, 63, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: flex;
  padding: 40px 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex: 1 0 0;
  color: var(--f-7-f-6-ff, #F7F6FF);
  text-align: center;
  line-height: 140%;
  height: auto;
}
.benefits2__tab-opened {
  height: auto;
}
.benefits2__tab-opened img {
  width: 120px;
}

.logIn2__title, .booking2__title, .games2__title, .achivments2__title {
  text-align: center;
}
.logIn2 .swiper, .booking2 .swiper, .games2 .swiper, .achivments2 .swiper {
  margin: 5vh auto 0;
  width: 80vw;
}
.logIn2 .button, .booking2 .button, .games2 .button, .achivments2 .button {
  margin: 3vh auto 0;
}

.games2 .swiper, .achivments2 .swiper {
  width: 50vw;
}

@media screen and (max-width: 1400px) {
  .benefits2__tab {
    padding: 20px 10px;
  }
  .container2 {
    padding: 5vh 10vw;
  }
  .hero2-wrapper {
    padding-top: 15vh;
  }
}
@media screen and (max-width: 1200px) {
  .benefits2__tab {
    padding: 40px 30px;
    flex-basis: 25vw;
    min-height: 300px;
  }
  .games2 .swiper,
  .achivments2 .swiper {
    width: 80vw;
  }
}
@media screen and (max-width: 1080px) {
  .container2 {
    padding: 5vh 10vw;
  }
  .button {
    margin-top: 5vh !important;
  }
  .hero2-wrapper {
    padding-top: 12vh;
  }
  .benefits2-wrapper {
    gap: 2vh;
  }
  .logIn2 .swiper,
  .booking2 .swiper,
  .games2 .swiper,
  .achivments2 .swiper {
    margin-top: 2vh;
  }
}
@media screen and (max-width: 800px) {
  .benefits2__tab {
    min-height: auto;
  }
}
@media screen and (max-width: 650px) {
  .benefits2__tab {
    flex-basis: 50vw;
  }
  .hero2-wrapper {
    flex-direction: column-reverse;
    gap: 20px;
    padding-top: 15vh;
  }
  .hero2-text {
    width: 80vw;
    justify-content: center;
  }
  .hero2-text__info {
    text-align: center;
  }
  .hero2-text__title {
    text-align: center;
  }
  .hero2 img {
    width: 80vw;
  }
  .button {
    width: 100%;
    margin: auto;
  }
}
@media screen and (max-width: 550px) {
  .container2 {
    padding: 5vh 5vw;
  }
  .hero2-wrapper {
    padding-top: 15vh;
  }
}
@media screen and (min-width: 2000px) {
  .title {
    font-size: 64px !important;
  }
  .text {
    font-size: 36px !important;
  }
  .games2 .swiper, .achivments2 .swiper {
    width: 40vw;
  }
}
body {
  font-family: Gilroy;
  background: url(../img/violet.png) left -581px top -577px/contain repeat-y, url(../img/green.png) right -610px top 10px/contain repeat-y, rgb(31, 37, 47);
}
@media (max-width: 1200px) {
  body {
    background: url(../img/violet.png) left -480px top -320px/1000px repeat-y, url(../img/green.png) right -450px top 105px/1000px repeat-y, rgb(31, 37, 47);
  }
}
@media (max-width: 700px) {
  body {
    background: url(../img/violet.png) left -618px top -320px/1000px repeat-y, url(../img/green.png) right -506px top 105px/1000px repeat-y, rgb(31, 37, 47);
  }
}
@media (max-width: 520px) {
  body {
    background: url(../img/violet.png) left -704px top -320px/1000px repeat-y, url(../img/green.png) right -553px top 105px/1000px repeat-y, rgb(31, 37, 47);
  }
}
body._lock {
  overflow: hidden;
}

.container {
  padding: 0 10vw;
}

@media (max-width: 590px) {
  .button {
    width: 100%;
    margin: 0;
  }
}

.title {
  color: var(--f-7-f-6-ff, #F7F6FF);
  font-family: Gilroy;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .title {
    font-size: 40px;
  }
}
@media (max-width: 500px) {
  .title {
    font-size: 30px;
  }
}
@media (max-width: 350px) {
  .title {
    font-size: 24px;
  }
}
@media (min-width: 2000px) {
  .title {
    font-size: 64px;
  }
}

.text {
  font-family: Gilroy;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
}

.main-info__change.active {
  color: #f7e018;
  border-bottom: #f7e018 2px solid;
}

.description {
  color: var(--abafe-5, #ABAFE5);
  font-family: Gilroy;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 39px */
}
@media (min-width: 2000px) {
  .description {
    font-size: 36px;
  }
}

.modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
}
.modal__inner {
  position: relative;
  width: 50vw;
  padding: 50px;
  border-radius: 25px;
  background: rgba(31, 37, 63, 0.9);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1200px) {
  .modal__inner {
    width: 70vw;
  }
}
.modal__image {
  width: 20vw;
}
@media (max-width: 1200px) {
  .modal__image {
    width: 30vw;
  }
}
@media (max-width: 900px) {
  .modal__image {
    width: 45vw;
  }
}
@media (max-width: 700px) {
  .modal__image {
    width: 70vw;
  }
}
.modal__text {
  color: var(--f-7-f-6-ff, #F7F6FF);
  text-align: center;
  font-family: Gilroy;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
@media (max-width: 700px) {
  .modal__text {
    font-size: 24px;
  }
}
@media (max-width: 400px) {
  .modal__text {
    font-size: 20px;
  }
}
.modal__links {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 500px) {
  .modal__links {
    flex-direction: column;
  }
}
.modal__link img {
  width: 15vw;
  min-width: 150px;
}

.requisites {
  padding: 0 0 15vh;
}
.requisites__text {
  max-width: 40vw;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (max-width: 900px) {
  .requisites__text {
    max-width: 90vw;
    border-radius: 25px;
    background: rgba(31, 37, 63, 0.5);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    padding: 20px;
  }
}
.requisites__title {
  margin-bottom: 5px;
}
.requisites__name {
  color: var(--f-7-f-6-ff, #F7F6FF);
  font-family: Gilroy;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 350px) {
  .requisites__value {
    font-size: 20px;
  }
}
.requisites__img {
  display: flex;
  max-width: 30vw;
}
@media (max-width: 900px) {
  .requisites__img {
    max-width: 50vw;
  }
}

.requisites-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 900px) {
  .requisites-wrapper {
    flex-direction: column-reverse;
  }
}