@import url(https://fonts.googleapis.com/css2?family=Jost&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap);
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes 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 lightSpeedInLeft {
  from {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes tracking-in-contract-bck {
  0% {
    letter-spacing: 1em;
    -webkit-transform: translateZ(400px);
    transform: translateZ(400px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes scale-in-hor-center {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    opacity: 1;
  }
}
@keyframes tilt-in-fwd-br {
  0% {
    -webkit-transform: rotateY(20deg) rotateX(-35deg) translate(300px, 300px) skew(35deg, -10deg);
    transform: rotateY(20deg) rotateX(-35deg) translate(300px, 300px) skew(35deg, -10deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
    transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
    opacity: 1;
  }
}
@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
body {
  box-sizing: border-box;
}
body * {
  box-sizing: border-box;
}
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track {
  background-color: #FCF9F0;
}
body::-webkit-scrollbar-thumb {
  background-color: #374A55;
  border-radius: 6px;
}

#scroller {
  display: none;
}

:root {
  --font-size-h1: clamp(26px, 4.42vw, 64px);
  --font-size-h2: clamp(22px, 2.57vw, 36px);
  --font-size-h3: clamp(18px, 1.5vw, 21px);
  --font-size-text: clamp(16px, 1.28vw, 18px);
  --font-size-text2: clamp(14px, 1.14vw, 16px);
  --font-size-text3: clamp(12px, 1vw, 14px);
  --font-size-big: clamp(20px, 2.5vw, 35px);
  --font-size-sm: clamp(14px, 1.14vw, 16px);
  --font-size-main-text: clamp(16px, 1.28vw, 18px);
  --font-size-btn: clamp(14px, 1.28vw, 18px);
  --font-size-footer-big: clamp(16px, 1.85vw, 26px);
  --font-size-tiny: clamp(16px, 1.28vw, 18px);
  --second-family: "Jost", sans-serif;
  --font-family: "Montserrat", sans-serif;
  --m-space-8: clamp(4px, 0.7vw, 8px);
  --m-space-16: clamp(8px, 1.14vw, 16px);
  --m-space-18: clamp(10px, 1.28vw, 18px);
  --m-space-20: clamp(10px, 1.42vw, 20px);
  --m-space-25: clamp(13px, 1.78vw, 25px);
  --m-space-28: clamp(14px, 2vw, 28px);
  --m-space-30: clamp(15px, 2.14vw, 30px);
  --m-space-32: clamp(16px, 2.28vw, 32px);
  --m-space-34: clamp(16px, 2.43vw, 34px);
  --m-space-40: clamp(18px, 2.85vw, 40px);
  --m-space-50: clamp(25px, 3.57vw, 50px);
  --m-space-56: clamp(28px, 4vw, 56px);
  --m-space-60: clamp(20px, 4.28vw, 60px);
  --m-space-65: clamp(24px, 4.46vw, 65px);
  --m-space-70: clamp(35px, 5vw, 70px);
  --m-space-80: clamp(40px, 5.71vw, 80px);
  --m-space-100: clamp(50px, 7.14vw, 100px);
  --m-space-110: clamp(16px, 7.85vw, 110px);
  --m-space-152: clamp(64px, 10.85vw, 152px);
  --m-space-172: clamp(80px, 12.28vw, 172px);
  --borderradius-25: clamp(13px, 1.79vw, 25px);
  --borderradius-30: clamp(15px, 2.14vw, 30px);
  --borderradius-50: clamp(25px, 3.57vw, 50px);
  --container-padding: clamp(8px, 1vw, 14px);
  --container-margin: clamp(8px, 1vw, 14px);
  --transition-main: all 0.3s ease-in-out;
  --color-white: #ffffff;
  --color-01: #374A55;
  --color-02: #F8F9FA;
  --color-03: #7B7B7B;
  --color-04: #E8ECF3;
  --color-menu: #565656;
}

h1 {
  color: var(--color-01);
  font-family: var(--second-family);
  font-size: var(--font-size-h1);
  font-weight: 400;
  line-height: 100%;
  text-wrap: balance;
  text-transform: uppercase;
}

h2 {
  color: var(--color-01);
  font-family: var(--second-family);
  font-size: var(--font-size-h2);
  font-style: normal;
  line-height: 100%;
  text-wrap: balance;
  font-weight: 400;
  text-transform: uppercase;
}

h3 {
  font-family: var(--second-family);
  font-size: var(--font-size-h3);
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--color-01);
  text-wrap: balance;
}

span.rz-block {
  display: block;
}
@media (max-width: 768px) {
  span.rz-block {
    display: inline;
  }
}

.container {
  box-sizing: border-box;
  max-width: 100%;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  width: 1390px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .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;
  }
}

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

span.rz-box {
  font-weight: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.isnotactive-tradeholic #menu-item-71, .isnotactive-tradeholic #menu-item-78, .isnotactive-tradeholic #menu-item-70 {
  display: none;
}

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

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

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: unset;
}
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;
}

.btn-common {
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  font-style: normal;
  text-transform: uppercase;
  transition: var(--transition-main);
  border-radius: 15px;
  padding: 0 var(--m-space-18);
}

.btn-log {
  background: var(--color-white);
  color: #1a2833;
}
.btn-log:hover {
  background: var(--color-01);
  color: #fefefe;
}
.btn-log:active {
  background: var(--color-01);
  color: #fefefe;
}

.btn-reg {
  min-width: 132px;
  background: var(--color-01);
  color: #fefefe;
}
.btn-reg:hover {
  background: var(--color-white);
  color: #1a2833;
}
.btn-reg:active {
  background: var(--color-white);
  color: #1a2833;
}

.btn-go-home {
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  font-style: normal;
  text-transform: uppercase;
  transition: var(--transition-main);
  border-radius: 15px;
  padding: 0 var(--m-space-18);
  min-width: 132px;
  background: var(--color-01);
  color: #fefefe;
}
.btn-go-home:hover {
  background: var(--color-white);
  color: #1a2833;
}
.btn-go-home:active {
  background: var(--color-white);
  color: #1a2833;
}

.btn-register {
  height: clamp(50px, 4.289vw, 60px);
  padding: 0 var(--m-space-32);
  border-radius: var(--borderradius-33);
  background: transparent;
  color: var(--color-blue);
  border: 2px solid var(--color-blue);
}
.btn-register:hover {
  background: var(--color-blue);
  color: var(--color-white);
}
.btn-register:active {
  background: var(--color-blue);
  color: var(--color-white);
}

.btn-account {
  background: var(--color-5);
  color: var(--color-white);
  font-weight: 400;
  text-align: center;
}
.btn-account:hover {
  background: var(--color-2);
  color: var(--color-5);
}

.btn-lang {
  width: 120px;
  display: flex;
  padding: 0 10px 0 30px;
}

.header {
  position: fixed;
  background: transparent;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  z-index: 99;
  transition: var(--transition-main);
  /* Lang */
}
.header.active {
  background: var(--color-02);
  height: 100px;
}
.header.active .header__logo img {
  max-height: 60px;
}
.header .header__btns-mob {
  display: none;
}
.header .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 99px;
}
.header .header__logo img {
  min-width: 77px;
  max-height: 88px;
  width: 100%;
  position: relative;
  z-index: 200;
}
.header .header__menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 0 0;
  width: 60%;
}
.header .header__menu .menu__wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.header .header__menu .menu__links {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  padding: 0;
  cursor: pointer;
}
.header .header__menu .menu__links .current-menu-item > a {
  color: var(--color-menu);
  cursor: pointer;
}
.header .header__menu .menu__links > li {
  position: relative;
  cursor: pointer;
  padding: 0 var(--m-space-50) 0 0;
}
.header .header__menu .menu__links > li:hover > ul.sub-menu {
  transform: scaleY(1);
  border-left: 1px solid var(--color-menu);
}
.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(--color-02);
  transition: var(--transition-main);
  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: var(--font-family);
  font-size: clamp(14px, 1.14vw, 16px);
  line-height: normal;
  font-weight: 300;
  color: var(--color-menu);
  position: relative;
  white-space: nowrap;
}
.header .header__menu .menu__links > li a:hover {
  color: var(--color-01);
}
.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% + 5px);
  padding: 8px;
  background: var(--color-02);
  transform: scaleY(0);
  transform-origin: top;
  transition: var(--transition-main);
}
.header .header__menu .menu__links > li > ul.sub-menu > li {
  font-weight: 300;
}
.header .header__menu .menu__links > li > ul.sub-menu > li > a {
  transition: var(--transition-main);
  font-weight: 300;
}
.header #menu-item-269 a:not([href]),
.header #menu-item-270 a:not([href]) {
  pointer-events: none !important;
  color: #000000;
}
.header .header__closer {
  display: none;
}
.header .header__burger {
  display: none;
  cursor: pointer;
  height: 30px;
}
.header .header__burger span {
  position: relative;
  display: block;
  width: 40px;
  box-shadow: 0 2px 10px 0 rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  height: 3px;
  background: var(--color-white);
}
.header .header__burger span::before, .header .header__burger span::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  box-shadow: 0 2px 10px 0 rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  height: 3px;
  background: var(--color-white);
}
.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;
  gap: var(--m-space-25);
  position: relative;
  z-index: 200;
}
.header #btn-lang-992 {
  display: none;
}
.header .language {
  display: flex;
  align-items: center;
  position: relative;
}
.header .language::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 50%;
  transform: translate(0, -50%);
  width: 20px;
  height: 20px;
  display: flex;
  flex-shrink: 0;
  background: url("../img/header/world.svg") no-repeat center;
  background-size: contain;
}
.header .language > ul.menu_lang {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  display: contents;
  color: var(--color-menu);
  transition: var(--transition-main);
  position: relative;
  cursor: pointer;
}
.header .language > ul.menu_lang .menu-item {
  font-size: 14px;
  line-height: normal;
  font-weight: 300;
  color: var(--color-menu);
  font-family: var(--font-family);
}
.header .language > ul.menu_lang .menu-item:hover {
  color: var(--color-menu);
}
.header .language > ul.menu_lang > .menu-item::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: url("../img/header/arrow_lang.svg") no-repeat center center;
  background-size: contain;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition-main);
  cursor: pointer;
}
.header .language > ul.menu_lang > .menu-item:hover > ul.sub-menu {
  font-family: var(--font-family2);
  transform: scaleY(1);
  cursor: pointer;
  color: var(--color-tx);
}
.header .language > ul.menu_lang > .menu-item:hover::after {
  transform: translateY(-50%) rotate(180deg);
}
.header .language > ul.menu_lang > .menu-item > ul.sub-menu {
  position: absolute;
  top: 100%;
  padding: 0;
  margin: 0;
  transform: scaleY(0);
  transition: var(--transition-main);
  transform-origin: top;
  font-family: var(--font-family2);
  font-weight: 400;
}
.header .language > ul.menu_lang > .menu-item > ul.sub-menu span {
  font-family: var(--font-family2);
  font-weight: 400;
  color: var(--color-tx);
}

