@import url(https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Roboto: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;
}

:root {
  --c-primary: #FF585F;
  --c-black: #000;
  --c-gradient: linear-gradient(180deg, #FF929F 0%, #FF585F 100%);
  --c-border: #d8d8db;
  --c-bg: #f5f6f9;
  --c-bg-white: #fff;
  --c-text-black: #000;
  --c-text-gray: #909090;
  --c-text-white: #fff;
  --c-text-accent: #ED060C;
  --c-heading-black: #000;
  --c-heading-accent: #8267ec;
  --font-main: "Noto Sans", serif;
  --font-second: "Roboto", serif;
  --header-height: 134px;
}

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

.container {
  max-width: 1400px;
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin: 0 auto;
}
@media (max-width: 1400px) {
  .container {
    width: 98%;
  }
}
.container.space {
  padding-left: clamp(0px, 3vw, 100px);
  padding-right: clamp(0px, 3vw, 100px);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-main);
  color: var(--c-heading-black);
}

h1 {
  font-weight: 600;
  line-height: normal;
  font-size: calc(26px + 34 * ((100vw - 375px) / 1265));
}
@media (min-width: 1265px) {
  h1 {
    font-size: 60px;
  }
}

h2 {
  font-weight: 600;
  line-height: normal;
  font-size: calc(23px + 25 * ((100vw - 375px) / 1265));
}
@media (min-width: 1265px) {
  h2 {
    font-size: 48px;
  }
}

h3 {
  font-weight: 500;
  line-height: normal;
  font-size: calc(19px + 17 * ((100vw - 375px) / 1265));
}
@media (min-width: 1265px) {
  h3 {
    font-size: 36px;
  }
}

h4 {
  font-weight: 500;
  line-height: normal;
  font-size: calc(16px + 4 * ((100vw - 375px) / 1265));
}
@media (min-width: 1265px) {
  h4 {
    font-size: 20px;
  }
}

p,
a {
  font-family: var(--font-second);
  color: var(--c-text-gray);
  line-height: normal;
  font-size: calc(15px + 3 * ((100vw - 375px) / 1265));
}
@media (min-width: 1265px) {
  p,
a {
    font-size: 18px;
  }
}

.btn-prime {
  padding: clamp(10px, 1.3vw, 16px) clamp(18px, 2.4vw, 31px);
  border-radius: 29px;
  background: var(--c-gradient);
  width: max-content;
  display: block;
  transition: background-color 0.3s, transform 0.3s;
  transform: scale3d(1, 1, 1);
  transform-style: preserve-3d;
  overflow: hidden;
}
.btn-prime::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--c-gradient);
  opacity: 1;
  transition: opacity 0.3s;
}
.btn-prime:hover {
  background: var(--c-primary);
  transform: scale3d(0.95, 0.95, 0.95);
}
.btn-prime:hover::before {
  opacity: 0;
}
.btn-prime span {
  font-family: var(--font-second);
  color: var(--c-text-gray);
  line-height: normal;
  font-size: calc(15px + 3 * ((100vw - 375px) / 1265));
  font-size: calc(15px + 2 * ((100vw - 375px) / 1265));
  color: var(--c-text-white);
  position: relative;
  z-index: 1;
}
@media (min-width: 1265px) {
  .btn-prime span {
    font-size: 18px;
  }
}
@media (min-width: 1265px) {
  .btn-prime span {
    font-size: 17px;
  }
}

.btn-transparent {
  padding: clamp(10px, 1.3vw, 16px) clamp(18px, 2.4vw, 31px);
  border-radius: 29px;
  background: transparent;
  width: max-content;
  display: block;
  transition: background-color 0.3s, transform 0.3s;
  transform: scale3d(1, 1, 1);
  transform-style: preserve-3d;
  overflow: hidden;
  border: 1px solid var(--c-black);
}
.btn-transparent:hover {
  transform: scale3d(0.95, 0.95, 0.95);
  border: 1px solid var(--c-primary);
}
.btn-transparent span {
  font-family: var(--font-second);
  color: var(--c-text-gray);
  line-height: normal;
  font-size: calc(15px + 3 * ((100vw - 375px) / 1265));
  font-size: calc(15px + 2 * ((100vw - 375px) / 1265));
  color: var(--c-text-black);
}
@media (min-width: 1265px) {
  .btn-transparent span {
    font-size: 18px;
  }
}
@media (min-width: 1265px) {
  .btn-transparent span {
    font-size: 17px;
  }
}

.btn-black {
  padding: clamp(10px, 1.3vw, 16px) clamp(18px, 2.4vw, 31px);
  border-radius: 29px;
  background: var(--c-black);
  display: inline-flex;
  transition: background-color 0.3s, transform 0.3s;
  transform: scale3d(1, 1, 1);
}
.btn-black:hover {
  background: var(--c-primary);
  transform: scale3d(0.95, 0.95, 0.95);
}
.btn-black span {
  font-family: var(--font-second);
  color: var(--c-text-gray);
  line-height: normal;
  font-size: calc(15px + 3 * ((100vw - 375px) / 1265));
  font-size: calc(15px + 2 * ((100vw - 375px) / 1265));
  transition: color 0.3s;
  color: var(--c-text-white);
}
@media (min-width: 1265px) {
  .btn-black span {
    font-size: 18px;
  }
}
@media (min-width: 1265px) {
  .btn-black span {
    font-size: 17px;
  }
}

.btn-white {
  padding: clamp(10px, 1.3vw, 16px) clamp(18px, 2.4vw, 31px);
  border-radius: 29px;
  background: #F5F6F9;
  display: inline-flex;
  transition: background-color 0.3s, transform 0.3s;
  transform: scale3d(1, 1, 1);
}
.btn-white:hover {
  background: var(--c-primary);
  transform: scale3d(0.95, 0.95, 0.95);
}
.btn-white span {
  font-family: var(--font-second);
  color: var(--c-text-gray);
  line-height: normal;
  font-size: calc(15px + 3 * ((100vw - 375px) / 1265));
  font-size: calc(15px + 2 * ((100vw - 375px) / 1265));
  transition: color 0.3s;
  color: var(--c-text-black);
}
@media (min-width: 1265px) {
  .btn-white span {
    font-size: 18px;
  }
}
@media (min-width: 1265px) {
  .btn-white span {
    font-size: 17px;
  }
}

