/* hide scrollbar for Firefox */
html {
  scrollbar-width: none;
  -ms-overflow-style: none; /* для старих Edge/IE */
}

/* for WebKit-browsers (Chrome, Safari, Opera) */
html::-webkit-scrollbar {
  display: none;
}

a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:after, blockquote:before, q:after, q:before {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Regular */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/Montserrat-Regular.ttf") format("truetype");
}

/* Medium */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url("/fonts/Montserrat-Medium.ttf") format("truetype");
}

/* Bold */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/Montserrat-Bold.ttf") format("truetype");
}

/* ExtraBold */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 800;
  src: url("/fonts/Montserrat-ExtraBold.ttf") format("truetype");
}

/* Black */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 900;
  src: url("/fonts/Montserrat-Black.ttf") format("truetype");
}

/* FS Elliot Pro */
@font-face {
  font-family: "FS Elliot Pro";
  font-display: swap;
  font-weight: 400;
  src: url("/fonts/FSElliotPro-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "FS Elliot Pro";
  font-display: swap;
  font-weight: 700;
  src: url("/fonts/FSElliotPro-Bold.woff2") format("woff2")
}

@font-face {
  font-family: "FS Elliot Pro";
  font-display: swap;
  font-weight: 900;
  src: url("/fonts/FSElliotPro-Heavy.woff2") format("woff2")
}

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

a {
  display: block;

  cursor: pointer;
  background-color: transparent;
  text-decoration: none;

  user-drag: none;
  -webkit-user-drag: none;
}

.undraggable {
  user-drag: none;
  -webkit-user-drag: none;
}

[hidden] {
  display: none;
}

.unselectable {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  -o-user-select: none;
  user-select: none;
}

.text-selectable {
  -webkit-user-select: text!important;
  -khtml-user-select: text!important;
  -moz-user-select: text!important;
  -o-user-select: text!important;
  user-select: text!important;
}

::selection {
  background-color: rgba(76, 80, 79, 0.27);
  color: #ffffff;
}

html, body {
  overscroll-behavior: none;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.inner {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
  background-color: #000000;
}

.bg-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

.bg-left {
  width: 100%;
  height: 100%;
}

.bg, .bg-right {
  width: 100vw;
  position: absolute;
  bottom: 0;
}

.bg, .bg-left, .bg-right {
  pointer-events: none;
  display: block;
  transition: opacity 1.5s ease;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.05); }
}

@keyframes brightnessPulse {
  0%, 100% { filter: brightness(0.5); }
  50%      { filter: brightness(1.2); }
}

.bg {
  opacity: 1;
  transform-origin: center center;
  animation:
          kenBurns        4s ease-in-out infinite alternate,
          brightnessPulse 8s ease-in-out infinite;
}

.bg-left,
.bg-right {
  opacity: 0;
  transform-origin: center center;
  animation: kenBurns 4s ease-in-out infinite alternate;
}

.asteroid {
  pointer-events: none;
  position: absolute;
}

.asteroid-1 {
  top: 8vw;
  left: 2vw;
  width: 21.856vw;
}

.asteroid-2 {
  top: 6vw;
  right: 2vw;
  width: 17.681vw;
}