/** Media **/
@media screen and (max-width: 1200px) {
  .header {
    height: 100px;
  }
  .header.active {
    height: 90px;
  }
  .header.active .header__logo img {
    max-height: 44px;
  }
  .header .header__logo img {
    max-height: 60px;
  }
}
@media screen and (max-width: 992px) {
  .header {
    position: fixed;
    top: 0;
    height: unset;
    z-index: 500;
  }
  .header .header__logo img {
    min-width: 39px;
    max-height: 44px;
  }
  .header .header__menu {
    margin: 0;
    position: fixed;
    top: 0;
    left: -100vw;
    z-index: 500;
    max-width: 992px;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-02);
    transition: var(--transition-main);
  }
  .header .header__menu .menu__wrapper {
    width: 100%;
    margin: 80px 0 0;
  }
  .header .header__menu .menu__links {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 0;
  }
  .header .header__menu .menu__links > li a {
    color: var(--color-01);
    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: 350px;
    padding: 10px 14px;
    border: none;
  }
  .header .header__menu .menu__links > li ul.sub-menu {
    display: grid;
    grid-gap: 8px 0;
  }
  .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 .header__closer {
    display: inline-block;
    font-size: 50px;
    line-height: 0;
    color: var(--color-01);
    position: absolute;
    top: 80px;
    right: 50px;
    cursor: pointer;
  }
  .header .header__burger {
    display: block;
    cursor: pointer;
    height: 30px;
    position: relative;
    z-index: 200;
  }
  .header .header__burger span {
    position: relative;
    display: block;
    width: 40px;
    box-shadow: 0 2px 10px 0 rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    height: 3px;
    background: var(--color-01);
  }
  .header .header__burger span::before, .header .header__burger span::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    box-shadow: 0 2px 10px 0 rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    height: 3px;
    background: var(--color-01);
  }
  .header .header__burger span::before {
    top: -12px;
  }
  .header .header__burger span::after {
    top: 12px;
  }
  .header .header__menu .menu__links > li > ul.sub-menu {
    background: var(--color-02);
  }
}
@media screen and (max-width: 768px) {
  .header {
    height: unset;
  }
  .header .header__inner {
    padding: 10px 0;
  }
  .header .header__logo {
    width: fit-content;
  }
  .header .btn-header,
.header .header__btns {
    display: none;
  }
  .header .header__btns-mob {
    display: grid;
    grid-template-columns: 36px;
    grid-template-columns: repeat(2, 36px);
    grid-gap: 0 30px;
    position: relative;
    z-index: 200;
  }
  .header .header__btns-mob a {
    display: inline-block;
    height: auto;
  }
}
@media (max-width: 576px) {
  .header {
    height: unset;
  }
  .header.active {
    height: unset;
  }
  .header.active .header__logo img {
    padding-right: 0;
  }
  .header.active .header__inner {
    grid-gap: unset;
    padding: 10px 0;
  }
  .header .header__inner {
    display: grid;
    padding: 20px 0;
    grid-gap: 20px 0;
    border: none;
    height: auto;
  }
  .header .header__logo {
    grid-row: 1/2;
    grid-column: 1/4;
    width: fit-content;
    width: 130px;
    margin: 0 auto 10px;
  }
  .header .header__left-col {
    grid-row: 2/3;
    grid-column: 1/2;
  }
  .header .header__btns {
    display: none;
  }
  .header .header__btns-mob {
    grid-row: 2/3;
    grid-column: 2/3;
    display: grid;
    grid-template-columns: repeat(2, 40px);
    grid-gap: 0 30px;
    margin: 0;
  }
}
@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 lightSpeedInLeft {
  from {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes tracking-in-contract-bck {
  0% {
    letter-spacing: 1em;
    -webkit-transform: translateZ(400px);
    transform: translateZ(400px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes scale-in-hor-center {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    opacity: 1;
  }
}
@keyframes tilt-in-fwd-br {
  0% {
    -webkit-transform: rotateY(20deg) rotateX(-35deg) translate(300px, 300px) skew(35deg, -10deg);
    transform: rotateY(20deg) rotateX(-35deg) translate(300px, 300px) skew(35deg, -10deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
    transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
    opacity: 1;
  }
}
@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
.footer {
  position: relative;
  padding: var(--m-space-152) 0;
  background: var(--color-02);
  border-top: 1px solid #D9D9D9;
}
.footer .footer-panel {
  display: flex;
  justify-content: space-between;
}
.footer .footer-logo {
  width: 12%;
}
.footer .footer-contact {
  width: 28%;
}
.footer .footer-heading {
  font-family: var(--second-family);
  font-size: var(--font-size-h3);
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  color: var(--color-01);
  text-wrap: balance;
  margin-bottom: var(--m-space-32);
}
.footer .contact-row {
  display: flex;
  align-items: center;
  margin-bottom: var(--m-space-32);
}
.footer .contact-icon {
  height: 24px;
}
.footer .contact-name, .footer .footer-copywrite {
  font-family: var(--font-family);
  font-size: var(--font-size-text3);
  font-weight: 300;
  line-height: 150%;
  color: var(--color-03);
}
.footer .footer-copywrite {
  padding-left: 0;
  font-size: 14px;
  padding-left: var(--m-space-16);
}
.footer .contact-desc {
  padding-left: var(--m-space-16);
}
.footer .footer-risk {
  width: 55%;
}
.footer .footer-subheading {
  font-family: var(--font-family);
  font-size: var(--font-size-text3);
  font-weight: 300;
  line-height: 150%;
  color: var(--color-03);
  font-size: 14px;
  margin-bottom: var(--m-space-28);
}
.footer .payment-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-top: var(--m-space-28);
}
.footer .payment-item {
  margin-right: 8%;
  margin-bottom: var(--m-space-28);
}
.footer .payment-item :last-child {
  margin-right: 0;
}
.footer .f-laptop {
  display: none;
}

/** Media **/
@media (max-width: 1200px) {
  .footer .footer-risk {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .footer .f-desktop {
    display: none;
  }
  .footer .f-laptop {
    display: block;
    margin-top: var(--m-space-34);
  }
  .footer .footer-panel {
    flex-direction: column;
  }
  .footer .footer-logo,
.footer .footer-contact,
.footer .footer-risk {
    width: 100%;
  }
  .footer .footer-contact,
.footer .footer-risk {
    margin-top: var(--m-space-50);
  }
}
.subheader {
  background: url("../img/subheader/subheader_bg.jpg") no-repeat top right;
  background-size: cover;
  height: clamp(320px, 43vw, 603px);
  display: flex;
  align-items: center;
}
.subheader .subheader-bg {
  display: flex;
  align-items: center;
}
.subheader .subheader-heading {
  color: var(--color-01);
  font-family: var(--second-family);
  font-size: var(--font-size-h2);
  font-style: normal;
  line-height: 100%;
  text-wrap: balance;
  font-weight: 400;
  text-transform: uppercase;
}

@media (max-width: 576px) {
  .subheader .subheader-heading {
    margin-top: 80px;
  }
}
#scroller {
  display: none;
  scroll-behavior: smooth;
}
#scroller.active {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 30px;
  bottom: 10%;
  width: 60px;
  height: 60px;
  background: var(--color-01);
  border: 1px solid var(--color-01);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-main);
  z-index: 201;
  scroll-behavior: smooth;
}
#scroller.active:hover {
  background: var(--color-01);
  border: 1px solid var(--color-01);
  scroll-behavior: smooth;
}

@media (max-width: 576px) {
  #scroller.active {
    right: 10px;
    bottom: 20%;
    width: 50px;
    height: 50px;
  }
}
/**
 * Swiper 8.4.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 6, 2022
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  height: clamp(840px, 170vh, 1060px);
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
  align-items: center;
  height: 100%;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(62px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 16px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 16px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 16px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 16px));
  display: inline-block;
  border-radius: 50%;
  background: #232732;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  border: 1px solid #5dc988;
  margin: 0 15px;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  margin: 0 15px;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: #5dc988;
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: 30px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next + .swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  width: 80px;
  height: 80px;
  display: flex;
  flex-shrink: 0;
}

.swiper-button-next,
.swiper-button-prev {
  width: 80px;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "";
  display: none;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "";
  display: none;
}

@media (max-width: 992px) {
  .swiper {
    height: auto;
    padding-bottom: 64px;
  }
  .swiper-button-next,
.swiper-button-prev {
    width: 40px;
  }
  .swiper-button-next svg,
.swiper-button-prev svg {
    width: 40px;
    height: 40px;
    display: flex;
    flex-shrink: 0;
  }
  .swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 0;
  }
  .swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 0;
  }
}
body {
  background: #f8f9fa;
}

.home-page {
  overflow: hidden;
  padding-top: 140px;
  /*start  info*/
  /*end  info*/
  /*start  advantages*/
  /*end  advantages*/
  /*start  investments*/
  /*end  investments*/
  /*start  matters*/
  /*end  matters*/
  /*start  worldwide*/
  /*end  worldwide*/
  /*start  journey*/
  /*end  journey*/
}
.home-page .info .info-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-page .info .info-text {
  flex: 0 0 48%;
  animation: 0.7s revealLeft ease-in-out forwards;
}
.home-page .info .info-subheading {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
  color: var(--color-03);
  margin-top: var(--m-space-20);
  display: inline-block;
  max-width: 450px;
}
.home-page .info .info-btn {
  margin-top: var(--m-space-32);
}
.home-page .info .info-picture {
  flex: 0 0 46%;
  position: relative;
}
.home-page .info .info-img-1 {
  margin-top: 30px;
}
.home-page .info .info-img-2 {
  position: absolute;
  top: -29px;
  left: 30%;
  transform: translate(-30%, 0);
}
.home-page .advantages {
  padding: var(--m-space-100) 0 var(--m-space-152);
}
.home-page .advantages h2 {
  text-align: center;
}
.home-page .advantages .advantages-row {
  margin-top: var(--m-space-110);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: var(--m-space-70);
}
.home-page .advantages .advantages-col svg {
  display: block;
  margin: 0 auto;
}
.home-page .advantages .advantages-subheading {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
  color: var(--color-03);
  margin-top: var(--m-space-25);
  text-align: center;
}
.home-page .advantages .advantages-rect,
.home-page .advantages .advantages-rect2, .home-page .advantages .advantages-rect3, .home-page .advantages .advantages-rect4 {
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
.home-page .investments {
  height: 745px;
  background: url("../img/home/investments_bg.webp") no-repeat top left, linear-gradient(57deg, #e6e9f0 0%, #fcffff 100%);
  background-size: contain;
  display: flex;
  align-items: center;
}
.home-page .investments .investments-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  align-items: center;
}
.home-page .investments .investments-col img {
  padding-left: 5%;
}
.home-page .investments .investments-subheading {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
  color: var(--color-03);
  margin-top: var(--m-space-32);
}
.home-page .investments .investments-list {
  margin-top: var(--m-space-32);
}
.home-page .investments .investments-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.home-page .investments .investments-name {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
  color: var(--color-03);
  padding-left: 12px;
}
.home-page .matters {
  padding: var(--m-space-152) 0;
}
.home-page .matters .matters-heading {
  text-align: center;
}
.home-page .matters .matters-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  margin-top: var(--m-space-110);
  gap: var(--m-space-80);
}
.home-page .matters .matters-col {
  border: 1px solid var(--color-01);
  border-radius: clamp(25px, 3.57vw, 50px);
  padding: var(--m-space-60) var(--m-space-50);
  transition: var(--transition-main);
}
.home-page .matters .matters-col:hover {
  background: rgba(232, 236, 243, 0.5);
  border: 1px solid transparent;
}
.home-page .matters .matters-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-page .matters .matters-name,
.home-page .matters .matters-number {
  font-family: var(--second-family);
  font-size: var(--font-size-h3);
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--color-01);
  text-wrap: balance;
}
.home-page .matters .matters-name {
  padding-left: 16px;
}
.home-page .matters .matters-subheading {
  margin-top: clamp(48px, 10vw, 140px);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
  color: var(--color-03);
}
.home-page .worldwide {
  height: 725px;
  background: url("../img/home/worldwide_bg.webp") no-repeat top center;
  background-size: cover;
  display: flex;
  align-items: center;
}
.home-page .worldwide .worldwide-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-page .worldwide .worldwide-text {
  flex: 0 0 40%;
}
.home-page .worldwide .worldwide-heading {
  color: var(--color-01);
  font-family: var(--second-family);
  font-size: var(--font-size-h2);
  font-style: normal;
  line-height: 100%;
  text-wrap: balance;
  font-weight: 400;
  text-transform: uppercase;
}
.home-page .worldwide .worldwide-subheading {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
  color: var(--color-03);
  margin-top: var(--m-space-32);
}
.home-page .worldwide .worldwide-picture {
  flex: 0 0 56%;
}
.home-page .worldwide .worldwide-datas {
  margin-top: var(--m-space-32);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 8px;
}
.home-page .worldwide .worldwide-top {
  display: flex;
  align-items: center;
}
.home-page .worldwide .worldwide-desc,
.home-page .worldwide .worldwide-info {
  color: var(--color-01);
  font-family: var(--second-family);
  font-size: var(--font-size-h2);
  font-style: normal;
  line-height: 100%;
  text-wrap: balance;
  font-weight: 400;
  text-transform: uppercase;
}
.home-page .worldwide .worldwide-sm {
  font-family: var(--second-family);
  font-size: var(--font-size-h3);
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  color: var(--color-01);
  text-wrap: balance;
  text-transform: none;
  padding-left: 8px;
}
.home-page .worldwide .worldwide-bottom {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
  color: var(--color-03);
}
.home-page .journey {
  height: 725px;
  background: url("../img/home/journey_bg.webp") no-repeat center;
  background-size: cover;
  display: flex;
  align-items: center;
}
.home-page .journey .journey-text {
  display: block;
  width: 60%;
  text-align: center;
  margin: 0 auto;
}
.home-page .journey .journey-heading {
  color: var(--color-01);
  font-family: var(--second-family);
  font-size: var(--font-size-h2);
  font-style: normal;
  line-height: 100%;
  text-wrap: balance;
  font-weight: 400;
  text-transform: uppercase;
}
.home-page .journey .journey-btn {
  margin-top: var(--m-space-32);
  display: flex;
  justify-content: center;
}
.home-page .journey .journey-btn a {
  text-transform: none;
}

