﻿@charset "utf-8";
@font-face {
  font-family: "Gilroy";
  src: local("☺"), url("../fonts/Gilroy-Regular.woff") format("woff"),
    url("../fonts/Gilroy-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: local("☺"), url("../fonts/Gilroy-Medium.woff") format("woff"),
    url("../fonts/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: local("☺"), url("../fonts/Gilroy-SemiBold.woff") format("woff"),
    url("../fonts/Gilroy-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: local("☺"), url("../fonts/Gilroy-Bold.woff") format("woff"),
    url("../fonts/Gilroy-Bold.woff") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
:root {
  --font: Gilroy, -apple-system, "Open Sans", system-ui, "sans-serif";
  --dark: #011119;
  --dark0: rgba(1, 17, 25, 0);
  --white: #fff;
  --white0: rgba(255, 255, 255, 0);
  --white-hover: #e6e6e6;
  --border: rgba(255, 255, 255, 0.2);
  --grey: #7ea1b3;
  --green: #0de7b2;
  --bg-light: #0d1f28;
  --bg-light-hover: #132c38;
  --bg-light2: #f6f6f6;
  --bg-white: rgba(255, 255, 255, 0.2);
  --bg-white-hover: rgba(255, 255, 255, 0.3);
  --block-bg: #0b1b23;
  --block-border: #132c38;
}
html,
body {
  height: 100%;
  box-sizing: border-box;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased;
}
body {
  margin: 0;
  padding: 0;
  background: var(--dark);
  font: normal 18px/1.5 var(--font);
  color: var(--grey);
  -webkit-text-size-adjust: none;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
form,
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
input,
select,
textarea,
button {
  font: 600 18px var(--font);
  color: var(--white);
  outline: none;
  text-align: left;
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="color"],
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="number"],
input[type="range"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="week"],
textarea,
select {
  -webkit-appearance: none;
  border-radius: 14px;
  box-shadow: none;
  border-style: solid;
  border-width: 1px;
  border-color: transparent;
  background: var(--bg-light);
  height: 60px;
  margin: 0;
  padding: 0 19px;
  width: 100%;
  display: block;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 1;
  color: var(--grey);
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  color: var(--grey);
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 1;
  color: var(--grey);
}
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  opacity: 0.5 !important;
}
input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  opacity: 0.5 !important;
}
input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  opacity: 0.5 !important;
}
input::-ms-clear {
  display: none;
}
button::-moz-focus-inner {
  border: 0;
}
textarea {
  resize: none;
}
.outtaHere {
  overflow: hidden;
  max-width: 100vw;
  position: fixed !important;
  transform: scale(0) !important;
}
header,
nav,
section,
article,
aside,
footer,
menu,
time,
figure,
figcaption,
main {
  display: block;
}
img,
svg,
picture {
  border: 0;
  vertical-align: top;
}
a {
  color: var(--white);
  text-decoration: none;
  outline: none;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}
a[href^="tel"] {
  color: inherit !important;
  cursor: inherit;
  text-decoration: none !important;
}
strong {
  font-weight: bold;
}
p,
ol,
ul {
  margin: 0 0 1.5em 0;
  padding: 0;
}
ol,
ul,
li {
  list-style: none;
}
li {
  position: relative;
  margin: 0 0 0.2em 0;
  padding: 0 0 0 1.5em;
}
ul > li:before {
  content: "•";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5em;
  text-align: center;
}
ol {
  counter-reset: li;
}
ol > li:before {
  counter-increment: li;
  content: counters(li, ".") ". ";
  position: relative;
  display: inline-block;
  vertical-align: top;
  min-width: 1.5em;
  margin: 0 0 0 -1.5em;
  padding: 0 0.2em 0 0;
}
.btn {
  -webkit-appearance: none;
  text-decoration: none;
  font: 500 18px/1 var(--font);
  border-radius: 20px;
  text-align: center;
  text-transform: none;
  letter-spacing: normal;
  border: 0;
  outline: none;
  padding: 21px;
  display: inline-block;
  vertical-align: top;
  flex: 0 0 auto;
  max-width: 100%;
  transition-property: color, background;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.btn-white {
  background: var(--white);
  color: var(--dark);
}
.btn-green {
  background: var(--green);
  color: var(--dark);
}
.btn-dark {
  color: var(--white);
  background: var(--bg-light);
}

@media (pointer: fine) {
  .btn-white:not(.disabled):hover {
    background: var(--white-hover);
  }
  .btn-dark:not(.disabled):hover {
    background: var(--bg-light-hover);
  }
}
.break-word {
  word-break: break-all;
}
.nowrap {
  white-space: nowrap;
}
.uppercase {
  text-transform: uppercase;
}
.color {
  display: inline-block;
  vertical-align: top;
  background: linear-gradient(
    to right,
    #ffcfc3 0%,
    #fee1fe 33%,
    #fff 67%,
    #fef7e3 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.mainwrap {
  flex: 0 0 auto;
  width: 100%;
  min-height: 100%;
}
.container {
  width: 100%;
  flex: 0 0 auto;
  padding: 0 20px;
  max-width: 1440px;
  margin: 0 auto;
}
.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  transition-property: background;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.scrolled .header {
  background: var(--dark);
}
.header .grid {
  display: flex;
  align-items: center;
  height: 51px;
  gap: 15px;
}
.toggle-menu {
  flex: 0 0 auto;
  width: 35px;
  height: 35px;
  border-radius: 10px;
  background: var(--bg-light);
  cursor: pointer;
  position: relative;
  z-index: 101;
  transition: background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.toggle-menu > * {
  background: var(--white);
  width: 18px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px -9px;
  transition-property: transform, background;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.toggle-menu > .pos1 {
  transform: translate3d(0, -4px, 0);
}
.toggle-menu > .pos2 {
  transform: translate3d(0, 4px, 0);
}
.open-menu .toggle-menu > .pos1 {
  transform: translate3d(0, 0, 0) rotate(-135deg);
}
.open-menu .toggle-menu > .pos2 {
  transform: translate3d(0, 0, 0) rotate(135deg);
}

@media (pointer: fine) {
  .toggle-menu:hover {
    background: var(--bg-light-hover);
  }
}
.head-logo {
  position: relative;
  z-index: 101;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.head-logo img {
  flex: 0 0 auto;
  height: 25px;
  width: auto;
}
.head-logo svg {
  flex: 0 0 auto;
  height: 13px;
  width: auto;
  fill: var(--white);
  transition: fill 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.head-download {
  flex: 0 0 auto;
  margin-left: auto;
  position: relative;
  z-index: 101;
}
.head-download .btn {
  font-weight: bold;
  font-size: 12px;
  line-height: 15px;
  padding: 10px 20px;
  border-radius: 10px;
}
.head-download .links {
  align-items: center;
  justify-content: center;
  gap: 10px;
  display: none;
}
.head-download .link {
  flex: 0 0 auto;
  border-radius: 10px;
  text-align: left;
  padding: 0 20px;
  overflow: hidden;
  font-weight: normal;
  font-size: 14px;
  line-height: 40px;
  color: var(--dark);
  background-color: var(--white);
  background-repeat: no-repeat;
  background-size: contain;
  transition: background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media (pointer: fine) {
  .head-download .link:hover {
    background-color: var(--white-hover);
  }
}
.head-download .link-appstore {
  background-image: url(../img/appstore.svg);
}
.head-download .link-google {
  background-image: url(../img/google-play.svg);
}
.head-download .link-text {
  text-align: center;
  text-indent: 0;
  width: auto;
  min-width: 40px;
  padding: 0 20px;
}
.menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  z-index: 100;
  transform: translate3d(100%, 0, 0);
  background: var(--dark);
  transition-property: transform, background;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.menu:before {
  content: "";
  display: block;
  position: sticky;
  top: 0;
  z-index: 10;
  height: 51px;
  background: var(--dark);
  transition: background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
html.open-menu {
  overflow: hidden;
}
html.open-menu .menu {
  transform: translate3d(0, 0, 0);
}
.menu-inner {
  min-height: calc(100% - 51px);
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
  gap: 30px;
}
.menu-btns {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
  width: 100%;
}
.menu-btns .btn {
  flex: 1;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  padding: 17px 10px;
  border-radius: 14px;
}
.menu-links {
  flex: 1 0 auto;
  display: block;
  margin: -10px 0;
}
.menu-links .link {
  text-decoration: none;
  color: var(--grey);
  transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  padding: 10px 20px;
  margin: 0 -20px;
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  display: block;
}

@media (pointer: fine) {
  .menu-links .link:hover {
    color: var(--white);
  }
}
.menu .head-download {
  display: none;
}
.menu-lang .toggle,
.menu-lang .link {
  flex: 0 0 auto;
  text-decoration: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 14px;
  line-height: 50px;
  background: var(--bg-light);
  color: var(--white);
  display: block;
  transition-property: color, background;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media (pointer: fine) {
  .menu-lang:not(.open) .toggle:hover,
  .menu-lang .link:not(.active):hover {
    background: var(--bg-light-hover);
  }
}
.menu-lang.open .toggle {
  background: var(--green);
  color: var(--dark);
}
.menu-lang .link.active {
  background: var(--green);
  border-radius: 8px;
}
.menu-lang .link:hover {
  color: var(--grey);
}
.menu-lang .big {
  display: none;
}
.menu-lang .toggle {
  cursor: pointer;
  display: none;
}
.menu-lang .links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer {
  padding: 60px 0 40px 0;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.3;
}
.footer .container {
  display: flex;
  flex-direction: column;
  gap: 10px 30px;
}
.footer .container > * {
  order: 2;
}
.footer .soc {
  order: 1;
  margin-bottom: 20px;
}
.footer ul {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  margin: 0;
  padding: 0;
  gap: 0 20px;
}
.footer li {
  flex: 0 0 auto;
  position: relative;
  margin: 0;
  padding: 0;
}
.footer li:before {
  content: "|";
  position: absolute;
  top: 0;
  left: -20px;
  width: 20px;
  text-align: center;
}
.footer li:first-child:before {
  display: none;
}
.footer .soc > * {
  width: 50px;
  height: 50px;
  order: 1;
}
.content-download {
  text-align: center;
}
.content-download .btn {
  width: 100%; /*max-width: 350px;*/
}
.content-download .links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.content-download .links,
.start-now .free {
  display: none;
}
.content-download .links .link {
  flex: 0 0 auto;
  text-decoration: none;
  text-align: left;
  color: var(--grey);
  width: 200px;
  height: 60px;
  font-weight: normal;
  font-size: 12px;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background-color: var(--white);
  background-position: 0 50%;
  background-size: auto 100%;
  background-repeat: no-repeat;
  border-radius: 15px;
  position: relative;
  transition: background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.content-download .links .link svg {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 30px;
  margin: -12px;
  fill: var(--dark);
  transition: fill 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.content-download .links .link-google {
  background-image: url(../img/google-play2.svg);
}
.content-download .links .link {
  color: var(--dark);
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media (pointer: fine) {
  .content-download .links .link:hover {
    background-color: var(--white-hover) !important;
  }
  .content-download .links .link:hover svg {
    fill: var(--dark);
  }
  .content-download .links .link:hover strong {
    color: var(--dark);
  }
}
.free {
  text-align: left;
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  color: var(--white);
  flex: 0 0 auto;
  padding-left: 40px;
  position: relative;
}
.free:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 30px;
  margin: -15px 0;
  background: url(../img/fire.png) no-repeat 50% 50%;
  background-size: contain;
}
.content-download .free {
  margin-left: 10px;
}

@media (pointer: fine) {
  .content-download .btn {
    display: inline-block;
  }
  .content-download .links {
    display: none;
  }
}
.top-block {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 94px;
  padding-bottom: 40px;
  overflow: hidden;
  z-index: 20;
}
.top-block .container {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 23px;
}
.top-block .text {
  flex: 0 0 auto;
  width: 100%;
  max-width: 350px;
  order: 1;
}
.top-block .size2 {
  font-weight: bold;
  font-size: 36px;
  line-height: 1;
  color: var(--white);
  margin: 0 0 8px 0;
}
.top-block .size3 {
  font-size: 16px;
  line-height: 1.5;
  color: var(--white);
}
.top-block .content-download {
  margin-top: 25px;
}
.top-block .content-download .btn {
  font-size: 16px;
  font-weight: bold;
  padding: 17px;
}
.top-block .image {
  transform: translateZ(0);
  position: relative;
  flex: 1 0 auto;
  border-radius: 20px;
  background: url(../img/top-block-bg/mobile.jpg) no-repeat 50% 50%;
  background-size: cover;
  min-height: 120px;
  margin-top: 30px;
  order: 2;
}
.top-block .image video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 0;
  margin: 0;
  padding: 0;
  outline: none;
  pointer-events: none;
  border-radius: inherit;
}
.top-block .link-play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.top-block .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  backface-visibility: hidden;
  text-decoration: none;
  color: var(--white);
  text-align: left;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(34px);
  border-radius: 10px;
  font-weight: bold;
  font-size: 12px;
  line-height: 15px;
  white-space: nowrap;
  padding: 13px 16px 12px 40px;
}
.top-block .play strong {
  font-weight: inherit;
}
.top-block .play .arr {
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 18px;
  margin: -4px 0;
}
.top-block .play .arr svg {
  width: 100%;
  height: 100%;
  fill: var(--white);
}
.top-block .bottom {
  flex: 0 0 auto;
  margin-top: 40px;
  order: 3;
  font-size: 14px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-block .bottom h1,
.top-block .bottom .h1 {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 20px;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.5;
  color: var(--grey);
}
.top-block .bottom .line {
  flex: 0 0 auto;
  width: 20px;
  height: 1px;
  border-radius: 0.5px;
  background: var(--border);
  margin: 0 auto;
}
.top-block .soc > * {
  background-color: var(--bg-white);
}

@media (pointer: fine) {
  .top-block .soc > a:hover {
    background-color: var(--bg-white-hover);
  }
}
.tippy-box {
  border-radius: 20px;
  color: var(--dark) !important;
  background: var(--white) !important;
  box-shadow: 0 6px 22px rgba(93, 98, 109, 0.1),
    0 9px 44px -6px rgba(161, 166, 192, 0.16);
}
.tippy-content {
  padding: 20px;
}
.tippy-content img {
  width: 100%;
  height: auto;
}
.get {
  padding-top: 80px;
  margin-top: -40px;
}
.get .size1 {
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  line-height: 1.1;
  margin: 0 0 20px 0;
  clear: var(--white);
}
.get ul {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.3;
  color: var(--white);
}
.get li:before {
  display: none;
}
.get li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 29px 19px;
  margin: 0;
  border-radius: 25px;
  border: 1px solid var(--block-border);
  background-color: var(--block-bg);
  background-size: cover;
  background-position: 50% 0;
}
.get li:nth-child(4n - 3) {
  background-image: url(../img/get/bg1.png);
}
.get li:nth-child(4n - 2) {
  background-image: url(../img/get/bg2.png);
}
.get li:nth-child(4n - 1) {
  background-image: url(../img/get/bg3.png);
}
.get li:nth-child(4n) {
  background-image: url(../img/get/bg4.png);
}
.get li img {
  flex: 0 0 auto;
  width: 50px;
}
.how {
  --percent1: 0;
  --percent2: 0;
  --percent3: 0;
}
.how .el1,
.how .el2,
.how .el3 {
  height: 0;
  pointer-events: none;
}
.how .top {
  padding-top: 80px;
}
.how .size1 {
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  line-height: 1.1;
  margin: 0 0 30px 0;
  clear: var(--white);
}
.how ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.1;
  color: var(--white);
}
.how li:before {
  display: none;
}
.how li {
  flex: 0 0 auto;
  width: 100%;
  margin: 0;
  padding: 0;
}
.how .num {
  text-align: center;
  display: inline-block;
  vertical-align: top;
  font-weight: bold;
  font-size: 12px;
  line-height: 1.1;
  padding: 11px 15px 9px 15px;
  background: radial-gradient(
    100% 170.56% at 97.03% 0%,
    #fff4d7 0%,
    #ffffff 31.56%,
    #fedfff 67.61%,
    #ffccb6 100%
  );
  border-radius: 10px;
  text-transform: uppercase;
  color: var(--dark);
}
.how .text {
  margin: 10px 0 0 0;
}
.how li img {
  margin: 20px auto 0 auto;
  width: 100%;
  height: auto;
  max-width: 244px;
}
.trust {
  padding-top: 80px;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
.trust .image {
  max-width: 280px;
  margin: 0 auto 30px auto;
  background: url(../img/trust-mobile.png) no-repeat 50% 50%;
  background-size: contain;
}
.trust .image:before {
  content: "";
  display: block;
  padding-top: 102.67%;
}
.trust .text {
  margin: 0 auto;
  max-width: 450px;
}
.trust strong {
  font-weight: inherit;
  color: var(--white);
}
.trust .size1 {
  clear: var(--white);
  font-weight: bold;
  font-size: 36px;
  line-height: 1;
  margin: 0 0 10px 0;
}
.benefits {
  padding-top: 80px;
}
.benefits .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.benefits .bg {
  flex: 0 0 auto;
  width: 100%;
  color: var(--white);
  border: 1px solid var(--block-border);
  font-size: 16px;
  line-height: 1.5;
  padding: 44px 19px;
  text-align: center;
  position: relative;
  border-radius: 40px;
  background-repeat: no-repeat;
  background-position: 50% -50px;
  background-size: 150% auto;
}
.benefits .bg:before {
  content: "";
  display: block;
  width: 234px;
  height: 234px;
  margin: -12px auto 20px auto;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  pointer-events: none;
}
.benefits .bg:nth-child(2n - 1) {
  background-image: url(../img/benefits/bg1.png);
}
.benefits .bg:nth-child(2n) {
  background-image: url(../img/benefits/bg2.png);
}
.benefits .bg1:before {
  background-image: url(../img/benefits/shield.png);
}
.benefits .bg2:before {
  background-image: url(../img/benefits/crown.png);
}
.benefits .bg > * {
  position: relative;
}
.benefits .bg .max {
  max-width: 21.222222em;
  margin: 0 auto;
}
.benefits .size1 {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.1;
  margin: 0 0 5px 0;
}
.benefits .bg > *:last-child:not(.size1) {
  margin-bottom: 0 !important;
}
.stat {
  padding-top: 80px;
}
.stat .top-text {
  text-align: center;
  margin: 0 auto 20px auto;
  font-size: 16px;
  max-width: 672px;
}
.stat .top-text.ru {
  max-width: 840px;
}
.stat .size1 {
  color: var(--white);
  font-weight: bold;
  font-size: 30px;
  line-height: 1;
  margin: 0 0 10px 0;
}
.stat ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: bold;
  font-size: 25px;
  line-height: 1.1;
  color: var(--white);
  margin: 0;
  padding: 0;
  text-align: center;
}
.stat li:before {
  display: none;
}
.stat li {
  flex: 0 0 auto;
  width: 100%;
  margin: 0;
  min-height: 150px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--block-border);
  border-radius: 25px;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.stat li:nth-child(3n - 2) {
  background-image: url(../img/stat/bg1-mob.png);
  background-position: 0 50%;
}
.stat li:nth-child(3n - 1) {
  background-image: url(../img/stat/bg2-mob.png);
  background-position: 50% 100%;
}
.stat li:nth-child(3n) {
  background-image: url(../img/stat/bg3-mob.png);
  background-position: 100% 50%;
}
.stat li > * {
  margin: 0 auto;
  width: 100%;
  flex: 0 0 auto;
  max-width: 237px;
}
.stat .big {
  font-weight: bold;
  font-size: 36px;
  max-width: none;
}
.stat .small {
  color: var(--grey);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  max-width: none;
}
.profile {
  position: relative;
  z-index: 4;
}
.profile .size1 {
  color: var(--white);
  font-weight: bold;
  font-size: 30px;
  line-height: 1;
  margin: 0 0 10px 0;
}
.profile .top-text {
  padding: 80px 0 30px 0;
  flex: 0 0 auto;
  font-size: 16px;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}
.profile .top-text .max {
  margin: 0 auto;
}
.profile .top-text.ru {
  max-width: 673px;
}
.profile .top-text.ru .max {
  max-width: 25.15em;
}
.profile .wrap-screen {
  display: flex;
  flex-direction: column-reverse;
}
.profile .tel {
  position: relative;
  width: 230px;
  margin: 0 auto;
  background: url(../img/bg-tel.png) no-repeat 50% 50%;
  background-size: auto 100%;
  flex: 0 0 auto;
  margin-bottom: 30px;
}
.profile .tel:before {
  content: "";
  display: block;
  padding-top: 201.5625%;
}
.profile .tel img {
  position: absolute;
  top: 2.219%;
  left: 50%;
  height: 95.454545%;
  object-fit: contain;
  object-position: center;
  transform: translate3d(-50%, 0, 0);
}
.profile ul {
  flex: 0 0 auto;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  color: var(--white);
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}
.profile li:before {
  display: none;
}
.profile li {
  margin: 0;
  padding: 15px;
  border-radius: 15px;
  background: var(--bg-light);
  min-height: 86px;
}
.filters .top {
  padding-top: 80px;
  padding-bottom: 40px;
  position: sticky;
  top: 0;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.filters .top .container {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}
.filters .top-text {
  color: var(--white);
  margin: 0 0 20px 0;
  max-width: 603px;
}
.filters .size1 {
  color: var(--white);
  font-weight: bold;
  font-size: 30px;
  line-height: 1;
  margin: 0 0 15px 0;
}
.filters ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 40px 0;
  padding: 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  gap: 10px;
  color: var(--white);
}
.filters li:before {
  display: none;
}
.filters li {
  flex: 0 0 auto;
  width: 100%;
  margin: 0;
  padding: 16px;
  border-radius: 15px;
  background: var(--bg-light);
}
.filters .cards {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: auto;
  flex: 0 0 auto;
  width: 100%;
}
.filters .card {
  flex: 0 0 auto;
  margin: 0 auto;
  max-width: 335px;
  width: 100%;
  text-align: left;
  display: none;
  backface-visibility: hidden;
  will-change: transform, opacity;
  transform-origin: 50% 100%;
}
.filters .card:nth-child(1) {
  display: block;
  transform: translate3d(0, calc(50px * (1 - var(--percent1))), 0)
    scale(calc(0.89 + 0.11 * var(--percent1)));
  opacity: var(--percent1);
}
.filters .card:nth-child(2) {
  display: block;
  transform: translate3d(0, calc(50px * (1 - var(--percent2))), 0)
    scale(calc(0.89 + 0.11 * var(--percent2)));
  opacity: var(--percent2);
}
.filters .card:nth-child(3) {
  display: block;
  transform: translate3d(0, calc(50px * (1 - var(--percent3))), 0)
    scale(calc(0.89 + 0.11 * var(--percent3)));
  opacity: var(--percent3);
}
.filters .card .t {
  display: flex;
  align-items: center;
  margin: 0 0 15px 0;
  gap: 7px;
}
.filters .card .ava {
  flex: 0 0 auto;
  background: var(--bg-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 3px 0 0;
}
.filters .card .ava img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
.filters .card .text {
  flex: 1;
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  color: var(--grey);
}
.filters .card .text strong {
  display: block;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  margin: 0 0 4px 0;
}
.filters .card .text img {
  width: 20px;
  height: 20px;
  vertical-align: top;
  margin: -2px 5px -2px 0;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}
.filters .card .text .check {
  margin: -2px 5px -2px 0;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}
.filters .card .star {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 10px !important;
  background: var(--bg-light);
}
.filters .card .btn {
  flex: 0 0 auto;
  font-weight: 600;
  font-size: 15px;
  line-height: 40px;
  padding: 0 14.5px;
  border-radius: 10px !important;
  height: 40px;
  background: var(--green);
  color: var(--dark);
}
.filters .card .b {
  display: block !important;
  text-align: right;
  position: relative;
  border-radius: 20px !important;
  height: 97px;
  padding: 25px 15px;
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  color: var(--grey);
  background: var(--bg-light) url(../img/card-lines.svg) no-repeat 25px 50%;
  background-size: auto 87px;
}
.filters .card .b img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: auto;
}
.filters .card .b strong {
  display: block;
  color: var(--green);
  font-weight: 600;
  font-size: 20px;
  line-height: 23px;
  margin: 0 0 5px 0;
}
.start-now {
  padding-top: 100px;
}
.start-now .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.start-now .container > *:not(.free) {
  flex: 0 0 auto;
  width: 100%;
}
.start-now .free {
  margin-bottom: 18px;
  margin-left: -40px;
}
.start-now .size1 {
  color: var(--white);
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  line-height: 1;
  margin: 0 0 30px 0;
}
.faq {
  padding-top: 80px;
  font-size: 16px;
}
.faq .size1 {
  text-align: center;
  color: var(--white);
  margin: 0 0 7px 0;
  line-height: 1;
  font-weight: bold;
  font-size: 30px;
}
.faq .el {
  margin: 0 auto;
  max-width: 800px;
  color: var(--grey);
  transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.faq .el .qu.open {
  color: var(--white);
}
.faq .el:not(:last-child) {
  margin-bottom: 20px;
}
.faq .el strong {
  font-weight: inherit;
  color: var(--grey);
  transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.faq .el .qu.open strong {
  color: var(--green);
}
.faq .qu {
  cursor: pointer;
  padding: 10px 0 10px 60px;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
  margin: 0;
  font-size: 18px;
  color: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 70px;
}
.faq .qu .arr {
  position: absolute;
  top: 35px;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: -20px 0;
  background: var(--bg-light);
  transition-property: background, transform;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  backface-visibility: hidden;
  transform: rotate(0deg);
}
.faq .qu .arr svg {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -10px;
  fill: var(--white);
  transition: fill 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.faq .open.qu .arr {
  background-color: var(--white);
  transform: rotate(-180deg);
}
.faq .open.qu .arr svg {
  fill: var(--dark);
}

@media (pointer: fine) {
  .faq .el .qu:not(.open):hover .arr {
    background: var(--bg-light-hover);
  }
  .faq .el .qu.open:hover .arr {
    background: var(--white-hover);
  }
}
.faq .qu:not(.open) + .in {
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-20px);
  transition: all 0.2s ease;
}

.faq .qu.open + .in {
  max-height: 1000px;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  color: var(--white);
  transition: all 0.2s ease;
}

.faq .ind > *:first-child {
  margin-top: 0 !important;
}
.faq .ind > *:last-child {
  margin-bottom: 0 !important;
}
.faq h4 {
  font-weight: bold;
  font-size: 16px;
  line-height: inherit;
  margin: 40px 0 10px 0;
}
.faq li {
  margin: 0;
}
.faq li:not(:first-child) {
  margin-top: 0.2em;
}
.faq .in img {
  vertical-align: middle;
  height: 24px;
  width: auto;
  position: relative;
  top: -1px;
  margin: -5px 2px;
}
.support {
  padding-top: 80px;
}
.support .top-text {
  max-width: 350px;
  margin: 0 0 30px 0;
  font-weight: 600;
  line-height: 1.3;
}
.support .size1 {
  color: var(--white);
  font-weight: bold;
  font-size: 30px;
  line-height: 1;
  margin: 0 0 10px 0;
}
.support.ru .size1 {
  font-size: 28px;
}
.support .links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.support .links .link {
  flex: 1;
  text-align: center;
  color: var(--white);
  text-decoration: none;
  border-radius: 12.5px;
  padding: 16px;
  background: var(--bg-light);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  transition: background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media (pointer: fine) {
  .support .links .link:hover {
    background: var(--bg-light-hover);
  }
}
.support .links .link img {
  display: block;
  height: 37.5px;
  width: auto;
  margin: 0 auto 12px auto;
}
.form-subscribe {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form-subscribe > * {
  flex: 0 0 auto;
  max-width: 100%;
}
.form-subscribe .free {
  margin-top: 25px;
}
.form-subscribe .inputs {
  width: 100%;
  display: flex;
  align-items: flex-start;
  max-width: 450px;
}
.form-subscribe .inputs .input {
  flex: 1;
}
.form-subscribe .inputs .btn {
  flex: 0 0 auto;
  margin: 0 0 0 10px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  border-radius: 14px;
  background-image: url(../img/go.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: auto 24px;
}
.form-sent {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--white);
  text-align: center;
}
.form-sent .text-sent {
  font-weight: normal;
  position: relative;
  word-wrap: break-word;
}
.form-sent .text-sent:before {
  content: "";
  display: block;
  background: url(../img/sent.svg) no-repeat 50% 50%;
  width: 40px;
  height: 40px;
  background-size: contain;
  margin: 0 auto 15px auto;
}
.form-sent .soc-wrap {
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}
.soc {
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 auto;
  max-width: 100%;
  align-items: center;
  gap: 10px;
}
.soc > * {
  flex: 0 0 auto;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  overflow: hidden;
  text-align: left;
  text-indent: -100vw;
  background-color: var(--bg-light);
  transition: background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media (pointer: fine) {
  .soc > a:hover {
    background-color: var(--bg-light-hover);
  }
}
.soc .bg-facebook {
  background-image: url(../img/social-round/facebook.svg);
}
.soc .bg-twitter {
  background-image: url(../img/social-round/twitter.svg);
}
.soc .bg-instagram {
  background-image: url(../img/social-round/instagram.svg);
}
.soc .bg-telegram {
  background-image: url(../img/social-round/telegram.svg);
}
.soc .bg-vk {
  background-image: url(../img/social-round/vk.svg);
}
.soc .bg-vc {
  background-image: url(../img/social-round/vcru.svg);
}
.soc .bg-medium {
  background-image: url(../img/social-round/medium.svg);
  background-size: 30px;
}
.soc .bg-discord {
  background-image: url(../img/social-round/vk3.svg);
  background-size: 25px;
}
.top-block .form-sent,
.top-block .form-subscribe {
  margin-top: 30px;
}
.top-block .form-subscribe .free {
  font-size: 20px;
}
.email-form.ok .form-subscribe {
  display: none;
}
.email-form.ok .form-sent {
  display: block;
}
.custom-cursor {
  position: fixed;
  pointer-events: none;
  mix-blend-mode: difference;
  white-space: nowrap;
  color: #fff;
  /*background: url(/img/cursor.svg) no-repeat 50% 50%;*/
  background-size: auto 100%;
  height: 46px;
  min-width: 46px;
  line-height: 46px;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  transform: translate(-50%, -50%);
  z-index: 2000;
  display: none;
  opacity: 1 !important;
  transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.55));
}
.custom-cursor span {
  transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.custom-cursor .text-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  opacity: 0;
}

@media (pointer: fine) {
  *,
  *:before,
  *:after {
    /*cursor: none!important;*/
  }
  a,
  a *,
  button,
  button *,
  input,
  .js_hover,
  .js_hover * {
    cursor: pointer !important;
  }
  .js_hoverVideo,
  .js_hoverVideo * {
    /*cursor: none!important;*/
  }
  .custom-cursor {
    display: block !important;
  }
}
.custom-cursor--link {
  opacity: 0 !important;
}
.custom-cursor--video {
  opacity: 1 !important;
}
.custom-cursor--video .text-normal {
  opacity: 0;
}
.custom-cursor--video .text-video {
  opacity: 1;
}
#video-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
}
#video-modal video {
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#close-btn {
  position: absolute;
  top: 20px;
  left: 1vh;
  background: 0;
  border: 0;
  cursor: pointer;
}

.intercom-launcher {
  background: #0de7b2 !important;
  cursor: pointer !important;
}

iframe[data-intercom-frame="true"] {
  background: #0de7b2 !important;
  cursor: pointer !important;
}

.intercom-lightweight-app-launcher {
  bottom: 90px !important;
}

.intercom-launcher-frame {
  bottom: 90px !important;
}

.intercom-messenger-frame {
  bottom: 155px !important;
}

.intercom-lightweight-app-launcher-icon-open {
  cursor: pointer !important;
}

.intercom-lightweight-app-launcher-icon-open > svg {
  cursor: pointer !important;
}

.intercom-lightweight-app-launcher-icon-open > svg > path {
  cursor: pointer !important;
}

.product-changer {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.product-name {
  font-weight: 600;
  font-size: 16px;
  line-height: 145%;
  color: #fff;
}

.products-dropdown {
  display: none;
}

.product-menu__button {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: #a29dba;
  position: relative;
  padding-bottom: 0 !important;
}

.product-menu__button::after {
  position: absolute;
  content: "";
  top: 16px;
  background: url("../img/arrow-grey.svg") no-repeat center;
  width: 25px;
  height: 20px;
  margin-left: 12px;
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.product-menu__button.open::after {
  transform: rotate(180deg);
}

.product-menu__dropdown {
  margin-top: 30px;
  border-left: 1px solid #7ea1b3;
  display: none;
  flex-direction: column;
  padding: 15px 0 15px 30px;
}

.product-menu__button.open + .product-menu__dropdown {
  display: flex;
}

.product-menu__dropdown__element {
  font-weight: 500;
  font-size: 16px;
  line-height: 145%;
  margin-bottom: 25px;
}

.product-menu__dropdown__element:last-of-type {
  margin-bottom: 0;
}

.footer {
  display: block;
}

.container-new {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 0 0 auto;
  padding: 0 20px;
  max-width: 1440px;
  margin: 0 auto;
}

.container-new__top-part {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.container-new__email {
  text-align: left;
  margin: 20px 0;
}
.container-new__email > p {
  margin-bottom: 2px;
}

.footer .logo {
  width: 188px;
  height: 30px;
  margin: 0;
  position: relative;
  text-align: left;
  padding-left: 50px;
  font-style: normal;
  white-space: nowrap;
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: #ffffff;
}

.footer .logo::before {
  position: absolute;
  left: -6px;
  top: -10px;
  content: "";
  width: 50px;
  height: 50px;
  background: url("../img/logo-new.svg") center no-repeat;
  background-size: 38px 35px;
}
.footer .grid .col {
  text-align: left;
  /* min-width: 20%; */
}
.footer .grid .col .list > ul {
  display: flex;
  flex-direction: column;
}

.footer .grid .col .list > ul > li {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 16px;
  line-height: 145%;
}

.footer .grid .col .foot-title {
  margin: 40px 0 25px 0;
}

.container-new__bottom-part {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 20px 0 20px;
  max-width: 1440px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.container-new .content-download .links {
  display: flex;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.privacy-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.trading-leveraged {
  text-align: left;
}

.container-new__bottom-part > div {
  margin-bottom: 30px;
}
