@import url(https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
/**
    Font-family
*/
/**
    Titles
*/
/** 
    Text
*/
:root[data-theme=light] {
  --c-black: #11111b;
  --c-white: #ffffff;
  --c-scrollbar-track: #ffffff;
  --c-scrollbar-thumb: #002a54;
  --c-scroller-top: 18, 56, 45;
  --c-prime-d-blue: #002a54;
  --c-prime-red: #e81e1e;
  --c-blue: #798a9b;
  --c-grey1: #7b7b7b;
  --c-grey2: #808080;
  --c-grey3: #c0bebe;
  --c-l-grey: #ededed;
  --c-grey-blue: #8e9aa7;
  --c-text-btn: #ffffff;
  --c-text-menu: #11111b;
}

.wrapper {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding: 0 20px;
}

@media screen and (max-width: 1024px) {
  .wrapper {
    max-width: 100%;
  }
}
body {
  background: var(--c-white);
  padding: 100px 0 0;
}
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track {
  background: var(--c-scrollbar-track);
}
body::-webkit-scrollbar-thumb {
  background: var(--c-scrollbar-thumb);
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  body {
    padding: 80px 0 0;
  }
}
@media screen and (max-width: 450px) {
  body {
    padding: 120px 0 0;
  }
}

section {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

section:not(.not-found, .banner, .subheader, .success, .support, .partnerships) {
  padding: clamp(50px, 5.2083333333vw, 100px) 0;
}
@media screen and (max-width: 768px) {
  section:not(.not-found, .banner, .subheader, .success, .support, .partnerships) {
    padding: clamp(35px, 3.6458333333vw, 70px) 0;
  }
}

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

h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(38px, 3.3333333333vw, 64px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 2.0833333333vw, 40px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h3 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(20px, 1.3541666667vw, 26px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.title-dark {
  color: var(--c-black);
}
.title-dark span {
  color: var(--c-grey1);
}

.title-light {
  color: var(--c-white);
}

.title-gradient {
  background: linear-gradient(217.65deg, #60c3cb 11.16%, #4adbc3 78.23%);
  /* background-repeat: repeat-x; */
  /* background-position: 0 0; */
  color: transparent;
  -webkit-font-smoothing: antialiased;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.supertitle {
  font-family: "Inter", sans-serif;
  font-size: clamp(12px, 0.7291666667vw, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--c-grey-blue);
}

.subtitle {
  font-family: "Inter", sans-serif;
  font-size: clamp(16px, 0.9375vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.38;
}

.text1 {
  font-family: "Inter", sans-serif;
  font-size: clamp(16px, 0.9375vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.38;
}

.text2 {
  font-family: "Inter", sans-serif;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.text-btn {
  font-family: "Poppins", sans-serif;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
}

.text-menu {
  font-family: "Inter", sans-serif;
  font-size: clamp(16px, 0.9375vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.btn-head {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  border-radius: 40px;
  transition: all 0.3s ease-in-out;
  font-family: "Poppins", sans-serif;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
}

.btn-head-log {
  gap: clamp(10px, 1.0416666667vw, 20px);
  background: var(--c-prime-red);
}
.btn-head-log:hover {
  background: var(--c-prime-d-blue);
}
.btn-head-log:hover span {
  color: var(--c-white);
}
.btn-head-log:hover svg {
  transform: rotate(-90deg);
}
.btn-head-log span {
  color: var(--c-white);
}
.btn-head-log svg {
  transition: all 0.3s ease-in-out;
}

.btn-head-reg:hover {
  color: var(--c-white);
  background: var(--c-prime-red);
}

.btn-main {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 17px 35px;
  border-radius: 40px;
  max-width: 186px;
  width: 100%;
  transition: all 0.3s ease-in-out;
  font-family: "Poppins", sans-serif;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
}

.btn-prime {
  color: var(--c-white);
  background: var(--c-prime-red);
}
.btn-prime:hover {
  color: var(--c-white);
  background: var(--c-prime-d-blue);
}

.btn-white {
  color: var(--c-black);
  background: var(--c-white);
}
.btn-white:hover {
  color: var(--c-white);
  background: var(--c-blue);
}

.btn-transparent {
  color: var(--c-prime);
  background: transparent;
  border: 1px solid var(--c-prime);
}
.btn-transparent:hover {
  color: var(--c-white);
  background: var(--c-prime);
}

.btn-lang {
  display: grid;
  grid-template-columns: auto 10px;
  align-items: center;
  grid-gap: 6px;
}
.btn-lang:hover img {
  transform: rotate(-180deg);
}
.btn-lang img {
  transition: all 0.3s ease-in-out;
}

.btn-go-home {
  background: transparent;
  color: var(--c-btn-reg);
  position: relative;
}
.btn-go-home:hover {
  background: transparent;
  color: var(--c-btn-reg);
}
.btn-go-home:hover::before {
  z-index: -2;
  animation: 0.5s zoomOut forwards;
}
.btn-go-home:hover::after {
  z-index: -1;
  animation: 0.5s zoomIn forwards;
}
.btn-go-home::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gr-main);
  border-radius: 12px;
  animation: 0.5s zoomIn forwards;
}
.btn-go-home::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gr-main-hover);
  border-radius: 12px;
  animation: 0.5s zoomOut forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@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(1);
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
@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 blink {
  to {
    visibility: hidden;
  }
}
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;
}

input:focus-visible,
textarea:focus-visible {
  border: none;
  outline: none;
}

/*! 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;
}

:root {
  --header-height: 100px;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 100px;
  }
}
@media screen and (max-width: 450px) {
  :root {
    --header-height: 160px;
  }
}

@keyframes setFixedHeader {
  from {
    opacity: 0;
    transform: translateY(calc(-1 * var(--header-height)));
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  z-index: 99;
  background: var(--c-white);
  /* Lang */
}
.header.header-fixed {
  position: fixed;
  height: 100px;
  box-shadow: 0px 15px 10px -15px var(--c-prime-d-blue);
  animation: 1s setFixedHeader ease-in-out;
}
@media screen and (max-width: 576px) {
  .header.header-fixed {
    height: var(--header-height);
  }
}
.header.header-fixed .header__btns a {
  padding: 10px 16px;
}
.header .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header__logo img {
  min-width: 130px;
  width: 100%;
}
.header .header__menu {
  margin: 0 10px;
  width: 55%;
}
.header .header__menu .menu__wrapper {
  display: flex;
  justify-content: center;
}
.header .header__menu .menu__links {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  padding: 0 30px;
  cursor: pointer;
}
.header .header__menu .menu__links .current-menu-item {
  cursor: pointer;
}
.header .header__menu .menu__links .current-menu-item > a {
  border-bottom: 2px solid var(--c-prime-red);
}
.header .header__menu .menu__links > li {
  position: relative;
}
.header .header__menu .menu__links > li:hover > ul.sub-menu {
  transform: scaleY(1);
}
.header .header__menu .menu__links > li:hover.menu-item-has-children > a::after {
  transform: translateY(-50%) rotate(180deg);
}
.header .header__menu .menu__links > li.menu-item-has-children > a {
  position: relative;
}
.header .header__menu .menu__links > li.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 4px;
  background: url(../img/header/menu_arrow.svg) no-repeat center center;
  background-size: contain;
  top: 50%;
  right: -14px;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
.header .header__menu .menu__links > li:not(.menu-item-has-children) > a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--c-black);
  transition: all 0.3s ease-in-out;
  transform-origin: center;
}
.header .header__menu .menu__links > li:not(.menu-item-has-children) > a:hover::before {
  width: 100%;
}
.header .header__menu .menu__links > li a {
  font-family: "Inter", sans-serif;
  font-size: clamp(16px, 0.9375vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  color: var(--c-text-menu);
  position: relative;
  white-space: nowrap;
}
.header .header__menu .menu__links > li ul.sub-menu {
  display: grid;
  grid-gap: 8px 0;
  z-index: 2;
}
.header .header__menu .menu__links > li > ul.sub-menu {
  position: absolute;
  top: calc(100% + 14px);
  padding: 8px;
  background: var(--c-blue);
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.3s ease-in-out;
  width: fit-content;
  box-shadow: 0px 4px 10px 0px var(--c-prime-d-blue);
}
.header .header__menu .menu__links > li > ul.sub-menu a {
  color: var(--c-white);
}
.header .header__menu .menu__links > li > ul.sub-menu > li:not(.current-menu-item) > a {
  transition: all 0.3s ease-in-out;
}
.header .header__menu .menu__links > li > ul.sub-menu > li:not(.current-menu-item) > a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--c-white);
  transition: all 0.3s ease-in-out;
  transform-origin: center;
}
.header .header__menu .menu__links > li > ul.sub-menu > li:not(.current-menu-item) > a:hover::before {
  width: 100%;
}
.header #menu-item-270 .sub-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  width: fit-content;
}
.header .header__closer {
  display: none;
}
.header .header__burger {
  cursor: pointer;
  height: 30px;
}
.header .header__burger span {
  position: relative;
  display: block;
  width: 40px;
  box-shadow: 0 2px 10px 0 var(--c-text-menu);
  border-radius: 3px;
  height: 3px;
  background: var(--c-text-menu);
}
.header .header__burger span::before, .header .header__burger span::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  box-shadow: 0 2px 10px 0 var(--c-text-menu);
  border-radius: 3px;
  height: 3px;
  background: var(--c-text-menu);
}
.header .header__burger span::before {
  top: -12px;
}
.header .header__burger span::after {
  top: 12px;
}
.header .header__btns {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  position: relative;
  z-index: 100;
  gap: clamp(15px, 1.5625vw, 30px);
}
.header .language {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.header .language > ul.menu_lang {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  display: contents;
  color: var(--c-text-menu);
  transition: all 0.3s ease-in-out;
  position: relative;
  cursor: pointer;
}
.header .language > ul.menu_lang .menu-item {
  font-family: "Inter", sans-serif;
  font-size: clamp(16px, 0.9375vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  font-weight: 700;
}
.header .language > ul.menu_lang .menu-item a {
  display: flex;
}
.header .language > ul.menu_lang .menu-item a img {
  object-fit: contain;
  max-width: 18px;
}
.header .language > ul.menu_lang > .menu-item:hover > ul.sub-menu {
  font-family: "Poppins", sans-serif;
  transform: scaleY(1);
  cursor: pointer;
}
.header .language > ul.menu_lang > .menu-item > ul.sub-menu {
  position: absolute;
  top: 100%;
  padding: 0;
  margin: 0;
  transform: scaleY(0);
  transition: all 0.3s ease-in-out;
  transform-origin: top;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.header .language > ul.menu_lang > .menu-item > ul.sub-menu span {
  font-family: "Inter", sans-serif;
  font-size: clamp(16px, 0.9375vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  transition: all 0.3s ease-in-out;
}
.header .language > ul.menu_lang > .menu-item > ul.sub-menu span:hover {
  color: var(--c-prime-red);
}

/** Media **/
@media screen and (max-width: 1200px) {
  .header .header__menu {
    margin: 0;
  }
}
@media screen and (max-width: 992px) {
  .header .header__menu {
    background: var(--c-white);
    margin: 0;
    position: fixed;
    top: 0;
    left: -100vw;
    z-index: 500;
    width: 100vw;
    height: 100vh;
    transition: all 0.7s ease-in-out;
  }
  .header .header__menu.active {
    height: 70px;
    left: 0;
  }
  .header .header__menu .menu__wrapper {
    width: 100%;
    margin: 80px 0 0;
  }
  .header .header__menu .menu__links {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .header .header__menu .menu__links > li a {
    font-size: 16px;
  }
  .header .header__menu .menu__links > li:not(:last-child) {
    margin: 0 0 14px;
  }
  .header .header__menu .menu__links > li:hover > ul.sub-menu {
    transform: unset;
    max-height: 500px;
    padding: 10px 14px;
    width: 100%;
  }
  .header .header__menu .menu__links > li ul.sub-menu {
    display: grid;
    grid-gap: 8px 0;
    text-align: center;
    border-left: none;
  }
  .header .header__menu .menu__links > li > ul.sub-menu {
    position: static;
    top: unset;
    padding: 0;
    overflow: hidden;
    transform: unset;
    transform-origin: unset;
    max-height: 0;
  }
  .header .header__menu #menu-item-270 .sub-menu {
    grid-template-columns: 1fr;
    gap: initial;
    width: initial;
  }
  .header .header__menu .header__closer {
    display: inline-block;
    font-size: 50px;
    line-height: 0;
    color: var(--c-text-menu);
    position: absolute;
    top: 80px;
    right: 50px;
    cursor: pointer;
  }
}
@media screen and (max-width: 768px) {
  .header {
    height: var(--header-height);
  }
  .header .header__menu .menu__wrapper {
    width: 100%;
    margin: 40px 0 0;
  }
  .header .header__menu .header__closer {
    top: 40px;
  }
  .header .header__inner {
    padding: 10px 0;
    gap: clamp(20px, 3.90625vw, 30px);
  }
  .header .header__btns {
    display: none;
  }
  .header .header__btns-mob {
    display: grid;
    grid-template-columns: repeat(2, clamp(30px, 5.2083333333vw, 40px));
    grid-gap: 0 clamp(20px, 2.0833333333vw, 40px);
    margin: 0 0 0 auto;
  }
  .header .header__btns-mob a {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 576px) {
  .header {
    height: var(--header-height);
  }
  .header .header__btns-mob {
    margin: unset;
  }
}
@media screen and (max-width: 450px) {
  .header .header__inner {
    flex-wrap: wrap;
  }
  .header .header__logo {
    width: 100%;
    order: 1;
    text-align: center;
  }
  .header .header__logo img {
    min-width: initial;
    max-width: 130px;
  }
  .header .btn-lang {
    order: 2;
  }
  .header .header__btns-mob {
    order: 3;
  }
  .header .header__burger {
    order: 4;
  }
}
@media screen and (min-width: 993px) {
  .header .header__burger {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .header .header__btns-mob {
    display: none;
  }
}
.footer {
  padding: clamp(40px, 4.1666666667vw, 80px) 0;
}
.footer h3 {
  margin: 0 0 clamp(15px, 1.5625vw, 30px);
  color: var(--c-black);
}
.footer .footer__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr 3fr;
  grid-gap: 100px;
}
.footer .footer__logo img {
  max-width: 106px;
  width: 100%;
}
.footer .footer__contacts .items {
  display: grid;
  grid-gap: 24px 0;
  height: fit-content;
}
.footer .footer__contacts .item {
  display: grid;
  grid-template-columns: 24px 1fr;
  grid-gap: 0 16px;
  align-items: center;
}
.footer .footer__contacts .item span {
  color: var(--c-grey2);
  transition: all 0.3s ease-in-out;
}
.footer .footer__contacts .item:hover span {
  color: var(--c-prime-d-blue);
}
.footer .footer__risk p {
  color: var(--c-grey2);
}
.footer .footer__bottom {
  display: grid;
  grid-template-columns: 1fr 1.5fr 3fr;
  grid-gap: 100px;
  margin: clamp(30px, 3.6458333333vw, 60px) 0 0;
}
.footer .footer__bottom .copy {
  grid-column: 2/3;
  color: var(--c-grey2);
}
.footer .footer__bottom .pay {
  grid-column: 3/4;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 0;
}
.footer .footer__bottom .pay img {
  max-width: 74px;
}

/** Media **/
@media screen and (max-width: 1200px) {
  .footer .footer__inner,
.footer .footer__bottom {
    grid-gap: 0 50px;
  }
}
@media screen and (max-width: 992px) {
  .footer .footer__inner,
.footer .footer__bottom {
    grid-template-columns: 1fr;
    grid-gap: 50px 0;
  }
  .footer .footer__logo {
    display: flex;
    justify-content: center;
  }
  .footer .footer__bottom {
    text-align: center;
  }
  .footer .footer__bottom .copy,
.footer .footer__bottom .pay {
    grid-column: unset;
  }
  .footer .footer__bottom .pay {
    justify-content: center;
    grid-row: 1/2;
  }
}
.subheader {
  background: var(--c-prime-d-blue);
  border-radius: 0 0 0 clamp(50px, 7.8125vw, 150px);
  height: clamp(250px, 23.9583333333vw, 460px);
  display: flex;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 450px) {
  .subheader {
    margin-top: 32px;
  }
}
.subheader h1 {
  color: var(--c-white);
}
@media screen and (min-width: 1024px) {
  .subheader h2 {
    opacity: 0;
    animation: 1s fadeInUp ease-in-out forwards;
  }
}
@media screen and (max-width: 1024px) {
  .subheader {
    background-size: cover;
    background-position: center right;
  }
}

#scroller {
  display: none;
  scroll-behavior: smooth;
}
#scroller.active {
  cursor: pointer;
  position: fixed;
  right: 4px;
  bottom: 10%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(var(--c-scroller-top), 0.4);
  transition: all 0.3s ease-in-out;
  z-index: 111;
}
#scroller.active:hover {
  background: transparent;
  border: 1px solid rgba(var(--c-scroller-top), 1);
}
#scroller.active:hover svg path {
  fill: rgba(var(--c-scroller-top), 1);
}
#scroller.active svg path {
  transition: all 0.3s ease-in-out;
  fill: rgba(var(--c-scroller-top), 0.4);
}

@media screen and (max-width: 576px) {
  #scroller.active {
    bottom: 30%;
  }
}
.home .banner {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 0 clamp(45px, 4.6875vw, 90px);
}
@media screen and (max-width: 1024px) {
  .home .banner {
    padding: clamp(40px, 4.1666666667vw, 80px) 0;
    grid-template-columns: 1fr;
  }
}
.home .banner .banner__inner {
  display: grid;
  grid-template-columns: 1.23fr 1fr;
  grid-gap: clamp(70px, 7.2916666667vw, 140px);
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .home .banner .banner__inner {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 1024px) {
  .home .banner .banner__inner .banner__info {
    text-align: center;
    max-width: 75%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 576px) {
  .home .banner .banner__inner .banner__info {
    max-width: unset;
  }
}
@media screen and (max-width: 450px) {
  .home .banner .banner__inner .banner__info {
    margin-top: 32px;
  }
}
@media screen and (min-width: 320px) {
  .home .banner .banner__inner .banner__info p.supertitle,
.home .banner .banner__inner .banner__info h1,
.home .banner .banner__inner .banner__info p.text1,
.home .banner .banner__inner .banner__info a {
    opacity: 0;
  }
  .home .banner .banner__inner .banner__info p.supertitle {
    animation: 0.5s fadeInDown ease-in-out forwards;
  }
  .home .banner .banner__inner .banner__info h1 {
    animation: 0.5s fadeInLeft ease-in-out forwards 0.5s;
  }
  .home .banner .banner__inner .banner__info p.text1 {
    animation: 0.5s fadeInLeft ease-in-out forwards 1s;
  }
  .home .banner .banner__inner .banner__info a {
    animation: 0.5s fadeInUp ease-in-out forwards 1.5s;
  }
}
.home .banner .banner__inner .banner__info h1 {
  margin: clamp(8px, 0.7291666667vw, 14px) 0 30px;
}
.home .banner .banner__inner .banner__info a {
  margin: 40px 0 0;
}
@media screen and (max-width: 1024px) {
  .home .banner .banner__inner .banner__info a {
    margin: 40px auto 0;
  }
}
.home .banner .banner__inner .banner__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.home .banner .banner__inner .banner__items.active-anim .item:nth-child(1), .home .banner .banner__inner .banner__items.active-anim .item:nth-child(2), .home .banner .banner__inner .banner__items.active-anim .item:nth-child(3), .home .banner .banner__inner .banner__items.active-anim .item:nth-child(4) {
  animation: 0.5s fadeIn ease-in-out forwards;
}
.home .banner .banner__inner .banner__items.active-anim .item:nth-child(1) {
  animation-delay: 0.3s;
}
.home .banner .banner__inner .banner__items.active-anim .item:nth-child(2) {
  animation-delay: 0.6s;
}
.home .banner .banner__inner .banner__items.active-anim .item:nth-child(3) {
  animation-delay: 0.9s;
}
@media screen and (max-width: 576px) {
  .home .banner .banner__inner .banner__items.active-anim .item:nth-child(1) {
    animation-delay: 0.3s;
  }
  .home .banner .banner__inner .banner__items.active-anim .item:nth-child(2) {
    animation-delay: 0s;
  }
  .home .banner .banner__inner .banner__items.active-anim .item:nth-child(3) {
    animation-delay: 0.9s;
  }
  .home .banner .banner__inner .banner__items.active-anim .item:nth-child(4) {
    animation-delay: 0.6s;
  }
}
@media screen and (max-width: 1024px) {
  .home .banner .banner__inner .banner__items {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .home .banner .banner__inner .banner__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .home .banner .banner__inner .banner__items {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
.home .banner .banner__inner .banner__items .item {
  max-height: 305px;
  opacity: 0;
}
.home .banner .banner__inner .banner__items .item:nth-child(1) {
  line-height: 0;
  background: var(--c-l-grey);
  padding: clamp(10px, 1.0416666667vw, 20px) clamp(10px, 1.0416666667vw, 20px) 0 clamp(15px, 1.5625vw, 30px);
}
@media screen and (max-width: 1024px) {
  .home .banner .banner__inner .banner__items .item:nth-child(1) {
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.home .banner .banner__inner .banner__items .item:nth-child(1) img {
  width: 100%;
  max-width: 220px;
}
@media screen and (max-width: 1024px) {
  .home .banner .banner__inner .banner__items .item:nth-child(1) img {
    border-bottom: 1px solid var(--c-grey3);
  }
}
@media screen and (max-width: 576px) {
  .home .banner .banner__inner .banner__items .item:nth-child(1) img {
    border-bottom: unset;
  }
}
.home .banner .banner__inner .banner__items .item:nth-child(2) {
  border-radius: 180px 0px 0px 180px;
  background: var(--c-prime-d-blue);
  padding: 36px 18px 42px 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .home .banner .banner__inner .banner__items .item:nth-child(2) {
    order: 1;
  }
}
@media screen and (max-width: 576px) {
  .home .banner .banner__inner .banner__items .item:nth-child(2) {
    border-radius: unset;
  }
}
.home .banner .banner__inner .banner__items .item:nth-child(2) .item__orders-num,
.home .banner .banner__inner .banner__items .item:nth-child(2) .item__orders-percent {
  text-align: right;
}
.home .banner .banner__inner .banner__items .item:nth-child(2) .item__orders-num {
  font-family: "Inter", sans-serif;
  font-size: clamp(34px, 2.5vw, 48px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--c-white);
}
.home .banner .banner__inner .banner__items .item:nth-child(2) .item__orders-text {
  font-family: "Inter", sans-serif;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--c-grey3);
}
.home .banner .banner__inner .banner__items .item:nth-child(2) .item__orders-percent {
  font-family: "Inter", sans-serif;
  font-size: clamp(22px, 1.4583333333vw, 28px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--c-grey3);
}
.home .banner .banner__inner .banner__items .item:nth-child(3) {
  border-radius: 0px 180px 0px 0px;
  background: var(--c-blue);
  padding: 22px 25px 20px 22px;
}
@media screen and (max-width: 1024px) {
  .home .banner .banner__inner .banner__items .item:nth-child(3) {
    order: 4;
  }
}
@media screen and (max-width: 576px) {
  .home .banner .banner__inner .banner__items .item:nth-child(3) {
    border-radius: unset;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (max-width: 400px) {
  .home .banner .banner__inner .banner__items .item:nth-child(3) {
    flex-direction: column;
    gap: 14px;
    align-items: unset;
  }
}
.home .banner .banner__inner .banner__items .item:nth-child(3) img[alt=icon1] {
  max-width: 78px;
}
.home .banner .banner__inner .banner__items .item:nth-child(3) img[alt=icon2] {
  max-width: 58px;
}
.home .banner .banner__inner .banner__items .item:nth-child(3) .item__sales-text {
  font-family: "Inter", sans-serif;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 500;
  line-height: 1.4;
  text-align: right;
  color: var(--c-white);
  margin: clamp(35px, 3.6458333333vw, 70px) 0 16px;
}
@media screen and (max-width: 576px) {
  .home .banner .banner__inner .banner__items .item:nth-child(3) .item__sales-text {
    margin: unset;
  }
}
.home .banner .banner__inner .banner__items .item:nth-child(3) .item__sales-percent {
  font-family: "Inter", sans-serif;
  font-size: clamp(20px, 1.3541666667vw, 26px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--c-grey3);
  margin: 10px 0 0;
}
@media screen and (max-width: 576px) {
  .home .banner .banner__inner .banner__items .item:nth-child(3) .item__sales-percent {
    margin: unset;
  }
}
@media screen and (max-width: 400px) {
  .home .banner .banner__inner .banner__items .item:nth-child(3) .item__sales-percent {
    flex-direction: column;
    gap: 14px;
  }
}
.home .banner .banner__inner .banner__items .item:nth-child(4) {
  background: var(--c-prime-red);
  padding: clamp(20px, 2.0833333333vw, 40px) 32px 10px;
}
@media screen and (max-width: 1024px) {
  .home .banner .banner__inner .banner__items .item:nth-child(4) {
    order: 3;
  }
}
@media screen and (max-width: 576px) {
  .home .banner .banner__inner .banner__items .item:nth-child(4) {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 400px) {
  .home .banner .banner__inner .banner__items .item:nth-child(4) {
    flex-direction: column;
  }
}
.home .banner .banner__inner .banner__items .item:nth-child(4) .item__graph-price {
  font-family: "Inter", sans-serif;
  font-size: clamp(22px, 1.4583333333vw, 28px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--c-white);
}
.home .banner .banner__inner .banner__items .item:nth-child(4) .item__graph-percent {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--c-grey3);
  margin: 18px 0 0;
}
@media screen and (max-width: 1024px) {
  .home .why .why__top {
    text-align: center;
  }
}
.home .why .why__top h2 {
  margin: clamp(8px, 0.7291666667vw, 14px) 0 0;
}
.home .why .why__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 32px;
  margin: 30px 0 0;
}
@media screen and (max-width: 1024px) {
  .home .why .why__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .home .why .why__items {
    grid-template-columns: 1fr;
    max-width: 80%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 400px) {
  .home .why .why__items {
    max-width: unset;
  }
}
.home .why .why__items .item .item-wrap {
  padding: clamp(20px, 2.0833333333vw, 40px) 20px;
  border: 1px solid #d6d8da;
  transition: all 0.5s ease-in-out;
  height: 100%;
}
.home .why .why__items .item .item-wrap * {
  transition: all 0.5s ease-in-out;
}
.home .why .why__items .item .item-wrap:hover {
  border-radius: 0px 180px 0px 0px;
  background: var(--c-prime-red);
}
.home .why .why__items .item .item-wrap:hover h3 {
  color: var(--c-white);
}
.home .why .why__items .item .item-wrap:hover p {
  color: var(--c-grey3);
}
.home .why .why__items .item .item-wrap:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(130deg) brightness(101%) contrast(102%);
}
.home .why .why__items .item .item-wrap h3 {
  color: var(--c-black);
  margin: clamp(40px, 4.1666666667vw, 80px) 0 18px;
}
@media screen and (max-width: 768px) {
  .home .why .why__items .item .item-wrap h3 {
    margin: 30px 0 18px;
  }
}
.home .why .why__items .item .item-wrap p {
  color: var(--c-grey2);
}
.home .why .why__items .item .item-wrap img {
  max-width: clamp(40px, 3.2291666667vw, 62px);
}
.home .crypto-pairs {
  background: var(--c-prime-d-blue);
}
.home .crypto-pairs .crypto-pairs__inner {
  display: grid;
  grid-template-columns: 1fr 1.64fr;
  grid-gap: clamp(60px, 6.25vw, 120px);
}
@media screen and (max-width: 1024px) {
  .home .crypto-pairs .crypto-pairs__inner {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 1024px) {
  .home .crypto-pairs .crypto-pairs__left {
    text-align: center;
  }
}
.home .crypto-pairs .crypto-pairs__left h2 {
  margin: clamp(10px, 1.0416666667vw, 20px) 0 0;
}
.home .crypto-pairs .crypto-pairs__right {
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 6.25vw, 120px);
}
@media screen and (max-width: 1024px) {
  .home .crypto-pairs .crypto-pairs__right {
    flex-direction: column-reverse;
  }
}
.home .crypto-pairs .crypto-pairs__right .crypto-pairs__top {
  display: flex;
  align-items: center;
  gap: clamp(60px, 6.25vw, 120px);
}
@media screen and (max-width: 1024px) {
  .home .crypto-pairs .crypto-pairs__right .crypto-pairs__top {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
}
.home .crypto-pairs .crypto-pairs__right .crypto-pairs__top p {
  color: var(--c-grey3);
}
@media screen and (max-width: 1024px) {
  .home .crypto-pairs .crypto-pairs__right .crypto-pairs__top p {
    max-width: 650px;
  }
}
.home .crypto-pairs .crypto-pairs__right .crypto-pairs__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: clamp(30px, 3.6458333333vw, 60px);
}
@media screen and (max-width: 576px) {
  .home .crypto-pairs .crypto-pairs__right .crypto-pairs__items {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 1024px) {
  .home .crypto-pairs .crypto-pairs__right .crypto-pairs__items .item {
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  .home .crypto-pairs .crypto-pairs__right .crypto-pairs__items .item {
    border: 1px solid var(--c-grey1);
    padding: 30px 20px;
    max-width: 75%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 400px) {
  .home .crypto-pairs .crypto-pairs__right .crypto-pairs__items .item {
    max-width: 100%;
  }
}
.home .crypto-pairs .crypto-pairs__right .crypto-pairs__items .item img {
  max-width: clamp(120px, 7.8125vw, 150px);
}
.home .crypto-pairs .crypto-pairs__right .crypto-pairs__items .item h3 {
  color: var(--c-white);
  margin: 24px 0;
}
@media screen and (max-width: 576px) {
  .home .crypto-pairs .crypto-pairs__right .crypto-pairs__items .item h3 {
    margin: 20px 0 10px;
  }
}
.home .crypto-pairs .crypto-pairs__right .crypto-pairs__items .item p {
  color: var(--c-grey3);
}
.home .innovation .innovation__inner {
  display: grid;
  grid-template-columns: 1fr 1.42fr;
  grid-gap: 50px 30px;
}
@media screen and (max-width: 900px) {
  .home .innovation .innovation__inner {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 576px) {
  .home .innovation .innovation__inner {
    grid-gap: 20px;
  }
}
@media screen and (max-width: 900px) {
  .home .innovation .innovation__left,
.home .innovation .innovation__right {
    max-width: 75%;
    width: 100%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .home .innovation .innovation__left,
.home .innovation .innovation__right {
    max-width: 85%;
  }
}
@media screen and (max-width: 576px) {
  .home .innovation .innovation__left,
.home .innovation .innovation__right {
    max-width: 100%;
  }
}
.home .innovation .innovation__left {
  background: var(--c-prime-d-blue);
  padding: 35px 0 26px;
  display: grid;
  grid-gap: clamp(65px, 6.7708333333vw, 130px);
}
.home .innovation .innovation__left .innovation__top {
  padding: 0 42px;
}
@media screen and (max-width: 900px) {
  .home .innovation .innovation__left .innovation__top {
    text-align: center;
  }
}
.home .innovation .innovation__left .innovation__top h2 {
  margin: clamp(8px, 0.7291666667vw, 14px) 0 0;
}
.home .innovation .innovation__left .innovation__graph {
  text-align: center;
}
.home .innovation .innovation__left .innovation__graph img {
  max-width: 64%;
}
.home .innovation .innovation__right {
  background: var(--c-blue);
  border-radius: 0px 0px 0px clamp(100px, 7.8125vw, 150px);
  padding: clamp(40px, 4.1666666667vw, 80px) clamp(20px, 2.0833333333vw, 40px) clamp(40px, 4.1666666667vw, 80px) clamp(30px, 3.6458333333vw, 60px);
  display: grid;
  grid-gap: clamp(25px, 2.6041666667vw, 50px);
}
@media screen and (max-width: 576px) {
  .home .innovation .innovation__right {
    border-radius: unset;
    padding: 30px 20px;
  }
}
.home .innovation .innovation__right .item h3 {
  color: var(--c-white);
}
.home .innovation .innovation__right .item p {
  color: var(--c-grey3);
  margin: 24px 0 0;
}
.home .success {
  padding: clamp(40px, 4.1666666667vw, 80px) 0 clamp(90px, 9.375vw, 180px);
}
.home .success .success__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: clamp(70px, 7.2916666667vw, 140px);
}
@media screen and (max-width: 768px) {
  .home .success .success__inner {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .home .success .success__left {
    text-align: center;
  }
}
.home .success .success__left p {
  margin: 30px 0 0;
  color: var(--c-grey2);
}
.home .success .success__items {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: clamp(20px, 2.0833333333vw, 40px) clamp(45px, 4.6875vw, 90px);
}
@media screen and (max-width: 768px) {
  .home .success .success__items {
    grid-template-columns: repeat(2, auto);
    grid-gap: 50px;
    text-align: center;
  }
}
@media screen and (max-width: 400px) {
  .home .success .success__items {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
}
.home .success .success__items .item .item__value {
  color: var(--c-black);
}
.home .success .success__items .item .item__descr {
  color: var(--c-grey2);
}
.home .support {
  background: var(--c-prime-d-blue);
}
.home .support .support__inner {
  display: grid;
  grid-template-columns: 1.54fr 1fr;
  grid-gap: clamp(125px, 13.0208333333vw, 250px);
  align-items: center;
}
@media screen and (max-width: 850px) {
  .home .support .support__inner {
    padding: 50px 0;
    grid-template-columns: 1fr;
    grid-gap: 50px;
  }
}
@media screen and (max-width: 850px) {
  .home .support .support__left {
    text-align: center;
  }
}
.home .support .support__left h2 {
  color: var(--c-white);
}
.home .support .support__left p {
  color: var(--c-grey3);
  margin: 30px 0 40px;
}
@media screen and (max-width: 850px) {
  .home .support .support__left p {
    max-width: 80%;
    margin: 30px auto 40px;
  }
}
@media screen and (max-width: 850px) {
  .home .support .support__left a {
    margin-inline: auto;
  }
}
.home .support .support__graphics {
  text-align: center;
  line-height: 0;
  padding: 32px 0 0;
  display: grid;
  justify-items: center;
  grid-gap: clamp(20px, 2.0833333333vw, 40px);
}
@media screen and (max-width: 850px) {
  .home .support .support__graphics {
    padding: unset;
    grid-row: 1/2;
  }
}
.home .support .support__graphics img[alt=icon] {
  max-width: clamp(200px, 15.625vw, 300px);
  width: 100%;
}
.home .support .support__graphics img[alt=mockup] {
  max-width: clamp(350px, 21.875vw, 420px);
  width: 100%;
}

.about .banner {
  padding: clamp(20px, 2.0833333333vw, 40px) 0 clamp(40px, 4.1666666667vw, 80px);
}
.about .banner .banner__content {
  display: grid;
  grid-template-columns: 1fr 2.2fr 1fr;
  grid-gap: clamp(40px, 4.1666666667vw, 80px);
}
@media screen and (max-width: 1024px) {
  .about .banner .banner__content {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 576px) {
  .about .banner .banner__content {
    grid-gap: 20px;
  }
}
@media screen and (max-width: 450px) {
  .about .banner .banner__content {
    margin-top: 32px;
  }
}
.about .banner .banner__content .banner__icons-group-left,
.about .banner .banner__content .banner__icons-group-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(40px, 4.1666666667vw, 80px) 0 clamp(35px, 3.6458333333vw, 70px);
}
@media screen and (max-width: 1024px) {
  .about .banner .banner__content .banner__icons-group-left,
.about .banner .banner__content .banner__icons-group-right {
    flex-direction: row;
    padding: unset;
  }
}
.about .banner .banner__content .banner__icons-group-left img,
.about .banner .banner__content .banner__icons-group-right img {
  max-width: 36px;
}
.about .banner .banner__content .banner__icons-group-left img:nth-child(1),
.about .banner .banner__content .banner__icons-group-right img:nth-child(1) {
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .about .banner .banner__content .banner__icons-group-left img:nth-child(1),
.about .banner .banner__content .banner__icons-group-right img:nth-child(1) {
    margin-inline: unset;
  }
}
@media screen and (max-width: 1024px) {
  .about .banner .banner__content .banner__icons-group-left {
    justify-content: space-around;
  }
}
@media screen and (max-width: 768px) {
  .about .banner .banner__content .banner__icons-group-left {
    justify-content: space-between;
  }
}
.about .banner .banner__content .banner__icons-group-left img:nth-child(2) {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1024px) {
  .about .banner .banner__content .banner__icons-group-left img:nth-child(2) {
    margin: unset;
  }
}
.about .banner .banner__content .banner__info {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .about .banner .banner__content .banner__info {
    max-width: 75%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 576px) {
  .about .banner .banner__content .banner__info {
    max-width: unset;
  }
}
.about .banner .banner__content .banner__info h1 {
  opacity: 0;
  animation: 1.25s fadeInDown ease-in-out forwards;
}
.about .banner .banner__content .banner__info p {
  margin: 30px 0 40px;
  opacity: 0;
  animation: 1s zoomIn ease-in-out forwards 0.25s;
}
.about .banner .banner__content .banner__info a {
  margin-inline: auto;
  opacity: 0;
  animation: 1.25s fadeInUp ease-in-out forwards;
}
@media screen and (max-width: 1024px) {
  .about .banner .banner__content .banner__icons-group-right {
    justify-content: space-evenly;
  }
}
@media screen and (max-width: 768px) {
  .about .banner .banner__content .banner__icons-group-right {
    justify-content: space-around;
  }
}
.about .banner .banner__mockup {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  align-items: end;
}
@media screen and (max-width: 768px) {
  .about .banner .banner__mockup {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    margin: 30px 0 0;
  }
  .about .banner .banner__mockup img[alt=mockup1] {
    order: 2;
  }
  .about .banner .banner__mockup img[alt=mockup2] {
    order: 4;
  }
  .about .banner .banner__mockup img[alt=mockup3] {
    order: 3;
  }
  .about .banner .banner__mockup img[alt=mockup4] {
    order: 1;
  }
}
.about .time h2.title-dark {
  text-align: center;
}
.about .time .time__items {
  margin: 50px 0 0;
  display: grid;
  grid-gap: clamp(10px, 1.0416666667vw, 20px);
}
@media screen and (max-width: 768px) {
  .about .time .time__items {
    gap: 40px;
  }
}
.about .time .time__items .item {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  grid-gap: clamp(25px, 2.6041666667vw, 50px);
}
@media screen and (max-width: 768px) {
  .about .time .time__items .item {
    grid-template-columns: 1fr 2fr;
  }
}
.about .time .time__items .item:nth-child(even) .item__info {
  order: 3;
}
.about .time .time__items .item:nth-child(even) .item__center {
  order: 2;
}
@media screen and (max-width: 768px) {
  .about .time .time__items .item:nth-child(even) .item__center {
    order: 1;
  }
}
.about .time .time__items .item:nth-child(even) .item__center .line {
  order: 3;
}
@media screen and (max-width: 768px) {
  .about .time .time__items .item:nth-child(even) .item__center .line {
    order: 2;
  }
}
.about .time .time__items .item:nth-child(even) .item__center .num {
  order: 2;
}
@media screen and (max-width: 768px) {
  .about .time .time__items .item:nth-child(even) .item__center .num {
    order: 1;
  }
}
.about .time .time__items .item:nth-child(even) .item__center .empty {
  order: 1;
}
@media screen and (max-width: 768px) {
  .about .time .time__items .item:nth-child(even) .item__center .empty {
    display: none;
  }
}
.about .time .time__items .item:nth-child(even) .time__empty-block {
  order: 1;
}
@media screen and (max-width: 768px) {
  .about .time .time__items .item .item__info {
    order: 2;
  }
}
.about .time .time__items .item .item__info h2 {
  color: var(--c-prime-d-blue);
}
.about .time .time__items .item .item__info h3 {
  color: var(--c-black);
  margin: clamp(15px, 1.5625vw, 30px) 0 10px;
}
.about .time .time__items .item .item__info p {
  color: var(--c-grey2);
}
.about .time .time__items .item:not(:last-child) .item__center::after {
  top: 75px;
}
@media screen and (max-width: 576px) {
  .about .time .time__items .item:not(:last-child) .item__center::after {
    top: 65px;
  }
}
.about .time .time__items .item:last-child .item__center::after {
  top: 0;
}
.about .time .time__items .item .item__center {
  display: grid;
  grid-template-columns: 1fr 75px 1fr;
  grid-gap: clamp(15px, 1.5625vw, 30px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .about .time .time__items .item .item__center {
    order: 1;
    grid-template-columns: 75px 1fr;
  }
}
@media screen and (max-width: 576px) {
  .about .time .time__items .item .item__center {
    grid-gap: 8px;
    grid-template-columns: 65px 1fr;
  }
}
.about .time .time__items .item .item__center::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: #d4dada;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .about .time .time__items .item .item__center::after {
    left: 37px;
  }
}
@media screen and (max-width: 576px) {
  .about .time .time__items .item .item__center::after {
    left: 32px;
  }
}
.about .time .time__items .item .item__center .line {
  margin: 37px 0 0;
  min-width: 30px;
  width: 100%;
  height: 1px;
  background: #d4dada;
}
@media screen and (max-width: 768px) {
  .about .time .time__items .item .item__center .line {
    order: 2;
  }
}
@media screen and (max-width: 576px) {
  .about .time .time__items .item .item__center .line {
    margin: 32px 0 0;
  }
}
.about .time .time__items .item .item__center .num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  background: var(--c-blue);
  border-radius: 50%;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  color: var(--c-white);
}
@media screen and (max-width: 768px) {
  .about .time .time__items .item .item__center .num {
    order: 1;
  }
}
@media screen and (max-width: 576px) {
  .about .time .time__items .item .item__center .num {
    width: 65px;
    height: 65px;
  }
}
@media screen and (max-width: 768px) {
  .about .time .time__items .item .item__center .empty {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .about .time .time__items .item .time__empty-block {
    display: none;
  }
}
.about .mission .mission__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  grid-gap: 50px 30px;
}
@media screen and (max-width: 900px) {
  .about .mission .mission__inner {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 576px) {
  .about .mission .mission__inner {
    grid-gap: 20px;
  }
}
.about .mission .mission__inner h2 {
  margin: clamp(8px, 0.7291666667vw, 14px) 0 0;
}
@media screen and (max-width: 900px) {
  .about .mission .mission__inner .mission__left,
.about .mission .mission__inner .mission__right {
    max-width: 75%;
    width: 100%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .about .mission .mission__inner .mission__left,
.about .mission .mission__inner .mission__right {
    max-width: 85%;
  }
}
@media screen and (max-width: 576px) {
  .about .mission .mission__inner .mission__left,
.about .mission .mission__inner .mission__right {
    max-width: 100%;
  }
}
.about .mission .mission__inner .mission__left {
  background: var(--c-prime-d-blue);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(40px, 4.1666666667vw, 80px);
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .about .mission .mission__inner .mission__left {
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 576px) {
  .about .mission .mission__inner .mission__left {
    flex-direction: column;
  }
}
.about .mission .mission__inner .mission__left .mission__top {
  padding: clamp(20px, 2.0833333333vw, 40px) clamp(20px, 2.0833333333vw, 40px) 0;
}
@media screen and (max-width: 900px) {
  .about .mission .mission__inner .mission__left .mission__top {
    text-align: center;
    margin: 50px auto;
  }
}
@media screen and (max-width: 576px) {
  .about .mission .mission__inner .mission__left .mission__top {
    margin: unset;
  }
}
.about .mission .mission__inner .mission__left .mission__icon {
  line-height: 0;
}
.about .mission .mission__inner .mission__right {
  background: var(--c-blue);
  padding: clamp(40px, 4.1666666667vw, 80px) 50px;
  border-radius: 0px 0px 0px clamp(100px, 7.8125vw, 150px);
}
@media screen and (max-width: 576px) {
  .about .mission .mission__inner .mission__right {
    border-radius: unset;
    padding: 30px 20px;
  }
}
.about .mission .mission__inner .mission__right p {
  color: var(--c-grey3);
}
.about .why-about .why-about__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 32px;
  margin: 30px 0 0;
}
@media screen and (max-width: 1024px) {
  .about .why-about .why-about__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .about .why-about .why-about__items {
    grid-template-columns: 1fr;
    max-width: 80%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 400px) {
  .about .why-about .why-about__items {
    max-width: unset;
  }
}
.about .why-about .why-about__items .item:not(:nth-child(1)) .item-wrap {
  border: 1px solid #d8d8d8;
}
.about .why-about .why-about__items .item .item-wrap {
  padding: 36px 20px 18px;
  transition: all 0.5s ease-in-out;
  height: 100%;
}
.about .why-about .why-about__items .item .item-wrap:hover {
  border-radius: 0px 180px 0px 0px;
  background: var(--c-prime-red);
}
.about .why-about .why-about__items .item .item-wrap:hover h2 {
  color: var(--c-white);
}
.about .why-about .why-about__items .item .item-wrap:hover h2 span {
  color: var(--c-prime-d-blue);
}
.about .why-about .why-about__items .item .item-wrap:hover h3 {
  color: var(--c-white);
}
.about .why-about .why-about__items .item .item-wrap:hover p {
  color: var(--c-grey3);
}
.about .why-about .why-about__items .item .item-wrap:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(130deg) brightness(101%) contrast(102%);
}
.about .why-about .why-about__items .item .item-wrap * {
  transition: all 0.5s ease-in-out;
}
.about .why-about .why-about__items .item .item-wrap img {
  max-width: clamp(40px, 3.2291666667vw, 62px);
}
.about .why-about .why-about__items .item .item-wrap h2 {
  margin: clamp(8px, 0.7291666667vw, 14px) 0 0;
}
.about .why-about .why-about__items .item .item-wrap h3 {
  color: var(--c-black);
  margin: clamp(50px, 5.2083333333vw, 100px) 0 18px;
}
@media screen and (max-width: 768px) {
  .about .why-about .why-about__items .item .item-wrap h3 {
    margin: 30px 0 18px;
  }
}
.about .why-about .why-about__items .item .item-wrap p {
  color: var(--c-grey2);
}
.about .service .service__top {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.about .service .service__top h2 {
  margin: clamp(8px, 0.7291666667vw, 14px) 0 clamp(15px, 1.5625vw, 30px);
}
.about .service .service__top p.text1 {
  color: var(--c-grey2);
}
.about .service .service__items {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: clamp(15px, 1.5625vw, 30px);
  margin: 30px 0 0;
}
@media screen and (max-width: 1024px) {
  .about .service .service__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 700px) {
  .about .service .service__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 450px) {
  .about .service .service__items {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 30px auto 0;
  }
}
.about .service .service__items .item {
  background: var(--c-l-grey);
  text-align: center;
  padding: 22px clamp(10px, 1.0416666667vw, 20px) 30px;
}
.about .service .service__items .item .item-year {
  margin: 14px 0 6px;
}
.about .service .service__items .item h3 {
  color: var(--c-prime-red);
  text-transform: uppercase;
}
.about .service .service__items .item .item-title {
  color: var(--c-black);
  margin: 16px 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(16px, 0.9375vw, 18px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.38;
}
.about .service .service__items .item ul {
  display: grid;
  grid-gap: 12px;
}
.about .service .service__items .item ul li {
  color: var(--c-grey2);
}
.about .partnerships {
  background: var(--c-prime-d-blue);
}
.about .partnerships .partnerships__inner {
  display: grid;
  grid-template-columns: 1.54fr 1fr;
  grid-gap: clamp(125px, 13.0208333333vw, 250px);
  align-items: center;
}
@media screen and (max-width: 850px) {
  .about .partnerships .partnerships__inner {
    padding: 50px 0;
    grid-template-columns: 1fr;
    grid-gap: 50px;
  }
}
@media screen and (max-width: 850px) {
  .about .partnerships .partnerships__left {
    text-align: center;
  }
}
.about .partnerships .partnerships__left h2 {
  color: var(--c-white);
}
.about .partnerships .partnerships__left p {
  color: var(--c-grey3);
  margin: 30px 0 40px;
}
@media screen and (max-width: 850px) {
  .about .partnerships .partnerships__left p {
    max-width: 80%;
    margin: 30px auto 40px;
  }
}
@media screen and (max-width: 850px) {
  .about .partnerships .partnerships__left a {
    margin-inline: auto;
  }
}
.about .partnerships .partnerships__graphics {
  text-align: center;
  line-height: 0;
  padding: 32px 0 0;
  display: grid;
  justify-items: center;
  grid-gap: clamp(20px, 2.0833333333vw, 40px);
}
@media screen and (max-width: 850px) {
  .about .partnerships .partnerships__graphics {
    padding: unset;
    grid-row: 1/2;
  }
}
.about .partnerships .partnerships__graphics img[alt=icon] {
  max-width: clamp(200px, 15.625vw, 300px);
  width: 100%;
}
.about .partnerships .partnerships__graphics img[alt=mockup] {
  max-width: clamp(350px, 21.875vw, 420px);
  width: 100%;
}

.account-page .account .account__items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: clamp(5px, 0.5208333333vw, 10px);
}
.account-page .account .account__items .item {
  border-radius: 20px;
  padding: 36px 20px;
}
.account-page .account .account__items .item.recommended {
  background: var(--c-prime-d-blue);
  color: var(--c-white);
}
.account-page .account .account__items .item:not(.account-page .account .account__items .item.recommended) {
  background: var(--c-l-grey);
  color: var(--c-black);
}
.account-page .account .account__items .item .item-head {
  text-align: center;
}
.account-page .account .account__items .item .item-head .account__package-name {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin: 20px 0 12px;
}
.account-page .account .account__items .item .item-body {
  margin: 24px 0 0;
}
.account-page .account .account__items .item .item-body ul.options__list {
  display: grid;
  grid-gap: clamp(14px, 1.4583333333vw, 28px);
}
.account-page .account .account__items .item .item-body ul.options__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.account-page .account .account__items .item .item-body a {
  margin: 40px auto 0;
}
@media screen and (max-width: 1024px) {
  .account-page .account .account__items {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px 15px;
    max-width: 80%;
    margin-inline: auto;
  }
  .account-page .account .account__items .item .item-body ul.options__list li {
    border-bottom: 1px solid var(--c-grey3);
    padding: 0 0 6px;
  }
}
@media screen and (max-width: 768px) {
  .account-page .account .account__items {
    grid-template-columns: 1fr;
    max-width: 70%;
  }
}
@media screen and (max-width: 450px) {
  .account-page .account .account__items {
    max-width: 100%;
  }
}

.contacts-page .contacts h2,
.contacts-page .contacts h3,
.contacts-page .contacts p {
  color: var(--c-white);
}
.contacts-page .contacts .contacts__inner {
  display: grid;
  grid-template-columns: 1fr 1.42fr;
  grid-gap: clamp(15px, 1.5625vw, 30px);
}
@media screen and (max-width: 768px) {
  .contacts-page .contacts .contacts__inner {
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }
}
.contacts-page .contacts .contacts__inner .contacts__left {
  background: var(--c-prime-d-blue);
  padding: clamp(25px, 2.6041666667vw, 50px) clamp(15px, 1.5625vw, 30px);
}
.contacts-page .contacts .contacts__inner .contacts__left p {
  margin: 18px 0 clamp(25px, 2.6041666667vw, 50px);
}
.contacts-page .contacts .contacts__inner .contacts__left .contacts__items {
  margin: 50px 0 0;
  display: flex;
  flex-direction: column;
  gap: 40px 30px;
}
@media screen and (max-width: 768px) {
  .contacts-page .contacts .contacts__inner .contacts__left .contacts__items {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.contacts-page .contacts .contacts__inner .contacts__left .contacts__items .item .contacts__line {
  margin: 12px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contacts-page .contacts .contacts__inner .contacts__left .contacts__items .item .contacts__line a {
  color: var(--c-l-grey);
  width: fit-content;
  transition: all 0.3s ease-in-out;
}
.contacts-page .contacts .contacts__inner .contacts__left .contacts__items .item .contacts__line a:hover {
  color: var(--c-prime-red);
}
.contacts-page .contacts .contacts__inner .contacts__right {
  background: var(--c-l-grey);
  padding: clamp(25px, 2.6041666667vw, 50px) clamp(15px, 1.5625vw, 30px);
  border-radius: 0 0 0 clamp(50px, 7.8125vw, 150px);
}
.contacts-page .contacts .contacts__inner .contacts__right h2 {
  color: var(--c-black);
}
.contacts-page .contacts .contacts__inner .contacts__right form {
  position: relative;
  display: grid;
  grid-gap: 20px;
  margin: 30px auto 0;
}
.contacts-page .contacts .contacts__inner .contacts__right form input {
  height: clamp(50px, 3.125vw, 60px);
  padding: 0 24px;
}
.contacts-page .contacts .contacts__inner .contacts__right form textarea {
  height: clamp(100px, 6.9791666667vw, 134px);
  padding: 18px 24px;
  resize: none;
}
.contacts-page .contacts .contacts__inner .contacts__right form input,
.contacts-page .contacts .contacts__inner .contacts__right form textarea {
  width: 100%;
  border: none;
  box-shadow: none;
  font-family: "Inter", sans-serif;
  font-size: clamp(16px, 0.9375vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.38;
  background: var(--c-white);
  color: var(--c-grey1);
  margin: 0;
}
.contacts-page .contacts .contacts__inner .contacts__right form input:focus::placeholder,
.contacts-page .contacts .contacts__inner .contacts__right form textarea:focus::placeholder {
  color: var(--c--prime-d-blue);
}
.contacts-page .contacts .contacts__inner .contacts__right form input::placeholder,
.contacts-page .contacts .contacts__inner .contacts__right form textarea::placeholder {
  font-family: "Inter", sans-serif;
  font-size: clamp(16px, 0.9375vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.38;
  color: var(--c-grey3);
  transition: all 0.3s ease-in-out;
}
.contacts-page .contacts .contacts__inner .contacts__right form button {
  margin: 10px 0 0 auto;
}
@media screen and (max-width: 768px) {
  .contacts-page .contacts .contacts__inner .contacts__right form button {
    margin: 10px auto 0;
  }
}
.contacts-page .contacts .contacts__inner .contacts__right form .form__response {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  transform: scale(0, 1);
  transform-origin: center;
  transition: all 0.3s ease-in-out;
  border-radius: 0 0 0 clamp(50px, 5.2083333333vw, 100px);
}
.contacts-page .contacts .contacts__inner .contacts__right form .form__response.active {
  transform: scale(1, 1);
}
.contacts-page .contacts .contacts__inner .contacts__right form .form__response .form__status {
  font-family: "Inter", sans-serif;
  font-size: clamp(16px, 0.9375vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.38;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  text-align: center;
  transform: translate(-50%, -50%);
  border-radius: 24px;
  color: var(--c-black);
  background: #fafafa;
  box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.3);
  padding: 24px;
}
.contacts-page .contacts .contacts__inner .contacts__right form .form__response .response__closer {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 20px;
  color: #fafafa;
  font-weight: 700;
  font-size: 34px;
}
@media screen and (max-width: 576px) {
  .contacts-page .contacts .contacts__feedback,
.contacts-page .contacts .contacts__info {
    padding: 30px 15px;
  }
}

.docs-page {
  position: relative;
}
.docs-page .docs {
  padding: clamp(90px, 9.375vw, 180px) 0 clamp(50px, 5.2083333333vw, 100px);
  position: relative;
}
.docs-page .tabs {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-column-gap: 70px;
  position: relative;
  z-index: 20;
}
.docs-page .tabs__nav {
  height: fit-content;
  overflow: hidden;
}
.docs-page .tabs__content p,
.docs-page .tabs__content li {
  margin-top: 16px;
  font-family: "Inter", sans-serif;
  font-size: clamp(16px, 0.9375vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.38;
  color: var(--c-grey2);
}
.docs-page .tabs-nav__item {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 18px 26px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  color: var(--c-black);
}
.docs-page .tabs-nav__item.is-active {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--c-white);
  background: var(--c-prime-d-blue);
  border-radius: 40px 0px 0px 0px;
}
.docs-page .tabs-nav__item:not(.docs-page .tabs-nav__item.is-active) {
  font-family: "Inter", sans-serif;
  font-size: clamp(16px, 0.9375vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.38;
}
.docs-page .tabs-nav__item:not(.docs-page .tabs-nav__item.is-active):hover {
  color: var(--c-prime-red);
}
.docs-page .tabs-nav__item .tabs__content {
  position: relative;
}
.docs-page .tab {
  display: none;
  transition: var(--transition-main);
  font-family: "Inter", sans-serif;
  font-size: clamp(16px, 0.9375vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.38;
}
.docs-page .tab.is-active {
  display: block;
}
.docs-page .tab__title {
  color: var(--c-black);
  margin: 0 0 20px;
}

@media (max-width: 1200px) {
  .docs-page .tabs {
    grid-column-gap: 50px;
  }
}
@media (max-width: 992px) {
  .docs-page {
    padding: 0;
  }
  .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: 14px 20px;
  }
  .docs-page .tabs__content {
    margin-top: 30px;
    padding: 0 22px;
  }
  .docs-page .tab {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
  }
}
@media (max-width: 576px) {
  .docs-page .tabs__nav {
    grid-template-columns: 1fr;
  }
}
.faq-page .faq {
  /* Acordeon styles */
}
.faq-page .faq .faq__tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 24px;
  margin: clamp(32px, 3.3333333333vw, 64px) 0 clamp(60px, 6.25vw, 120px);
}
.faq-page .faq .faq__tab {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: fit-content;
  border: 1px solid var(--c-border1);
  border-radius: 24px;
  /* :checked */
  /* Icon */
}
.faq-page .faq .faq__tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.faq-page .faq .faq__tab label {
  position: relative;
  display: block;
  padding: clamp(16px, 1.25vw, 24px) 50px clamp(16px, 1.25vw, 24px) clamp(20px, 1.6666666667vw, 32px);
  font-family: "Poppins", sans-serif;
  font-size: clamp(20px, 1.3541666667vw, 26px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: var(--c-title2);
  cursor: pointer;
}
.faq-page .faq .faq__tab input:checked ~ .faq__tab-content {
  max-height: 100vh;
}
.faq-page .faq .faq__tab label::after {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  line-height: 1;
  text-align: center;
  transition: all 1s;
}
.faq-page .faq .faq__tab input[type=radio] + label::after {
  content: url(../img/general/arrow_down.svg);
}
.faq-page .faq .faq__tab input[type=radio]:checked + label::after {
  transform: rotateX(180deg);
}
.faq-page .faq .faq__tab-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s;
}
.faq-page .faq .faq__tab-content p {
  padding: 8px clamp(20px, 1.6666666667vw, 32px) clamp(20px, 1.6666666667vw, 32px);
  text-wrap: unset;
}
@media screen and (max-width: 1024px) {
  .faq-page .faq h2 {
    text-align: center;
  }
  .faq-page .faq .faq__tabs {
    grid-template-columns: 1fr;
  }
}

.tradeholic-theme {
  background: var(--c-white);
}
.tradeholic-theme .tradeholic {
  padding: 120px 15px;
}
.tradeholic-theme .tradeholic #btn-instr:not(:lang(ru-RU)) {
  display: none;
}
.tradeholic-theme .tradeholic h2,
.tradeholic-theme .tradeholic h3,
.tradeholic-theme .tradeholic h4,
.tradeholic-theme .tradeholic h5,
.tradeholic-theme .tradeholic h6 {
  color: var(--c-title-th);
  text-align: center;
  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: var(--c-white);
  padding: 50px 0;
}
.tradeholic-theme .tradeholic .subheader {
  padding-bottom: 80px;
  background: var(--c-white);
}
.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: var(--c-white);
  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: 40em;
  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 .text1 {
  margin-bottom: 24px;
}
@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;
  }
}