.asteroid {
  opacity: 0.85;
  filter:
          blur(0.5px)
          contrast(0.9)
          brightness(1.1)
          saturate(0.8)
          sepia(0.1);
  mix-blend-mode: luminosity;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

/* ------ */

.text-block {
  position: absolute;
  z-index: 11;

  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.text-block.top, .title-text {
  z-index: 13;
}

.text-block.bottom {
  top: 90%;
}

.main-title {
  color: #FFF;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: "Montserrat", sans-serif;
  font-size: 2.5vw;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.125vw;
  text-transform: uppercase;
}

.main-title span.stroke {
  background: #000000;
  padding: 0 .5vw;

  transition: .3s background ease-in-out;
}

.main-title span.stroke.left {
  background: #FF7512;
  transition: .3s background ease-in-out;
}

.main-title span.stroke.right {
  background: #777EFF;
  transition: .3s background ease-in-out;
}

.main-title span.red {
  color: #FF3337;
  font-weight: 800;
}

.title-text {
  width: 57vw;
  color: #E2E4FF;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: "Montserrat", sans-serif;
  font-size: 1.042vw;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.052vw;
  text-transform: uppercase;
}

.left-part {
  position: absolute;
  top: 0;
  left: 0;

  z-index: 11;

  width: 50%;
  height: 52.6vw;

  /*background: rgba(96, 239, 146, 0.14);*/
}

.right-part {
  position: absolute;
  top: 0;
  right: 0;

  z-index: 10;

  width: 50%;
  height: 52.6vw;

  /*background: rgba(96, 120, 239, 0.14);*/
}

.hand, .hand-active {
  cursor: pointer;

  position: absolute;
  left: 50%;
  top: 54.2%;
  transform: translate(-50%, -50%);
  width: 36vw;
}

.left-hand-active {
  opacity: 0;
  left: 47%;
}

.right-hand-active {
  opacity: 0;
  left: 52%;
}

.right-part .hand {
  left: 55%;
}

.hole {
  width: 100%;
}

.hole-wrapper {
  position: absolute;
  left: 65%;
  top: 60.5%;
  transform: translate(-50%, -50%);
  width: 25vw;
  pointer-events: none;
}

.right-part .hole-wrapper {
  left: 37%;
}

.hole-wrapper::after {
  opacity: 0;
  content: "";
  width: 60%;
  height: 60%;
  border-radius: 15.63vw;
  filter: blur(2.60vw);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 1s ease;
}

.hole-wrapper.active::after {
  opacity: 1;
}

.left-part .hole-wrapper::after {
  background-color: rgba(255, 194, 74, 0.4);
}

.right-part .hole-wrapper::after {
  background-color: rgba(39, 239, 202, 0.4);
}

.hover-zone {
  cursor: pointer;
  position: absolute;
  width: 38vw;
  height: 33vw;
  top: 55%;
  left: 25%;
  transform: translate(-50%, -50%);
  z-index: 19;
  pointer-events: auto;
  /*background: rgba(255,0,0,0.2);*/
}

.hover-zone.right {
  left: 75%;
}

.case {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: transform .3s ease-in-out;
}

.case:hover {
  transform: translate(-50%, -50%) scale(1.05);
  transition: transform .3s ease-in-out;
}

.case-1 {
  width: 27vw;
  left: 65%;
  top: 55.5%;
}

.case-2 {
  width: 25vw;
  left: 37%;
  top: 55.5%;
}

.openings-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  position: absolute;
  z-index: 11;
  top: -28.7vw;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 70vw;
  justify-items: center;
}

.openings-block {
  position: relative;
}

.openings-block.right {
  right: 1.2vw;
}

.rectangle-openings {
  position: relative;
}

.svg-bg {
  width: 14vw;
  height: 10vw;
}

.span-opening {
  position: absolute;
  top: -.2vw;
  left: 50%;
  transform: translate(-50%, 0);

  color: #FFF;
  text-align: center;
  font-kerning: none;
  font-family: "FS Elliot Pro", sans-serif;
  font-size: 1.631vw;
  font-style: normal;
  font-weight: 400;
  line-height: 70%;
  letter-spacing: -0.163vw;
  text-transform: uppercase;
}

.openings-name {
  position: relative;
  top: -2.1vw;
  color: #FFF;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  text-shadow: 0 0.208vw 0.417vw rgba(22, 22, 22, 0.40);
  font-family: "Montserrat", sans-serif;
  font-size: 1.667vw;
  font-style: normal;
  font-weight: 700;
  line-height: 70%;
  letter-spacing: -0.05vw;
  text-transform: uppercase;
}

.openings-img {
  width: 11.76vw;
  position: absolute;
  left: 50%;
  top: 71%;
  transform: translate(-50%, -50%);
}

.number-opening {
  position: relative;
  top: 1.4vw;

  color: #FFF;
  text-align: center;
  font-kerning: none;
  text-shadow: 0 0.154vw 2.797vw rgba(238, 163, 255, 0.76);
  font-family: "FS Elliot Pro", sans-serif;
  font-size: 3.333vw;
  font-style: normal;
  font-weight: 800;
  line-height: 70%;
  letter-spacing: -.1vw;
  text-transform: uppercase;
}

.blur-opening {
  pointer-events: none;

  background: #24E4AE;
  filter: blur(2.14vw);
  width: 5.51vw;
  height: 5.51vw;
  z-index: -1;

  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.weapon-img {
  width: 100%;
}

.weapon {
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: all 0.6s ease;

  position: absolute;
  width: 10vw;

  cursor: pointer;
  z-index: 9;
}

/* === */

.weapon-1, .weapon-2, .weapon-3, .weapon-4 {
  width: 9vw;
  left: 50%;
  top: 60%;
}

.weapon-5, .weapon-6, .weapon-7, .weapon-8 {
  width: 9vw;
  left: 50%;
  top: 60%;
}

/* === */

.arrow-svg {
  width: 1.2vw;
  height: 1.2vw;
  position: absolute;
  right: 12%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 3;
}

.btn-wrap {
  opacity: 0;
  pointer-events: none;

  cursor: pointer;
  position: absolute;
  left: 0;
  background: transparent;
  border: unset;
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: center;
  top: 39vw;
  width: 15vw;
  height: 3.7vw;

  z-index: 11;
}

.btn-main-left {
  left: 15vw;
}

.btn-main-right {
  left: 65vw;
}

.btn {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;

  transition: transform 0.3s ease, filter 0.3s ease;
}

.btn-main-left .btn {
  filter: drop-shadow(0 0 0.70vw rgba(255, 106, 51, 0.75));
}

.btn-main-right .btn {
  filter: drop-shadow(0 0 0.70vw rgba(13, 51, 180, 0.75));
}

.btn-text {
  pointer-events: none;

  position: absolute;
  left: 41%;
  top: 49%;
  transform: translate(-50%, -50%);

  color: #FFF;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2vw;
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  letter-spacing: 0.017vw;
  text-transform: uppercase;

  white-space: nowrap;
}

.btn:hover {
  transform: scale(1.015);
  animation: none;
}

.btn-main-left .btn:hover  {
  filter: drop-shadow(0 0 0.70vw rgba(255, 106, 51, 0.75));
}

.btn-main-right .btn:hover  {
  filter: drop-shadow(0 0 0.70vw rgba(13, 51, 180, 0.75));
}

.btn-main-left .btn {
  animation: glowLeft .7s infinite alternate;
  filter: drop-shadow(0 0 1.53vw rgba(255, 106, 51, 1));
}

.btn-main-right .btn {
  animation: glowRight .7s infinite alternate;
  filter: drop-shadow(0 0 1.53vw rgba(13, 51, 180, 1));
}

.btn-wrap .btn:hover  {
  animation-play-state: paused;
}

@keyframes glowLeft {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0.20vw rgba(255, 106, 51, 0.5));
  }
  100% {
    transform: scale(1.015);
    filter: drop-shadow(0 0 0.70vw rgba(255, 106, 51, 1));
  }
}

