/* 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;
}

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

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

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/Montserrat-SemiBold.ttf') format('truetype');
}

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

@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/Montserrat-BoldItalic.ttf') format('truetype');
}

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

@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 800;
  src: url('../fonts/Montserrat-ExtraBoldItalic.ttf') format('truetype');
}

@font-face {
  font-family: 'FS Elliot Pro';
  font-display: swap;
  font-weight: 400;
  src: url('fonts/FSElliotPro-Regular.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(146, 67, 198, 0.7);
  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 {
  pointer-events: none;
  display: block;

  width: 100%;
  height: 100%;
}

header.header {
  display: grid;
  justify-content: center;

  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  padding: 2.4vw 3vw 0;
  z-index: 16;
}

.header-logo {
  display: inline-block;
}

.header-logo-img {
  width: 4.38vw;
}

@media (max-width: 767px) {

  header.header {
    padding: 6vw 1vw 0;
    display: grid;
    justify-content: center;
  }

  .header-logo-img {
    width: 139px;
    height: 37px;
  }

}

/* ------ */

.text-block {
  width: 35vw;

  position: absolute;
  z-index: 11;

  top: 6%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.4);

  opacity: 0;
  animation: slideFade 0.8s ease-out forwards;
}

@keyframes slideFade {
  0% {
    top: 6%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.4);
  }
  100% {
    top: 8%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.main-title {
  margin: 0 auto;
  width: 100%;
  max-width: 35vw;

  color: #FFF;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 2.213vw;
  font-style: italic;
  font-weight: 800;
  line-height: 110%;
  text-transform: uppercase;
}

.title-text {
  padding-top: 1vw;
  margin: 0 auto;
  width: 100%;
  max-width: 21.5vw;

  color: #FFF;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 500;
  line-height: 133%;
}

.title-text span.bold {
  font-weight: 700;
}

.btn-wrap {
  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: 13vw;
  width: 15vw;
  height: 3.7vw;

  z-index: 4;
}

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

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

  filter: drop-shadow(0 0.09vw 0.70vw rgba(255, 106, 51, 0.75));
}

.btn-text {
  pointer-events: none;

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

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

  white-space: nowrap;
}

.btn:hover {
  transform: scale(1.015);
  filter: drop-shadow(0vw 0vw .8vw rgba(255, 106, 51, 0.75));
  animation: none;
}

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

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

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

.btn-wrap.log-in {
  left: 3%;
}

.btn-wrap.sign-up {
  left: 52%;
}

.weapon {
  --sun-x-1: 90vw;
  --sun-x-2: 20vw;
  --sun-y: 40vw;
  --orbit-range: 0.02turn;

  cursor: pointer;
  position: absolute;
  filter: brightness(.5);

  animation: orbit1 8s infinite linear;
  transition: .3s all ease-in-out;

  transform-style: preserve-3d;
  will-change: filter, transform;
}

.weapon-4, .weapon-5, .weapon-6 {
  animation: orbit2 8s infinite linear;
}

@keyframes orbit1 {
  0% {
    transform: rotate(0);
    animation-timing-function: ease-out;
  }
  40.625% {
    transform: rotate(calc(-1.3 * var(--orbit-range)));
    animation-timing-function: ease-in-out;
  }
  90.625% {
    transform: rotate(calc( 0.3 * var(--orbit-range)));
    animation-timing-function: ease-in;
  }
  100% {
    transform: rotate(0);
  }
}

@keyframes orbit2 {
  0% {
    transform: rotate(0);
    animation-timing-function: ease-out;
  }
  25% {
    transform: rotate(calc(-1 * var(--orbit-range)));
    animation-timing-function: ease-in-out;
  }
  75% {
    transform: rotate(calc(1 * var(--orbit-range)));
    animation-timing-function: ease-in;
  }
  100% {
    transform: rotate(0);
  }
}

.weapon:hover {
  transform: scale(1.05);
  transition: .3s all ease-in-out;
  filter: brightness(1) drop-shadow(0 0 .3vw rgba(255, 255, 255, 0.7));
}

.weapon-1 {
  width: 4.5vw;
  top: 4vw;
  left: 14.8vw;
  transform-origin:
          calc(var(--sun-x-1) - 14.8vw)
          calc(var(--sun-y) - 4vw);
}

.weapon-2 {
  width: 9.5vw;
  top: 17vw;
  left: 6.5vw;
  transform-origin:
          calc(var(--sun-x-1) - 6.5vw)
          calc(var(--sun-y) - 17vw);
}

.weapon-3 {
  width: 2.5vw;
  top: 21vw;
  left: 23vw;
  transform-origin:
          calc(var(--sun-x-1) - 23vw)
          calc(var(--sun-y) - 21vw);
}

.weapon-4 {
  filter: brightness(.4);
  width: 3vw;
  top: 20vw;
  left: 75.5vw;
  transform-origin:
          calc(var(--sun-x-2) - 75.5vw)
          calc(var(--sun-y) - 20vw);
}

.weapon-5 {
  width: 5.3vw;
  top: 10vw;
  left: 83.5vw;
  transform-origin:
          calc(var(--sun-x-2) - 83.5vw)
          calc(var(--sun-y) - 10vw);
}

