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');
}

/* 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(122, 36, 228, 0.6);
  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 {
  position: absolute;
  top: 0;
  left: 0;

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

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

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

@media (max-width: 767px) {

  header.header {
    padding: 20px 20px 0;
    display: grid;
    justify-content: center;
  }

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

}

/* ------ */

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

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

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

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

.top-rect {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  z-index: -1;
}

.main-title {
  color: #FFF;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 2.5vw;
  font-style: normal;
  font-weight: 700;
  line-height: 3.021vw;
  text-transform: uppercase;
}

.main-title span.orange {
  color: #ff7546;
  font-size: 3.542vw;
  font-style: normal;
  font-weight: 700;
  line-height: 3.542vw;
  text-transform: uppercase;
}

.title-text {
  color: #E2FFFD;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 0.833vw;
  font-style: normal;
  font-weight: 500;
  line-height: 140.625%;
  text-transform: uppercase;
}

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

  z-index: 13;

  width: 50%;
  height: 52.6vw;

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

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

  z-index: 13;

  width: 50%;
  height: 52.6vw;

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

.hand {
  cursor: pointer;

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

  width: 25vw;
}

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

.hand-left-top {
  cursor: pointer;
  position: absolute;
  left: 54.9%;
  top: 68.8%;
  transform: translate(-50%, -50%);
  width: 25.4vw;
  z-index: 3;
}

.hand-right-top {
  cursor: pointer;
  position: absolute;
  left: 49%;
  top: 70%;
  transform: translate(-50%, -50%);
  width: 29vw;
  z-index: 3;
}

.hole {
  width: 100%;
}

.hole-wrapper {
  position: absolute;
  left: 48%;
  top: 68%;
  transform: translate(-50%, -50%);
  width: 25vw;
  pointer-events: none;
  z-index: -1;
}

.right-part .hole-wrapper {
  left: 52%;
  top: 70%;
}

.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(74, 131, 255, 0.4);
}

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

.hover-zone {
  cursor: pointer;
  position: absolute;
  width: 44vw;
  height: 35vw;
  top: 56.5%;
  left: 52%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: auto;
  /*background: rgba(255,0,0,0.1);*/
}

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

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


/* LEFT */
.case-1 {
  width: 23vw;
  left: 46%;
  top: 53%;
  z-index: 2;
}

.case-2 {
  width: 20vw;
  left: 66%;
  top: 60%;
}

/* RIGHT */
.case-3 {
  width: 21vw;
  left: 50%;
  top: 57%;
  z-index: 2;
}

.case-4 {
  width: 20vw;
  left: 38%;
  top: 47%;
}

.case-5 {
  width: 20vw;
  left: 68%;
  top: 50%;
}

/* === */

.left-part.active .case-1 {
  animation: leftCaseCycle1 6s ease-in-out infinite;
}
.left-part.active .case-2 {
  animation: leftCaseCycle2 6s ease-in-out infinite;
}

@keyframes leftCaseCycle1 {
  0%, 100% {
    left: 46%;
    top: 53%;
    width: 23vw;
    z-index: 2;
  }
  /*25% {*/
  /*  left: 56%;*/
  /*}*/
  50% {
    left: 66%;
    top: 60%;
    width: 20vw;
    z-index: 1;
  }
  /*75% {*/
  /*  left: 56%;*/
  /*}*/
}

@keyframes leftCaseCycle2 {
  0%, 100% {
    left: 66%;
    top: 60%;
    width: 20vw;
    z-index: 1;
  }
  /*25% {*/
  /*  left: 56%;*/
  /*}*/
  50% {
    left: 36%;
    top: 53%;
    width: 23vw;
    z-index: 2;
  }
  /*75% {*/
  /*  left: 56%;*/
  /*}*/
}

/* RIGHT ANIMATION */
.right-part.active .case-3 {
  animation: rightCaseCycle1 6s ease-in-out infinite;
}
.right-part.active .case-4 {
  animation: rightCaseCycle2 6s ease-in-out infinite;
}
.right-part.active .case-5 {
  animation: rightCaseCycle3 6s ease-in-out infinite;
}

