@import url(https://fonts.googleapis.com/css2?family=Prata&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap);
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTop {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes revealLeft {
  0% {
    opacity: 1;
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes revealRight {
  0% {
    opacity: 1;
    clip-path: inset(0 0 0 100%);
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
    opacity: 1;
  }
}
@keyframes lightSpeedInLeft {
  from {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes revealTopToBottom {
  0% {
    opacity: 1;
    clip-path: inset(0 0 100% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes shakeX {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(1px, 0, 0);
  }
}
._anim-items {
  opacity: 0;
  transition: opacity 0.5s ease;
}

body {
  background: var(--bg);
}

section {
  overflow: hidden;
}

.content {
  padding-top: 112px;
}
@media (max-width: 480px) {
  .content {
    padding-top: 136px;
  }
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #070f12;
  --tx: #fff;
  --accent: #4f89ff;
  --tx-02: #9d9d9d;
  --232526: #232526;
  --font-family: "Montserrat", sans-serif;
  --second-family: "Prata", sans-serif;
}

.circle-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 60vw;
  height: 60vw;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .circle-svg {
    width: 80vw;
    height: 80vw;
  }
}

html ::-webkit-scrollbar {
  width: 12px;
}
html ::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}
html ::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 6px;
}
html ::-webkit-scrollbar-button {
  display: none;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm,
.container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md,
.container-sm,
.container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg,
.container-md,
.container-sm,
.container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl,
.container-lg,
.container-md,
.container-sm,
.container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm,
.container {
    max-width: 1320px;
  }
}
.tradingview-widget-copyright {
  display: none;
}

button {
  border: none;
  outline: none;
  background: unset;
}

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

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--second-family);
  font-weight: 400;
  color: var(--tx);
}

h1 {
  font-size: calc(26px + 46 * ((100vw - 320px) / 1600));
}
@media (min-width: 1600px) {
  h1 {
    font-size: 72px;
  }
}

h2 {
  font-size: calc(21px + 21 * ((100vw - 320px) / 1600));
}
@media (min-width: 1600px) {
  h2 {
    font-size: 42px;
  }
}

h3 {
  font-size: calc(17px + 9 * ((100vw - 320px) / 1600));
}
@media (min-width: 1600px) {
  h3 {
    font-size: 26px;
  }
}

p, a {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: calc(15px + 1 * ((100vw - 320px) / 1600));
  line-height: 150%;
  color: var(--tx-02);
}
@media (min-width: 1600px) {
  p, a {
    font-size: 16px;
  }
}

.col-datas {
  display: block;
}

.btn-common {
  border-radius: 50px;
  padding: 20px 42px;
  background: linear-gradient(125deg, #aac1ed 0%, #5374b6 100%);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: #f3f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  cursor: pointer;
}
.btn-common:hover {
  background: #5475b6;
}

.btn-white {
  border-radius: 40px;
  padding: 20px 18px;
  background: var(--tx);
  font-family: var(--font-family);
  font-weight: 500;
  text-align: center;
  color: var(--bg);
  transition: 0.3s ease-in-out;
}
.btn-white:hover {
  color: var(--accent);
}

.btn-log {
  font-family: var(--font-family);
  font-weight: 500;
  color: var(--accent);
  transition: 0.3s ease-in-out;
}
.btn-log:hover {
  color: var(--tx);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 112px;
  display: flex;
  align-items: center;
  z-index: 200;
  transition: 0.3s ease-in-out;
}
@media (max-width: 575.98px) {
  .header {
    height: unset;
  }
}
.header.active {
  height: 90px;
  background: var(--bg);
  box-shadow: 1px 1px 3px #4f89ff;
}
@media (max-width: 575.98px) {
  .header.active {
    height: unset;
  }
}
@media (max-width: 575.98px) {
  .header.active .header__logo {
    width: 100%;
    transition: unset;
    display: none;
  }
  .header.active .header__logo img {
    width: 50px;
  }
}
.header .arrow {
  cursor: pointer;
}
.header .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #EAEAEA;
}
@media (max-width: 767.98px) {
  .header .header__inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media (max-width: 575.98px) {
  .header .header__inner {
    flex-wrap: wrap;
  }
}

.header__left-col {
  display: flex;
  gap: 28px;
  align-items: center;
}
@media (max-width: 480px) {
  .header__left-col {
    order: 2;
  }
}

.header__left-col:lang(de-DE) {
  min-width: 215px;
}
@media (max-width: 992px) {
  .header__left-col:lang(de-DE) {
    min-width: initial;
  }
}

.header__left-col:lang(fr-FR) {
  min-width: 260px;
}
@media (max-width: 992px) {
  .header__left-col:lang(fr-FR) {
    min-width: initial;
  }
}

.header__burger {
  align-items: center;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}
.header__burger p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: #f3f4f4;
}

.header__logo {
  width: 110px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .header__logo {
    height: unset;
    grid-row: 1/2;
    grid-column: 1/3;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .header__logo {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .header__logo img {
    width: 80px;
    margin: 0 auto;
  }
}

.header__btns {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .header__btns {
    display: none;
  }
}
.header__btns .btn-white {
  padding: 20px 2.7em;
}
@media (max-width: 768px) {
  .header__btns {
    gap: 20px;
  }
}

.header__btns-mob {
  display: none;
}
@media (max-width: 768px) {
  .header__btns-mob {
    grid-row: 2/3;
    grid-column: 2/3;
    display: grid;
    grid-template-columns: repeat(2, 40px);
    grid-gap: 0 30px;
  }
}
@media (max-width: 480px) {
  .header__btns-mob {
    order: 3;
  }
}

.btn-lang {
  position: relative;
  display: inline-flex;
  cursor: pointer;
  align-items: center;
  gap: 5px;
}
.btn-lang span {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: #f3f4f4;
}
.btn-lang .arrow {
  transition: transform 0.3s ease;
}
.btn-lang .language {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 5px;
  padding-top: 2px;
  position: relative;
}
.btn-lang:hover .sub-menu {
  opacity: 1;
  transform: translateY(0);
}
.btn-lang:hover .arrow {
  transform: rotate(180deg) translateY(-3px);
}
.btn-lang .sub-menu {
  position: absolute;
  top: 100%;
  left: -18px;
  background: transparent;
  width: 74px;
  border-radius: 0px 0px 5px 5px;
  opacity: 0;
  padding: 3px 8px;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1;
  width: 75px;
}
.btn-lang .sub-menu li {
  padding: 5px;
  padding-left: 9px;
  transition: 0.3s ease-in-out;
}
.btn-lang .sub-menu span {
  transition: 0.3s ease-in-out;
}
.footer {
  padding-bottom: clamp(60px, 9.95vw ,135px);
  padding-top: clamp(40px, 5.4vw ,64px);
  background: url(../img/footer/footer-bg.png) no-repeat top center;
  background-size: cover;
}
@media (max-width: 992px) {
  .footer {
    padding: 65px 0px 50px 0px;
  }
}
.footer .footer__wrapper {
  display: flex;
  justify-content: space-between;
  padding-top: clamp(40px, 5.35vw ,63px);
}
@media (max-width: 1024px) {
  .footer .footer__wrapper {
    flex-direction: column;
  }
}
@media (max-width: 767.98px) {
  .footer .footer__wrapper {
    padding-top: 0;
  }
}
.footer .footer__logo {
  margin-top: 7px;
  width: 88px;
}
@media (max-width: 1024px) {
  .footer .footer__logo {
    margin-bottom: 40px;
  }
}
.footer .footer__logo img {
  max-width: 200px;
  width: 100%;
}
.footer .footer__links {
  width: 23.6363636364%;
}
@media (max-width: 1024px) {
  .footer .footer__links {
    width: 100%;
    margin-bottom: 25px;
  }
}
.footer .footer__links h3 {
  font-family: var(--second-family);
  font-size: calc(17px + 9 * ((100vw - 320px) / 1600));
  font-weight: 400;
  color: var(--tx);
  margin-bottom: 40px;
}
@media (min-width: 1600px) {
  .footer .footer__links h3 {
    font-size: 26px;
  }
}
@media (max-width: 1024px) {
  .footer .footer__links h3 {
    margin-bottom: 20px;
  }
}
.footer .footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 32px;
}
@media (max-width: 1024px) {
  .footer .footer__contacts {
    gap: 25px;
  }
}
.footer .footer__contacts .footer__copywrite {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: calc(15px + 1 * ((100vw - 320px) / 1600));
  color: var(--tx);
  margin-top: 62px;
}
@media (min-width: 1600px) {
  .footer .footer__contacts .footer__copywrite {
    font-size: 16px;
  }
}
.footer .footer__contacts .footer__copywrite span {
  display: inline;
}
@media (max-width: 1024px) {
  .footer .footer__contacts .footer__copywrite {
    margin-top: 0;
    margin-bottom: 20px;
  }
}
.footer .contacts__item {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1024px) {
  .footer .contacts__item {
    align-items: center;
  }
}
.footer .contacts__item img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.footer .contacts__item .numbers {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer .contacts__item a, .footer .contacts__item p {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: calc(15px + 1 * ((100vw - 320px) / 1600));
  color: var(--tx);
}
@media (min-width: 1600px) {
  .footer .contacts__item a, .footer .contacts__item p {
    font-size: 16px;
  }
}
.footer .contacts__item a:hover {
  font-weight: 500;
  color: var(--accent);
}
.footer .contacts__item:last-child {
  align-items: center;
}
.footer .footer__risks {
  width: 40.6060606061%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .footer .footer__risks {
    width: 100%;
  }
}
.footer .footer__risks h3 {
  font-family: var(--second-family);
  font-size: calc(17px + 9 * ((100vw - 320px) / 1600));
  font-weight: 400;
  color: var(--tx);
  margin-bottom: 40px;
}
@media (min-width: 1600px) {
  .footer .footer__risks h3 {
    font-size: 26px;
  }
}
@media (max-width: 1024px) {
  .footer .footer__risks h3 {
    margin-bottom: 25px;
  }
}
.footer .footer__risks p {
  margin-bottom: 20px;
}
.footer .footer__risks p:last-of-type {
  margin-bottom: 35px;
}
.footer .partners {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1024px) {
  .footer .partners {
    width: 100%;
    justify-content: space-evenly;
    gap: 15px;
    flex-wrap: wrap;
  }
}

.subheader {
  overflow: unset;
}
.subheader .subheader-bg {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  height: 424px;
  height: clamp(140px, 34.2vw, 424px);
  position: relative;
}
.subheader .circle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.subheader .subheader-text {
  width: 100%;
  text-align: left;
  position: relative;
  z-index: 2;
}
@media (max-width: 767.98px) {
  .subheader .subheader-text {
    text-align: center;
  }
}
.subheader h2.subheader-heading {
  opacity: 0;
  animation: 1.5s revealLeft ease-in-out forwards;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: calc(20px + 22 * ((100vw - 320px) / 1600));
  color: var(--tx);
}
@media (min-width: 1600px) {
  .subheader h2.subheader-heading {
    font-size: 42px;
  }
}

.header__menu {
  display: flex;
  position: absolute;
  top: 0;
  left: -100vw;
  width: 100%;
  height: 100vh;
  transition: 0.4s ease-in-out;
  margin: 0;
  z-index: 2;
  background: var(--bg);
}
.header__menu .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__menu a,
.header__menu span,
.header__menu li {
  cursor: pointer;
  color: #fff;
  font-size: clamp(14px, 1.38vw, 18px);
}
.header__menu .menu-closer {
  font-size: 40px;
  height: fit-content;
  cursor: pointer;
  display: block;
  transform: translateX(-15px) translateY(10px);
}
.header__menu .top_header {
  width: 100%;
}
.header__menu ul.top_header_link {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1199.98px) {
  .header__menu ul.top_header_link {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
    height: 80vh;
    overflow-y: scroll;
  }
}
@media (max-width: 767.98px) {
  .header__menu ul.top_header_link {
    grid-template-columns: 1fr;
  }
}
.header__menu ul.top_header_link > .menu-item-has-children {
  cursor: pointer;
  position: relative;
}
.header__menu ul.top_header_link > .menu-item-has-children > a {
  color: #5a596b;
  font-weight: 600;
}
.header__menu ul.top_header_link > .menu-item-has-children > .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: max-content;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}
.header__menu ul.top_header_link > .menu-item-has-children > .sub-menu > .menu-item-has-children > .sub-menu {
  margin-top: 5px;
  margin-left: 5px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.header__menu ul.top_header_link > li ul.sub-menu li a {
  transition: 0.3s ease-in-out;
  position: relative;
}
.header__menu ul.top_header_link > li ul.sub-menu li a:hover {
  color: var(--accent);
}
.header__menu ul.top_header_link > li ul.sub-menu li a:not([href]) {
  color: #fff;
  cursor: auto;
}

.top_header_link::-webkit-scrollbar-thumb {
  background-color: gray;
  border: none;
  height: 50%;
}

.top_header_link::-webkit-scrollbar {
  width: 8px;
}

#progressCircle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
#progressCircle:hover {
  transform: scale(1.1);
}
#progressCircle text {
  fill: #fff;
  font-family: var(--font-family);
}
#progressCircle #outerCircle {
  stroke: #fff;
}
#progressCircle #innerCircle {
  stroke: #5A63D3;
}
#progressCircle.done {
  animation: shakeX 1s;
}
#progressCircle.done #innerCircle {
  stroke: rgb(53, 231, 53);
}
#progressCircle.done text {
  fill: rgb(53, 231, 53);
}