.header {
  padding: clamp(15px, 1.5625vw, 30px) 0;
  height: var(--header-height);
}
.header .header__inner {
  display: flex;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  border-radius: 40px;
  border: 1px solid var(--c-border);
  background: var(--c-bg-white);
  padding: clamp(10px, 1.2vw, 14px);
  padding-left: clamp(12px, 1.7vw, 23px);
  transition: padding 0.3s;
  position: relative;
}
@media (max-width: 1200px) {
  .header .header__inner {
    max-width: 96%;
  }
}
@media (max-width: 1024px) {
  .header .header__inner {
    justify-content: space-between;
  }
}
@media (max-width: 576px) {
  .header .header__inner {
    flex-wrap: wrap;
    border-radius: 20px;
  }
}
.header .header__logo {
  margin-right: 1vw;
}
@media (max-width: 576px) {
  .header .header__logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
  }
}
.header .header__btns-mob {
  display: none;
}
.header .header__burger {
  display: none;
}
@media (max-width: 1024px) {
  .header .header__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: var(--c-primary);
    padding: 12px;
    border-radius: 0.75rem;
  }
  .header .header__burger span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--c-text-white);
    border-radius: 2px;
    transition: all 0.3s;
  }
}
.header .mobile-nav {
  display: none;
}
@media (max-width: 1024px) {
  .header .mobile-nav {
    display: block;
  }
}
@media (max-width: 1024px) {
  .header .header__btn {
    margin-left: 1vw;
    margin-right: 1.5vw;
  }
}
.btn-lang {
  display: grid;
  align-items: center;
  margin-right: 1vw;
  position: relative;
}
@media (max-width: 1024px) {
  .btn-lang {
    margin: 0 20px 0 auto;
  }
}
@media (max-width: 576px) {
  .btn-lang {
    margin: unset;
  }
}
.btn-lang:hover ul.lang__menu > .menu-item > ul.sub-menu {
  transform: scaleY(1);
}
.btn-lang:hover img {
  transform: rotate(-180deg);
}
.btn-lang:has(ul.lang__menu ul.sub-menu) {
  grid-template-columns: auto 10px;
  grid-gap: 6px;
}
.btn-lang:has(ul.lang__menu ul.sub-menu) img {
  display: inline;
  transition: all 0.3s ease-in-out;
}
.btn-lang ul.lang__menu {
  font-family: var(--font-second);
  color: var(--c-text-gray);
  line-height: normal;
  font-size: calc(15px + 3 * ((100vw - 375px) / 1265));
  color: var(--c-text-black);
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1265px) {
  .btn-lang ul.lang__menu {
    font-size: 18px;
  }
}
.btn-lang ul.lang__menu > .menu-item > a span {
  font-weight: 700;
  color: var(--c-text-gray);
}
.btn-lang ul.lang__menu > .menu-item > ul.sub-menu {
  overflow: hidden;
  border-radius: 10px;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.btn-lang ul.lang__menu > .menu-item > ul.sub-menu li {
  transition: all 0.3s ease-in-out;
}
.btn-lang ul.lang__menu > .menu-item > ul.sub-menu li:hover a span {
  color: var(--c-primary);
  font-weight: 700;
}
.btn-lang ul.lang__menu > .menu-item > ul.sub-menu li a {
  cursor: pointer;
}
.btn-lang ul.lang__menu > .menu-item > ul.sub-menu li a span {
  transition: all 0.3s ease-in-out;
}
.btn-lang ul.lang__menu .menu-item {
  font-family: var(--font-second);
  color: var(--c-text-gray);
  line-height: normal;
  font-size: calc(15px + 3 * ((100vw - 375px) / 1265));
  color: var(--c-text-black);
}
@media (min-width: 1265px) {
  .btn-lang ul.lang__menu .menu-item {
    font-size: 18px;
  }
}
.btn-lang img {
  display: none;
}

.footer {
  padding-bottom: clamp(30px, 3.6458333333vw, 60px);
}
.footer .container {
  background: var(--c-bg);
  padding: clamp(35px, 3.6458333333vw, 70px) clamp(60px, 6.25vw, 120px);
  border-radius: 30px;
}
@media (max-width: 576px) {
  .footer .container {
    padding: clamp(35px, 3.6458333333vw, 70px) 0;
  }
}
.footer h4 {
  margin: 0 0 clamp(15px, 1.5625vw, 30px);
}
@media (max-width: 1024px) {
  .footer h4 {
    text-align: center;
  }
}
.footer .footer__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr 3fr;
  grid-gap: clamp(65px, 6.7708333333vw, 130px);
}
@media (max-width: 1024px) {
  .footer .footer__inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .footer .footer__inner {
    grid-gap: 40px;
  }
}
@media (max-width: 1024px) {
  .footer .footer__inner .footer__logo {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .footer .footer__inner .footer__logo img {
    max-width: clamp(140px, 25.1302083333vw, 193px);
  }
}
.footer .footer__inner .footer__contacts .items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: fit-content;
}
@media (max-width: 1024px) {
  .footer .footer__inner .footer__contacts .items {
    flex-direction: row;
    gap: 40px;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  .footer .footer__inner .footer__contacts .items {
    flex-direction: column;
    gap: 24px;
  }
}
.footer .footer__inner .footer__contacts .items .item {
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-gap: 0 16px;
  align-items: center;
}
.footer .footer__inner .footer__contacts .items .item .item__phones {
  display: flex;
  flex-direction: column;
}
.footer .footer__inner .footer__contacts .items .item a {
  width: min-content;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}
.footer .footer__inner .footer__contacts .items .item a:hover {
  color: var(--c-prime-velvet);
}
@media (max-width: 576px) {
  .footer .footer__inner .footer__contacts .items .item {
    text-align: center;
  }
}
.footer .footer__inner .footer__risk p {
  font-size: calc(15px + 2 * ((100vw - 375px) / 1265));
}
@media (min-width: 1265px) {
  .footer .footer__inner .footer__risk p {
    font-size: 17px;
  }
}
@media (max-width: 1024px) {
  .footer .footer__inner .footer__risk p {
    text-align: center;
  }
}
.footer .footer__bottom {
  display: grid;
  grid-template-columns: 1fr 1.5fr 3fr;
  grid-gap: clamp(65px, 6.7708333333vw, 130px);
  margin: clamp(35px, 3.6458333333vw, 70px) 0 0;
}
@media (max-width: 1024px) {
  .footer .footer__bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.footer .footer__bottom .copy {
  grid-column: 2/3;
}
@media (max-width: 1024px) {
  .footer .footer__bottom .copy {
    grid-column: unset;
  }
}
.footer .footer__bottom .pay {
  grid-column: 3/4;
  display: grid;
  grid-template-columns: repeat(5, min-content);
  grid-template-rows: auto;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1024px) {
  .footer .footer__bottom .pay {
    grid-column: unset;
    justify-content: center;
    grid-row: 1/2;
    grid-template-columns: repeat(3, min-content);
  }
}
@media (max-width: 375px) {
  .footer .footer__bottom .pay {
    grid-template-columns: repeat(2, min-content);
  }
}
.footer .footer__bottom .pay img {
  max-width: 74px;
}

.subheader {
  padding-bottom: clamp(50px, 5.2083333333vw, 100px);
}
.subheader .container {
  background: url(../img/part_subheader/subheader_bg.webp) no-repeat center/cover;
  border-radius: 20px;
  border: 1px solid var(--c-border);
}
.subheader .subheader__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: clamp(
        160px,
        16.7vw,
        170px
    );
  padding-bottom: clamp(
        80px,
        9.2vw,
        100px
    );
}
.subheader .subheader__inner h2 {
  opacity: 0;
  animation: 0.5s fadeInTop ease-in-out forwards;
  margin-bottom: clamp(
        20px,
        2.7vw,
        30px
    );
}
.subheader .subheader__inner p {
  opacity: 0;
  animation: 0.5s fadeInTop ease-in-out forwards;
  animation-delay: 0.2s;
  max-width: 689px;
}

.header__nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}
.header__nav a {
  transition: color 0.2s;
  font-family: var(--font-second);
  color: var(--c-text-gray);
  line-height: normal;
  font-size: calc(15px + 3 * ((100vw - 375px) / 1265));
  font-size: calc(14px + 3 * ((100vw - 375px) / 1265));
}
@media (min-width: 1265px) {
  .header__nav a {
    font-size: 18px;
  }
}
@media (min-width: 1265px) {
  .header__nav a {
    font-size: 17px;
  }
}
.header__nav a:hover {
  color: var(--c-black);
}
.header__nav .menu-closer {
  display: none;
  font-size: 40px;
  height: fit-content;
}
@media (max-width: 991.98px) {
  .header__nav .menu-closer {
    display: block;
    transform: translateX(-15px) translateY(10px);
  }
}
.header__nav ul.header__menu {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.0833333333vw, 40px);
}
@media (max-width: 991.98px) {
  .header__nav ul.header__menu {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }
}
.header__nav ul.header__menu > .menu-item-has-children {
  cursor: pointer;
  position: relative;
}
.header__nav ul.header__menu > .menu-item-has-children > .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 8px;
  position: absolute;
  width: max-content;
  transform-origin: top left;
  transform: scaleY(0);
  top: 120%;
  background: #fff;
  box-shadow: 0px 0px 8.8px 0px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  left: 0;
  transition: 0.3s ease-in-out;
  z-index: 50;
  padding: clamp(20px, 2.5vw, 30px);
}
@media (max-width: 991.98px) {
  .header__nav ul.header__menu > .menu-item-has-children > .sub-menu {
    position: unset;
    padding: 0;
    transform: unset;
    transform-origin: unset;
    background: unset;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
  }
}
.header__nav ul.header__menu > .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__nav ul.header__menu > .menu-item-has-children:hover > .sub-menu {
  transform: scale(1);
}
@media (max-width: 991.98px) {
  .header__nav ul.header__menu > .menu-item-has-children:hover > .sub-menu {
    max-height: 350px;
    overflow: visible;
    margin-top: 10px;
    visibility: visible;
  }
}
.header__nav ul.header__menu > .menu-item-has-children:hover:hover a::after {
  transform: rotate(180deg);
}
@media (max-width: 991.98px) {
  .header__nav ul.header__menu > li {
    text-align: center;
  }
}
.header__nav ul.header__menu > li.menu-item-has-children > a {
  display: flex;
  align-items: center;
  gap: 2px;
}
@media (max-width: 991.98px) {
  .header__nav ul.header__menu > li.menu-item-has-children > a {
    justify-content: center;
  }
}
.header__nav ul.header__menu > li.menu-item-has-children > a::after {
  transition: 0.3s ease-in-out;
  content: "";
  display: block;
  width: 18px;
  height: 18px;
}
.header__nav ul.header__menu > li ul.sub-menu li a {
  transition: 0.3s ease-in-out;
  position: relative;
  color: var(--c-text-gray);
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__nav ul.header__menu > li ul.sub-menu li a:hover {
  color: var(--c-black);
}
.header__nav ul.header__menu > li ul.sub-menu li a:not([href]) {
  mask-image: unset;
  mask-size: unset;
  animation: unset;
}
.header__nav ul.header__menu > li ul.sub-menu li a[href]:hover::after {
  width: 100%;
}
.header__nav .header__menu > .menu-item-has-children a[data-path] {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.3vw, 15px);
}
.header__nav .header__menu > .menu-item-has-children a[data-path] a {
  color: var(--c-text-gray);
}
.header__nav .header__menu > .menu-item-has-children a[data-path] svg path {
  stroke: var(--c-text-gray);
  fill: transparent;
}
.header__nav .header__menu > .menu-item-has-children a[data-path][data-path="/"] svg path, .header__nav .header__menu > .menu-item-has-children a[data-path][data-path="/informers/"] svg path {
  stroke: transparent;
  fill: var(--c-text-gray);
}
.header__nav .header__menu > .menu-item-has-children a[data-path]:hover svg path {
  stroke: var(--c-black);
  fill: transparent;
}
.header__nav .header__menu > .menu-item-has-children a[data-path]:hover[data-path="/"] svg path, .header__nav .header__menu > .menu-item-has-children a[data-path]:hover[data-path="/informers/"] svg path {
  stroke: transparent;
  fill: var(--c-black);
}
.header__nav .header__menu > .menu-item-has-children a[data-path]:hover a {
  color: var(--c-black);
}
.header__nav .current_page_item a {
  color: var(--c-black) !important;
}
.header__nav .current_page_item a svg path {
  stroke: var(--c-black) !important;
}
.header__nav .current_page_item a[data-path="/"] svg path, .header__nav .current_page_item a[data-path="/informers/"] svg path {
  fill: var(--c-black) !important;
  stroke: transparent !important;
}

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

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

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  transition: all 0.5s ease-in-out 0.5s, visibility 0.5s ease 0.5s;
  visibility: hidden;
}
.mobile-nav.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: all 0.5s ease-in-out 0s, visibility 0.5s ease 0s;
}
.mobile-nav.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 0.5s ease 0.5s, visibility 0.5s ease 0.5s, all 0.5s ease-in-out 0.5s;
}
.mobile-nav .mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--c-black);
  opacity: 0.5;
}
.mobile-nav .mobile-nav__content {
  width: 300px;
  background: var(--c-bg);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding: 30px 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: opacity 0.5s ease 0s, visibility 0.5s ease 0s, all 0.5s ease-in-out 0s;
  border-right: 1px solid var(--c-primary);
}
.mobile-nav .mobile-nav__content::-webkit-scrollbar {
  width: 6px;
}
.mobile-nav .mobile-nav__content::-webkit-scrollbar-track {
  background: var(--c-scrollbar-track);
}
.mobile-nav .mobile-nav__content::-webkit-scrollbar-thumb {
  background: var(--c-scrollbar-thumb);
}
.mobile-nav .mobile-nav__content .mobile-nav__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 40px;
}
.mobile-nav .mobile-nav__content .mobile-nav__top .mobile-nav__close {
  cursor: pointer;
  font-size: 30px;
  color: var(--c-text-black);
  line-height: 0;
}
.mobile-nav .mobile-nav__content .mobile-nav__menu-list {
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.mobile-nav .mobile-nav__content .mobile-nav__menu-list li:not(:last-child) {
  border-bottom: 1px solid var(--c-border);
}
.mobile-nav .mobile-nav__content .mobile-nav__menu-list li > a {
  font-size: clamp(18px, 1.1458333333vw, 22px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--c-text-black);
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.mobile-nav .mobile-nav__content .mobile-nav__menu-list li > a:hover {
  cursor: pointer;
}
.mobile-nav .mobile-nav__content .mobile-nav__menu-list li.current-menu-item a {
  color: var(--c-primary);
}
.mobile-nav .mobile-nav__content .mobile-nav__menu-list li.menu-item-has-children.expanded > a {
  color: var(--c-primary);
}
.mobile-nav .mobile-nav__content .mobile-nav__menu-list li.menu-item-has-children.expanded > a span {
  transform: rotate(90deg);
  background: var(--c-primary);
}
.mobile-nav .mobile-nav__content .mobile-nav__menu-list li.menu-item-has-children.expanded ul {
  border-top: 1px solid var(--c-primary);
}
.mobile-nav .mobile-nav__content .mobile-nav__menu-list li.menu-item-has-children a {
  justify-content: space-between;
  transition: 0.5s;
  padding: 10px 0;
}
.mobile-nav .mobile-nav__content .mobile-nav__menu-list li.menu-item-has-children a span {
  width: 30px;
  height: 30px;
  color: var(--c-bg-white);
  background: var(--c-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transform: rotate(0deg);
  transition: all 0.5s ease-in-out;
  font-size: 24px;
  transform: rotate(180deg);
}
.mobile-nav .mobile-nav__content .mobile-nav__menu-list li.menu-item-has-children ul {
  height: 0;
  overflow: hidden;
  margin: 0 0 0 10px;
  padding: 0;
  list-style-type: none;
}
.mobile-nav .mobile-nav__content .mobile-nav__contact {
  margin: 30px 0 0;
}
.mobile-nav .mobile-nav__content .mobile-nav__contact li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-nav .mobile-nav__content .mobile-nav__contact li + li {
  margin: 30px 0 0;
}
.mobile-nav .mobile-nav__content .mobile-nav__contact li a {
  color: var(--c-text-black);
  transition: all 0.3s ease-in-out;
}
.mobile-nav .mobile-nav__content .mobile-nav__contact li a:hover {
  color: var(--c-primary);
}

.ready {
  padding-top: clamp(30px, 3.6458333333vw, 60px);
  padding-bottom: clamp(30px, 3.6458333333vw, 60px);
}
.ready .container {
  background: url(../img/home/ready__bg.webp) no-repeat center/cover;
  border-radius: 20px;
  border: 1px solid var(--c-border);
  padding: clamp(40px, 4.1666666667vw, 80px) clamp(20px, 2.0833333333vw, 40px);
  overflow: hidden;
}
.ready .ready__image {
  max-width: 537px;
  margin: 0 auto;
}
.ready .ready__info {
  display: flex;
  flex-direction: column;
}
.ready .ready__info h2 {
  text-align: center;
  margin-bottom: clamp(
        20px,
        2.7vw,
        30px
    );
  color: var(--c-text-white);
}
.ready .ready__info p {
  text-align: center;
  color: var(--c-text-black);
  margin-bottom: clamp(
        20px,
        2.7vw,
        30px
    );
  color: var(--c-text-white);
}
.ready .btn-white {
  margin: 0 auto;
}

.faq {
  padding-top: clamp(30px, 3.6458333333vw, 60px);
  padding-bottom: clamp(30px, 3.6458333333vw, 60px);
}
.faq .container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .faq .container {
    flex-direction: column-reverse;
    gap: 30px;
  }
}
.faq .accordion {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.5vw, 30px);
  width: 47.8%;
}
@media (max-width: 768px) {
  .faq .accordion {
    width: 100%;
  }
}
.faq .accordion .accordion__item {
  padding: clamp(20px, 2.0833333333vw, 40px);
  border-radius: 30px;
  border: 1px solid var(--c-border);
  background: var(--c-bg);
  cursor: pointer;
}
.faq .accordion .accordion__header {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  transition: 0.3s ease-in-out;
}
.faq .accordion .accordion__header p {
  font-family: var(--font-main);
  color: var(--c-heading-black);
  font-weight: 500;
  line-height: normal;
  font-size: calc(16px + 4 * ((100vw - 375px) / 1265));
}
@media (min-width: 1265px) {
  .faq .accordion .accordion__header p {
    font-size: 20px;
  }
}
.faq .accordion .accordion__header.active {
  margin-bottom: clamp(
        16px,
        2vw,
        20px
    );
}
.faq .accordion .accordion__header.active .accordion__trigger::before {
  transform: rotate(180deg);
}
.faq .accordion .accordion__trigger {
  position: relative;
  cursor: pointer;
  background-color: var(--c-primary);
  padding: clamp(6px, 0.8vw, 9px);
  border-radius: 50%;
}
.faq .accordion .accordion__trigger::before {
  display: block;
  content: "";
  background: url(../img/general/accordion-arrow.svg) no-repeat center/cover;
  width: 20px;
  aspect-ratio: 1;
  transition: transform 0.3s;
}
.faq .accordion .accordion__item .accordion__content {
  max-height: 0;
  transition: 0.5s;
  overflow: hidden;
}
.faq .faq__info {
  width: 44.7%;
}
@media (max-width: 768px) {
  .faq .faq__info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.faq .faq__info h2 {
  margin-bottom: clamp(
        20px,
        2.7vw,
        30px
    );
}
.faq .faq__info p a {
  color: var(--c-primary);
  text-decoration: underline;
  transition: opacity 0.3s;
}
.faq .faq__info p a:hover {
  opacity: 0.7;
}
.faq .faq__info .section-badge {
  margin-bottom: 10px;
}

.feedback {
  padding-top: clamp(30px, 3.6458333333vw, 60px);
  padding-bottom: clamp(30px, 3.6458333333vw, 60px);
}
.feedback .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  .feedback .container {
    flex-direction: column;
    gap: 30px;
  }
}
.feedback .feedback__info {
  width: 43%;
}
@media (max-width: 1024px) {
  .feedback .feedback__info {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .feedback .feedback__info {
    width: 100%;
  }
}
.feedback .section-badge {
  margin-bottom: 10px;
}
.feedback .feedback__title {
  margin-bottom: clamp(
        20px,
        2.7vw,
        30px
    );
}
.feedback .feedback__desc {
  margin-bottom: 180px;
}
@media (max-width: 1024px) {
  .feedback .feedback__desc {
    margin-bottom: 30px;
  }
}
.feedback .feedback__traders span {
  font-family: var(--font-main);
  color: var(--c-heading-black);
  font-weight: 600;
  line-height: normal;
  font-size: calc(23px + 25 * ((100vw - 375px) / 1265));
}
@media (min-width: 1265px) {
  .feedback .feedback__traders span {
    font-size: 48px;
  }
}
.feedback .feedback__col {
  height: 612px;
  width: 45.7%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .feedback .feedback__col {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .feedback .feedback__col {
    height: 400px;
    width: 100%;
  }
}
.feedback .feedback__col::before, .feedback .feedback__col::after {
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  width: 100%;
}
.feedback .feedback__col::before {
  top: 0;
  left: 0;
  height: 152px;
  background: url(../img/home/grad-1.svg) no-repeat center/cover;
}
.feedback .feedback__col::after {
  bottom: 0;
  left: 0;
  height: 168px;
  background: url(../img/home/grad-2.svg) no-repeat center/cover;
}
.feedback .feedback__col .items {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.feedback .feedback__col .item {
  width: 100%;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid var(--c-border);
  background: var(--c-bg);
  position: absolute;
}
.feedback .feedback__col .item .item__top {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 15px;
}
.feedback .feedback__col .item .item__top-image {
  width: 69px;
}
.feedback .feedback__col .item .item__top-info p {
  font-family: var(--font-main);
  color: var(--c-heading-black);
  font-size: calc(17px + 3 * ((100vw - 375px) / 1265));
  margin-bottom: 11px;
}
@media (min-width: 1265px) {
  .feedback .feedback__col .item .item__top-info p {
    font-size: 20px;
  }
}
.feedback .feedback__col .item .item__top-info .stars {
  display: flex;
  align-items: center;
  gap: 11px;
}
.feedback .feedback__col .item .item__desc {
  margin-bottom: clamp(
        20px,
        2.7vw,
        30px
    );
}
.feedback .feedback__col .item .item__date {
  color: var(--c-text-black);
  font-size: calc(14px + 3 * ((100vw - 375px) / 1265));
}
@media (min-width: 1265px) {
  .feedback .feedback__col .item .item__date {
    font-size: 17px;
  }
}

.home-page .hero {
  padding-bottom: clamp(30px, 3.6458333333vw, 60px);
}
.home-page .hero .wrap {
  padding-top: var(--header-height);
  background: url(../img/home/hero__bg.webp) no-repeat center/cover;
  border-radius: 20px;
  border: 1px solid var(--c-border);
}
.home-page .hero .section-badge {
  margin: 0 auto;
  margin-top: clamp(
        40px,
        5.7vw,
        70px
    );
  position: relative;
  z-index: 10;
}
.home-page .hero .hero__title {
  text-align: center;
  width: 67.8%;
  margin: 0 auto;
  margin-bottom: clamp(
        20px,
        2.7vw,
        30px
    );
}
@media (max-width: 768px) {
  .home-page .hero .hero__title {
    width: 80%;
  }
}
@media (max-width: 480px) {
  .home-page .hero .hero__title {
    width: 100%;
  }
}
.home-page .hero .hero__title .accent {
  font-family: var(--font-main);
  color: var(--c-heading-black);
  font-weight: 600;
  line-height: normal;
  font-size: calc(26px + 34 * ((100vw - 375px) / 1265));
  border-radius: 20px;
  background: linear-gradient(180deg, #FF929F 0%, #FF585F 100%);
  color: var(--c-text-white);
  padding: 0 clamp(10px, 1.0416666667vw, 20px);
  padding-bottom: clamp(5px, 0.75vw, 10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}
@media (min-width: 1265px) {
  .home-page .hero .hero__title .accent {
    font-size: 60px;
  }
}
.home-page .hero .hero__title .anim {
  display: inline-block;
}
.home-page .hero .hero__subtitle {
  width: 35.3%;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 768px) {
  .home-page .hero .hero__subtitle {
    width: 75%;
  }
}
@media (max-width: 480px) {
  .home-page .hero .hero__subtitle {
    width: 96%;
  }
}
.home-page .hero .hero__mockups {
  position: relative;
  padding-top: clamp(
        30px,
        3.7vw,
        40px
    );
}
.home-page .hero .hero__mockups-analytics {
  position: absolute;
  top: 0;
  left: 15%;
  width: 10.6%;
}
@media (max-width: 768px) {
  .home-page .hero .hero__mockups-analytics {
    width: 15%;
  }
}
.home-page .hero .hero__mockups-traders {
  position: absolute;
  top: 16px;
  right: 15%;
  width: 10.6%;
}
@media (max-width: 768px) {
  .home-page .hero .hero__mockups-traders {
    top: 0;
    width: 15%;
  }
}
.home-page .hero .hero__mockups-phone {
  width: 28.5%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .home-page .hero .hero__mockups-phone {
    width: 40%;
  }
}
.home-page .hero .hero__mockups-markets {
  position: absolute;
  top: 31%;
  left: 17%;
  width: 25.1%;
}
@media (max-width: 768px) {
  .home-page .hero .hero__mockups-markets {
    width: 30%;
    left: 11%;
  }
}
.home-page .hero .hero__mockups-indicators {
  position: absolute;
  top: 15.7%;
  right: 18.5%;
  width: 25.1%;
}
@media (max-width: 768px) {
  .home-page .hero .hero__mockups-indicators {
    width: 35%;
    right: 4.5%;
  }
}
.home-page .ai {
  padding: clamp(30px, 3.6458333333vw, 60px) 0;
}
.home-page .ai .ai-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.home-page .ai .ai-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .home-page .ai .ai-row {
    flex-direction: column-reverse;
  }
}
.home-page .ai .ai-picture {
  flex: 0 0 40.5%;
}
@media (max-width: 768px) {
  .home-page .ai .ai-picture {
    flex: 0 0 100%;
    margin-top: clamp(20px, 2.0833333333vw, 40px);
  }
  .home-page .ai .ai-picture img {
    max-width: 75%;
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .home-page .ai .ai-picture img {
    max-width: 90%;
  }
}
.home-page .ai .ai-text {
  flex: 0 0 49%;
}
@media (max-width: 768px) {
  .home-page .ai .ai-text {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 65%;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .home-page .ai .ai-text {
    width: 100%;
  }
}
.home-page .ai .ai__title {
  margin-top: 10px;
}
.home-page .ai .ai__title span {
  color: var(--c-primary);
}
.home-page .ai .ai__subtitle {
  margin-top: clamp(18px, 2.1vw, 24px);
}
.home-page .platform {
  padding-top: clamp(30px, 3.6458333333vw, 60px);
  padding-bottom: clamp(30px, 3.6458333333vw, 60px);
}
.home-page .platform .section-badge {
  margin: 0 auto;
  margin-bottom: 10px;
}
.home-page .platform .platform__title {
  margin: 0 auto;
  text-align: center;
  width: 63.2%;
  margin-bottom: clamp(
        30px,
        4.7vw,
        60px
    );
}
@media (max-width: 576px) {
  .home-page .platform .platform__title {
    width: 100%;
  }
}
.home-page .platform .platform__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.5vw, 30px);
}
@media (max-width: 768px) {
  .home-page .platform .platform__items {
    grid-template-columns: 1fr;
  }
}
.home-page .platform .platform__item {
  border-radius: 30px;
  background: var(--c-bg);
  position: relative;
  display: flex;
  flex-direction: column;
}
.home-page .platform .platform__item::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  height: 158px;
  width: 90%;
  background: url(../img/home/platform__item-blur.svg) no-repeat center/cover;
  z-index: 1;
}
.home-page .platform .platform__item-info {
  padding: clamp(20px, 2.0833333333vw, 40px);
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.1vw, 24px);
  margin-bottom: clamp(
        40px,
        6.6vw,
        88px
    );
}
.home-page .platform .platform__item-image {
  width: 62%;
  margin: 0 auto;
  margin-top: auto;
}
.home-page .benefits {
  padding-top: clamp(30px, 3.6458333333vw, 60px);
  padding-bottom: clamp(30px, 3.6458333333vw, 60px);
}
.home-page .benefits .container {
  display: flex;
  gap: 30px;
  align-items: center;
}
@media (max-width: 1024px) {
  .home-page .benefits .container {
    flex-direction: column;
  }
}
.home-page .benefits .benefits__info {
  width: 50%;
}
@media (max-width: 1024px) {
  .home-page .benefits .benefits__info {
    width: 100%;
  }
}
.home-page .benefits .section-badge {
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .home-page .benefits .section-badge {
    margin: 0 auto;
    margin-bottom: 10px;
  }
}
.home-page .benefits .benefits__title {
  margin-bottom: clamp(
        30px,
        4.7vw,
        60px
    );
}
@media (max-width: 1024px) {
  .home-page .benefits .benefits__title {
    text-align: center;
  }
}
.home-page .benefits .benefits__title .accent {
  color: var(--c-primary);
}
.home-page .benefits .benefits__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(24px, 4.5vw, 65px);
  row-gap: clamp(20px, 3.1vw, 43px);
}
@media (max-width: 576px) {
  .home-page .benefits .benefits__items {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) {
  .home-page .benefits .benefits__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.home-page .benefits .benefits__item .icon-badge {
  margin-bottom: clamp(
        20px,
        2.7vw,
        30px
    );
}
.home-page .benefits .benefits__item h4 {
  margin-bottom: clamp(
        14px,
        1.9vw,
        20px
    );
}
.home-page .benefits .benefits__image {
  width: 50%;
}
@media (max-width: 576px) {
  .home-page .benefits .benefits__image {
    width: 70%;
  }
}
.home-page .types {
  padding-top: clamp(30px, 3.6458333333vw, 60px);
  padding-bottom: clamp(30px, 3.6458333333vw, 60px);
}
.home-page .types .section-badge {
  margin: 0 auto;
  margin-bottom: 10px;
}
.home-page .types .types__title {
  text-align: center;
  margin-bottom: clamp(
        20px,
        2.7vw,
        30px
    );
}
.home-page .types .types__subtitle {
  text-align: center;
  max-width: 616px;
  margin: 0 auto;
  margin-bottom: clamp(
        30px,
        4.7vw,
        60px
    );
}

.about-page .about {
  padding-bottom: clamp(30px, 3.6458333333vw, 60px);
}
.about-page .about .wrap {
  padding: 0 1.5vw;
  padding-top: var(--header-height);
  padding-bottom: clamp(40px, 4.7vw, 54px);
  background: url(../img/about/about__bg.webp) no-repeat center/cover;
  border-radius: 20px;
  border: 1px solid var(--c-border);
}
.about-page .about .section-badge {
  margin: 0 auto;
  margin-top: clamp(
        40px,
        5.7vw,
        70px
    );
}
.about-page .about .about__title {
  max-width: 873px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: clamp(
        20px,
        2.7vw,
        30px
    );
}
.about-page .about .about__title .accent {
  font-family: var(--font-main);
  color: var(--c-heading-black);
  font-weight: 600;
  line-height: normal;
  font-size: calc(26px + 34 * ((100vw - 375px) / 1265));
  border-radius: 20px;
  background: linear-gradient(180deg, #FF929F 0%, #FF585F 100%);
  color: var(--c-text-white);
  padding: 0 clamp(10px, 1.0416666667vw, 20px);
  padding-bottom: clamp(5px, 0.75vw, 10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}
@media (min-width: 1265px) {
  .about-page .about .about__title .accent {
    font-size: 60px;
  }
}
.about-page .about .about__title .anim {
  display: inline-block;
}
.about-page .about .about__subtitle {
  max-width: 783px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: clamp(
        20px,
        2.7vw,
        30px
    );
}
.about-page .about .about__mockups {
  position: relative;
}
.about-page .about .about__mockups-main {
  margin: 0 auto;
  width: 56%;
}
@media (max-width: 768px) {
  .about-page .about .about__mockups-main {
    width: 80%;
  }
}
@media (max-width: 480px) {
  .about-page .about .about__mockups-main {
    width: 94%;
  }
}
.about-page .about .about__mockups-assets {
  position: absolute;
  top: 0.5%;
  left: 24%;
  width: 20%;
}
@media (max-width: 768px) {
  .about-page .about .about__mockups-assets {
    left: 10%;
    width: 30%;
  }
}
@media (max-width: 480px) {
  .about-page .about .about__mockups-assets {
    left: 0%;
    width: 39%;
  }
}
.about-page .about .about__mockups-tools {
  position: absolute;
  bottom: -5.5%;
  left: 17%;
  width: 19%;
}
@media (max-width: 768px) {
  .about-page .about .about__mockups-tools {
    bottom: -13.5%;
    left: 15%;
    width: 29%;
  }
}
@media (max-width: 480px) {
  .about-page .about .about__mockups-tools {
    bottom: -16.5%;
    left: 6%;
    width: 41%;
  }
}
.about-page .about .about__mockups-support {
  position: absolute;
  top: 22.5%;
  right: 19%;
  width: 20%;
}
@media (max-width: 768px) {
  .about-page .about .about__mockups-support {
    top: 13.5%;
    right: 9%;
    width: 30%;
  }
}
@media (max-width: 480px) {
  .about-page .about .about__mockups-support {
    right: 2%;
    width: 38%;
  }
}
.about-page .stats {
  padding-bottom: clamp(25px, 2.6041666667vw, 50px);
}
.about-page .stats .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1012px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 576px) {
  .about-page .stats .wrap {
    justify-content: center;
  }
}
@media (max-width: 380px) {
  .about-page .stats .wrap {
    flex-direction: column;
  }
}
.about-page .stats .stats__item {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 10px;
}
@media (max-width: 576px) {
  .about-page .stats .stats__item {
    width: 40%;
  }
}
.about-page .stats .stats__item span {
  font-family: var(--font-main);
  color: var(--c-heading-black);
  font-weight: 600;
  line-height: normal;
  font-size: calc(26px + 34 * ((100vw - 375px) / 1265));
}
@media (min-width: 1265px) {
  .about-page .stats .stats__item span {
    font-size: 60px;
  }
}
.about-page .workflow {
  padding-top: clamp(25px, 2.6041666667vw, 50px);
  padding-bottom: clamp(30px, 3.6458333333vw, 60px);
}
.about-page .workflow .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .about-page .workflow .container {
    flex-direction: column;
    gap: 30px;
  }
}
.about-page .workflow .workflow__info {
  width: 47.7%;
}
@media (max-width: 768px) {
  .about-page .workflow .workflow__info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.about-page .workflow .workflow__title {
  margin-bottom: clamp(
        20px,
        2.7vw,
        30px
    );
}
.about-page .workflow .workflow__image {
  width: 40%;
}
@media (max-width: 768px) {
  .about-page .workflow .workflow__image {
    width: 75%;
  }
}
@media (max-width: 480px) {
  .about-page .workflow .workflow__image {
    width: 100%;
  }
}
.about-page .principles {
  padding-top: clamp(30px, 3.6458333333vw, 60px);
  padding-bottom: clamp(30px, 3.6458333333vw, 60px);
}
.about-page .principles .container {
  border-radius: 30px;
  border: 1px solid var(--c-border);
  background: var(--c-bg);
}
.about-page .principles .wrap {
  padding-top: clamp(
        40px,
        5.2vw,
        60px
    );
}
.about-page .principles .principles__info {
  text-align: center;
  margin-bottom: clamp(
        30px,
        4.7vw,
        60px
    );
}
.about-page .principles .section-badge {
  margin: 0 auto;
  margin-top: 10px;
}
.about-page .principles .principles__title {
  margin-bottom: clamp(
        20px,
        2.7vw,
        30px
    );
}
.about-page .principles .principles__subtitle {
  max-width: 509px;
  margin: 0 auto;
}
.about-page .principles .principles__items {
  display: flex;
  justify-content: space-between;
  gap: clamp(24px, 2.9vw, 34px);
}
@media (max-width: 1024px) {
  .about-page .principles .principles__items {
    flex-direction: column;
  }
}
.about-page .principles .principles__items-col {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.0833333333vw, 40px);
}
.about-page .principles .principles__item {
  padding: clamp(20px, 2.0833333333vw, 40px);
  display: flex;
  gap: clamp(16px, 1.8vw, 20px);
  border-radius: 30px;
  background: var(--c-bg-white);
}
.about-page .principles .principles__item-text h4 {
  margin-bottom: clamp(
        14px,
        1.9vw,
        20px
    );
}
@media (max-width: 1024px) {
  .about-page .principles .principles__phone {
    width: 40%;
    margin: 0 auto;
    order: 1;
  }
}
@media (max-width: 480px) {
  .about-page .principles .principles__phone {
    width: 70%;
  }
}

.accounts-types-page .accounts {
  padding-top: clamp(
        50px,
        8.7vw,
        120px
    );
  padding-bottom: clamp(
        50px,
        8.7vw,
        120px
    );
  /* Pricing table */
  /* Row styles */
}
.accounts-types-page .accounts .pricing-table-container {
  width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  padding: 20px 0;
}
.accounts-types-page .accounts .pricing-table {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (max-width: 1024px) {
  .accounts-types-page .accounts .pricing-table {
    overflow-y: scroll;
  }
}
.accounts-types-page .accounts .pricing-row {
  display: flex;
  width: 100%;
  transition: background-color 0.2s ease;
}
@media (max-width: 1024px) {
  .accounts-types-page .accounts .pricing-row {
    width: fit-content;
  }
}
.accounts-types-page .accounts .pricing-row:last-child {
  border-bottom: none;
}
.accounts-types-page .accounts .pricing-row:nth-of-type(odd) {
  border-radius: 20px;
  background: #f8f8f8;
}
.accounts-types-page .accounts .pricing-row:nth-of-type(odd) .feature-name {
  background: #f8f8f8;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
}
.accounts-types-page .accounts .pricing-row:nth-of-type(even) .feature-name {
  background: #fff;
}
.accounts-types-page .accounts .pricing-row.header-row {
  font-weight: 600;
  background: transparent;
}
.accounts-types-page .accounts .pricing-row.header-row .feature-name {
  background: transparent;
}
.accounts-types-page .accounts .pricing-cell {
  flex: 1;
  padding: clamp(10px, 1.5vw, 21px) 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-second);
  color: var(--c-text-gray);
  line-height: normal;
  font-size: calc(15px + 3 * ((100vw - 375px) / 1265));
  color: #000;
}
@media (min-width: 1265px) {
  .accounts-types-page .accounts .pricing-cell {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .accounts-types-page .accounts .pricing-cell {
    min-width: 200px;
  }
}
@media (max-width: 576px) {
  .accounts-types-page .accounts .pricing-cell {
    min-width: 150px;
  }
}
.accounts-types-page .accounts .pricing-cell.price {
  font-family: var(--font-second);
  color: var(--c-text-gray);
  line-height: normal;
  font-size: calc(15px + 3 * ((100vw - 375px) / 1265));
  font-size: calc(15px + 3 * ((100vw - 375px) / 1265));
  color: #000;
  font-family: var(--font-main);
  font-weight: 500;
}
@media (min-width: 1265px) {
  .accounts-types-page .accounts .pricing-cell.price {
    font-size: 18px;
  }
}
@media (min-width: 1265px) {
  .accounts-types-page .accounts .pricing-cell.price {
    font-size: 18px;
  }
}
.accounts-types-page .accounts .pricing-cell.tier-header {
  font-weight: 500;
  line-height: normal;
  font-size: calc(19px + 17 * ((100vw - 375px) / 1265));
  color: #000;
  font-size: 20px !important;
  font-weight: 500;
  font-family: var(--font-main);
}
@media (min-width: 1265px) {
  .accounts-types-page .accounts .pricing-cell.tier-header {
    font-size: 36px;
  }
}
.accounts-types-page .accounts .pricing-cell.check::after, .accounts-types-page .accounts .pricing-cell.no-check::after {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 1;
}
.accounts-types-page .accounts .pricing-cell.check::after {
  background: url(../img/account/yes.svg) no-repeat center/contain;
}
.accounts-types-page .accounts .pricing-cell.no-check::after {
  background: url(../img/account/no.svg) no-repeat center/contain;
}
.accounts-types-page .accounts .feature-name {
  flex: 1.5;
  padding-left: clamp(16px, 2.4vw, 32px);
  justify-content: flex-start;
  text-align: left;
  font-family: var(--font-second);
  color: var(--c-text-gray);
  line-height: normal;
  font-size: calc(15px + 3 * ((100vw - 375px) / 1265));
  line-height: unset;
}
@media (min-width: 1265px) {
  .accounts-types-page .accounts .feature-name {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .accounts-types-page .accounts .feature-name {
    position: sticky;
    top: 0;
    left: 0;
  }
}
.accounts-types-page .faq {
  padding-top: clamp(60px, 6.25vw, 120px);
}

.page-contacts .contacts {
  padding-bottom: clamp(30px, 3.6458333333vw, 60px);
}
.page-contacts .contacts .wrap {
  display: flex;
  gap: clamp(100px, 14vw, 196px);
}
@media (max-width: 1024px) {
  .page-contacts .contacts .wrap {
    gap: 30px;
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .page-contacts .contacts .wrap {
    flex-direction: column-reverse;
  }
}
.page-contacts .contacts .contacts__left {
  width: 37.8%;
}
@media (max-width: 1024px) {
  .page-contacts .contacts .contacts__left {
    width: 47%;
  }
}
@media (max-width: 768px) {
  .page-contacts .contacts .contacts__left {
    width: 100%;
  }
}
.page-contacts .contacts .contacts__left h3 {
  margin-bottom: clamp(
        20px,
        2.7vw,
        30px
    );
}
@media (max-width: 768px) {
  .page-contacts .contacts .contacts__left h3 {
    text-align: center;
  }
}
.page-contacts .contacts .contacts__left form #submitBtn {
  cursor: pointer;
}
.page-contacts .contacts .contacts__left form #submitBtn span:first-of-type {
  display: block;
}
.page-contacts .contacts .contacts__left form #submitBtn span:last-of-type {
  display: none;
}
.page-contacts .contacts .contacts__left form #submitBtn._sending span:first-of-type {
  display: none;
}
.page-contacts .contacts .contacts__left form #submitBtn._sending span:last-of-type {
  display: block;
}
.page-contacts .contacts .contacts__left form._submitted {
  display: none;
}
.page-contacts .contacts .contacts__left #successMessage {
  display: none;
  font-family: var(--font-main);
  color: var(--c-heading-black);
}
.page-contacts .contacts .contacts__left #successMessage.show {
  display: block;
}
.page-contacts .contacts .contacts__field {
  display: flex;
  flex-direction: column;
  gap: clamp(11px, 1.3vw, 15px);
  margin-bottom: clamp(
        20px,
        2.7vw,
        30px
    );
}
.page-contacts .contacts .contacts__field:last-of-type {
  margin-bottom: clamp(
        30px,
        4.7vw,
        60px
    );
}
.page-contacts .contacts .contacts__field label {
  font-family: var(--font-second);
  color: var(--c-text-gray);
  line-height: normal;
  font-size: calc(15px + 3 * ((100vw - 375px) / 1265));
  color: var(--c-text-black);
  width: fit-content;
}
@media (min-width: 1265px) {
  .page-contacts .contacts .contacts__field label {
    font-size: 18px;
  }
}
.page-contacts .contacts .contacts__field input, .page-contacts .contacts .contacts__field textarea {
  border-radius: 30px;
  border: 1px solid var(--c-border);
  background: var(--c-bg-white);
  padding: clamp(12px, 1.5vw, 18px) clamp(14px, 1.7vw, 20px);
  font-family: var(--font-second);
  color: var(--c-text-gray);
  line-height: normal;
  font-size: calc(15px + 3 * ((100vw - 375px) / 1265));
}
@media (min-width: 1265px) {
  .page-contacts .contacts .contacts__field input, .page-contacts .contacts .contacts__field textarea {
    font-size: 18px;
  }
}
.page-contacts .contacts .contacts__field input:focus, .page-contacts .contacts .contacts__field textarea:focus {
  outline-color: var(--c-primary);
}
.page-contacts .contacts .contacts__field textarea {
  height: 127px;
  resize: none;
}
@media (max-width: 1024px) {
  .page-contacts .contacts .contacts__details {
    width: 39%;
  }
}
@media (max-width: 768px) {
  .page-contacts .contacts .contacts__details {
    width: 100%;
  }
}
.page-contacts .contacts .contacts__details h3 {
  margin-bottom: clamp(
        30px,
        4.7vw,
        60px
    );
}
.page-contacts .contacts .contacts__details .contacts__item {
  display: flex;
  gap: clamp(14px, 1.7vw, 20px);
  width: 75%;
}
@media (max-width: 414px) {
  .page-contacts .contacts .contacts__details .contacts__item {
    width: 100%;
  }
}
.page-contacts .contacts .contacts__details .contacts__item:not(:last-of-type) {
  margin-bottom: clamp(
        20px,
        2.7vw,
        30px
    );
}
.page-contacts .contacts .contacts__details .contacts__item-info {
  display: flex;
  flex-direction: column;
  margin-top: 6px;
}
.page-contacts .contacts .contacts__details .contacts__item h4 {
  margin-bottom: 12px;
}
.page-contacts .contacts .contacts__details .contacts__item a:hover {
  color: var(--c-primary);
  cursor: pointer;
  transition: 0.2s ease;
}