@keyframes rightCaseCycle1 {
  0%, 100% {
    left: 50%;
    top: 57%;
    width: 21vw;
    z-index: 2;
  }
  33% {
    left: 28%;
    top: 47%;
    width: 15vw;
    z-index: 1;
  }
  66% {
    left: 78%;
    top: 45%;
    width: 15vw;
    z-index: 1;
  }
}

@keyframes rightCaseCycle2 {
  0%, 100% {
    left: 38%;
    top: 47%;
    width: 20vw;
    z-index: 1;
  }
  33% {
    left: 78%;
    top: 46%;
    width: 18vw;
    z-index: 1;
  }
  66% {
    left: 60%;
    top: 52%;
    width: 27vw;
    z-index: 2;
  }
}

@keyframes rightCaseCycle3 {
  0%, 100% {
    left: 68%;
    top: 50%;
    width: 20vw;
    z-index: 1;
  }
  33% {
    left: 41%;
    top: 55%;
    width: 27vw;
    z-index: 2;
  }
  66% {
    left: 20%;
    top: 43%;
    width: 18vw;
    z-index: 1;
  }
}

/* === */

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

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

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

.openings-block {
  position: relative;
}

.rectangle-opening {
  position: relative;

  padding: 2vw;
}

.package {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 110%;
  z-index: -1;
}

.package-text {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.783vw;
  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;
}

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

  cursor: pointer;
  position: absolute;
  background: transparent;
  border: unset;
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: center;
  top: 37vw;

  width: 18vw;
  height: 4.5vw;

  z-index: 4;
}

.btn-left {
  left: 21vw;
}

.btn-right {
  left: 16vw;
}

.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: 1.3vw;
  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));
  }
}

.mb {
  display: none;
}