@media (max-width: 1200px) {
  .home-page .matters .matters-row {
    gap: var(--m-space-40);
  }
  .home-page .investments {
    background-size: cover;
  }
  .home-page .worldwide .worldwide-datas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: var(--m-space-32) var(--m-space-16);
  }
}
@media (max-width: 992px) {
  .home-page .advantages .advantages-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: var(--m-space-60) var(--m-space-16);
  }
  .home-page .investments {
    background-position: top center;
    background-size: cover;
  }
  .home-page .investments .investments-col img {
    padding-left: 0;
  }
  .home-page .matters .matters-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .home-page .worldwide {
    background: linear-gradient(57deg, #e6e9f0 0%, #fcffff 100%);
    height: auto;
    padding: var(--m-space-152) 0;
    display: block;
  }
  .home-page .worldwide .worldwide-row {
    flex-direction: column-reverse;
  }
  .home-page .worldwide .worldwide-picture {
    flex: 0 0 100%;
  }
  .home-page .worldwide .worldwide-text {
    flex: 0 0 100%;
  }
  .home-page .worldwide .worldwide-datas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
  }
  .home-page .journey {
    height: 460px;
    background-position: bottom center;
  }
  .home-page .journey .journey-text {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .home-page .info .info-panel {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .home-page .info .info-picture {
    flex: 0 0 100%;
  }
  .home-page .info .info-text {
    flex: 0 0 100%;
  }
  .home-page .advantages h2 {
    text-align: center;
  }
  .home-page .advantages .advantages-row {
    gap: var(--m-space-60) var(--m-space-40);
  }
  .home-page .investments {
    padding: var(--m-space-152) 0;
    background: linear-gradient(57deg, #e6e9f0 0%, #fcffff 100%);
    height: auto;
  }
  .home-page .investments .investments-row {
    grid-template-columns: 1fr;
  }
  .home-page .matters .matters-heading {
    text-align: left;
  }
  .home-page .journey {
    height: 400px;
  }
  .home-page .journey .journey-text {
    width: 100%;
    text-align: left;
  }
  .home-page .journey .journey-btn {
    justify-content: flex-start;
  }
}
@media (max-width: 576px) {
  .home-page {
    padding-top: 180px;
  }
  .home-page .advantages h2 {
    text-align: left;
  }
  .home-page .advantages .advantages-row {
    grid-template-columns: 1fr;
  }
  .home-page .advantages .advantages-col svg {
    margin: 0;
  }
  .home-page .advantages .advantages-subheading {
    text-align: left;
  }
  .home-page .matters .matters-row {
    grid-template-columns: 1fr;
  }
  .home-page .matters .matters-line {
    justify-content: flex-start;
  }
  .home-page .matters .matters-subheading {
    margin-top: var(--m-space-65);
  }
  .home-page .worldwide .worldwide-datas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .home-page .journey {
    height: 360px;
    background-position: center;
    align-items: flex-start;
    padding-top: 15%;
  }
}
.about {
  /*start  history*/
  overflow: hidden;
  /*end  history*/
  /*start  confidance*/
  /*end  confidance*/
  /*start  ttrading*/
  /*end  ttrading*/
  /*start  industry*/
  /*end  industry*/
  /*start  partnership*/
  /*end  partnership*/
}
.about .history {
  padding-top: 140px;
  display: flex;
  align-items: center;
  height: 805px;
  background: url("../img/about/history_bg.webp") no-repeat top center;
  background-size: cover;
}
.about .history .history-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
}
.about .history .history-text {
  flex: 0 0 50%;
  animation: 0.7s revealLeft ease-in-out forwards;
}
.about .history .history-picture {
  flex: 0 0 33%;
  opacity: 0;
  transform: scale(0);
  transform-origin: center;
  animation: 0.7s zoomIn ease-in-out forwards;
}
.about .history .history-subheading {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
  color: var(--color-03);
  margin-top: var(--m-space-32);
}
.about .confidance {
  padding: var(--m-space-152) 0;
}
.about .confidance .confidance-heading {
  text-align: center;
}
.about .confidance .confidance-center {
  display: block;
  max-width: 656px;
  margin: 10px auto 0;
}
.about .confidance .confidance-center svg {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}
.about .confidance .confidance-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: var(--m-space-20);
}
.about .confidance .confidance-col {
  border: 1px solid var(--color-01);
  border-radius: clamp(25px, 3.57vw, 50px);
  padding: var(--m-space-40) var(--m-space-40) var(--m-space-60);
  transition: var(--transition-main);
}
.about .confidance .confidance-col:hover {
  background: rgba(232, 236, 243, 0.5);
  border: 1px solid transparent;
}
.about .confidance .confidance-col:hover .confidance-stroke {
  stroke: white;
}
.about .confidance .confidance-line {
  display: flex;
  align-items: center;
}
.about .confidance .confidance-icon {
  width: 68px;
}
.about .confidance .confidance-name {
  font-family: var(--second-family);
  font-size: var(--font-size-h3);
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--color-01);
  text-wrap: balance;
  padding-left: var(--m-space-28);
}
.about .confidance .confidance-description {
  margin-top: var(--m-space-100);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
  color: var(--color-03);
}
.about .ttrading {
  display: flex;
  align-items: center;
  background: url("../img/about/abstract_rock_background.webp") no-repeat top left, linear-gradient(57deg, #e6e9f0 0%, #fcffff 100%);
  background-size: contain;
  height: 877px;
}
.about .ttrading .ttrading-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  align-items: center;
}
.about .ttrading .ttrading-col:last-child {
  padding-left: var(--m-space-110);
}
.about .ttrading .ttrading-item {
  margin-top: var(--m-space-32);
}
.about .ttrading .ttrading-subtitle {
  margin-top: var(--m-space-20);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
  color: var(--color-03);
}
.about .industry {
  padding: var(--m-space-152) 0 var(--m-space-32);
}
.about .industry .industry-heading {
  text-align: center;
  color: var(--color-01);
  font-family: var(--second-family);
  font-size: var(--font-size-h2);
  font-style: normal;
  line-height: 100%;
  text-wrap: balance;
  font-weight: 400;
  text-transform: uppercase;
}
.about .industry .industry-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: var(--m-space-65);
  margin-top: var(--m-space-110);
}
.about .industry .industry-line {
  display: flex;
}
.about .industry .industry-icon {
  display: block;
  width: 68px;
}
.about .industry .industry-text {
  padding-left: var(--m-space-20);
}
.about .industry .industry-title {
  font-family: var(--second-family);
  font-size: var(--font-size-h3);
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--color-01);
  text-wrap: balance;
}
.about .industry .industry-subtitle {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
  color: var(--color-03);
  margin-top: var(--m-space-8);
}
.about .industry .industry-rect,
.about .industry .industry-rect2, .about .industry .industry-rect3 {
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
.about .partnership {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../img/about/abstract_white_background.webp") no-repeat top center;
  background-size: cover;
  height: clamp(400px, 46vw, 654px);
}
.about .partnership-text {
  width: 60%;
  display: block;
  margin: 0 auto;
  text-align: center;
}
.about .partnership-heading {
  color: var(--color-01);
  font-family: var(--second-family);
  font-size: var(--font-size-h2);
  font-style: normal;
  line-height: 100%;
  text-wrap: balance;
  font-weight: 400;
  text-transform: uppercase;
}
.about .partnership-btn {
  display: flex;
  justify-content: center;
  margin-top: var(--m-space-32);
}

@media (max-width: 1200px) {
  .about .ttrading {
    background-size: cover;
  }
}
@media (max-width: 992px) {
  .about .history {
    height: auto;
    padding-bottom: var(--m-space-110);
  }
  .about .confidance .confidance-center {
    max-width: 400px;
  }
  .about .confidance .confidance-description {
    margin-top: var(--m-space-65);
  }
  .about .ttrading {
    background: linear-gradient(57deg, #e6e9f0 0%, #fcffff 100%);
    height: auto;
    padding: var(--m-space-152) 0;
  }
  .about .ttrading .ttrading-row {
    grid-template-columns: 1fr;
  }
  .about .ttrading .ttrading-col:last-child {
    margin-top: var(--m-space-65);
    padding-left: 0;
  }
  .about .industry .industry-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: var(--m-space-65) var(--m-space-40);
  }
  .about .partnership .partnership-text {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .about .history {
    background: transparent;
    padding-bottom: 0;
  }
  .about .history .history-row {
    flex-direction: column-reverse;
  }
  .about .history .history-picture {
    flex: 0 0 100%;
  }
  .about .history .history-picture img {
    max-width: 80%;
    max-height: 80%;
  }
  .about .history .history-text {
    flex: 0 0 100%;
  }
  .about .confidance .confidance-heading {
    text-align: left;
  }
  .about .confidance .confidance-center {
    display: none;
  }
  .about .confidance .confidance-row {
    margin-top: var(--m-space-65);
    grid-template-columns: 1fr;
  }
  .about .confidance .confidance-description {
    margin-top: var(--m-space-32);
  }
  .about .ttrading .ttrading-item {
    margin-top: var(--m-space-40);
  }
  .about .industry .industry-heading {
    text-align: left;
  }
  .about .industry .industry-row {
    grid-template-columns: 1fr;
  }
  .about .partnership {
    height: 360px;
  }
  .about .partnership .partnership-text {
    width: 100%;
    text-align: left;
  }
  .about .partnership .partnership-btn {
    justify-content: flex-start;
  }
}
@media (max-width: 576px) {
  .about .history {
    padding-top: 180px;
  }
  .about .industry .industry-line {
    flex-direction: column;
  }
  .about .industry .industry-text {
    margin-top: var(--m-space-32);
    padding-left: 0;
  }
}
.accounts-page .accounts {
  padding: var(--m-space-110) 0 var(--m-space-152);
}
.accounts-page .accounts .accounts-wrapper {
  width: 100%;
  max-width: 986px;
  margin: 0 auto;
}
.accounts-page .accounts .accounts-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: var(--m-space-56) var(--m-space-20);
}
.accounts-page .accounts .accounts-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-main);
}
.accounts-page .accounts .accounts-col:hover {
  transform: scale(1.05);
}
.accounts-page .accounts .accounts-overlay {
  border: 1px solid var(--color-01);
  border-radius: 25px;
  height: 100%;
}
.accounts-page .accounts .accounts-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--m-space-28) 8px;
  border-bottom: 1px solid var(--color-01);
  height: 124px;
}
.accounts-page .accounts .accounts-name {
  font-family: var(--second-family);
  font-size: var(--font-size-h3);
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--color-01);
  text-wrap: balance;
}
.accounts-page .accounts .accounts-value {
  color: var(--color-01);
  font-family: var(--second-family);
  font-size: var(--font-size-h2);
  font-style: normal;
  line-height: 100%;
  text-wrap: balance;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 10px;
}
.accounts-page .accounts .accounts-body {
  padding: var(--m-space-30) var(--m-space-34);
}
.accounts-page .accounts .accounts-line {
  display: flex;
  align-items: center;
  margin-bottom: var(--m-space-16);
}
.accounts-page .accounts .accounts-line:last-child {
  margin-bottom: 0;
}
.accounts-page .accounts .accounts-icon {
  width: 20px;
  height: 20px;
}
.accounts-page .accounts .accounts-info {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
  color: var(--color-03);
  font-weight: 400;
  padding-left: var(--m-space-18);
}
.accounts-page .accounts .accounts-btn {
  display: flex;
  justify-content: center;
  margin-top: var(--m-space-20);
}