@keyframes fillAnimation {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 red;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.content {
  padding-top: 0;
}

.intro {
  padding-top: clamp(60px, 10.7vw ,150px);
  padding-bottom: clamp(60px, 10.4vw ,144px);
  min-height: calc(100vh - 112px);
  background: url(../img/home/intro-bg.png) no-repeat top center;
  background-size: cover;
}
@media (max-width: 575.98px) {
  .intro {
    min-height: unset;
  }
}
.intro h1 {
  padding-top: 112px;
  margin-bottom: clamp(15px, 1.95vw ,20px);
}
@media (max-width: 575.98px) {
  .intro h1 {
    text-align: center;
  }
}
.intro h1._active {
  animation: 1s fadeInUp ease-in-out forwards;
}
.intro .intro__bottom {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .intro .intro__bottom {
    flex-direction: column;
    gap: 30px;
  }
}
.intro .intro__bottom-info {
  width: 39.9691358025%;
}
.intro .intro__bottom-info p {
  margin-bottom: clamp(20px, 2.8vw ,32px);
}
.intro .intro__bottom-info p._active {
  animation: 1s fadeInUp ease-in-out forwards;
  animation-delay: 0.2s;
}
@media (max-width: 991.98px) {
  .intro .intro__bottom-info {
    width: 73%;
  }
}
@media (max-width: 575.98px) {
  .intro .intro__bottom-info {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 575.98px) {
  .intro .btn-common {
    margin: 0 auto;
  }
}
.intro .btn-common._active {
  animation: 1s fadeInUp ease-in-out forwards;
  animation-delay: 0.4s;
}
.intro .intro__scroller {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  align-self: flex-end;
  position: relative;
  cursor: pointer;
  transition: 0.6s ease-in-out;
}
.intro .intro__scroller._active {
  animation: 1s fadeInDown ease-in-out forwards;
  animation-delay: 0.8s;
}
.intro .intro__scroller .circle {
  animation: rotate 18s linear infinite;
  width: 100%;
  height: 100%;
}
.intro .intro__scroller .circle path {
  fill: white;
}
.intro .intro__scroller .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.intro #intro-scroll-en:lang(en-US) {
  display: block;
}
.intro #intro-scroll-fr:lang(en-US) {
  display: none;
}
.intro #intro-scroll-de:lang(en-US) {
  display: none;
}
.intro #intro-scroll-ru:lang(en-US) {
  display: none;
}
.intro #intro-scroll-pl:lang(en-US) {
  display: none;
}
.intro #intro-scroll-fr:lang(fr-FR) {
  display: block;
}
.intro #intro-scroll-en:lang(fr-FR) {
  display: none;
}
.intro #intro-scroll-de:lang(fr-FR) {
  display: none;
}
.intro #intro-scroll-ru:lang(fr-FR) {
  display: none;
}
.intro #intro-scroll-pl:lang(fr-FR) {
  display: none;
}
.intro #intro-scroll-de:lang(de-DE) {
  display: block;
}
.intro #intro-scroll-en:lang(de-DE) {
  display: none;
}
.intro #intro-scroll-fr:lang(de-DE) {
  display: none;
}
.intro #intro-scroll-ru:lang(de-DE) {
  display: none;
}
.intro #intro-scroll-pl:lang(de-DE) {
  display: none;
}
.intro #intro-scroll-ru:lang(ru-RU) {
  display: block;
}
.intro #intro-scroll-en:lang(ru-RU) {
  display: none;
}
.intro #intro-scroll-fr:lang(ru-RU) {
  display: none;
}
.intro #intro-scroll-de:lang(ru-RU) {
  display: none;
}
.intro #intro-scroll-pl:lang(ru-RU) {
  display: none;
}
.intro #intro-scroll-pl:lang(pl-PL) {
  display: block;
}
.intro #intro-scroll-en:lang(pl-PL) {
  display: none;
}
.intro #intro-scroll-fr:lang(pl-PL) {
  display: none;
}
.intro #intro-scroll-de:lang(pl-PL) {
  display: none;
}
.intro #intro-scroll-ru:lang(pl-PL) {
  display: none;
}

