@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 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(0);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes revealLeft {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes revealRight {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes moveLeft {
  0% {
    margin-left: 8px;
  }
  50% {
    margin-left: 0;
  }
  100% {
    margin-left: -8px;
  }
}
@keyframes drawLine {
  from {
    stroke-dasharray: 0, 1000;
  }
  to {
    stroke-dasharray: 1000, 0;
  }
}
:root {
  --f-family: "Manrope", sans-serif;
  --f-family-2: "Montserrat", sans-serif;
  --transition-main: 0.3s ease-in;
  --transition-long: 0.5s ease-in;
  --bg: #F4F4F4;
  --c-text: #666;
  --c-text-white: #fff;
  --c-text-accent: #0d0d0d;
  --c-title: #0D0D0D;
  --btn-prime-bg: #0D0D0D;
  --btn-second-bg: #F4F4F4;
  --btn-second-bg-hover: #e9e9e9;
  --header-height: 104px;
}
@media (max-width: 576px) {
  :root {
    --header-height: 146px;
  }
}

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;
}
a:hover {
  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;
}

/* 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;
  text-decoration: none;
}

/**
 * 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 {
  box-sizing: border-box;
  max-width: 100%;
  padding-left: clamp(8px, 1.06vw, 14px);
  padding-right: clamp(8px, 1.06vw, 14px);
  width: 1348px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .container {
    width: 100%;
    padding: 0 14px;
  }
}
@media (max-width: 1024px) {
  .container {
    width: 100%;
    max-width: 768px;
    padding: 0 14px;
  }
}
@media (max-width: 768px) {
  .container {
    width: 100%;
    max-width: 576px;
  }
}
@media (max-width: 576px) {
  .container {
    max-width: 576px;
    border: none;
  }
}

p,
a,
span,
button {
  color: var(--c-text);
  font-family: var(--f-family-2);
  line-height: 150%;
  font-size: calc(15px + 1 * ((100vw - 375px) / 1545));
}
@media (min-width: 1545px) {
  p,
a,
span,
button {
    font-size: 16px;
  }
}

h1 {
  color: var(--c-title);
  font-family: var(--f-family);
  font-weight: 800;
  line-height: normal;
  font-size: calc(24px + 38 * ((100vw - 375px) / 1545));
}
@media (min-width: 1545px) {
  h1 {
    font-size: 62px;
  }
}

h2, h2 > span {
  color: var(--c-title);
  font-family: var(--f-family);
  font-weight: 800;
  line-height: normal;
  font-size: calc(20px + 22 * ((100vw - 375px) / 1545));
}
@media (min-width: 1545px) {
  h2, h2 > span {
    font-size: 42px;
  }
}

h3 {
  color: var(--c-title);
  font-family: var(--f-family);
  font-weight: 800;
  line-height: normal;
  font-size: calc(17px + 7 * ((100vw - 375px) / 1545));
}
@media (min-width: 1545px) {
  h3 {
    font-size: 24px;
  }
}

body {
  box-sizing: border-box;
  background: #ffffff;
}
body * {
  box-sizing: border-box;
}
body ::-webkit-scrollbar {
  width: 0;
  height: 0;
  background-color: transparent;
}

html {
  scrollbar-width: none;
}

@supports (-ms-overflow-style: none) {
  html {
    -ms-overflow-style: none;
  }
}
.isnotactive-tradeholic #menu-item-71,
.isnotactive-tradeholic #menu-item-78,
.isnotactive-tradeholic #menu-item-442 {
  display: none;
}

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

main {
  padding-top: var(--header-height);
}

.btn__prime {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(8px, 1vw, 13px) clamp(14px, 2.1vw, 29px);
  border-radius: 50px;
  width: fit-content;
  background: var(--accent, #a8cae4);
  color: var(--c-text-white);
  transition: opacity var(--transition-main), color var(--transition-main);
}
.btn__prime:hover {
  opacity: 0.5;
  color: var(--c-text-white);
}

.btn__second {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(8px, 1vw, 13px) clamp(14px, 2.1vw, 29px);
  border-radius: 50px;
  width: fit-content;
  background-color: var(--btn-second-bg);
  transition: background-color var(--transition-main);
}
.btn__second:hover {
  background-color: var(--btn-second-bg-hover);
}

.header {
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
}
.header.active {
  background: var(--bg);
  height: 78px;
}
@media (max-width: 576px) {
  .header.active {
    height: 120px;
  }
}
.header .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .header .header__inner {
    flex-wrap: wrap;
    gap: 16px;
  }
}
@media (max-width: 576px) {
  .header .header__logo {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.header .header__logo img {
  max-width: 132px;
}
.header .btn__lang {
  display: flex;
  align-items: center;
  text-transform: lowercase;
  cursor: pointer;
}
@media (max-width: 576px) {
  .header .btn__lang {
    margin-left: unset;
  }
}
.header .btn__lang:hover .lang__menu .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.header .btn__lang:hover .btn__lang-arrow {
  transform: rotate(180deg);
}
.header .btn__lang .lang__menu {
  position: relative;
}
.header .btn__lang .lang__menu .sub-menu {
  position: absolute;
  top: 110%;
  width: 100%;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(5px);
  transition: var(--transition-main);
}
.header .btn__lang .lang__menu .sub-menu .menu-item > a {
  transition: var(--transition-main);
}
.header .btn__lang .lang__menu .sub-menu .menu-item > a:hover {
  font-weight: 500;
}
.header .btn__lang .btn__lang-arrow {
  transition: var(--transition-main);
  width: 24px;
  height: 24px;
}
.header .header__btns {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 32px);
}
@media (max-width: 576px) {
  .header .header__btns {
    margin-left: auto;
  }
}
.header .header__btns-mob {
  display: none;
}
.header .header__burger {
  display: none;
}
@media (max-width: 1024px) {
  .header .header__burger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    margin-left: clamp(
    12px,
    2.3vw,
    30px
  );
  }
  .header .header__burger span {
    width: 100%;
    height: 4px;
    background-color: var(--btn-prime-bg);
    border-radius: 8px;
  }
}
@media (max-width: 576px) {
  .header .header__burger {
    margin-left: unset;
  }
}

.header.active .header__nav .header__menu > .menu-item-has-children {
  background: #fff;
}
@media (max-width: 1024px) {
  .header.active .header__nav .header__menu > .menu-item-has-children {
    background: var(--bg);
  }
}

@media (max-width: 1024px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 11;
    transition: 0.5s ease;
  }
  .header__nav.open {
    left: 0%;
  }
}
.header__nav .header__menu {
  display: flex;
  gap: clamp(20px, 2.8vw, 32px);
}
@media (max-width: 1024px) {
  .header__nav .header__menu {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 30px;
  }
}
.header__nav .header__menu .menu-item > a {
  font-weight: 500;
}
.header__nav .header__menu > .menu-item-has-children {
  position: relative;
  padding: 10px;
  border-radius: 50px;
  background: var(--bg);
  transition: 0.3s ease;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .header__nav .header__menu > .menu-item-has-children {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}
.header__nav .header__menu > .menu-item-has-children:hover .sub-menu, .header__nav .header__menu > .menu-item-has-children:focus-within .sub-menu {
  visibility: visible;
  transform: scaleY(1);
  opacity: 1;
}
@media (max-width: 1024px) {
  .header__nav .header__menu > .menu-item-has-children:hover .sub-menu, .header__nav .header__menu > .menu-item-has-children:focus-within .sub-menu {
    visibility: unset;
    transform: unset;
    max-height: 400px;
    padding: 8px 18px;
  }
}
.header__nav .header__menu > .menu-item-has-children > .sub-menu {
  position: absolute;
  top: 150%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transition: 0.3s ease;
  transform-origin: top;
  width: max-content;
  padding: 10px;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 0px 8.8px 0px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.1vw, 12px);
}
.header__nav .header__menu > .menu-item-has-children > .sub-menu a[href]:not([href="#"]):hover {
  color: var(--c-text-accent);
}
.header__nav .header__menu > .menu-item-has-children > .sub-menu a[href="#"] {
  font-size: calc(15px + 3 * ((100vw - 375px) / 1545));
  font-weight: 600;
  color: var(--c-text-accent);
  margin-bottom: clamp(10px, 1.1vw, 12px);
  display: block;
}
@media (min-width: 1545px) {
  .header__nav .header__menu > .menu-item-has-children > .sub-menu a[href="#"] {
    font-size: 18px;
  }
}
.header__nav .header__menu > .menu-item-has-children > .sub-menu a[href="#"]:hover {
  color: var(--c-text-accent);
}
.header__nav .header__menu > .menu-item-has-children > .sub-menu .sub-menu {
  padding-left: 8px;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.1vw, 12px);
}
@media (max-width: 1024px) {
  .header__nav .header__menu > .menu-item-has-children > .sub-menu .sub-menu {
    padding-left: 18px;
  }
}
@media (max-width: 1024px) {
  .header__nav .header__menu > .menu-item-has-children > .sub-menu {
    position: static;
    transform: unset;
    max-height: 0;
    overflow: hidden;
    background: transparent;
    padding: 0;
    text-align: center;
    box-shadow: unset;
  }
}
.header__nav .menu-closer {
  display: none;
}
@media (max-width: 1024px) {
  .header__nav .menu-closer {
    display: block;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 40px;
    line-height: unset;
    aspect-ratio: 1;
  }
}
.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);
}
.header__nav .header__menu > .menu-item-has-children a[data-path] svg path {
  stroke: var(--c-text);
  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);
}
.header__nav .header__menu > .menu-item-has-children a[data-path]:hover svg path {
  stroke: var(--c-text-accent);
  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-text-accent);
}
.header__nav .header__menu > .menu-item-has-children a[data-path]:hover a {
  color: var(--c-text-accent);
}
.header__nav .current_page_item a {
  color: var(--c-text-accent);
}
.header__nav .current_page_item a svg path {
  stroke: var(--c-text-accent) !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-text-accent) !important;
  stroke: transparent !important;
}

@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 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(0);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes revealLeft {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes revealRight {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes moveLeft {
  0% {
    margin-left: 8px;
  }
  50% {
    margin-left: 0;
  }
  100% {
    margin-left: -8px;
  }
}
@keyframes drawLine {
  from {
    stroke-dasharray: 0, 1000;
  }
  to {
    stroke-dasharray: 1000, 0;
  }
}
.footer {
  position: relative;
  padding-top: clamp(60px, 10.8vw, 152px);
  padding-bottom: clamp(60px, 10.8vw, 152px);
  background-color: #fff;
}
.footer .footer-panel {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .footer .footer-panel {
    gap: 20px;
  }
}
.footer .footer-logo {
  flex: 0 0 11%;
}
.footer .footer-contact {
  flex: 0 0 30%;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.footer .footer-heading {
  margin-bottom: clamp(
    24px,
    3.1vw,
    34px
  );
}
.footer .contact-row {
  display: flex;
  align-items: center;
  margin-bottom: clamp(
    24px,
    3.1vw,
    34px
  );
}
.footer .contact-icon {
  height: 24px;
}
.footer .contact-desc {
  padding-left: clamp(16px, 2.2vw, 24px);
  display: flex;
  flex-direction: column;
}
.footer .contact-name,
.footer .footer-copywrite {
  margin-top: 0;
}
.footer .footer-copywrite {
  color: #1A3333;
}
.footer .footer-risk {
  flex: 0 0 45%;
}
.footer .footer-subheading {
  margin-top: 8px;
  text-wrap: initial;
  font-size: 14px;
}
.footer .payment-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.footer .payment-item {
  margin-top: clamp(
    30px,
    4.7vw,
    60px
  );
  margin-right: 8%;
}
.footer .payment-item:last-child {
  margin-right: 0;
}
.footer .f-laptop {
  display: none;
}
.footer .address-item, .footer .phone-item {
  display: inline-flex;
  align-items: center;
}
.footer .address-item--risk {
  display: inline;
}

/** Media **/
@media (max-width: 1200px) {
  .footer .footer-logo {
    flex: 0 0 19%;
  }
  .footer .footer-contact {
    flex: 0 0 29%;
  }
  .footer .footer-risk {
    flex: 0 0 50%;
  }
}
@media (max-width: 1024px) {
  .footer .f-desktop {
    display: none;
  }
  .footer .f-laptop {
    display: block;
    padding: var(--m-space-24) 0 var(--m-space-40);
  }
  .footer .footer-panel {
    flex-direction: column;
    padding: 0;
  }
  .footer .footer-logo,
.footer .footer-contact,
.footer .footer-risk {
    flex: 0 0 100%;
  }
  .footer .footer-contact,
.footer .footer-risk {
    margin-top: var(--m-space-50);
  }
}
.subheader {
  padding-top: 32px;
  display: flex;
  align-items: center;
}
.subheader .subheader__banner {
  width: 82%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .subheader .subheader__banner {
    width: 100%;
  }
}
.subheader .subheader-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(
    16px,
    2vw,
    20px
  );
}
.subheader .subheader-breadcrumbs span:first-of-type {
  border-radius: 20px;
  background: var(--bg);
  color: var(--c-text-accent);
  font-size: 10px;
  padding: 5px 9px;
}
.subheader .subheader-breadcrumbs span:last-of-type {
  opacity: 0.3;
  color: var(--c-text-accent);
  font-size: 10px;
}
.subheader .subheader-text {
  animation: revealLeft ease-in-out forwards 1s;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 679px;
  margin: 0 auto;
  text-align: center;
}
.subheader .subheader-picture {
  width: 52%;
  position: relative;
  z-index: 1;
}
.subheader .subheader-heading {
  margin-bottom: 10px;
}