@media (max-width: 767px) {

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

  .asteroid-1 {
    top: 88vw;
    left: 70%;
    width: 21.856vw;
  }

  .asteroid-2 {
    top: 158vw;
    left: 10%;
    width: 17.681vw;
  }

  .asteroid {
    opacity: 0.85;
  }

  /* LEFT */
  .case-1 {
    width: 53vw;
    left: 28%;
    top: 70vw;
    z-index: 2;
  }

  .case-2 {
    width: 40vw;
    left: 38%;
    top: 60vw;
  }

  /* RIGHT */
  .case-3 {
    width: 60vw;
    left: 63%;
    top: 133vw;
    z-index: 2;
  }

  .case-4 {
    width: 45vw;
    left: 55%;
    top: 120vw;
  }

  .case-5 {
    width: 45vw;
    left: 85%;
    top: 125vw;
  }

  .btn {
    filter: drop-shadow(0 1.728px 13.440px rgba(255, 106, 51, 0.75));
  }

  .btn:hover {
    filter: drop-shadow(0px 0px 15.360px rgba(255, 106, 51, 0.75));
  }

  .btn-wrap .btn {
    filter: drop-shadow(12.096px 0 29.376px rgba(255, 106, 51, 1));
  }

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

  /* LEFT ANIMATION */
  .left-part.active .case-1 {
    animation: leftCaseCycle1M 6s ease-in-out infinite;
  }
  .left-part.active .case-2 {
    animation: leftCaseCycle2M 6s ease-in-out infinite;
  }

  @keyframes leftCaseCycle1M {
    0%, 100% {
      left: 28%;
      top: 70vw;
      width: 53vw;
      z-index: 2;
    }
    50% {
      left: 38%;
      top: 60vw;
      width: 40vw;
      z-index: 1;
    }
  }

  @keyframes leftCaseCycle2M {
    0%, 100% {
      left: 38%;
      top: 60vw;
      width: 40vw;
      z-index: 1;
    }
    50% {
      left: 18%;
      top: 70vw;
      width: 53vw;
      z-index: 2;
    }
  }

  /* RIGHT ANIMATION */
  .right-part.active .case-3 {
    animation: rightCaseCycle1M 6s ease-in-out infinite;
  }
  .right-part.active .case-4 {
    animation: rightCaseCycle2M 6s ease-in-out infinite;
  }
  .right-part.active .case-5 {
    animation: rightCaseCycle3M 6s ease-in-out infinite;
  }

  @keyframes rightCaseCycle1M {
    0%, 100% {
      left: 63%;
      top: 133vw;
      width: 60vw;
      z-index: 2;
    }
    33% {
      left: 55%;
      top: 120vw;
      width: 45vw;
      z-index: 1;
    }
    66% {
      left: 85%;
      top: 125vw;
      width: 45vw;
      z-index: 1;
    }
  }

  @keyframes rightCaseCycle2M {
    0%, 100% {
      left: 55%;
      top: 120vw;
      width: 45vw;
      z-index: 1;
    }
    33% {
      left: 85%;
      top: 125vw;
      width: 45vw;
      z-index: 1;
    }
    66% {
      left: 63%;
      top: 133vw;
      width: 60vw;
      z-index: 2;
    }
  }

  @keyframes rightCaseCycle3M {
    0%, 100% {
      left: 85%;
      top: 125vw;
      width: 45vw;
      z-index: 1;
    }
    33% {
      left: 63%;
      top: 133vw;
      width: 60vw;
      z-index: 2;
    }
    66% {
      left: 55%;
      top: 120vw;
      width: 45vw;
      z-index: 1;
    }
  }

  /* === */

  .top-rect, .hole-wrapper, .package {
    display: none;
  }

  .btn-wrap {
    pointer-events: auto;
    opacity: 1;
  }

  .btn-wrap {
    width: 32vw;
    height: 12.5vw;
    z-index: 4;
  }

  .btn-left {
    top: 70vw;
    left: 58vw;
  }

  .btn-right {
    top: 135.5vw;
    left: 6.5vw;
  }

  .btn-text {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);

    font-size: 4.2vw;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.017vw;
  }

  .left-part .hover-zone {
    width: 75vw;
    height: 60vw;

    top: 74vw;
    left: 37%;

    /*background: rgba(8, 0, 255, 0.1);*/
  }

  .right-part .hover-zone {
    width: 80vw;
    height: 65vw;

    top: 137vw;
    left: 60%;

    /*background: rgba(85, 255, 0, 0.1);*/
  }

  .hand {
    left: 30%;
    top: 75vw;

    width: 55vw;
  }

  .hand-left-top {
    left: 29.9%;
    top: 87.4vw;

    width: 55.6vw;
  }

  .right-part .hand {
    left: 63%;
    top: 135vw;

    width: 55vw;
  }

  .hand-right-top {
    left: 62%;
    top: 149vw;

    width: 60vw;
  }

  .openings-block {
    scale: 2.3;
  }

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

  .package-text {
    font-size: 2.2vw;
  }

  .openings-block-left {
    left: 24vw;
  }

  .openings-block-right {
    left: -27vw;
  }

  .title-text {
    font-size: 2.916vw;
    letter-spacing: -0.144vw;
    line-height: 3.4vw;

    position: relative;
    top: 85vw;
  }

  .text-block.bottom {
    top: 95vw;
  }

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

  .main-title {
    font-size: 7.5vw;
    line-height: 10.2vw;
  }

  .main-title span.orange {
    font-size: 10.5vw;
  }

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

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

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

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

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

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

  .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;
  position: relative;
  z-index: 6;
  overflow: hidden;
  background: #000000;

  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.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__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: 0.42vw;
}

.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;
  font-weight: 700;
  margin-bottom: 1.3vw;
  color: #78758c;
}

.footer__info span.grey {
  padding-top: 0.26vw;
  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;
  font-weight: 700;
  color: #4d4a64;
}

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

.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 {
  font-size: 0.83vw;
  font-weight: 700;
  color: #4d4a64;
}

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

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

.footer-menu__link {
  display: block;
  font-size: 0.73vw;
  text-transform: uppercase;
  color: #ef436c;
  font-weight: 700;
  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 {
    margin-bottom: 20px;
    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;
  }

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

  .footer__info {
    font-size: 10px;
    margin-bottom: 10px;
  }


  .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: 10.5px;
  }

  .footer__info span.grey {
    padding-top: 4px;
  }

  .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 {
    font-size: 10px;
  }

  .footer__logo .icon {
    width: 30.076px;
    height: 30px;
  }

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

  .footer__wrap {
    gap: 9px;
  }

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

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

  .footer__links {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 17px;
  }

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

  .footer-menu__link {
    display: inline-block;
    font-size: 10px;
    padding: 0;
    text-decoration: none;
  }

  .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 */