.instruments h2 {
  margin-bottom: clamp(40px, 7.8vw ,112px);
}
@media (max-width: 767.98px) {
  .instruments h2 {
    text-align: center;
  }
}
.instruments .instruments__swiper {
  overflow: hidden;
}
.instruments .swiper-wrapper {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.instruments .swiper-slide {
  padding: 42px 20px 52px 34px;
  border: 1px solid #232526;
  border-radius: 20px;
  cursor: pointer;
  background-size: 275% 275%;
  background-position: right;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .instruments .swiper-slide {
    padding: 30px 20px;
  }
}
.instruments .swiper-slide h3 {
  margin-bottom: clamp(36px, 5.6vw ,72px);
}
.instruments .swiper-slide p {
  font-size: calc(13px + 1 * ((100vw - 320px) / 1600));
}
@media (min-width: 1600px) {
  .instruments .swiper-slide p {
    font-size: 14px;
  }
}
.instruments .swiper-slide:hover {
  transition: 0.3s ease-in-out;
  background-size: 125% 125%;
  background-image: url(../img/home/swiper__bg.svg);
}
.instruments .instruments__swiper-prev {
  cursor: pointer;
}
@media (max-width: 991.98px) {
  .instruments .instruments__swiper-prev {
    display: none;
  }
}
.instruments .swiper-pagination {
  display: none;
}
@media (max-width: 991.98px) {
  .instruments .swiper-pagination {
    display: block;
    position: unset;
  }
}
.instruments .swiper-pagination .swiper-pagination-bullet {
  border: 1px solid #fff;
  background: transparent;
  opacity: 1;
}
.instruments .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent);
}
.instruments .instruments__swiper-next {
  cursor: pointer;
}
@media (max-width: 991.98px) {
  .instruments .instruments__swiper-next {
    display: none;
  }
}