#progressCircle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  transition: 0.3s ease-in-out;
  z-index: 50;
  cursor: pointer;
}
#progressCircle:hover {
  transform: scale(1.1);
}
#progressCircle text {
  fill: #3891d6;
  font-family: var(--font-family);
}
#progressCircle #outerCircle {
  stroke: #fff;
}
#progressCircle #innerCircle {
  stroke: #3891d6;
}
#progressCircle.done {
  animation: shakeX 1s;
}
#progressCircle.done #innerCircle {
  stroke: #35e735;
}
#progressCircle.done text {
  fill: #35e735;
}

.ask {
  padding-top: clamp(50px, 7.7vw, 100px);
  padding-bottom: clamp(50px, 7.7vw, 100px);
  background: url(../img/general-imgs/ask__bg.webp) no-repeat center/cover;
}
.ask .wrapper {
  width: min(518px, 100%);
  padding: clamp(20px, 3.5vw, 50px) clamp(16px, 3.65vw, 57px);
  border-radius: clamp(20px, 3.5vw, 50px);
  background: #fff;
}
.ask .wrapper h2 {
  text-align: center;
  margin-bottom: clamp(
    20px,
    2.8vw,
    32px
  );
}
.ask .wrapper form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.ask .wrapper form._active {
  animation: 0.75s removeForm ease-in-out forwards;
}
.ask .wrapper form input, .ask .wrapper form textarea {
  border: unset;
  outline: unset;
  width: 100%;
  border-radius: 21px;
  background: var(--bg);
  padding: clamp(15px, 1.9vw, 23px) clamp(16px, 2.2vw, 28px);
  color: var(--c-text);
  font-family: var(--f-family-2);
  line-height: 150%;
  font-size: calc(15px + 1 * ((100vw - 375px) / 1545));
}
@media (min-width: 1545px) {
  .ask .wrapper form input, .ask .wrapper form textarea {
    font-size: 16px;
  }
}
.ask .wrapper form textarea {
  resize: none;
}
.ask .wrapper #successMessage {
  display: block;
  text-align: center;
}