@media (max-width: 992px) {
  .accounts-page .accounts {
    padding: var(--m-space-110) 0;
  }
  .accounts-page .accounts .accounts-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: var(--m-space-65) var(--m-space-20);
  }
  .accounts-page .accounts .accounts-head {
    height: 100px;
  }
}
@media (max-width: 576px) {
  .accounts-page .accounts .accounts-row {
    grid-template-columns: 0.8fr;
    gap: var(--m-space-65);
  }
  .accounts-page .accounts .accounts-head {
    height: auto;
  }
}
@media (max-width: 400px) {
  .accounts-page .accounts .accounts-row {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.docs-page {
  position: relative;
}
.docs-page .docs {
  padding: var(--m-space-110) 0;
  background-size: cover;
  position: relative;
}
.docs-page .tabs {
  display: grid;
  grid-template-columns: 0.85fr 2fr;
  grid-column-gap: var(--m-space-70);
  position: relative;
  z-index: 20;
}
.docs-page .tabs__nav {
  height: fit-content;
  overflow: hidden;
  background: var(--color-white);
  border-radius: clamp(20px, 3.2vw, 45px);
  padding: var(--m-space-65) var(--m-space-50);
}
.docs-page .tabs__content p,
.docs-page .tabs__content li {
  margin-top: 16px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
  color: var(--color-03);
}
.docs-page .tabs-nav__item {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 18px 0 18px 0;
  cursor: pointer;
  transition: var(--transition-main);
  font-family: var(--second-family);
  font-size: var(--font-size-h3);
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--color-01);
  text-wrap: balance;
  color: var(--color-03);
  margin: 0;
}
.docs-page .tabs-nav__item span {
  display: none;
}
.docs-page .tabs-nav__item.is-active {
  color: var(--color-01);
}
.docs-page .tabs-nav__item.is-active span {
  display: flex;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-right: 12px;
}
.docs-page .tabs-nav__item:not(.is-active):hover {
  color: var(--color-03);
}
.docs-page .tabs-nav__item .tabs__content {
  position: relative;
}
.docs-page .tab {
  display: none;
  transition: var(--transition-main);
}
.docs-page .tab.is-active {
  display: block;
}
.docs-page .tab__title {
  color: var(--color-01);
  font-family: var(--second-family);
  font-size: var(--font-size-h2);
  font-style: normal;
  line-height: 100%;
  text-wrap: balance;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.docs-page .tab__heading {
  color: var(--color-01);
  font-family: var(--second-family);
  font-size: var(--font-size-h2);
  font-style: normal;
  line-height: 100%;
  text-wrap: balance;
  font-weight: 400;
  text-transform: uppercase;
}
.docs-page .tab_description {
  font-family: var(--font-family2);
  font-size: var(--font-size-sm);
  font-weight: 400;
  line-height: 130%;
  color: var(--color-tx);
}
.docs-page .tab__step {
  font-family: var(--font-family2);
  font-size: var(--font-size-sm);
  font-weight: 400;
  line-height: 130%;
  color: var(--color-tx);
  margin-top: 0 !important;
}
.docs-page .docs-introduce {
  margin-bottom: var(--m-space-65);
}
.docs-page .docs-answer {
  color: var(--color-01);
  font-family: var(--second-family);
  font-size: var(--font-size-h2);
  font-style: normal;
  line-height: 100%;
  text-wrap: balance;
  font-weight: 400;
  text-transform: uppercase;
}
.docs-page .docs-details {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
  color: var(--color-03);
  margin-top: var(--m-space-16);
}
.docs-page #mtop {
  margin-top: var(--m-space-65);
}
.docs-page .content-center {
  margin-bottom: var(--m-space-32);
}

.custom-title {
  color: var(--color-01);
  font-family: var(--second-family);
  font-size: var(--font-size-h2);
  font-style: normal;
  line-height: 100%;
  text-wrap: balance;
  font-weight: 400;
  text-transform: uppercase;
  font-family: var(--second-family) !important;
  font-weight: 400 !important;
  color: var(--color-01) !important;
  letter-spacing: 0;
  font-size: var(--font-size-h2) !important;
}

.custom-text {
  margin-top: 4px !important;
}

.custom-heading {
  font-family: var(--second-family);
  font-size: var(--font-size-h3);
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--color-01);
  text-wrap: balance;
  margin-top: 18px !important;
  font-weight: 700 !important;
  color: var(--color-01) !important;
}