.trade {
  padding-top: clamp(70px, 11.3vw ,152px);
  padding-bottom: clamp(70px, 11.3vw ,152px);
}
.trade h2 {
  margin-bottom: 14px;
}
@media (max-width: 991.98px) {
  .trade h2 {
    text-align: center;
    margin-bottom: 28px;
  }
}
.trade .wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .trade .wrap {
    flex-direction: column-reverse;
    align-items: center;
    gap: 30px;
  }
}
.trade .trade__accordion {
  margin-top: 6.4em;
  width: 37.8086419753%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 991.98px) {
  .trade .trade__accordion {
    width: 75%;
  }
}
@media (max-width: 767.98px) {
  .trade .trade__accordion {
    width: 100%;
  }
}
.trade .trade__accordion-item {
  border: 1px solid var(--232526);
  border-radius: 15px;
  padding: 25px 40px;
  cursor: pointer;
}
.trade .trade__accordion-item.active .trade__accordion-content {
  max-height: 300px;
  padding-top: 20px;
}
.trade .trade__accordion-item.active .trade__accordion-header::after {
  content: "";
  background-image: url(../img/home/minus.svg);
  width: 24px;
  height: 24px;
  display: block;
}
.trade .trade__accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.trade .trade__accordion-header::after {
  transition: 0.3s ease-in-out;
  content: "";
  background-image: url(../img/home/plus.svg);
  width: 24px;
  height: 24px;
  display: block;
}
.trade .trade__accordion-content {
  max-height: 0;
  transition: all 0.4s ease-out;
  overflow: hidden;
}
.trade .trade__laptop {
  width: 58.7962962963%;
  position: relative;
}
@media (max-width: 991.98px) {
  .trade .trade__laptop {
    width: 75%;
  }
}
@media (max-width: 767.98px) {
  .trade .trade__laptop {
    width: 100%;
  }
}
.trade .trade__laptop img {
  position: relative;
  z-index: 2;
}
.trade .trade__laptop::after {
  content: "";
  width: 18vw;
  height: 18vw;
  border-radius: 100%;
  background: rgba(79, 137, 255, 0.3);
  filter: blur(305.3389587402px);
  display: block;
  position: absolute;
  top: 50%;
  z-index: 1;
  left: 50%;
  transform: translate(-50%, -50%);
}