@keyframes glowRight {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0.20vw rgba(13, 51, 180, 0.5));
  }
  100% {
    transform: scale(1.015);
    filter: drop-shadow(0 0 0.70vw #FF1AE1);
  }
}

.mb {
  display: none;
}

@media (max-width: 767px) {

  .hover-zone-wrap, .left-hand-active, .right-hand-active {
    display: none;
  }

  .btn-wrap {
    width: 52.5vw;
    height: 12.95vw;

    left: 50%;
    transform: translate(-50%, 0);

    opacity: 1;
    pointer-events: auto;
  }

  .btn-main-left {
    top: 130vw;
  }

  .btn-main-right {
    top: 245vw;
  }

  .arrow-svg {
    width: 4.2vw;
    height: 4.2vw;
  }

  .btn-main-left .btn {
    filter: drop-shadow(0 0 2.45vw rgba(255, 106, 51, 0.75));
  }

  .btn-main-right .btn {
    filter: drop-shadow(0 0 2.45vw rgba(13, 51, 180, 0.75));
  }

  .btn-text {
    font-size: 4.2vw;
    letter-spacing: 0.0595vw;
  }

  .btn-main-left .btn:hover  {
    filter: drop-shadow(0 0 2.45vw rgba(255, 106, 51, 0.75));
  }

  .btn-main-right .btn:hover  {
    filter: drop-shadow(0 0 2.45vw rgba(13, 51, 180, 0.75));
  }

  .btn-main-left .btn {
    filter: drop-shadow(0 0 5.355vw rgba(255, 106, 51, 1));
  }

  .btn-main-right .btn {
    filter: drop-shadow(0 0 5.355vw rgba(13, 51, 180, 1));
  }

  @keyframes glowLeft {
    0% {
      transform: scale(1);
      filter: drop-shadow(0 0 0.70vw rgba(255, 106, 51, 0.5));
    }
    100% {
      transform: scale(1.015);
      filter: drop-shadow(0 0 2.45vw rgba(255, 106, 51, 1));
    }
  }

  @keyframes glowRight {
    0% {
      transform: scale(1);
      filter: drop-shadow(0 0 0.70vw rgba(13, 51, 180, 0.5));
    }
    100% {
      transform: scale(1.015);
      filter: drop-shadow(0 0 2.45vw #FF1AE1);
    }
  }

  .text-block.bottom {
    width: unset;
    top: 106vw;
  }

  .text-block.bottom .title-text {
    width: 98vw;
    font-size: 5.2vw;
    line-height: 100%;
    letter-spacing: -0.32vw;

  }

  .openings-block-left {
    top: -14vw;
    left: 18vw;
  }

  .openings-block-right {
    top: 72vw;
    left: -20vw;
  }

  .left-hand {
    top: 58% !important;
  }

  /* === */

  .case-1 {
    width: 83vw;
    left: 52%;
    top: 72.5%;
  }

  .case-2 {
    width: 83vw;
    left: 50%;
    top: 43.5%;
  }

  /* === */

  .weapon-1, .weapon-2, .weapon-3, .weapon-4 {
    width: 20vw;
    left: 50%;
    top: 75%;
  }

  .weapon-5, .weapon-6, .weapon-7, .weapon-8 {
    width: 20vw;
    left: 50%;
    top: 45%;
  }

  .weapon {
    display: none;
  }

  /* === */

  .hole-wrapper {
    left: 55%;
    top: 77.5%;
    width: 121vw;
  }

  .right-part .hole-wrapper {
    left: 50%;
    top: 45%;
  }

  .hover-zone {
    width: 100vw;
    height: 106vw;
    top: 64.7%;
    left: 50%;
  }

  .right-part .hover-zone {
    top: 41%;
    height: 95vw;
  }

  .hand {
    left: 50%;
    top: 52%;
    width: 85vw;
  }

  .right-part .hand {
    left: 50%;
    top: 33%;
  }

  .openings-block {
    scale: 2.3;
  }

  .openings-wrap {
    grid-template-columns: auto;
    top: -14vw;
    gap: 310%;
  }

  .title-text {
    font-size: 4.21vw;
    line-height: 5.95vw;
    letter-spacing: 0.08vw;

    position: relative;
    top: 182vw;
  }

  .hole-wrapper::after {
    filter: blur(13.60vw);
  }

  .text-block {
    top: 29vw;
    width: 100%;
  }

  .main-title span.stroke {
    font-size: 8vw;
    line-height: 170%;
    letter-spacing: -0.083vw;
  }

  .main-title span.red {
    font-size: 4.8vw;
    letter-spacing: -0.052vw;
  }

  .left-part {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 151vw;
    /*background: rgba(150, 206, 151, 0.42);*/
  }

  .right-part {
    position: absolute;
    top: 151vw;
    right: 0;

    width: 100%;
    height: 151vw;
    /*background: rgba(206, 150, 150, 0.42);*/
  }

  .bg-left {
    opacity: 1;
    content: url(../images/bg-mobile.avif);
  }
}

/* ------ */





















/* general */

.main {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: url("/images/bg.avif") no-repeat top center;
  background-color: #000;
  background-size: 100% auto;
}
.content {
  padding-bottom: 47px;
  position: relative;
  width: 100%;
}
.upper {
  text-transform: uppercase;
}

/* terms */
.terms {
  width: 100%;
  max-width: 74vw;
  padding-top: 150px;
  margin: 0 auto;
  color: #fff;
  font-family: "FS Elliot Pro", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
}
.terms h1 {
  color: #fff;
  text-align: center;
  font-family: "FS Elliot Pro", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.terms h1:after {
  content: "";
  position: relative;
  width: 12.813vw;
  height: 1px;
  display: block;
  background: linear-gradient(90deg, #87493400 0%, #ed805b 50.2%, #87493400 100%);
  border: none;
  margin: 20px auto 60px;
}
.terms h2 {
  margin: 40px 0 20px;
  color: #c97c6b;
  font-family: "FS Elliot Pro", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
}
.terms h3 {
  margin: 30px 0 10px;
  color: #fff;
  font-family: "FS Elliot Pro", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}
.terms:selection {
  background-color: #5baef1;
}
.terms :is(li, p) {
  margin: 5px 0;
}
.terms strong {
  font-weight: 600;
}
.terms ol {
  list-style-type: decimal;
  padding-left: 4vw;
}
.terms ul {
  list-style-type: disc;
  padding-left: 4vw;
}
/* /terms */

/* header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 2vw 8vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header-logo {
  display: inline-grid;
  align-self: center;
}
.header-logo-img {
  width: 12vw;
}
.btn-login, 
.btn-login:visited {
  max-width: 170px;
  min-width: 80px;
  height: 30px;
  padding: 0 20px;
  background: #a249f5;
  border-radius: 16px;
  color: #fff;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 30px;
  cursor: pointer;
  text-transform: uppercase;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0.09vw 0.70vw #a249f5);
  display: inline-block;
  margin: 0 auto;
}
.btn-login:hover, 
.btn-login:visited:hover {
  transform: scale(1.05);
  filter: drop-shadow(0.63vw 0 1.53vw #d649f5);
}
.btn-transparent,
.btn-transparent:visited {
  background: transparent;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.btn-transparent:hover,
.btn-transparent:visited:hover {
  text-decoration: underline;
}
/* /header */

/* footer */
.eighteen {
  width: 1.6vw;
  height: 1.6vw;
  margin: -.5vw 0 0 auto;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid #78758c;
  text-align: center !important;
  color: #78758c;
  font-size: .7vw;
  line-height: 1.6vw;
}

.footer {
  width: 100%;
  margin: auto auto 0;
  background: #000;
  font-family: "FS Elliot Pro", sans-serif;
  font-size: .75vw;
  line-height: 1.7;
}
.footer-container {
  padding: 3.13vw 8vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  gap: 1.04vw;
}
.footer-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 1.04vw;
}
.footer-bottom {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
  gap: 1.04vw;
}
.footer-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 1.04vw;
}
.footer-bottom {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
  gap: 1.04vw;
}
.footer-left {
  padding-left: 5.21vw;
  padding-right: 1.56vw;
  position: relative;
  text-align: left;
}
.footer-right {
  position: relative;
  text-align: right;
}
.footer-right div {
  text-align: right;
}
.footer-copy {
  display: block;
  color: #fff;
}
.footer-logo {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 3.41vw;
  height: 3.15vw;
  background: url("/images/logo-s.png") no-repeat center center;
  background-size: auto 100%;
  opacity: .5;
  filter: grayscale(1);
}
.footer-about {
  color: #78758c;
  text-align: left;
}
.footer-info {
  color: #4d4a64;
  text-align: left;
}
.footer-info a {
  display: inline;
  color: #78758c;
}
.footer-rules {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.footer-rules.mb {
  display: none;
}
.footer-rules.dk {
  display: flex;
  gap: 1vw;
}
.footer-rules-box {
  display: flex;
  position: relative;
  gap: 1.4vw;
}
.footer-rules a,
.footer-rules a:visited {
  text-transform: uppercase;
  color: #FF3337;
  font-size: .6vw;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all .5s ease-in;
}
.footer-rules a:hover {
  opacity: 0.7;
}
/* /footer */

/* lang */
.lang-selector {
  position: relative;
  display: inline-block;
  margin-left: auto;
}
.lang-button {
  display: flex;
  align-items: center;
  gap: 0.42vw;
  border-radius: 0.42vw;
  cursor: pointer;
}
.chevron {
  width: .6vw;
  height: .6vw;
  transition: all .5s ease-in;
}
.lang-selector.open .chevron {
  transform: rotate(180deg);
}
.lang-dropdown {
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: 0.21vw;
  border-radius: 0.42vw;
  display: none;
  z-index: 10;
}
.lang-selector.open .lang-dropdown {
  display: block;
}
.lang-button-block {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.42vw;
}
.lang-option, .lang-button {
  border-radius: 0.42vw;
  cursor: pointer;
}
.lang-option:before, .lang-button:before {
  width: 2vw;
  display: block;
  height: auto;
}
.lang-flag-en:before {
  content: url("/images/gb.svg");
}
.lang-flag-pl:before {
  content: url("/images/pl.svg");
}
.lang-flag-tr:before {
  content: url("/images/tr.svg");
}
/* /lang */

/* COOKIES */
.cookies-policy-banner {
  background: #00000080 center -3.96vw;
  bottom: 0;
  height: auto;
  overflow: hidden;
  position: fixed;
  width: 100%;
  z-index: 200;
  color: #fff;
  font-weight: 400;
}
.cookies-policy-banner__inner-wrapper {
  align-items: center;
  display: flex;
  height: 100%;
  margin: 0 auto;
  max-width: 59.54vw;
  padding: 0 0.78vw 0.52vw;
}
.cookies-policy-banner__text-block {
  display: flex;
  max-width: 49.29vw;
  width: 100%;
}
.cookies-policy-banner__text-block .icon-wrap {
  max-height: 5.21vw;
}
.cookies-policy-banner__text-block .text {
  align-content: baseline;
  display: flex;
  flex-wrap: wrap;
  margin-left: 1.56vw;
  max-width: 58.85vw;
}
.cookies-policy-banner__text-block .text .title {
  font-size: 1.15vw;
  font-weight: 700;
  margin-top: 0.78vw;
}
.cookies-policy-banner__text-block .text p {
  color: #ccabd8;
  text-align: left;
  line-height: 1.3vw;
  font-size: 0.78vw;
  margin: 0.26vw 0;
  font-weight: 400;
}
.cookies-policy-banner__text-block .text p a {
  color: #a560ff;
  display: inline;
  margin-left: .1vw;
}
.cookies-policy-banner__button-block {
  align-items: center;
  display: flex;
  flex-grow: 1;
  height: 100%;
  justify-content: center;
}
.cookies-policy-banner__button-block .accept-cookie-button {
  align-items: center;
  background-color: #5c49d0;
  -webkit-clip-path: polygon(0.63vw 0, calc(100% - 0.63vw) 0, 100% 50%, calc(100% - 0.63vw) 100%, 0.63vw 100%, 0 50%);
  clip-path: polygon(0.63vw 0, calc(100% - 0.63vw) 0, 100% 50%, calc(100% - 0.63vw) 100%, 0.63vw 100%, 0 50%);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.83vw;
  font-weight: 700;
  height: 2.92vw;
  justify-content: center;
  min-width: 7.81vw;
  padding: 0 0.78vw;
  text-transform: uppercase;
  transition: all .5s ease-in;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: unset;
  border: none;
  position: relative;
}
.button__content {
  align-items: center;
  display: flex;
  flex-direction: row;
}
.img-cookies {
  width: 5.76vw;
  height: 6.77vw;
}
.cookies-policy-banner__button-block .accept-cookie-button .check-icon {
  background-color: #fff;
  display: inline-block;
  height: 0.68vw;
  margin-left: 0.52vw;
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M20 4.095 17.986 2 7.554 12.848 2.014 7.05 0 9.145 7.554 17z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M20 4.095 17.986 2 7.554 12.848 2.014 7.05 0 9.145 7.554 17z'/%3E%3C/svg%3E");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  width: 0.94vw;
}
/* COOKIES */


.mb {
  display: none;
}

@media (max-width: 767px) {
  .dk {
    display: none;
  }
  .mb {
    display: block;
  }
  .header {
    padding: 4vw 8vw 0;
  }
  .header .btn-login {
    height: 8vw;
    border-radius: 4vw;
    font-size: 3.5vw;
    line-height: 8vw;
  }
  .header-logo-img {
    width: 10vw;
  }
  
  .cookies-policy-banner {
    height: auto;
  }
  .cookies-policy-banner__inner-wrapper {
    flex-direction: column;
    padding: 10px 20px;
    max-width: 400px;
  }
  .cookies-policy-banner__text-block .icon-wrap {
    display: none;
  }
  .cookies-policy-banner__text-block {
    max-width: 300px;
    justify-content: center;
  }
  .cookies-policy-banner__text-block .text .title {
    margin-top: 5px;
    font-size: 18px;
    text-align: center;
    width: 100%;
  }
  .cookies-policy-banner__text-block .text {
    max-width: 280px;
    margin-left: 0;
  }
  .cookies-policy-banner__text-block .text p {
    text-align: center;
    font-size: 13px;
    line-height: 19px;
    margin: 5px 0 2px;
  }
  .cookies-policy-banner__text-block .text p a {
    margin-left: 1px;
  }
  .cookies-policy-banner__button-block .accept-cookie-button {
    -webkit-clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 8px 100%, 0 50%);
    clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 8px 100%, 0 50%);
    font-size: 12px;
    height: 34px;
    min-width: 150px;
    width: unset;
    padding: 0 8px;
  }
  .cookies-policy-banner__button-block .accept-cookie-button {
    margin: 10px 0;
  }
  .cookies-policy-banner__button-block .accept-cookie-button .check-icon {
    height: 8px;
    margin-left: 5px;
    width: 12px;
  }

  .terms {
    padding: 150px 0 0;
  }
  .terms h1 {
    font-size: 5vw;
  }
  
  .footer-top {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 3vw;
  }
  .footer-bottom {
    display: none;
  }
  .footer-left, .footer-right, .footer-right div {
    text-align: center;
  }
  .footer-logo {
    width: 10vw;
    height: 10vw;
    position: relative;
    display: inline-block;
  }
  .footer-copy {
    font-size: 3.2vw;
  }
  .footer-rules.mb {
    margin: 3vw 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: .4px;
  }
  .footer-rules.mb a {
    display: inline;
    margin: 0 auto;
    font-size: 3vw;
  }
  .footer-rules.mb .eighteen {
    margin: 0 auto 3vw;
    width: 8vw;
    height: 8vw;
    font-size: 3.4vw;
    line-height: 8vw;
  }
  .footer-about {
    text-align: center;
    padding-top: .6vw;
  }
  .footer-info {
    text-align: center;
  }
  .footer-rules.dk {
    display: none;
  }

  .lang-selector {
    margin: 3vw auto;
  }
  .lang-button {
    gap: 8.064px;
    border-radius: 8.064px;
  }
  .lang-button-block {
    gap: 8.064px;
  }
  .lang-option:before, .lang-button:before {
    width: 4.5vw;
  }
  .lang-dropdown {
    margin-bottom: 4.032px;
    border-radius: 8.064px;
  }
  .lang-option {
    border-radius: 8.064px;
  }
  .chevron {
    width: 1.5vw;
    height: 1.5vw;
    transition: all .5s ease-in;
  }
}
/* /general */