.legal-page .docs {
  padding-top: clamp(
        50px,
        8.2vw,
        110px
    );
  padding-bottom: clamp(
        50px,
        8.2vw,
        110px
    );
}
.legal-page .legal .brand-row {
  gap: clamp(40px, 6vw, 80px);
  margin-top: clamp(40px, 6vw, 80px);
}
.legal-page .legal .docs-line {
  margin-top: clamp(16px, 2vw, 24px);
}
.legal-page .legal .docs-line:first-child {
  margin-top: 0;
}
.legal-page .legal .docs-link {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.legal-page .legal .docs-heading {
  padding-left: clamp(16px, 2vw, 24px);
  color: var(--palette-black);
}
.legal-page .legal .legal-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.6vw, 32px) clamp(14px, 1.7vw, 20px);
}
.legal-page .legal .legal-item {
  display: flex;
  align-items: center;
  border-radius: 20px;
  padding: 22px 14px;
  background-color: var(--palette-bg);
}
.legal-page .legal .legal-item.wide {
  grid-column: span 2;
}
.legal-page .legal .legal-icon {
  display: flex;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}
.legal-page .tabs {
  display: grid;
  grid-template-columns: 0.43fr 1.37fr;
  grid-column-gap: clamp(40px, 7.2vw, 112px);
}
.legal-page .tabs__nav {
  height: fit-content;
  overflow: hidden;
  border-radius: 24px 0 0 24px;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-radius: 50px;
  border: 3px solid var(--bg);
}
.legal-page .tabs__content p,
.legal-page .tabs__content li,
.legal-page .tabs__content span {
  margin-top: 12px;
  text-wrap: initial;
  cursor: auto;
  font-family: var(--font-second);
  color: var(--c-text-gray);
  line-height: normal;
  font-size: calc(15px + 3 * ((100vw - 375px) / 1265));
}
@media (min-width: 1265px) {
  .legal-page .tabs__content p,
.legal-page .tabs__content li,
.legal-page .tabs__content span {
    font-size: 18px;
  }
}
.legal-page .tabs-nav__item {
  width: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin: 0;
  text-wrap: initial;
  font-family: var(--font-second);
  color: var(--c-text-gray);
  line-height: normal;
  font-size: calc(15px + 3 * ((100vw - 375px) / 1265));
  font-weight: 500;
  letter-spacing: 0;
  border-radius: 8px;
  padding: clamp(12px, 1.5vw, 18px) clamp(20px, 2.5vw, 30px);
  border-radius: 30px;
}
@media (min-width: 1265px) {
  .legal-page .tabs-nav__item {
    font-size: 18px;
  }
}
.legal-page .tabs-nav__item.is-active {
  color: var(--c-text-accent);
  background: #FFEEF0;
}
.legal-page .tabs-nav__item:not(.is-active):hover {
  color: var(--c-text-accent);
  background: #FFEEF0;
}
.legal-page .tabs-nav__item .tabs__content {
  position: relative;
}
.legal-page .tab {
  display: none;
  transition: var(--transition-main);
}
.legal-page .tab.is-active {
  display: block;
}
.legal-page .tab__title {
  font-weight: 500;
  line-height: normal;
  font-size: calc(19px + 17 * ((100vw - 375px) / 1265));
  margin-bottom: 24px;
  letter-spacing: 0;
}
@media (min-width: 1265px) {
  .legal-page .tab__title {
    font-size: 36px;
  }
}
.legal-page .tab__heading {
  color: var(--palette-black);
  letter-spacing: 0;
}
.legal-page .tab_description {
  margin-top: 0;
  color: var(--c-text);
  text-wrap: initial;
}
.legal-page .tab__step {
  margin-top: 0 !important;
  color: var(--palette-black);
  text-wrap: initial;
}
.legal-page span {
  color: var(--palette-black);
}