.strategy .wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .strategy .wrap {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
.strategy .strategy__left {
  width: 49.7685185185%;
}
@media (max-width: 991.98px) {
  .strategy .strategy__left {
    width: 70%;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .strategy .strategy__left {
    width: 100%;
  }
}
.strategy .strategy__left h2 {
  margin-bottom: clamp(24px, 3vw ,32px);
}
.strategy .strategy__right {
  width: 35.6481481481%;
}
@media (max-width: 991.98px) {
  .strategy .strategy__right {
    width: 70%;
  }
}
@media (max-width: 767.98px) {
  .strategy .strategy__right {
    width: 100%;
  }
}
.strategy .strategy__item {
  display: flex;
  gap: 20px;
  margin-bottom: clamp(30px, 4.8vw ,62px);
}
@media (max-width: 991.98px) {
  .strategy .strategy__item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.strategy .strategy__item:last-of-type {
  margin-bottom: 0;
}
.strategy .strategy__item-icon {
  flex-shrink: 0;
  height: fit-content;
  padding: 16px;
  border: 1px solid var(--232526);
  border-radius: 20px;
}
.strategy .strategy__item-icon img {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.strategy .strategy__item-content h3 {
  margin-bottom: clamp(16px, 2vw ,20px);
}
.strategy .strategy__item-content p {
  font-size: 14px;
}

.security {
  padding-top: clamp(60px, 10.8vw ,152px);
  padding-bottom: clamp(60px, 10.8vw ,152px);
}
.security .security__top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: clamp(40px, 7.2vw ,100px);
}
@media (max-width: 767.98px) {
  .security .security__top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    width: 100%;
  }
}
.security .security__top p {
  width: 50.1543209877%;
  font-size: 14px;
}
@media (max-width: 767.98px) {
  .security .security__top p {
    width: 100%;
  }
}
.security .security__items {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1400px) {
  .security .security__items {
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
  }
}
@media (max-width: 767.98px) {
  .security .security__items {
    flex-direction: column;
    align-items: flex-start;
  }
}
.security .security__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 480px) {
  .security .security__item {
    justify-content: center;
  }
}
.security .security__item p {
  font-size: 14px;
}
.security .security__item .rz-block {
  display: block;
}
@media (max-width: 768px) {
  .security .security__item .rz-block {
    display: inline;
  }
}

.journey {
  padding-bottom: clamp(70px, 12.2vw ,170px);
}
.journey h2 {
  width: 63.9660493827%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: clamp(50px, 8.3vw ,112px);
}
@media (max-width: 991.98px) {
  .journey h2 {
    width: 100%;
  }
}
.journey .wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 224px;
  row-gap: 64px;
}
@media (max-width: 1199.98px) {
  .journey .wrap {
    column-gap: 70px;
  }
}
@media (max-width: 991.98px) {
  .journey .wrap {
    grid-template-columns: repeat(1, 0.7fr);
    justify-content: center;
  }
}
@media (max-width: 767.98px) {
  .journey .wrap {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 991.98px) {
  .journey .journey__item {
    text-align: center;
  }
}
.journey .journey__item p {
  font-size: 14px;
}
.journey .journey__item-title {
  display: flex;
  align-items: center;
  gap: clamp(30px, 4.9vw, 67px);
  margin-bottom: clamp(24px, 3vw ,32px);
}
@media (max-width: 991.98px) {
  .journey .journey__item-title {
    justify-content: center;
    gap: 20px;
  }
}
.journey .journey__item-title span {
  font-family: var(--second-family);
  font-size: calc(26px + 16 * ((100vw - 320px) / 1600));
  color: var(--tx);
}
@media (min-width: 1600px) {
  .journey .journey__item-title span {
    font-size: 42px;
  }
}

@keyframes rotate {
  from {
    transform: rotate(-360deg);
  }
}
.about {
  padding-top: clamp(60px, 9.2vw ,120px);
  padding-bottom: clamp(60px, 7.2vw ,80px);
  background: url(../img/about/about-bg.png) no-repeat top center;
  background-size: cover;
}
@media (max-width: 991.98px) {
  .about {
    padding-top: 160px;
  }
}
.about .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991.98px) {
  .about .wrap {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
}
.about .about__info {
  width: 42.6697530864%;
}
.about .about__info._active {
  animation: 1s revealLeft ease-in-out forwards;
}
@media (max-width: 991.98px) {
  .about .about__info {
    width: 75%;
  }
}
@media (max-width: 767.98px) {
  .about .about__info {
    width: 100%;
  }
}
.about .about__info h2 {
  margin-bottom: clamp(24px, 3vw ,32px);
}
.about .about__info p {
  font-size: 14px;
  margin-bottom: 16px;
}
.about .about__info p:last-of-type {
  margin-bottom: 0;
}
.about .about__img {
  width: 40%;
}
.about .about__img._active {
  animation: 1s anim ease-in-out forwards;
  animation-delay: 0.3s;
}
@media (max-width: 1199.98px) {
  .about .about__img {
    width: 60%;
    margin-left: 16%;
  }
}

.mission {
  padding-top: clamp(60px, 9.2vw ,120px);
  padding-bottom: clamp(70px, 11.2vw ,150px);
}
.mission .mission__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(50px, 7.95vw ,105px);
}
@media (max-width: 991.98px) {
  .mission .mission__top {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}
.mission .mission__top p {
  width: 50.3086419753%;
  font-size: 14px;
}
@media (max-width: 991.98px) {
  .mission .mission__top p {
    width: 70%;
  }
}
@media (max-width: 767.98px) {
  .mission .mission__top p {
    width: 100%;
  }
}
.mission .mission__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991.98px) {
  .mission .mission__bottom {
    flex-direction: column;
    gap: 30px;
  }
}
.mission .mission__bottom-img {
  width: 30.5555555556%;
}
@media (max-width: 991.98px) {
  .mission .mission__bottom-img {
    width: 55%;
  }
}
.mission .mission__bottom-items {
  width: 50.2314814815%;
  display: flex;
  flex-direction: column;
  gap: clamp(26px, 4.1vw, 52px);
}
@media (max-width: 991.98px) {
  .mission .mission__bottom-items {
    width: 75%;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .mission .mission__bottom-items {
    width: 100%;
  }
}
.mission .mission__bottom-items h3 {
  margin-bottom: clamp(22px, 2.9vw ,32px);
}
.mission #mission-en:lang(en-US) {
  display: block;
}
.mission #mission-fr:lang(en-US) {
  display: none;
}
.mission #mission-de:lang(en-US) {
  display: none;
}
.mission #mission-ru:lang(en-US) {
  display: none;
}
.mission #mission-pl:lang(en-US) {
  display: none;
}
.mission #mission-fr:lang(fr-FR) {
  display: block;
}
.mission #mission-en:lang(fr-FR) {
  display: none;
}
.mission #mission-de:lang(fr-FR) {
  display: none;
}
.mission #mission-ru:lang(fr-FR) {
  display: none;
}
.mission #mission-pl:lang(fr-FR) {
  display: none;
}
.mission #mission-de:lang(de-DE) {
  display: block;
}
.mission #mission-en:lang(de-DE) {
  display: none;
}
.mission #mission-fr:lang(de-DE) {
  display: none;
}
.mission #mission-ru:lang(de-DE) {
  display: none;
}
.mission #mission-pl:lang(de-DE) {
  display: none;
}
.mission #mission-ru:lang(ru-RU) {
  display: block;
}
.mission #mission-en:lang(ru-RU) {
  display: none;
}
.mission #mission-fr:lang(ru-RU) {
  display: none;
}
.mission #mission-de:lang(ru-RU) {
  display: none;
}
.mission #mission-pl:lang(ru-RU) {
  display: none;
}
.mission #mission-pl:lang(pl-PL) {
  display: block;
}
.mission #mission-en:lang(pl-PL) {
  display: none;
}
.mission #mission-fr:lang(pl-PL) {
  display: none;
}
.mission #mission-de:lang(pl-PL) {
  display: none;
}
.mission #mission-ru:lang(pl-PL) {
  display: none;
}