.custom-list {
  margin-top: 8px;
}

.custom-item {
  margin-top: 0 !important;
  padding-left: var(--m-space-24);
}

strong {
  font-weight: 700;
}

.legal-pdf {
  padding: 160px 0;
}
@media (max-width: 1024px) {
  .legal-pdf {
    padding: 70px 0;
  }
}

.docs-title {
  cursor: pointer;
  transition: var(--transition-main);
  font-family: var(--second-family);
  font-size: var(--font-size-h3);
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--color-01);
  text-wrap: balance;
  color: var(--color-03);
  margin-bottom: 30px;
}

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

.text-subheading {
  padding-left: 10px;
  cursor: pointer;
  transition: var(--transition-main);
  font-family: var(--second-family);
  font-size: var(--font-size-h3);
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--color-01);
  text-wrap: balance;
  color: var(--color-03);
}

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

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

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

@media (max-width: 1200px) {
  .docs-page {
    padding: 0 0 80px;
  }
  .docs-page .tabs {
    grid-column-gap: 50px;
  }
}
@media (max-width: 992px) {
  .docs-page {
    padding: 0 0 56px;
  }
  .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 0;
  }
  .docs-page .tabs-nav__item.is-active {
    color: var(--color-accent-03);
  }
  .docs-page .tabs__content {
    margin-top: 30px;
    padding: 0;
  }
  .docs-page .tab {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
  }
}
@media (max-width: 576px) {
  .docs-page .tabs__nav {
    grid-template-columns: 1fr;
  }
  .docs-page .tab_description p, .docs-page .tabs__content li {
    margin-top: 8px !important;
  }
}
.contacts-page .contacts {
  position: relative;
  margin-bottom: var(--m-space-100);
  padding-top: var(--m-space-65);
}
.contacts-page .contacts .contacts-row {
  padding-top: var(--m-space-65);
}
.contacts-page .contacts .contacts-item {
  display: flex;
  align-items: center;
}
.contacts-page .contacts .contacts-icon {
  width: 68px;
}
.contacts-page .contacts .contacts-icon + div {
  padding-left: var(--m-space-20);
}
.contacts-page .contacts .contacts-title {
  margin-bottom: var(--m-space-16);
}
.contacts-page .contacts .contacts-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: var(--m-space-40);
  margin-top: var(--m-space-32);
}
.contacts-page .contacts .contacts-small {
  font-family: var(--second-family);
  font-size: var(--font-size-h3);
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--color-01);
  text-wrap: balance;
  margin-bottom: var(--m-space-32);
}
.contacts-page .contacts .contacts-description {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
  color: var(--color-03);
}
.contacts-page .contacts .contacts-rect,
.contacts-page .contacts .contacts-rect2, .contacts-page .contacts .contacts-rect3, .contacts-page .contacts .contacts-rect4 {
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
.contacts-page .contacts .contacts-col-2 {
  margin-top: var(--m-space-65);
  width: 80%;
}
.contacts-page .contacts .feedback {
  position: relative;
  z-index: 20;
}
.contacts-page .contacts .feedback #freeText9 {
  display: block;
  max-width: 410px;
}
.contacts-page .contacts .feedback label {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
  color: var(--color-03);
  color: var(--color-01);
  padding-left: var(--m-space-32);
}
.contacts-page .contacts .feedback input:not(input[type=submit]) {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
  color: var(--color-03);
  margin: 0;
  width: 100%;
  border: none;
  box-shadow: none !important;
  background-color: var(--color-white);
  display: inline-block;
  height: 84px;
  line-height: 84px;
  height: clamp(50px, 5.9vw, 84px);
  line-height: clamp(50px, 5.9vw, 84px);
  text-indent: var(--m-space-16);
  border-radius: 20px;
}
.contacts-page .contacts .feedback input:not(input[type=submit]):focus::-webkit-input-placeholder {
  color: transparent;
}
.contacts-page .contacts .feedback input:not(input[type=submit]):focus::-moz-placeholder {
  color: transparent;
}
.contacts-page .contacts .feedback input:not(input[type=submit]):focus:-moz-placeholder {
  color: transparent;
}
.contacts-page .contacts .feedback input:not(input[type=submit]):focus:-ms-input-placeholder {
  color: transparent;
}
.contacts-page .contacts .feedback input:not(input[type=submit])::placeholder {
  color: var(--color-01);
}
.contacts-page .contacts .feedback span[name=freeText] {
  font-size: 13px;
  line-height: 18px;
  color: rgba(220, 202, 200, 0.4);
}
.contacts-page .contacts .feedback input[type=submit] {
  cursor: pointer;
  margin: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  border: none;
  outline: none;
  padding-left: 24px;
  padding-right: 24px;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  transition: var(--transition-main);
  border-radius: 15px;
  background: var(--color-01);
  color: var(--color-white);
  border: 1px solid var(--color-01);
  min-width: 170px;
}
.contacts-page .contacts .feedback input[type=submit]:hover {
  background: transparent;
  color: var(--color-01);
}
.contacts-page .contacts .feedback textarea {
  width: 100%;
  margin: 0 !important;
  resize: none;
  box-shadow: none;
  outline: none;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
  color: var(--color-03);
  margin: 0 0 var(--m-space-32);
  background-color: var(--color-white);
  text-indent: var(--m-space-16);
  padding-top: 16px;
  border-radius: 20px;
  position: relative;
  border: none;
}
.contacts-page .contacts .feedback textarea:focus::-webkit-input-placeholder {
  color: transparent;
}
.contacts-page .contacts .feedback textarea:focus::-moz-placeholder {
  color: transparent;
}
.contacts-page .contacts .feedback textarea:focus:-moz-placeholder {
  color: transparent;
}
.contacts-page .contacts .feedback textarea:focus:-ms-input-placeholder {
  color: transparent;
}
.contacts-page .contacts .feedback textarea::placeholder {
  color: var(--color-03);
}

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

@media (max-width: 991px) {
  .tradeholic-theme .tradeholic .tradeholic-panel {
    flex-direction: column;
  }
  .tradeholic-theme .tradeholic .tradeholic-panel .tradeholic-column {
    width: 100%;
  }
}
.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 .content-heading {
  color: var(--color-01);
  font-family: var(--second-family);
  font-size: var(--font-size-h1);
  font-weight: 400;
  line-height: 100%;
  text-wrap: balance;
  text-transform: uppercase;
}
.not-found .text-big {
  font-family: var(--second-family);
  font-size: var(--font-size-h3);
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  color: var(--color-01);
  text-wrap: balance;
  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;
  }
}