@keyframes removeForm {
  0% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  80% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  100% {
    max-height: 0;
    overflow: hidden;
  }
}
.home-page .hero .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(40px, 6.2vw, 80px);
  min-height: calc(100vh - var(--header-height));
}
@media (max-width: 1024px) {
  .home-page .hero .container {
    flex-direction: column;
    gap: 30px;
    min-height: unset;
    padding: 40px 0;
  }
}
.home-page .hero .hero__info {
  display: flex;
  flex-direction: column;
  width: 44.6%;
  gap: clamp(15px, 1.95vw, 20px);
}
@media (max-width: 1024px) {
  .home-page .hero .hero__info {
    width: 80%;
    text-align: center;
    align-items: center;
  }
}
@media (max-width: 576px) {
  .home-page .hero .hero__info {
    width: 100%;
  }
}
.home-page .hero .hero__swiper {
  width: 49.3%;
  border-radius: 50px;
}
@media (max-width: 1024px) {
  .home-page .hero .hero__swiper {
    width: 80%;
  }
}
.home-page .why {
  position: relative;
  padding-bottom: clamp(30px, 4.7vw, 60px);
}
.home-page .why .why__title {
  margin-bottom: clamp(
    30px,
    4.8vw,
    62px
  );
}
@media (max-width: 1024px) {
  .home-page .why .why__title {
    text-align: center;
  }
}
.home-page .why .why__items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.home-page .why .why__svg {
  position: absolute;
  top: 3%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  max-width: 483px;
}
.home-page .why .why__item {
  border-radius: 50px;
  background: var(--bg);
  overflow: hidden;
}
.home-page .why .why__item:first-of-type, .home-page .why .why__item:last-of-type {
  width: 40.7%;
}
@media (max-width: 1024px) {
  .home-page .why .why__item:first-of-type, .home-page .why .why__item:last-of-type {
    width: 100%;
  }
}
.home-page .why .why__item:nth-of-type(2), .home-page .why .why__item:nth-of-type(3) {
  width: 57%;
}
@media (max-width: 1024px) {
  .home-page .why .why__item:nth-of-type(2), .home-page .why .why__item:nth-of-type(3) {
    width: 100%;
  }
}
.home-page .why .why__item:last-of-type {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
}
.home-page .why .why__item:last-of-type svg {
  margin: 0 auto;
  max-width: 200px;
}
.home-page .why .why__item-info {
  padding: clamp(20px, 3.5vw, 50px);
  margin-bottom: clamp(
    15px,
    2.05vw,
    22px
  );
}
@media (max-width: 1024px) {
  .home-page .why .why__item-info {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
.home-page .why .why__item-info h3 {
  margin-bottom: clamp(
    16px,
    2vw,
    20px
  );
}
.home-page .why .why__item-info p {
  max-width: 423px;
}
.home-page .about {
  padding-top: clamp(30px, 4.7vw, 60px);
  padding-bottom: clamp(30px, 4.7vw, 60px);
}
.home-page .about .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .home-page .about .container {
    flex-direction: column;
    gap: 30px;
  }
}
.home-page .about .about__info {
  width: 40.7%;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 20px);
}
@media (max-width: 1024px) {
  .home-page .about .about__info {
    align-items: center;
    width: 100%;
    text-align: center;
  }
}
.home-page .about .about__image {
  width: 49.3%;
}
@media (max-width: 1024px) {
  .home-page .about .about__image {
    width: 100%;
  }
}
.home-page .reclaim {
  padding-top: clamp(30px, 4.7vw, 60px);
  padding-bottom: clamp(30px, 4.7vw, 60px);
}
.home-page .reclaim .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .home-page .reclaim .container {
    flex-direction: column-reverse;
    gap: 30px;
  }
}
.home-page .reclaim .reclaim__info {
  width: 40.7%;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 20px);
}
@media (max-width: 1024px) {
  .home-page .reclaim .reclaim__info {
    align-items: center;
    width: 100%;
    text-align: center;
  }
}
.home-page .reclaim .reclaim__info .reclaim__info-accent {
  font-weight: 600;
  font-size: calc(16px + 2 * ((100vw - 375px) / 1545));
}
@media (min-width: 1545px) {
  .home-page .reclaim .reclaim__info .reclaim__info-accent {
    font-size: 18px;
  }
}
.home-page .reclaim .reclaim__image {
  width: 49.3%;
}
@media (max-width: 1024px) {
  .home-page .reclaim .reclaim__image {
    width: 100%;
  }
}
.home-page .services {
  padding-top: clamp(30px, 4.7vw, 60px);
  padding-bottom: clamp(50px, 8.7vw, 120px);
}
.home-page .services .services__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(
    30px,
    4.8vw,
    62px
  );
}
@media (max-width: 414px) {
  .home-page .services .services__top {
    flex-direction: column;
    gap: 20px;
  }
}
.home-page .services .services__top-arrows {
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-page .services .services__top-arrows .services__top-arrow {
  width: clamp(40px, 4.5vw, 50px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--bg);
  cursor: pointer;
  transition: var(--transition-main);
}
.home-page .services .services__top-arrows .services__top-arrow:not(.disabled):hover {
  background: var(--btn-prime-bg);
}
.home-page .services .services__top-arrows .services__top-arrow:not(.disabled):hover svg path {
  fill: var(--c-text-white);
  stroke: var(--c-text-white);
}
.home-page .services .services__top-arrows .services__top-arrow.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.home-page .services .services__top-arrows .services__top-arrow svg {
  width: 24px;
  aspect-ratio: 1;
}
.home-page .services .services__top-arrows .services__top-arrow svg path {
  transition: var(--transition-main);
}
.home-page .services .services__swiper {
  overflow: hidden;
}
.home-page .services .swiper-slide {
  border-radius: 50px;
  border: 3px solid var(--bg);
  padding: clamp(30px, 4vw, 50px);
  display: flex;
  flex-direction: column;
  height: auto;
}
.home-page .services .swiper-slide > img {
  max-width: 42px;
  margin-bottom: clamp(
    40px,
    8.6vw,
    128px
  );
}
.home-page .services .swiper-slide h3 {
  margin-bottom: clamp(
    16px,
    2vw,
    20px
  );
}

.about-page .about {
  padding-top: clamp(40px, 5.8vw, 72px);
  padding-bottom: clamp(40px, 5.2vw, 60px);
}
.about-page .about .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.about-page .about .about__title {
  margin-bottom: 10px;
}
.about-page .about .about__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(
    16px,
    2vw,
    20px
  );
}
.about-page .about .about__breadcrumbs span:first-of-type {
  border-radius: 20px;
  background: var(--bg);
  color: var(--c-text-accent);
  font-size: 10px;
  padding: 5px 9px;
}
.about-page .about .about__breadcrumbs span:last-of-type {
  opacity: 0.3;
  color: var(--c-text-accent);
  font-size: 10px;
}
.about-page .about .about__subtitle {
  text-align: center;
  max-width: 679px;
  margin-bottom: clamp(
    30px,
    5.3vw,
    72px
  );
}
.about-page .history {
  padding-top: clamp(30px, 4.7vw, 60px);
  padding-bottom: clamp(30px, 4.7vw, 60px);
}
.about-page .history .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  position: relative;
}
@media (max-width: 1024px) {
  .about-page .history .container {
    flex-direction: column;
  }
}
.about-page .history .container .history__svg {
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: min(483px, 100%);
}
.about-page .history .history__info {
  width: 40.8%;
}
@media (max-width: 1024px) {
  .about-page .history .history__info {
    width: 100%;
    text-align: center;
  }
}
.about-page .history .history__info h2 {
  margin-bottom: clamp(
    16px,
    2vw,
    20px
  );
}
.about-page .history .history__info p:not(:last-of-type) {
  margin-bottom: clamp(
    16px,
    2vw,
    20px
  );
}
.about-page .history .history__image {
  width: 49.3%;
}
@media (max-width: 1024px) {
  .about-page .history .history__image {
    width: 100%;
  }
}
.about-page .protecting {
  padding-top: clamp(30px, 4.7vw, 60px);
  padding-bottom: clamp(30px, 4.7vw, 60px);
}
.about-page .protecting .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1024px) {
  .about-page .protecting .container {
    flex-direction: column;
  }
}
.about-page .protecting .protecting__info {
  width: 40.8%;
}
@media (max-width: 1024px) {
  .about-page .protecting .protecting__info {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.about-page .protecting .protecting__info h2 {
  margin-bottom: clamp(
    16px,
    2vw,
    20px
  );
}
.about-page .protecting .protecting__info p {
  margin-bottom: clamp(
    16px,
    2vw,
    20px
  );
}
.about-page .protecting .protecting__image {
  width: 49.3%;
}
@media (max-width: 1024px) {
  .about-page .protecting .protecting__image {
    width: 100%;
  }
}
.about-page .goal {
  padding-top: clamp(30px, 4.7vw, 60px);
  padding-bottom: clamp(20px, 3.2vw, 40px);
}
.about-page .goal .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1024px) {
  .about-page .goal .container {
    flex-direction: column-reverse;
  }
}
.about-page .goal .goal__info {
  width: 40.8%;
}
@media (max-width: 1024px) {
  .about-page .goal .goal__info {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.about-page .goal .goal__info h2 {
  margin-bottom: clamp(
    16px,
    2vw,
    20px
  );
}
.about-page .goal .goal__info p {
  margin-bottom: clamp(
    16px,
    2vw,
    20px
  );
}
.about-page .goal .goal__image {
  width: 49.3%;
}
@media (max-width: 1024px) {
  .about-page .goal .goal__image {
    width: 100%;
  }
}
.about-page .mission {
  padding-top: clamp(16px, 2.6vw, 32px);
  padding-bottom: clamp(40px, 5.2vw, 60px);
}
.about-page .mission .container {
  display: grid;
  grid-template-columns: repeat(3, 0.26fr);
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 1024px) {
  .about-page .mission .container {
    grid-template-columns: 0.8fr;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .about-page .mission .container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) {
  .about-page .mission .mission__item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.about-page .mission .mission__item h3 {
  margin-bottom: clamp(
    16px,
    2vw,
    20px
  );
}
.about-page .mission .mission__item-icon {
  padding: 14px;
  border-radius: 10px;
  background: var(--bg);
  width: fit-content;
  margin-bottom: clamp(
    20px,
    2.8vw,
    32px
  );
}
.about-page .objective {
  padding-bottom: clamp(16px, 2.6vw, 32px);
  padding-top: clamp(40px, 5.2vw, 60px);
}
.about-page .objective .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  .about-page .objective .container {
    flex-direction: column-reverse;
    gap: 30px;
  }
}
.about-page .objective .objective__image {
  width: 49.3%;
}
@media (max-width: 1024px) {
  .about-page .objective .objective__image {
    width: 100%;
  }
}
.about-page .objective .objective__info {
  width: 40.8%;
}
@media (max-width: 1024px) {
  .about-page .objective .objective__info {
    width: 100%;
  }
}
.about-page .objective .objective__info-title {
  margin-bottom: clamp(
    16px,
    2vw,
    20px
  );
}
.about-page .objective .objective__info-subtitle {
  margin-bottom: clamp(
    20px,
    2.8vw,
    32px
  );
}
.about-page .objective .objective__info-items {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.8vw, 32px);
}
.about-page .objective .objective__info-item {
  padding: 0 clamp(16px, 2.4vw, 32px);
  border-radius: 35px;
  transition: var(--transition-main);
  cursor: default;
}
.about-page .objective .objective__info-item p {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-main);
}
.about-page .objective .objective__info-item.active {
  background: var(--bg);
  padding: clamp(16px, 2.4vw, 32px);
}
.about-page .objective .objective__info-item.active .objective__info-item-top {
  margin-bottom: clamp(
    16px,
    2vw,
    20px
  );
}
.about-page .objective .objective__info-item.active .objective__info-item-top h3 {
  color: var(--c-title);
}
.about-page .objective .objective__info-item.active .objective__info-item-top svg path {
  stroke: var(--c-title);
}
.about-page .objective .objective__info-item.active p {
  max-height: 350px;
}
.about-page .objective .objective__info-item-top {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.8vw, 20px);
  transition: var(--transition-main);
}
.about-page .objective .objective__info-item-top svg {
  flex-shrink: 0;
}
.about-page .objective .objective__info-item-top svg path {
  stroke: var(--c-text);
}
.about-page .objective .objective__info-item-top h3 {
  color: var(--c-text);
}

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

.legal-page .docs {
  padding-top: clamp(50px, 8.2vw, 110px);
  padding-bottom: clamp(50px, 8.2vw, 110px);
}
.legal-page .legal .brand-row {
  gap: var(--m-space-80);
  margin-top: var(--m-space-80);
}
.legal-page .legal .docs-line {
  margin-top: var(--m-space-24);
}
.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: var(--m-space-24);
  color: var(--palette-black);
}
.legal-page .legal .legal-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--m-space-32) var(--m-space-20);
}
.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.53fr 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: clamp(20px, 2.6vw, 32px);
  border-radius: 50px;
  border: 3px solid var(--bg);
  padding: clamp(20px, 3.5vw, 50px);
}
.legal-page .tabs__content p,
.legal-page .tabs__content li,
.legal-page .tabs__content span {
  margin-top: 12px;
  text-wrap: initial;
  cursor: auto;
  color: var(--c-text);
  font-family: var(--f-family-2);
  line-height: 150%;
  font-size: calc(15px + 1 * ((100vw - 375px) / 1545));
}
@media (min-width: 1545px) {
  .legal-page .tabs__content p,
.legal-page .tabs__content li,
.legal-page .tabs__content span {
    font-size: 16px;
  }
}
.legal-page .tabs-nav__item {
  width: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin: 0;
  text-wrap: initial;
  color: var(--c-text);
  font-family: var(--f-family-2);
  line-height: 150%;
  font-size: calc(15px + 1 * ((100vw - 375px) / 1545));
  font-weight: 500;
  letter-spacing: 0;
  border-radius: 8px;
}
@media (min-width: 1545px) {
  .legal-page .tabs-nav__item {
    font-size: 16px;
  }
}
.legal-page .tabs-nav__item.is-active {
  color: #a8cae4;
}
.legal-page .tabs-nav__item:not(.is-active):hover {
  color: #a8cae4;
}
.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 p.tab__title {
  color: var(--c-title);
  font-family: var(--f-family);
  font-weight: 800;
  line-height: normal;
  font-size: calc(17px + 7 * ((100vw - 375px) / 1545));
  margin-bottom: 24px;
  letter-spacing: 0;
}
@media (min-width: 1545px) {
  .legal-page p.tab__title {
    font-size: 24px;
  }
}
.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) {
  .legal-page .tabs {
    grid-template-columns: 1fr;
  }
  .legal-page .tabs__nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
  }
  .legal-page .tabs-nav__item {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    padding: 16px;
  }
  .legal-page .tabs-nav__item.is-active {
    color: var(--palette-white);
  }
  .legal-page .tabs__content {
    margin-top: 30px;
    padding: 0;
  }
  .legal-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;
  }
  .legal-page .tabs__nav {
    grid-template-columns: 1fr;
  }
  .legal-page .tab_description p, .legal-page .tabs__content li {
    margin-top: 8px !important;
  }
}
.contacts-page .contacts {
  padding-top: clamp(50px, 8.7vw, 120px);
  padding-bottom: clamp(50px, 8.7vw, 120px);
}
.contacts-page .contacts-data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .contacts-page .contacts-data {
    grid-template-columns: 1fr;
  }
}
.contacts-page .contacts-item {
  display: flex;
  gap: 20px;
  padding: clamp(20px, 3.5vw, 50px);
  border-radius: clamp(20px, 3.5vw, 50px);
  border: 3px solid var(--bg);
}
.contacts-page .contacts-item .contacts-string h3 {
  margin-bottom: clamp(
    16px,
    2vw,
    20px
  );
}

.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 #btn-instr:lang(ja-JA) {
  display: none !important;
}
.tradeholic-theme .tradeholic #btn-instr:lang(jpn-JPN) {
  display: none !important;
}
.tradeholic-theme .tradeholic #btn-instr:lang(kor-KOR) {
  display: none !important;
}
.tradeholic-theme .tradeholic #btn-instr:lang(ko-KO) {
  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 {
  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%;
  }
}
.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);
}
.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;
  color: var(--palette-dark-blue);
}
@media (min-width: 768px) {
  .not-found .container-paper {
    grid-template-columns: 1fr 2fr;
    align-items: center;
    text-align: left;
  }
  .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;
  }
}