.choice h2 {
  margin-bottom: clamp(50px, 8.3vw ,112px);
}
@media (max-width: 991.98px) {
  .choice h2 {
    text-align: center;
  }
}
.choice .wrap {
  display: flex;
  justify-content: space-between;
  gap: 75px;
}
@media (max-width: 1399.98px) {
  .choice .wrap {
    gap: 40px;
  }
}
@media (max-width: 1199.98px) {
  .choice .wrap {
    gap: 15px;
  }
}
@media (max-width: 991.98px) {
  .choice .wrap {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}
@media (max-width: 767.98px) {
  .choice .wrap {
    gap: 30px;
  }
}
@media (max-width: 375px) {
  .choice .wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 991.98px) {
  .choice .choice__item {
    width: 27%;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
@media (max-width: 767.98px) {
  .choice .choice__item {
    width: 45%;
  }
}
@media (max-width: 575.98px) {
  .choice .choice__item {
    width: 55%;
  }
}
@media (max-width: 375px) {
  .choice .choice__item {
    width: 80%;
  }
}
.choice .choice__item img {
  margin-bottom: clamp(22px, 2.9vw ,32px);
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}
.choice .choice__item p {
  font-size: 14px;
}

@media (max-width: 991.98px) {
  .partnerships {
    padding-top: 60px;
  }
}
.partnerships .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991.98px) {
  .partnerships .wrap {
    flex-direction: column;
  }
}
.partnerships .partnerships__info {
  width: 43.1327160494%;
}
@media (max-width: 991.98px) {
  .partnerships .partnerships__info {
    width: 70%;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .partnerships .partnerships__info {
    width: 100%;
  }
}
.partnerships .partnerships__info h2 {
  margin-bottom: clamp(24px, 3vw ,32px);
}
.partnerships .partnerships__info p {
  font-size: 14px;
}
.partnerships .partnerships__img {
  width: 60%;
}
@media (max-width: 991.98px) {
  .partnerships .partnerships__img {
    width: 100%;
    margin-top: -20%;
  }
}
.partnerships #partnerships-en:lang(en-US) {
  display: block;
}
.partnerships #partnerships-fr:lang(en-US) {
  display: none;
}
.partnerships #partnerships-de:lang(en-US) {
  display: none;
}
.partnerships #partnerships-ru:lang(en-US) {
  display: none;
}
.partnerships #partnerships-pl:lang(en-US) {
  display: none;
}
.partnerships #partnerships-fr:lang(fr-FR) {
  display: block;
}
.partnerships #partnerships-en:lang(fr-FR) {
  display: none;
}
.partnerships #partnerships-de:lang(fr-FR) {
  display: none;
}
.partnerships #partnerships-ru:lang(fr-FR) {
  display: none;
}
.partnerships #partnerships-pl:lang(fr-FR) {
  display: none;
}
.partnerships #partnerships-de:lang(de-DE) {
  display: block;
}
.partnerships #partnerships-en:lang(de-DE) {
  display: none;
}
.partnerships #partnerships-fr:lang(de-DE) {
  display: none;
}
.partnerships #partnerships-ru:lang(de-DE) {
  display: none;
}
.partnerships #partnerships-pl:lang(de-DE) {
  display: none;
}
.partnerships #partnerships-ru:lang(ru-RU) {
  display: block;
}
.partnerships #partnerships-en:lang(ru-RU) {
  display: none;
}
.partnerships #partnerships-fr:lang(ru-RU) {
  display: none;
}
.partnerships #partnerships-de:lang(ru-RU) {
  display: none;
}
.partnerships #partnerships-pl:lang(ru-RU) {
  display: none;
}
.partnerships #partnerships-pl:lang(pl-PL) {
  display: block;
}
.partnerships #partnerships-en:lang(pl-PL) {
  display: none;
}
.partnerships #partnerships-fr:lang(pl-PL) {
  display: none;
}
.partnerships #partnerships-de:lang(pl-PL) {
  display: none;
}
.partnerships #partnerships-ru:lang(pl-PL) {
  display: none;
}

.become {
  padding-bottom: clamp(40px, 10.7vw ,170px);
}
.become .wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .become .wrap {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
}
.become .become__left {
  width: 52.3919753086%;
}
@media (max-width: 991.98px) {
  .become .become__left {
    width: 70%;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .become .become__left {
    width: 100%;
  }
}
.become .become__left h2 {
  margin-bottom: clamp(22px, 2.9vw ,32px);
}
.become .become__left p {
  margin-bottom: clamp(22px, 2.9vw ,32px);
}
@media (max-width: 991.98px) {
  .become .btn-common {
    margin: 0 auto;
  }
}
.become .become__right {
  width: 35.5709876543%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 991.98px) {
  .become .become__right {
    gap: 24px;
    width: 70%;
  }
}
@media (max-width: 767.98px) {
  .become .become__right {
    width: 100%;
  }
}
.become .become__item {
  display: flex;
  gap: 20px;
}
.become .become__right-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid var(--232526);
  border-radius: 20px;
}
.become .become__right-icon img {
  width: 24px;
  height: 24px;
}
.become .become__right-info h3 {
  margin-bottom: clamp(16px, 2vw ,20px);
}
.become .become__right-info p {
  font-size: 14px;
}