.weapon-6 {
  filter: brightness(.3);
  width: 5.3vw;
  top: 25vw;
  left: 86.2vw;
  transform-origin:
          calc(var(--sun-x-2) - 86.2vw)
          calc(var(--sun-y) - 25vw);
}

.mission-section {
  position: absolute;
  width: 100%;
  height: 30.208vw;
  top: 29vw;
  left: 0;
  /*background: rgba(163, 34, 249, 0.1);*/

  z-index: 3;
}

.mission-cell {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 14.844vw;
  height: 22.656vw;
  border-radius: 3.125vw;
  overflow: hidden;
  cursor: pointer;

  transition: all 0.3s ease-in-out;
  will-change: transform, filter;
}

.mission-cell.active {
  width: 19.792vw;
  height: 30.208vw;
  border: 0.052vw solid #F7DFFA;
  /*box-shadow: 0 0.156vw 2.083vw rgba(215, 34, 249, 0.40);*/
  filter: drop-shadow(0 0 1vw rgba(215, 34, 249, 0.40));
}

.mission {
  border-radius: 3.125vw;
  position: absolute;
  width: 100%;
  height: 100%;
}

.mission-blur {
  pointer-events: none;
  opacity: 0;
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(0deg, #1B1624 0%, rgba(27,22,36,0) 100%);
  transition: opacity 0.3s ease-in-out;
}

.mission-cell.active .mission-blur {
  pointer-events: auto;
  opacity: 1;
}

.mission-text {
  pointer-events: none;
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 90%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease-in-out;
}

.mission-cell.active .mission-text {
  pointer-events: auto;
  opacity: 1;
}

.mission-title {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.667vw;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
  background: linear-gradient(180deg, #FFF 17.5%, #B2A7F9 91.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mission-details {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.042vw;
  font-weight: 500;
  line-height: 110%;
  background: linear-gradient(180deg, #FFF 17.5%, #B2A7F9 91.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gems-section {
  position: absolute;
  width: 100%;
  top: 65vw;
  left: 0;
  /*background: rgba(34, 249, 102, 0.1);*/

  z-index: 3;
}

.gem-line {
  pointer-events: none;

  width: 20.717vw;
  height: 0.042vw;
  background: rgba(65, 63, 100, 0.70);

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

.gem-text-block {
  margin: 2vw 0 6vw;
  display: grid;
  grid-template-columns: repeat(3, auto);
  align-items: center;
  justify-items: center;
  justify-content: center;
  gap: 2vw;
}

.gem-triangle, .portal-triangle {
  width: 1.624vw;
  height: 1.094vw;
  filter: drop-shadow(0 0 2.083vw #6F52F0) drop-shadow(0 0 2.083vw #6F52F0);
}

.gem-title, .portal-title, .portal-cell-block-title {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 2.083vw;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;

  background: linear-gradient(180deg, #FFF 17.5%, #B2A7F9 91.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.portal-cell-block-title {
  font-size: 2.5vw;
}

.gem-content-block {
  display: grid;
  grid-template-columns: repeat(5, auto);
  gap: 3vw;
  justify-items: center;
  align-items: center;
  justify-content: center;
}

.gem-cell {
  cursor: pointer;
  width: 20.911vw;
  height: 20vw;
  position: relative;

  /*background: rgba(34, 249, 102, 0.1);*/
}

.gem {
  width: 20.911vw;
  height: 10.717vw;
}

.gem-arrow {
  position: relative;
  top: -4.9vw;
  width: 5.729vw;
}

.gem-pad, .gem-weapon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.gem-weapon {
  transition: transform 0.3s ease;
  will-change: transform;
}

.gem-pad-1 {
  top: 12vw;
  width: 11.771vw;
}

.gem-pad-2 {
  top: 9.5vw;
  width: 11.771vw;
}

.gem-pad-3 {
  top: 9vw;
  width: 10.573vw;
}

.gem-weapon-1 {
  filter:
          drop-shadow(0vw -0.104vw 0.661vw rgba(101, 180, 255, 0.60))
          drop-shadow(0vw 0vw 2.385vw #5157C5);
  top: 7vw;
  width: 16.058vw;
}

.gem-weapon-2 {
  transform: translateX(-50%);
  filter:
          drop-shadow(0vw -0.313vw 0.208vw rgba(236, 113, 255, 0.43))
          drop-shadow(0vw -0.052vw 1.823vw rgba(153, 59, 199, 0.66));
  top: 7vw;
  width: 14.13vw;
}

.gem-weapon-2.two {
  top: 11.2vw;
  left: 20%;
  width: 12vw;
}
.gem-weapon-2.three {
  top: 11.2vw;
  left: 77%;
  width: 12vw;
}






.gem-weapon-3 {
  transform: translateX(-50%);
  filter:
          drop-shadow(0vw -0.313vw 0.391vw rgba(232, 123, 33, 0.70))
          drop-shadow(0vw 0.313vw 2.047vw rgba(255, 132, 10, 0.82));
  top: 7vw;
  left: 9%;
  width: 12vw;
}

.gem-weapon-3.two {
  top: 7vw;
  left: 35%;
  width: 12vw;
}
.gem-weapon-3.three {
  top: 7vw;
  left: 60%;
  width: 12vw;
}
.gem-weapon-3.four {
  top: 7vw;
  left: 85%;
  width: 12vw;
}
.gem-weapon-3.five {
  top: 11vw;
  left: 30%;
  width: 12vw;
}
.gem-weapon-3.six {
  top: 11vw;
  left: 65%;
  width: 12vw;
}
.gem-weapon-3.seven {
  top: 8vw;
  left: 48%;
  width: 20vw;
}

.gem,
.gem-weapon,
.gem-arrow {
  opacity: 0;
}

@keyframes fadeInGem {
  from { opacity: 0; transform: translateY(1vw); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInPad {
  from { opacity: 0; transform: translateX(-50%) translateY(1vw); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes fadeInWeapon1 {
  from { opacity: 0; transform: translateX(-50%) translateY(1vw); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes fadeInWeapon2 {
  from { opacity: 0; transform: translateX(-50%) translateY(1vw); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes fadeInWeapon3 {
  from { opacity: 0; transform: translateX(-50%) translateY(1vw); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes fadeInArrow {
  from { opacity: 0; transform: translateX(-1vw); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes float1 {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(-1vw); }
}
@keyframes float2up {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(1vw); }
}
@keyframes float2down {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(.5vw); }
}
@keyframes float3a {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(-.6vw); }
}
@keyframes float3b {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(.2vw); }
}
@keyframes float3c {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(.5vw); }
}
@keyframes float3d {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(.1vw); }
}
@keyframes float3e {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(-.2vw); }
}
@keyframes float3f {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(.2vw); }
}

/* ===== ПОСЛІДОВНІСТЬ FADE-IN ===== */
/* Cell 1 */
.gems-section.animate .gem-cell-1 .gem-1            { animation: fadeInGem       0.5s ease    forwards 0s; }
.gems-section.animate .gem-cell-1 .gem-weapon-1.one { animation: fadeInWeapon1   0.5s ease    forwards 0.2s; }
.gems-section.animate .gem-arrow-1                  { animation: fadeInArrow     0.5s ease    forwards 0.4s; }

/* Cell 2 */
.gems-section.animate .gem-cell-2 .gem-2                           { animation: fadeInGem       0.5s ease    forwards 0.6s; }
.gems-section.animate .gem-cell-2 .gem-weapon-2.one                { animation: fadeInWeapon2   0.5s ease    forwards 0.8s; }
.gems-section.animate .gem-cell-2 .gem-weapon-2.two                { animation: fadeInWeapon2   0.5s ease    forwards 1.2s; }
.gems-section.animate .gem-cell-2 .gem-weapon-2.three              { animation: fadeInWeapon2   0.5s ease    forwards 1.6s; }
.gems-section.animate .gem-arrow-2                                 { animation: fadeInArrow     0.5s ease    forwards 1.8s; }

/* Cell 3 */
.gems-section.animate .gem-cell-3 .gem-3                        { animation: fadeInGem       0.5s ease    forwards 2.0s; }
.gems-section.animate .gem-cell-3 .gem-weapon-3.one             { animation: fadeInWeapon3   0.5s ease    forwards 2.2s; }
.gems-section.animate .gem-cell-3 .gem-weapon-3.two             { animation: fadeInWeapon3   0.5s ease    forwards 2.6s; }
.gems-section.animate .gem-cell-3 .gem-weapon-3.three           { animation: fadeInWeapon3   0.5s ease    forwards 3.0s; }
.gems-section.animate .gem-cell-3 .gem-weapon-3.four            { animation: fadeInWeapon3   0.5s ease    forwards 3.4s; }
.gems-section.animate .gem-cell-3 .gem-weapon-3.five            { animation: fadeInWeapon3   0.5s ease    forwards 3.8s; }
.gems-section.animate .gem-cell-3 .gem-weapon-3.six             { animation: fadeInWeapon3   0.5s ease    forwards 4.2s; }
.gems-section.animate .gem-cell-3 .gem-weapon-3.seven           { animation: fadeInWeapon3   0.5s ease    forwards 4.6s; }

/* ===== HOVER: LEVITATION ===== */
/* Cell 1 */
.gems-section.animate .gem-cell-1:hover .gem-weapon-1.one { animation: fadeInWeapon1 0.5s ease forwards 0.2s, float1 2s ease-in-out infinite 0s; }

/* Cell 2 */
.gems-section.animate .gem-cell-2:hover .gem-weapon-2.one   { animation: fadeInWeapon2 0.5s ease forwards 0.8s, float2down 2s ease-in-out infinite 0s; }
.gems-section.animate .gem-cell-2:hover .gem-weapon-2.two   { animation: fadeInWeapon2 0.5s ease forwards 1.2s, float2up   2s ease-in-out infinite 0s; }
.gems-section.animate .gem-cell-2:hover .gem-weapon-2.three { animation: fadeInWeapon2 0.5s ease forwards 1.6s, float2up   2s ease-in-out infinite 0s; }

/* Cell 3 */
.gems-section.animate .gem-cell-3:hover .gem-weapon-3.one   { animation: fadeInWeapon3 0.5s ease forwards 2.2s, float3a 2s ease-in-out infinite 0s; }
.gems-section.animate .gem-cell-3:hover .gem-weapon-3.two   { animation: fadeInWeapon3 0.5s ease forwards 2.6s, float3b 2s ease-in-out infinite 0s; }
.gems-section.animate .gem-cell-3:hover .gem-weapon-3.three { animation: fadeInWeapon3 0.5s ease forwards 3.0s, float3c 2s ease-in-out infinite 0s; }
.gems-section.animate .gem-cell-3:hover .gem-weapon-3.four  { animation: fadeInWeapon3 0.5s ease forwards 3.4s, float3d 2s ease-in-out infinite 0s; }
.gems-section.animate .gem-cell-3:hover .gem-weapon-3.five  { animation: fadeInWeapon3 0.5s ease forwards 3.8s, float3e 2s ease-in-out infinite 0s; }
.gems-section.animate .gem-cell-3:hover .gem-weapon-3.six   { animation: fadeInWeapon3 0.5s ease forwards 4.2s, float3f 2s ease-in-out infinite 0s; }
.gems-section.animate .gem-cell-3:hover .gem-weapon-3.seven { animation: fadeInWeapon3 0.5s ease forwards 4.6s, float3f 2s ease-in-out infinite 0s; }

.portal-section {
  position: absolute;
  width: 100%;
  top: 102vw;
  left: 0;
  /*background: rgba(34, 249, 102, 0.1);*/

  z-index: 3;
}

.portal-text-block, .portal-cell-block {
  padding: 2vw;
  margin-bottom: 3vw;
  display: inline-grid;
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);

  grid-template-columns: repeat(3, auto);
  align-items: center;
  justify-items: center;
  justify-content: center;
  gap: 2vw;

  border-radius: 1.667vw;
  border: 0.052vw solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.02);
}

.portal-cell-block {
  display: block;
  margin-bottom: 0;
  width: 18vw;
  padding: 1vw;
}

.portal-content-block {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10vw;
  justify-items: center;
  align-items: center;
  justify-content: center;
}

.portal-cell {
  width: 30vw;
  height: 30vw;
  position: relative;

  /*background: rgba(34, 249, 102, 0.02);*/
}

.portal-weapon {
  cursor: pointer;
  position: absolute;
  left: 50%;
  transition: .3s all ease-in-out;
}

/* LEFT */
.portal-weapon-1 {
  left: 0;
  top: 4vw;
  width: 22vw;
  z-index: 2;
}

.portal-weapon-2 {
  top: 4vw;
  left: 38%;
  width: 18vw;
  z-index: 1;
}

/* RIGHT */
.portal-weapon-3 {
  top: 4vw;
  left: 45%;
  width: 18vw;
  z-index: 1;
}

.portal-weapon-4 {
  left: 14%;
  top: 4vw;
  width: 22vw;
  z-index: 2;
}

.portal-weapon-5 {
  top: 2vw;
  left: 0;
  width: 18vw;
  z-index: 1;
}

/* LEFT ANIMATION */
.portal-cell.active .portal-weapon-1 {
  animation: leftCycle1 6s ease-in-out infinite;
}
.portal-cell.active .portal-weapon-2 {
  animation: leftCycle2 6s ease-in-out infinite;
}

@keyframes leftCycle1 {
  0%, 100% {
    left: 0;
    top: 4vw;
    width: 22vw;
    z-index: 2;
  }
  25% {
    left: 5%;
  }
  50% {
    left: 30%;
    top: 4vw;
    width: 18vw;
    z-index: 1;
  }
  75% {
    left: 25%;
  }
}

@keyframes leftCycle2 {
  0%, 100% {
    left: 30%;
    top: 4vw;
    width: 18vw;
    z-index: 1;
  }
  25% {
    left: 25%;
  }
  50% {
    left: 0;
    top: 4vw;
    width: 22vw;
    z-index: 2;
  }
  75% {
    left: 5%;
  }
}
/* === */

/* RIGHT ANIMATION */
.portal-cell.active .portal-weapon-3 {
  animation: rightCycle1 6s ease-in-out infinite;
}
.portal-cell.active .portal-weapon-4 {
  animation: rightCycle2 6s ease-in-out infinite;
}
.portal-cell.active .portal-weapon-5 {
  animation: rightCycle3 6s ease-in-out infinite;
}

@keyframes rightCycle1 {
  0%, 100% {
    left: 45%;
    top: 4vw;
    width: 18vw;
    z-index: 1;
  }
  33% {
    left: 14%;
    top: 4vw;
    width: 22vw;
    z-index: 2;
  }
  66% {
    left: 0;
    top: 2vw;
    width: 18vw;
    z-index: 1;
  }
}

@keyframes rightCycle2 {
  0%, 100% {
    left: 14%;
    top: 4vw;
    width: 22vw;
    z-index: 2;
  }
  33% {
    left: 0;
    top: 2vw;
    width: 18vw;
    z-index: 1;
  }
  66% {
    left: 45%;
    top: 4vw;
    width: 18vw;
    z-index: 1;
  }
}

@keyframes rightCycle3 {
  0%, 100% {
    left: 0;
    top: 2vw;
    width: 18vw;
    z-index: 1;
  }
  33% {
    left: 45%;
    top: 4vw;
    width: 18vw;
    z-index: 1;
  }
  66% {
    left: 14%;
    top: 4vw;
    width: 22vw;
    z-index: 2;
  }
}
/* === */

.portal-btn {
  left: 50%;
  top: 100%;
  transform: translate(-50%,-50%);
}

.to-up {
  cursor: pointer;
  position: fixed;
  z-index: 7;
  right: 1.7vw;
  bottom: 1.7vw;

  width: 5.208vw;
  height: 5.208vw;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);

  opacity: 0;
  transition: 0.3s opacity ease-in-out;
}

.triangle {
  width: 1.979vw;
  height: 1.719vw;
  position: absolute;
  left: 50%;
  top: 47%;
  transform: translate(-50%,-50%);
  filter: drop-shadow(0 0 .8vw #FF8256);
}

.mb {
  display: none;
}

@media (max-width: 767px) {

  .portal-cell-block-title {
    font-size: 6.5vw;
  }

  .portal-cell-block {
    width: 96vw;
    padding: 3vw;
  }

  .to-up, .weapon-1, .weapon-2, .weapon-3, .weapon-4, .weapon-5, .weapon-6 {
    display: none;
  }

  .btn-wrap.log-in {
    left: 50%;
  }

  .btn-wrap.sign-up {
    left: 50%;
    top: 49vw;
  }

  .btn-wrap {
    left: 50%;
    top: 38vw;
    transform: translate(-50%,-50%);
    width: 34.5vw;
    height: 8.51vw;
  }

  .btn-text {
    top: 46%;
    font-size: 2.5vw;
    letter-spacing: 0.017vw;
  }

  @keyframes slideFade {
    0% {
      top: 27vw;
      opacity: 0;
      transform: translate(-50%, -50%) scale(0.4);
    }
    100% {
      top: 37vw;
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }
  }

  .text-block {
    width: 100vw;
    top: 6%;
    left: 50%;
  }

  .main-title {
    max-width: 100vw;
    font-size: 6vw;
  }

  .title-text {
    padding-top: 2vw;
    max-width: 46vw;
    font-size: 3vw;
  }

  .mission-text {
    top: 88%;
  }

  .mission-title {
    font-size: 5vw;
    padding-bottom: 1.2vw;
  }

  .mission-details {
    font-size: 3vw;
  }

  .mission-cell {
    width: 44.532vw;
    height: 67.968vw;
    border-radius: 10vw;
  }

  .mission-cell.active {
    width: 59.376vw;
    height: 90.624vw;
    border: .25vw solid #F7DFFA;
    filter: drop-shadow(0 0 2vw rgba(215, 34, 249, 0.40));
  }

  .gem-line {
    display: none;
  }

  .gem-text-block {
    margin: 0 0 10vw;
    gap: 3vw;
  }

  .gem-title {
    font-size: 4.5vw;
  }

  .gem-triangle, .portal-triangle {
    width: 3.248vw;
    height: 2.188vw;
    filter: drop-shadow(0 0 1.5vw #6F52F0) drop-shadow(0 0 2.083vw #6F52F0);
  }

  .gems-section.animate .gem-cell-1:hover .gem-weapon-1.one   { animation: none; }
  .gems-section.animate .gem-cell-2:hover .gem-weapon-2.one   { animation: none; }
  .gems-section.animate .gem-cell-2:hover .gem-weapon-2.two   { animation: none; }
  .gems-section.animate .gem-cell-2:hover .gem-weapon-2.three { animation: none; }
  .gems-section.animate .gem-cell-3:hover .gem-weapon-3.one   { animation: none; }
  .gems-section.animate .gem-cell-3:hover .gem-weapon-3.two   { animation: none; }
  .gems-section.animate .gem-cell-3:hover .gem-weapon-3.three { animation: none; }
  .gems-section.animate .gem-cell-3:hover .gem-weapon-3.four  { animation: none; }
  .gems-section.animate .gem-cell-3:hover .gem-weapon-3.five  { animation: none; }
  .gems-section.animate .gem-cell-3:hover .gem-weapon-3.six   { animation: none; }
  .gems-section.animate .gem-cell-3:hover .gem-weapon-3.seven   { animation: none; }

  .gems-section.animate .gem-cell-1 .gem-weapon-1.one   { animation: fadeInWeapon1 0.5s ease forwards 0.2s, float1     2s ease-in-out infinite 0.7s; }
  .gems-section.animate .gem-cell-2 .gem-weapon-2.one   { animation: fadeInWeapon2 0.5s ease forwards 0.8s, float2down 2s ease-in-out infinite 1.3s; }
  .gems-section.animate .gem-cell-2 .gem-weapon-2.two   { animation: fadeInWeapon2 0.5s ease forwards 1.2s, float2up   2s ease-in-out infinite 1.7s; }
  .gems-section.animate .gem-cell-2 .gem-weapon-2.three { animation: fadeInWeapon2 0.5s ease forwards 1.6s, float2up   2s ease-in-out infinite 2.1s; }
  .gems-section.animate .gem-cell-3 .gem-weapon-3.one   { animation: fadeInWeapon3 0.5s ease forwards 2.2s, float3a    2s ease-in-out infinite 2.7s; }
  .gems-section.animate .gem-cell-3 .gem-weapon-3.two   { animation: fadeInWeapon3 0.5s ease forwards 2.6s, float3b    2s ease-in-out infinite 3.1s; }
  .gems-section.animate .gem-cell-3 .gem-weapon-3.three { animation: fadeInWeapon3 0.5s ease forwards 3.0s, float3c    2s ease-in-out infinite 3.5s; }
  .gems-section.animate .gem-cell-3 .gem-weapon-3.four  { animation: fadeInWeapon3 0.5s ease forwards 3.4s, float3d    2s ease-in-out infinite 3.9s; }
  .gems-section.animate .gem-cell-3 .gem-weapon-3.five  { animation: fadeInWeapon3 0.5s ease forwards 3.8s, float3e    2s ease-in-out infinite 4.3s; }
  .gems-section.animate .gem-cell-3 .gem-weapon-3.six   { animation: fadeInWeapon3 0.5s ease forwards 4.2s, float3f    2s ease-in-out infinite 4.7s; }
  .gems-section.animate .gem-cell-3 .gem-weapon-3.seven { animation: fadeInWeapon3 0.5s ease forwards 4.6s, float3f    2s ease-in-out infinite 5.1s; }

  @keyframes fadeInArrow {
    from { opacity: 0; transform: rotate(90deg) translateX(-1vw); }
    to   { opacity: 1; transform: rotate(90deg) translateX(0); }
  }

  .gem-content-block {
    pointer-events: none;
    grid-template-columns: auto;
    gap: 9vw;
  }

  .gem-cell {
    width: 62.733vw;
    height: 60vw;
  }

  .gem {
    width: 62.733vw;
    height: 32.151vw;
  }

  .gem-arrow {
    transform: rotate(90deg);
    top: 2vw;
    width: 17.187vw;
  }

  .gem-weapon-1 {
    top: 21vw;
    width: 55vw;
  }

  .gem-weapon-2 {
    top: 21vw;
    width: 55vw;
  }

  .gem-weapon-2.two {
    top: 38.6vw;
    width: 45vw;
  }

  .gem-weapon-2.three {
    top: 38.6vw;
    width: 45vw;
  }

  .gem-weapon-3 {
    top: 24vw;
    width: 30vw;
  }

  .gem-weapon-3.two {
    top: 24vw;
    width: 30vw;
  }

  .gem-weapon-3.three {
    top: 24vw;
    width: 30vw;
  }

  .gem-weapon-3.four {
    top: 24vw;
    width: 30vw;
  }

  .gem-weapon-3.five {
    top: 34vw;
    width: 30vw;
  }

  .gem-weapon-3.six {
    top: 34vw;
    width: 30vw;
  }

  .gem-weapon-3.seven {
    top: 28vw;
    width: 50vw;
  }

  .portal-text-block {
    padding: 5vw 3vw;
    width: calc(100% - 4vw);
    margin: 0 0 10vw;
    gap: 3vw;
    border-radius: 3.5vw;
    border: .4vw solid rgba(255, 255, 255, 0.04);
  }

  .portal-title {
    font-size: 4.7vw;
  }

  .portal-content-block {
    grid-template-columns: auto;
    gap: 10vw;
  }

  .portal-cell {
    width: 90vw;
    height: 90vw;
  }

  /* LEFT */
  .portal-weapon-1 {
    left: 0;
    top: 12vw;
    width: 66vw;
    z-index: 2;
  }

  .portal-weapon-2 {
    top: 12vw;
    left: 42%;
    width: 54vw;
    z-index: 1;
  }

  /* RIGHT */
  .portal-weapon-3 {
    top: 14vw;
    left: 45%;
    width: 54vw;
    z-index: 1;
  }

  .portal-weapon-4 {
    left: 14%;
    top: 14vw;
    width: 66vw;
    z-index: 2;
  }

  .portal-weapon-5 {
    top: 14vw;
    left: 0;
    width: 54vw;
    z-index: 1;
  }

  /* LEFT ANIMATION */

  .portal-cell .portal-weapon-1 {
    animation: leftCycle1 6s ease-in-out infinite;
  }
  .portal-cell .portal-weapon-2 {
    animation: leftCycle2 6s ease-in-out infinite;
    /*animation: none;*/
  }

  @keyframes leftCycle1 {
    0%, 100% {
      left: 0;
      top: 12vw;
      width: 66vw;
      z-index: 2;
    }
    25% {
      left: 5%;
    }
    50% {
      left: 45%;
      top: 12vw;
      width: 54vw;
      z-index: 1;
    }
    75% {
      left: 25%;
    }
  }

  @keyframes leftCycle2 {
    0%, 100% {
      left: 45%;
      top: 12vw;
      width: 54vw;
      z-index: 1;
    }
    25% {
      left: 25%;
    }
    50% {
      left: 0;
      top: 12vw;
      width: 66vw;
      z-index: 2;
    }
    75% {
      left: 5%;
    }
  }
  /* === */

  /* RIGHT ANIMATION */
  .portal-cell .portal-weapon-3 {
    animation: rightCycle1 6s ease-in-out infinite;
  }
  .portal-cell .portal-weapon-4 {
    animation: rightCycle2 6s ease-in-out infinite;
  }
  .portal-cell .portal-weapon-5 {
    animation: rightCycle3 6s ease-in-out infinite;
  }

  @keyframes rightCycle1 {
    0%, 100% {
      left: 45%;
      top: 16vw;
      width: 54vw;
      z-index: 1;
    }
    33% {
      left: 14%;
      top: 16vw;
      width: 66vw;
      z-index: 2;
    }
    66% {
      left: 0;
      top: 14vw;
      width: 54vw;
      z-index: 1;
    }
  }

  @keyframes rightCycle2 {
    0%, 100% {
      left: 14%;
      top: 16vw;
      width: 66vw;
      z-index: 2;
    }
    33% {
      left: 0;
      top: 14vw;
      width: 54vw;
      z-index: 1;
    }
    66% {
      left: 45%;
      top: 16vw;
      width: 54vw;
      z-index: 1;
    }
  }

  @keyframes rightCycle3 {
    0%, 100% {
      left: 0;
      top: 14vw;
      width: 54vw;
      z-index: 1;
    }
    33% {
      left: 45%;
      top: 16vw;
      width: 54vw;
      z-index: 1;
    }
    66% {
      left: 14%;
      top: 16vw;
      width: 66vw;
      z-index: 2;
    }
  }

  /* === */

  .portal-btn {
    top: 96vw;
    width: 58.65vw;
    height: 14.467vw;
  }

  .portal-btn-one {
    top: 92vw;
  }

  .portal-cell-two .portal-cell-block {
    top: 6vw;
  }

  .portal-btn .btn-text {
    font-size: 4vw;
  }

  .mission-section {
    --slider-offset: 0vw;
    transform: translateX(calc(16vw - var(--slider-offset)));
    height: 90.624vw;
    top: 81vw;
    transition: transform 0.4s ease-in-out;
  }

  .gems-section {
    top: 185vw;
  }

  .portal-section {
    top: 455vw;
  }

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

  .header-logo-img {
    min-width: 40px;
    width: 12.3vw;
    height: unset;
  }

  header.header {
    left: 50%;
    transform: translate(-50%, 0);
  }

  .dk {
    display: none;
  }

  .mb {
    display: block;
  }

}

/* ------ */

/* FOOTER */

.footer .container {
  max-width: 70.83vw;
  padding: 0 1.04vw;
  margin: 0 auto;
}

.footer {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  z-index: 6;
  overflow: hidden;
  position: relative;
  background: #0b0d14;
}

.footer img {
  display: block;
}

.footer__wrap {
  padding: 3.13vw 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  gap: 1.04vw;
}

.footer__wrap .date {
  color: #FFF;
  font-kerning: none;
  font-family: "FS Elliot Pro", sans-serif;
  font-size: 0.833vw;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.footer__main {
  padding-left: 5.21vw;
  padding-right: 1.56vw;
  position: relative;
}

.footer__copy {
  display: block;
  font-weight: 700;
  font-size: 0.83vw;
  color: #fff;
  padding-bottom: 1vw;
}

.footer__logo {
  position: absolute;
  left: 0;
  top: 0;
}

.footer__logo .icon {
  width: 3.41vw;
  height: 3.15vw;
}

.footer__payment-image:nth-child(1) img {
  width: 2.36vw;
  height: 1.5vw;
}

.footer__payment-image:nth-child(2) img {
  width: 2.31vw;
  height: 1.53vw;
}

.footer__payment-image:nth-child(3) img {
  width: 4.49vw;
  height: 0.96vw;
}

.footer__payment-image:nth-child(4) img {
  width: 2.24vw;
  height: 2.24vw;
}

.footer__payment-image:nth-child(5) img {
  width: 2.47vw;
  height: 2.03vw;
}

.footer__payment-image:nth-child(6) img {
  width: 6.27vw;
  height: 1.8vw;
}

.mail-icon {
  width: 0.99vw;
  height: 0.73vw;
}

.faq-icon {
  width: 0.73vw;
  height: 0.73vw;
}

.footer__links-item.restriction {
  position: relative;
  top: -0.31vw;
  height: 1.67vw;
}

.restriction {
  position: absolute;
  width: 1.93vw;
  height: 1.93vw;

  fill: #9793BA;
  filter: drop-shadow(0px 0px 0.78vw rgba(151, 147, 186, 0.40));
}

.text-restriction {
  position: absolute;
  left: 52%;
  top: 58%;
  transform: translate(-50%, -50%);

  color: #141225;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 0.57vw;
  font-style: normal;
  font-weight: 700;
  line-height: 1.26vw;
}

.footer__info {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.73vw;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 1.3vw;

  color: #78758C;
  text-align: right;
  font-kerning: none;
  font-family: "FS Elliot Pro", sans-serif;
  font-size: 0.729vw;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2vw;
}

.footer__info span.first {
  padding-top: 1vw;
}

.footer__info span.grey {
  color: #4D4A64;
}

.footer__info p {
  margin: 0;
}

.footer__about {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.73vw;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;

  color: #4D4A64;
  font-kerning: none;
  font-family: "FS Elliot Pro", sans-serif;
  font-size: 0.729vw;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3vw;
}

.footer__about p {
  margin: 0;
}

.footer__second {
  max-width: 30.21vw;
  width: 100%;
}

.footer__box {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 1.56vw;

  flex-direction: column;
  align-items: flex-end;
}

.footer__payment {
  max-width: 13.02vw;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer__payment-image {
  margin-right: 0.94vw;
  margin-bottom: 0.52vw;
}

.footer__payment-image:nth-child(3n) {
  margin-right: 0;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.footer__links-item:not(:last-child) {
  margin-right: 1.56vw;
}

.footer__link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.footer__link span {
  color: #4D4A64;
  font-kerning: none;
  font-family: "FS Elliot Pro", sans-serif;
  font-size: 0.833vw;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.footer__link .icon {
  color: #4d4a64;
  margin-right: 0.42vw;
  transition: all 0.25s ease;
}

.footer__link:hover .footer__link-text {
  opacity: 0.7;
}

.footer__link:hover .icon {
  color: #fff;
}

.footer-menu__list {
  padding: 0;
  margin: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding-bottom: 1vw;
}

.footer-menu__item:not(:last-child) {
  margin-right: 1.56vw;
}

.footer-menu__link {
  display: block;
  color: #435AEF;
  font-kerning: none;
  font-family: "FS Elliot Pro", sans-serif;
  font-size: 0.729vw;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.footer-menu__link:hover {
  opacity: 0.7;
}

@media (max-width: 767px) {

  .footer-menu__item:not(:last-child) {
    margin-right: 0;
  }

  .footer-menu__item {
    text-align: center;
    padding: 0;
  }

  .footer-menu__list {
    display: inline-flex;
    flex-direction: column;
    }

  .footer__logo {
    position: unset;
  }

  .footer__box {
    flex-direction: column-reverse;
  }

  .footer__wrap {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 25px 0 32px;
  }

  .footer__main {
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
    text-align: center;
    margin-bottom: 10px;
  }

  .footer__wrap .date {
    font-size: 14px;
  }

  .footer__info {
    margin-bottom: 10px;
    text-align: center;

    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .all-items {
    padding: 5px 0 15px;
    color: #4D4A64;
    text-align: center;
    font-kerning: none;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .footer__info {
    display: none;
  }

  .footer__payment-image:nth-child(1) img {
    width: 45.433px;
    height: 28.787px;
  }

  .footer__payment-image:nth-child(2) img {
    width: 44.452px;
    height: 29.325px;
  }

  .footer__payment-image:nth-child(3) img {
    width: 86.373px;
    height: 18.383px;
  }

  .footer__payment-image:nth-child(4) img {
    width: 43.045px;
    height: 42.936px;
  }

  .footer__payment-image:nth-child(5) img {
    width: 47.578px;
    height: 39.005px;
  }

  .footer__payment-image:nth-child(6) img {
    width: 120.746px;
    height: 34.478px;
  }

  .footer__link span {
    font-size: 16px;
    line-height: normal;
  }

  .mail-icon {
    width: 19.048px;
    height: 14px;
  }

  .faq-icon {
    width: 14.036px;
    height: 14px;
  }

  .footer__about span:nth-child(2) {
    line-height: 20.5px;
  }

  .footer__info span.grey {
    padding-top: 0;
  }

  .footer__info p {
    width: 100%;
  }

  .footer__payment {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 auto;

    max-width: 250px;
  }

  .footer__second {
    max-width: 226px;
  }

  .footer__about {
    color: #4D4A64;
    text-align: center;
    font-kerning: none;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .footer__logo .icon {
    width: 30.076px;
    height: 30px;
    margin-bottom: 17px;
  }

  .footer__copy {
    font-size: 0;
    padding-bottom: 12px;
  }

  .footer__wrap {
    gap: 0;
  }

  .footer-menu {
    display: grid;
    justify-content: center;
  }

  .footer-menu__list {
    display: inline-flex;
    gap: 5px;
    padding-bottom: 12px;
  }

  .footer__links {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer__links-item:not(:last-child) {
    margin-right: 15px;
  }

  .footer-menu__link {
    display: inline-block;
    padding: 0;
    text-decoration: none;

    color: #435AEF;
    text-align: center;
    font-kerning: none;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
  }

  .footer__links-item.restriction {
    top: -4px;
    height: 28px;
  }

  .restriction {
    position: unset;
    width: 28px;
    height: 28px;
    filter: drop-shadow(0px 0px 20px rgba(151, 147, 186, 0.40));
  }

  .text-restriction {
    top: 51%;
    font-size: 8px;
    font-style: normal;
    font-weight: 700;
    line-height: 24.242px;
  }

  .footer__payment {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-items: center;
  }

  .footer__payment-image {
    margin-right: 12px;
    margin-bottom: 7px;
  }

  .footer .container {
    max-width: 1360px;
    padding: 0 20px;
  }

  .container {
    max-width: 100vmax;
    padding: 0 20px;
    padding-left: 2.08vmax;
  }

}

/* FOOTER */

/* COOKIES */

.cookies-policy-banner {
  background: #000000b3 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 0.3s;
  -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;
}

@media (max-width: 767px) {

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

}

/* COOKIES */