@media (max-width: 1200px) {
  .legal-page .legal .legal-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .docs-page .tabs {
    grid-column-gap: 50px;
  }
}
@media (max-width: 1024px) {
  .docs-page .tabs {
    grid-template-columns: 1fr;
  }
  .docs-page .tabs__nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
  }
  .docs-page .tabs-nav__item {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    padding: 16px;
  }
  .docs-page .tabs-nav__item.is-active {
    color: var(--palette-white);
  }
  .docs-page .tabs__content {
    margin-top: 30px;
    padding: 0;
  }
  .docs-page .tab {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
  }
}
@media (max-width: 768px) {
  .legal-page .legal .legal-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .legal-page .legal .legal-list {
    grid-template-columns: 1fr;
  }
  .legal-page .legal .legal-item.wide {
    grid-column: span 1;
  }
  .docs-page .tabs__nav {
    grid-template-columns: 1fr;
  }
  .docs-page .tab_description p,
.docs-page .tabs__content li {
    margin-top: 8px !important;
  }
}
.tradeholic-theme {
  background: #ffffff;
}
.tradeholic-theme .tradeholic {
  background: #ffffff;
}
.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: 120px 15px;
  overflow: hidden !important;
}
.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 .tradeholic-panel {
    flex-direction: column;
  }
  .tradeholic-theme .tradeholic .tradeholic-panel .tradeholic-column {
    width: 100%;
  }
}
img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

section {
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}

main.content {
  margin-top: calc(var(--header-height) * -1);
}

.section-badge {
  border-radius: 27px;
  border: 1px solid var(--c-border);
  background: var(--c-bg-white);
  padding: 7px 14px;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-badge > svg {
  width: 16px;
  height: 16px;
}
.section-badge span {
  font-family: var(--font-second);
  color: var(--c-text-gray);
  line-height: normal;
  font-size: calc(15px + 3 * ((100vw - 375px) / 1265));
  font-size: calc(14px + 3 * ((100vw - 375px) / 1265));
  color: var(--c-text-accent);
}
@media (min-width: 1265px) {
  .section-badge span {
    font-size: 18px;
  }
}
@media (min-width: 1265px) {
  .section-badge span {
    font-size: 17px;
  }
}

.icon-badge {
  background-color: var(--c-primary);
  padding: clamp(6px, 0.8vw, 9px);
  border-radius: 50%;
  width: fit-content;
  height: fit-content;
  flex-shrink: 0;
}

#menu-item-80 > a, #menu-item-81 > a {
  font-weight: 700;
}