@keyframes anim {
  0% {
    opacity: 0;
    transform: rotateY(121deg) rotateZ(50deg) rotateX(30deg);
  }
  100% {
    opacity: 1;
    transform: rotateY(0) rotateZ(0) rotateX(0);
  }
}
.ac-types {
  padding: 150px 0;
}
@media (max-width: 767.98px) {
  .ac-types {
    padding: 75px 0;
  }
}
.ac-types .actypes-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(48px, 3.64vw, 70px) 20px;
}
@media (max-width: 991.98px) {
  .ac-types .actypes-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576.98px) {
  .ac-types .actypes-row {
    grid-template-columns: 1fr;
  }
}
.ac-types .actypes-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.ac-types .actypes-col h2, .ac-types .actypes-col h3 {
  text-align: center;
}
.ac-types .actypes-body {
  margin-top: clamp(16px, 2.6vw ,32px);
  border: 1px solid var(--232526);
  border-radius: 30px;
  padding-top: clamp(16px, 2.6vw ,32px);
  padding-bottom: clamp(16px, 2.6vw ,32px);
  padding-left: clamp(8px, 1.25vw, 24px);
  padding-right: clamp(8px, 1.25vw, 24px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.ac-types .actypes-line {
  display: flex;
  align-items: center;
  margin-bottom: clamp(8px, 1.8vw ,24px);
}
.ac-types .actypes-line:last-child {
  margin-bottom: 0;
}
.ac-types .actypes-line p {
  padding-left: 8px;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 14px;
  text-align: center;
  color: var(--tx-02);
  text-align: left;
}
.ac-types .actypes-icon {
  display: flex;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  justify-content: center;
  align-items: center;
}
.ac-types .actypes-bottom {
  margin-top: clamp(16px, 2.6vw ,32px);
}
.ac-types .ac-types__row.bg {
  background: rgba(12, 24, 34, 0.5);
  border-radius: 20px;
  border: 1px solid #122331;
}
.ac-types .ac-types__btn {
  padding: 0;
  width: 76%;
  height: 50px;
  margin: auto;
  font-size: 14px;
}
@media (max-width: 1399.98px) {
  .ac-types .ac-types__btn {
    width: 100%;
  }
}

.contacts {
  padding-bottom: clamp(50px, 8.45vw ,115px);
}
.contacts .wrap {
  display: grid;
  grid-template-columns: repeat(3, 0.26fr);
  gap: 140px;
}
@media (max-width: 1199.98px) {
  .contacts .wrap {
    gap: 50px;
  }
}
@media (max-width: 991.98px) {
  .contacts .wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }
}
@media (max-width: 767.98px) {
  .contacts .wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}
.contacts .contacts__item a {
  font-size: 14px;
}
.contacts .contacts__item-lable {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 20px;
}
.contacts .contacts__item-lable span {
  border: 1px solid var(--232526);
  border-radius: 20px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contacts .contacts__item-lable span img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.feedback {
  padding-bottom: clamp(70px, 12.1vw ,168px);
}
.feedback .feedback__lable {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-bottom: 25px;
}
.feedback .feedback__lable span {
  border: 1px solid var(--232526);
  border-radius: 20px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feedback .form__content {
  width: 66.2037037037%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 36px;
  row-gap: 28px;
}
@media (max-width: 991.98px) {
  .feedback .form__content {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .feedback .form__content {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.feedback .form__content._active {
  animation: removeForm 2s ease-in-out forwards;
}
.feedback .contacts__block input {
  width: 100%;
  outline: none;
  border-radius: 43px;
  padding: 21px 34px;
  background: transparent;
  border: 0.5px solid rgba(157, 157, 157, 0.3);
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  color: var(--tx-02);
}
.feedback .contacts__block input:focus {
  color: #fff;
}
.feedback .contacts__block input:focus::placeholder {
  color: #fff;
}
.feedback #successMessage {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: calc(15px + 4 * ((100vw - 320px) / 1600));
  display: none;
  line-height: 150%;
  color: var(--tx-02);
}
@media (min-width: 1600px) {
  .feedback #successMessage {
    font-size: 19px;
  }
}
@media (max-width: 767.98px) {
  .feedback .btn-common {
    margin: 0 auto;
  }
}
.feedback .btn-common._active {
  background: #5475b6;
}

@keyframes removeForm {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
.docs {
  padding: 160px 0;
}
@media (max-width: 991.98px) {
  .docs {
    padding: 70px 0;
  }
}
.docs .tabs {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .docs .tabs {
    flex-direction: column;
    align-items: center;
  }
}
.docs .tabs__nav {
  height: fit-content;
  overflow: hidden;
  width: 350px;
  flex-shrink: 0;
  background: rgba(12, 24, 34, 0.5);
  border: 1px solid #122331;
  padding: 40px;
  padding-bottom: 78px;
  border-radius: 20px;
}
@media (max-width: 991.98px) {
  .docs .tabs__nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 50px;
    padding-bottom: 10px;
  }
}
@media (max-width: 575.98px) {
  .docs .tabs__nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.docs .tabs__content {
  width: 66.0606060606%;
  padding-top: 20px;
}
@media (max-width: 991.98px) {
  .docs .tabs__content {
    width: 100%;
  }
}
.docs .tabs-nav__item {
  width: 100%;
  cursor: pointer;
  margin-bottom: 40px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: calc(17px + 9 * ((100vw - 320px) / 1600));
  color: var(--tx-02);
}
@media (min-width: 1600px) {
  .docs .tabs-nav__item {
    font-size: 26px;
  }
}
.docs .tabs-nav__item.is-active {
  color: var(--accent);
}
.docs .tabs-nav__item:not(.is-active):hover {
  color: var(--accent);
}
.docs .tabs-nav__item .tabs__content {
  position: relative;
}
.docs .tab {
  display: none;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 400;
  line-height: clamp(18px, 1.5vw, 22px);
}
.docs .tab p {
  margin-bottom: 16px;
}
.docs .tab.is-active {
  display: block;
}
.docs .tab__title {
  margin-bottom: 24px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: calc(23px + 19 * ((100vw - 320px) / 1600));
  color: var(--tx);
  margin-top: 70px;
}
@media (min-width: 1600px) {
  .docs .tab__title {
    font-size: 42px;
  }
}
.docs .tab__title:first-of-type {
  margin-top: 0;
}

.legal-docs {
  padding-top: clamp(30px, 4.7vw ,60px);
  padding-bottom: clamp(70px, 11.3vw ,152px);
}

.brand-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(48px, 5.56vw, 80px);
  margin-top: clamp(48px, 5.56vw, 80px);
}

.docs-line {
  margin-top: clamp(12px, 1.67vw, 24px);
}
.docs-line:first-child {
  margin-top: 0;
}

.docs-link {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.docs-heading {
  padding-left: clamp(12px, 1.67vw, 24px);
  font-family: var(--font-family);
  font-weight: 300;
  font-size: calc(15px + 1 * ((100vw - 320px) / 1600));
  line-height: 150%;
  color: var(--tx-02);
}
@media (min-width: 1600px) {
  .docs-heading {
    font-size: 16px;
  }
}

.legal-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 48px 64px;
}

.legal-item {
  display: flex;
  align-items: center;
}

.legal-icon {
  display: flex;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.tradeholic-theme {
  background: #ffffff;
}
.tradeholic-theme .tradeholic {
  background: #ffffff;
  padding: 5% 0;
}
.tradeholic-theme .tradeholic #btn-instr:lang(ru-RU) {
  display: block !important;
}
.tradeholic-theme .tradeholic #btn-instr:lang(en-US) {
  display: none !important;
}
.tradeholic-theme .tradeholic #btn-instr:lang(de-DE) {
  display: none !important;
}
.tradeholic-theme .tradeholic #btn-instr:lang(cs-CS) {
  display: none !important;
}
.tradeholic-theme .tradeholic #btn-instr:lang(fr-FR) {
  display: none !important;
}
.tradeholic-theme .tradeholic body {
  position: relative;
}
.tradeholic-theme .tradeholic .container {
  padding: 0;
}
.tradeholic-theme .tradeholic h2,
.tradeholic-theme .tradeholic h3,
.tradeholic-theme .tradeholic h4,
.tradeholic-theme .tradeholic h5,
.tradeholic-theme .tradeholic h6 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 32px);
  line-height: clamp(24px, 2.2vw, 38px);
  color: #000000;
  text-align: center;
  font-weight: 700;
  margin-bottom: clamp(24px, 3vw, 48px);
}
.tradeholic-theme .tradeholic .tradeholic-panel {
  display: flex;
  justify-content: space-between;
}
.tradeholic-theme .tradeholic .tradeholic-column {
  width: 48%;
}
.tradeholic-theme .tradeholic .th-field {
  background-color: #ffffff;
  padding: 50px 0;
}
.tradeholic-theme .tradeholic .subheader {
  padding-bottom: 80px;
  background: #ffffff;
}
.tradeholic-theme .tradeholic .calc-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0 30px;
}
.tradeholic-theme .tradeholic .th__button {
  /* display: none !important; */
  cursor: pointer;
  box-sizing: border-box;
  max-width: 160px;
  width: 100%;
  padding: 10px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  color: #ffffff;
  background-color: #26b985;
  border-radius: 7px;
  border: 2px solid #26b985;
  transition: all 0.3s ease-in-out;
  margin: 25px 0 0 0;
}
.tradeholic-theme .tradeholic .th__button:hover {
  background-color: transparent;
  color: #26b985;
}
.tradeholic-theme .tradeholic .th__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2em;
  text-align: center;
  margin: 60px 0 20px 0;
  color: #000000;
}
.tradeholic-theme .tradeholic .mtop-96 {
  margin-top: clamp(48px, 6.8vw, 96px);
}

@media (max-width: 991px) {
  .tradeholic-theme .tradeholic {
    padding: 48px 0;
  }
  .tradeholic-theme .tradeholic .tradeholic-panel {
    flex-direction: column;
  }
  .tradeholic-theme .tradeholic .tradeholic-panel .tradeholic-column {
    width: 100%;
  }
}
.not-found {
  display: flex;
  height: 100vh;
  /* Beyond mobile */
  /* Animations */
}
.not-found .container-paper {
  display: grid;
  grid-gap: 3em 1.5em;
  margin: auto;
  max-width: 60em;
  padding: 3em 0;
  text-align: center;
  width: calc(100% - 3em);
}
@media (max-width: 768px) {
  .not-found .container-paper {
    justify-content: center;
  }
}
.not-found .paper {
  display: block;
  margin: auto;
  overflow: visible;
  width: 100%;
  max-width: 224px;
  height: auto;
}
.not-found .paper__fill {
  fill: hsl(0deg, 0%, 100%);
}
.not-found .paper__outline, .not-found .paper__lines {
  transition: stroke 0.3s;
}
.not-found .paper__top, .not-found .paper__bottom, .not-found .paper__tear, .not-found .paper__tear-fill {
  animation: paperTop 1.25s cubic-bezier(0.77, 0, 0.18, 1);
}
.not-found .paper__top, .not-found .paper__bottom {
  transform-origin: 0 148px;
  transition: transform 0.3s cubic-bezier(0.77, 0, 0.18, 1);
}
.not-found .paper__top {
  transform: translate(0, 8px);
}
.not-found .paper__bottom {
  animation-name: paperBottom;
  transform: translate(0, 42px);
}
.not-found .paper__tear, .not-found .paper__tear-fill {
  animation-timing-function: cubic-bezier(0.32, 0, 0.67, 0);
}
.not-found .paper__tear {
  animation-name: paperTear;
  stroke-dashoffset: 0;
}
.not-found .paper__tear-fill {
  animation-name: paperTearFill;
}
.not-found .paper__outline:hover .paper__top, .not-found .paper__outline:hover .paper__bottom {
  transform: translate(0, 25px);
}
.not-found h1 {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .not-found .container-paper {
    grid-template-columns: 1fr 2fr;
    align-items: center;
    text-align: left;
    justify-content: center;
  }
  .not-found .paper {
    max-width: 300px;
  }
}
@keyframes paperTop {
  from, 40% {
    animation-timing-function: cubic-bezier(0.32, 0, 0.67, 0);
    transform: translate(0, 25px) rotate(0);
    transform-origin: 61px 148px;
  }
  70% {
    animation-timing-function: cubic-bezier(0.33, 1, 0.67, 1.5);
    transform: translate(0, 25px) rotate(-5deg);
    transform-origin: 61px 148px;
  }
  to {
    transform: translate(0, 8px) rotate(0);
    transform-origin: 0 148px;
  }
}
@keyframes paperBottom {
  from, 40% {
    animation-timing-function: cubic-bezier(0.32, 0, 0.67, 0);
    transform: translate(0, 25px) rotate(0);
    transform-origin: 61px 148px;
  }
  70% {
    animation-timing-function: cubic-bezier(0.33, 1, 0.67, 1.5);
    transform: translate(0, 25px) rotate(5deg);
    transform-origin: 61px 148px;
  }
  to {
    transform: translate(0, 42px) rotate(0);
    transform-origin: 0 148px;
  }
}
@keyframes paperTear {
  from, 40% {
    stroke-dashoffset: -198;
  }
  70%, to {
    stroke-dashoffset: 0;
  }
}
@keyframes paperTearFill {
  from, 40% {
    width: 187px;
  }
  70%, to {
    width: 0;
  }
}
