@import url(https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap);
@charset "UTF-8"; /**
    Font-family
*/
/**
    Titles
*/
/** 
    Text
*/
:root {
  --c-black: #000000;
  --c-white: #ffffff;
}
:root[data-theme=dark] {
  --c-scrollbar-track: #090914;
  --c-scrollbar-thumb: #0766ff;
  --c-scroller-top: 7, 102, 255;
  --c-bg-main: #090914;
  --c-prime: #0766ff;
  --c-prime-rgb: 7, 102, 255;
  --c-grey: #191924;
  --c-grey-light: #2a2a36;
  --c-text1: #aeaaaa;
  --c-text-btn: #ffffff;
  --c-text-menu: #ffffff;
  --c-input: #b9b9b9;
  --c-title-th: #333232;
}

.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-bg-main);
}
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: 65px 0 0;
  }
}
@media screen and (max-width: 576px) {
  body {
    padding: 168px 0 0;
  }
}

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

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

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

h1,
h2,
h3,
h4 {
  color: var(--c-white);
}
h1 span,
h2 span,
h3 span,
h4 span {
  color: var(--c-prime);
}

h1 {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(38px, 2.8125vw, 54px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
}

h2 {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(30px, 2.1875vw, 42px);
  font-style: normal;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 1.08px;
}

h3 {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(24px, 1.6666666667vw, 32px);
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
}

h4 {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(20px, 1.25vw, 24px);
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
}

.title-gradient {
  background: var(--gr-main);
  /* background-repeat: repeat-x; */
  /* background-position: 0 0; */
  color: transparent;
  -webkit-font-smoothing: antialiased;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text1 {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(16px, 0.9375vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  color: var(--c-text1);
}

.text2 {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--c-text1);
}

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

.text-menu {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.btn-common {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  transition: all 0.3s ease-in-out;
  font-family: "Open Sans", sans-serif;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.btn-head-log {
  padding: 14px 24px;
  width: fit-content;
  gap: 16px;
  color: var(--c-prime);
  background: transparent;
  border: 1px solid var(--c-prime);
  border-radius: 25px;
  position: relative;
}
.btn-head-log::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: scale(0) translate(-50%, -50%);
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  transition: all 0.3s ease-in-out;
  background: rgba(var(--c-prime-rgb), 0);
  z-index: -1;
  transform-origin: left top;
  border-radius: 25px;
}
.btn-head-log:hover {
  color: var(--c-white);
  border: 1px solid var(--c-prime);
  box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, var(--c-prime) 0 -2px 0 inset;
  transform: translateY(-3px);
}
.btn-head-log:hover::before {
  transform: scale(1) translate(-50%, -50%);
  background: rgba(var(--c-prime-rgb), 1);
}

.btn-head-reg {
  padding: 9px 24px;
  width: fit-content;
  gap: 16px;
  color: var(--c-white);
  background: transparent;
}
.btn-head-reg:hover {
  color: var(--c-prime);
  transform: translateY(-3px);
}
.btn-head-reg:hover svg {
  transform: rotate(405deg);
}
.btn-head-reg:hover svg circle {
  fill: var(--c-prime);
}
.btn-head-reg:hover svg path {
  fill: var(--c-white);
}
.btn-head-reg svg {
  transition: all 0.3s ease-in-out;
}
.btn-head-reg svg circle,
.btn-head-reg svg path {
  transition: all 0.3s ease-in-out;
}

.btn-reg {
  padding: 10px 10px 10px 24px;
  width: fit-content;
  gap: 16px;
  color: var(--c-prime);
  background: transparent;
  border: 1px solid var(--c-prime);
  border-radius: 25px;
  position: relative;
}
.btn-reg::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: scale(0) translate(-50%, -50%);
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  transition: all 0.3s ease-in-out;
  background: rgba(var(--c-prime-rgb), 0);
  z-index: -1;
  transform-origin: left top;
  border-radius: 25px;
}
.btn-reg:hover {
  color: var(--c-white);
  border: 1px solid var(--c-prime);
  box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, var(--c-prime) 0 -2px 0 inset;
  transform: translateY(-3px);
}
.btn-reg:hover::before {
  transform: scale(1) translate(-50%, -50%);
  background: rgba(var(--c-prime-rgb), 1);
}
.btn-reg:hover svg {
  transform: rotate(405deg);
}
.btn-reg:hover svg circle {
  fill: var(--c-white);
}
.btn-reg:hover svg path {
  fill: var(--c-prime);
}
.btn-reg svg {
  transition: all 0.3s ease-in-out;
}
.btn-reg svg circle,
.btn-reg svg path {
  transition: all 0.3s ease-in-out;
}

.btn-lang {
  width: 68px;
  display: flex;
  justify-content: center;
}

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

.header {
  position: fixed;
  background: transparent;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  z-index: 99;
  transition: all 0.3s ease-in-out;
  /* Lang */
}
.header.active {
  box-shadow: 0px 15px 10px -15px var(--c-prime);
  height: 50px;
  background: var(--c-bg-main);
}
.header.active .header__btns a {
  height: 40px;
}
.header .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header__logo img {
  max-width: 200px;
  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 {
  color: var(--c-prime);
  border-bottom: 2px solid var(--c-prime);
}
.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-prime);
  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: "Open Sans", sans-serif;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  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-bg-main);
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.3s ease-in-out;
  width: fit-content;
  box-shadow: 0px 4px 10px 0px rgba(205, 206, 211, 0.85);
}
.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-prime);
  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: "Open Sans", 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-size: clamp(12px, 1.125vw, 18px);
  line-height: clamp(16px, 1.4vw, 20px);
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
}
.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::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 4px;
  background: url(../img/header/menu_arrow.svg) no-repeat center center;
  background-size: contain;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.header .language > ul.menu_lang > .menu-item:hover > ul.sub-menu {
  font-family: "Open Sans", sans-serif;
  transform: scaleY(1);
  cursor: pointer;
  color: var(--c-text-menu);
}
.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: all 0.3s ease-in-out;
  transform-origin: top;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}
.header .language > ul.menu_lang > .menu-item > ul.sub-menu span {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

/** Media **/
@media screen and (max-width: 1200px) {
  .header .header__menu {
    margin: 0;
  }
}
@media screen and (max-width: 992px) {
  .header .header__menu {
    margin: 0;
    position: fixed;
    top: 0;
    left: -100vw;
    z-index: 500;
    width: 100vw;
    height: 100vh;
    background-color: var(--c-bg-main);
    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;
    background: var(--c-bg-main);
    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;
  }
  .header .language > ul.menu_lang .menu-item {
    font-size: 16px;
    line-height: normal;
    font-weight: 700;
  }
}
@media screen and (max-width: 768px) {
  .header {
    height: unset;
  }
  .header .header__menu .menu__wrapper {
    width: 100%;
    margin: 40px 0 0;
  }
  .header .header__menu .header__closer {
    top: 40px;
  }
  .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: 40px;
    grid-template-columns: repeat(2, 40px);
    grid-gap: 0 30px;
    margin: 0 50px 0 auto;
  }
  .header .language {
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .header.active {
    height: unset;
  }
  .header.active .header__inner {
    grid-gap: unset;
    padding: 10px 0;
  }
  .header .header__inner {
    display: grid;
    padding: 20px 0;
    grid-gap: 20px 0;
  }
  .header .header__logo {
    grid-row: 1/2;
    grid-column: 1/4;
    width: fit-content;
    width: 130px;
    margin: 0 auto 10px;
  }
  .header .header__logo img {
    max-height: 50px;
  }
  .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;
  }
}
@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;
  background: var(--c-grey);
}
.footer h4 {
  margin: 0 0 clamp(15px, 1.5625vw, 30px);
  color: var(--c-white);
}
.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 {
  transition: all 0.3s ease-in-out;
}
.footer .footer__contacts .item:hover span {
  color: var(--c-light-grey);
}
.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;
}
.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 {
  padding: clamp(50px, 5.2083333333vw, 100px) 0 0;
  background: url(../img/subheader/subheader_bg.png) no-repeat, var(--c-bg-main);
  background-position: center;
  background-size: 100% 100%;
  height: clamp(250px, 28.6458333333vw, 550px);
  display: flex;
  align-items: center;
  text-align: center;
}
.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-page .banner {
  background: url(../img/home/banner_bg.png) no-repeat;
  background-size: 100% 100%;
  background-position: center;
  padding: 150px 0 clamp(75px, 7.8125vw, 150px);
  min-height: calc(100vh - 150px - clamp(75px, 7.8125vw, 150px));
  display: flex;
  align-items: center;
  position: relative;
}
.home-page .banner .banner__inner {
  width: 48%;
}
.home-page .banner .banner__items .item .value #countries {
  margin: 8px 0 0;
  font-family: "Open Sans", sans-serif;
  font-size: clamp(30px, 2.1875vw, 42px);
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 1.08px;
  font-weight: 700;
  color: var(--c-white);
}
.home-page .banner .banner__info p {
  margin: clamp(25px, 2.6041666667vw, 50px) 0 40px;
}
.home-page .banner .banner__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 26px;
  margin: clamp(60px, 6.25vw, 120px) 0 0;
}
.home-page .banner .banner__items .item {
  text-align: center;
}
.home-page .banner .banner__items .item:not(:last-child) {
  padding: 0 26px 0 0;
  border-right: 1px solid rgba(174, 170, 170, 0.4);
}
.home-page .banner .banner__items .item .value {
  margin: 8px 0 0;
  font-family: "Open Sans", sans-serif;
  font-size: clamp(30px, 2.1875vw, 42px);
  font-style: normal;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 1.08px;
  font-weight: 700;
  color: var(--c-white);
}
.home-page .banner .banner__mockup {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  line-height: 0;
}
.home-page .banner .banner__mockup img {
  max-width: clamp(500px, 43.75vw, 840px);
}
@media screen and (min-width: 1024px) {
  .home-page .banner .banner__info h1 {
    opacity: 0;
    animation: 0.5s fadeInLeft ease-in-out forwards;
  }
  .home-page .banner .banner__info p {
    opacity: 0;
    animation: 0.5s fadeInLeft ease-in-out forwards 0.2s;
  }
  .home-page .banner .banner__info a {
    opacity: 0;
    animation: 0.5s fadeInLeft ease-in-out forwards 0.4s;
  }
  .home-page .banner .banner__items {
    opacity: 0;
    animation: 0.75s fadeInUp ease-in-out forwards 0.6s;
  }
  .home-page .banner .banner__mockup img {
    opacity: 0;
    animation: 1s zoomIn ease-in-out forwards;
  }
}
@media screen and (max-width: 1024px) {
  .home-page .banner {
    background-size: cover;
    background-position: center left;
  }
  .home-page .banner .banner__inner {
    width: 100%;
  }
  .home-page .banner .banner__info {
    text-align: center;
    display: grid;
    justify-items: center;
  }
  .home-page .banner .banner__mockup {
    position: static;
    transform: unset;
    text-align: center;
    margin: 50px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .home-page .banner {
    padding: clamp(75px, 7.8125vw, 150px) 0;
  }
  .home-page .banner .banner__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 0;
  }
  .home-page .banner .banner__items .item:not(:last-child) {
    padding: unset;
    border-right: unset;
  }
  .home-page .banner .banner__items .item:nth-child(odd) {
    border-right: 1px solid rgba(174, 170, 170, 0.4);
  }
}
@media screen and (max-width: 450px) {
  .home-page .banner .banner__items .item:nth-child(odd) {
    border-right: unset;
  }
}
.home-page .platform {
  background: url(../img/home/platform_bg.png) no-repeat;
  background-size: 100% 100%;
  background-position: center;
}
.home-page .platform .platform__inner {
  display: grid;
  grid-template-columns: 2.4fr 1.2fr 1fr;
  grid-gap: clamp(40px, 4.1666666667vw, 80px);
  margin: 50px 0 0;
}
.home-page .platform .platform__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 4px;
  grid-template-areas: ". item1" "item2 ." "item3 item4";
  grid-template-rows: repeat(3, 1fr);
}
.home-page .platform .platform__items .item {
  padding: 26px 18px 18px;
  background: var(--c-grey-light);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-page .platform .platform__items .item:nth-child(1) {
  grid-area: item1;
}
.home-page .platform .platform__items .item:nth-child(2) {
  grid-area: item2;
}
.home-page .platform .platform__items .item:nth-child(3) {
  grid-area: item3;
}
.home-page .platform .platform__items .item:nth-child(4) {
  grid-area: item4;
}
.home-page .platform .platform__items .item .num {
  margin: 0 0 clamp(40px, 4.1666666667vw, 80px);
}
@media screen and (max-width: 1024px) {
  .home-page .platform h2 {
    text-align: center;
  }
  .home-page .platform .platform__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .home-page .platform .platform__items {
    grid-row: 2/3;
    grid-column: 2/4;
    grid-template-areas: unset;
    grid-template-columns: 1fr;
    grid-template-rows: unset;
  }
  .home-page .platform .platform__items .item:nth-child(1), .home-page .platform .platform__items .item:nth-child(2), .home-page .platform .platform__items .item:nth-child(3), .home-page .platform .platform__items .item:nth-child(4) {
    grid-area: unset;
  }
  .home-page .platform .platform__items .item .num {
    margin: 0 0 20px;
  }
  .home-page .platform .platform__mockup {
    grid-row: 2/3;
    grid-column: 1/2;
    margin: auto;
  }
  .home-page .platform .platform__mockup img {
    max-width: 300px;
  }
  .home-page .platform .platform__descr {
    grid-row: 1/2;
    grid-column: 1/4;
    max-width: 75%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .home-page .platform .platform__inner {
    grid-gap: 30px 0;
  }
  .home-page .platform .platform__mockup {
    grid-row: 2/3;
    grid-column: 1/4;
  }
  .home-page .platform .platform__items {
    grid-row: 3/4;
    grid-column: 1/4;
  }
}
.home-page .adv .adv__top {
  display: flex;
  justify-content: space-between;
}
.home-page .adv .adv__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 4px;
  margin: 50px 0 0;
}
.home-page .adv .adv__items .item {
  background: var(--c-grey-light);
  border-radius: 20px;
  padding: clamp(20px, 2.0833333333vw, 40px);
}
.home-page .adv .adv__items .adv__icon {
  width: 68px;
  height: 68px;
  background: var(--c-white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.home-page .adv .adv__items h4 {
  margin: 30px 0 14px;
}
@media screen and (max-width: 768px) {
  .home-page .adv .adv__top {
    gap: 50px;
  }
  .home-page .adv .adv__top h2 br {
    content: "";
  }
  .home-page .adv .adv__top h2 br::after {
    content: " ";
  }
  .home-page .adv .adv__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .home-page .adv .adv__top {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .home-page .adv .adv__top h2 {
    text-align: center;
  }
  .home-page .adv .adv__top img {
    max-width: 33px;
    margin: 0 0 0 auto;
  }
  .home-page .adv .adv__items {
    grid-template-columns: 1fr;
  }
}
.home-page .support {
  background: url(../img/home/support_bg.png) no-repeat;
  background-size: 100% 100%;
  background-position: center;
}
.home-page .support .support__top {
  display: grid;
  grid-template-columns: 1fr 1.8fr 30px;
  grid-gap: clamp(40px, 4.1666666667vw, 80px);
  padding: 0 0 clamp(35px, 3.6458333333vw, 70px);
  border-bottom: 1px solid var(--c-white);
  margin: 0 0 clamp(50px, 5.2083333333vw, 100px);
}
.home-page .support .support__top p {
  max-width: 650px;
}
.home-page .support .support__splide .splide__slide {
  padding: clamp(25px, 2.6041666667vw, 50px) 40px;
  background: #191924;
  border-radius: 20px;
  transition: all 0.7s ease-in-out;
}
.home-page .support .support__splide .splide__slide.is-active {
  background: #2a2a36;
}
.home-page .support .support__splide .splide__slide.is-active .slide__num {
  opacity: 1;
}
.home-page .support .support__splide .splide__slide.is-active h3,
.home-page .support .support__splide .splide__slide.is-active p.text1 {
  opacity: 1;
}
.home-page .support .support__splide .splide__slide h3,
.home-page .support .support__splide .splide__slide p.text1 {
  opacity: 0.2;
  transition: all 0.7s ease-in-out;
}
.home-page .support .support__splide .splide__slide .slide__num {
  opacity: 0;
  font-family: "Open Sans", sans-serif;
  font-size: clamp(38px, 2.8125vw, 54px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  color: var(--c-prime);
  transition: all 0.7s ease-in-out;
}
.home-page .support .support__splide .splide__slide h3 {
  margin: clamp(25px, 2.6041666667vw, 50px) 0 24px;
}
@media screen and (max-width: 1024px) {
  .home-page .support .support__top {
    display: flex;
    flex-direction: column;
    grid-gap: unset;
    gap: 20px;
    text-align: center;
  }
  .home-page .support .support__top h2 {
    order: 2;
  }
  .home-page .support .support__top h2 br {
    content: "";
  }
  .home-page .support .support__top h2 br::after {
    content: " ";
  }
  .home-page .support .support__top p {
    order: 3;
    margin-inline: auto;
  }
  .home-page .support .support__top img {
    order: 1;
    max-width: 33px;
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .home-page .support .support__splide .splide__slide {
    padding: clamp(25px, 2.6041666667vw, 50px) clamp(15px, 5.2083333333vw, 40px);
  }
}
.home-page .edu .edu__top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
  align-items: center;
}
.home-page .edu .edu__top .line {
  background: var(--c-white);
  height: 1px;
}
.home-page .edu .edu__items {
  display: grid;
  grid-template-columns: 1fr clamp(350px, 21.875vw, 420px);
  grid-gap: 30px;
}
.home-page .edu .edu__info {
  display: flex;
  gap: clamp(65px, 6.7708333333vw, 130px);
  margin: auto 0 0;
}
@media screen and (max-width: 1024px) {
  .home-page .edu .edu__top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .home-page .edu .edu__items {
    grid-template-columns: 1fr;
    margin: 50px 0 0;
  }
  .home-page .edu .edu__info {
    flex-direction: column-reverse;
    text-align: center;
    align-items: center;
    gap: 50px;
  }
  .home-page .edu .edu__info p {
    max-width: 650px;
  }
  .home-page .edu .edu__mockup {
    grid-row: 1/2;
    text-align: center;
  }
  .home-page .edu .edu__mockup img {
    max-width: 650px;
    width: 100%;
  }
}
.home-page .strategic {
  background: url(../img/home/strategic_bg.png) no-repeat;
  background-size: 100% 100%;
  background-position: center;
}
.home-page .strategic .strategic__mockup {
  background: url(../img/home/strategic_mockup_bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  line-height: 0;
  text-align: center;
  padding: clamp(45px, 4.6875vw, 90px) 0 0;
}
.home-page .strategic .strategic__mockup img {
  max-width: 69%;
}
.home-page .strategic .strategic__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 4px;
  margin: 16px 0 0;
}
.home-page .strategic .strategic__items .item {
  padding: clamp(40px, 4.1666666667vw, 80px) clamp(15px, 1.5625vw, 30px) clamp(15px, 1.5625vw, 30px);
  border-radius: 20px;
  background: var(--c-grey);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-page .strategic .strategic__items .descr {
  display: flex;
  gap: 50px;
}
.home-page .strategic .strategic__items img {
  display: block;
  margin: 20px 0 0 auto;
}
@media screen and (max-width: 1024px) {
  .home-page .strategic .strategic__items .descr {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .home-page .strategic .strategic__items img {
    margin: 30px 0 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .home-page .strategic .strategic__mockup img {
    max-width: 90%;
  }
}
@media screen and (max-width: 576px) {
  .home-page .strategic .strategic__mockup {
    background: unset;
    padding: unset;
    border-radius: unset;
    border-bottom: 1px solid #fff;
  }
  .home-page .strategic .strategic__mockup img {
    max-width: 95%;
  }
  .home-page .strategic .strategic__items {
    grid-template-columns: 1fr;
    grid-gap: 16px;
  }
}

.about .banner {
  background: url(../img/about/banner_bg.png) no-repeat;
  background-size: 100% 100%;
  background-position: center;
  padding: 150px 0 clamp(75px, 7.8125vw, 150px);
  min-height: calc(100vh - 150px - clamp(75px, 7.8125vw, 150px));
  display: flex;
  align-items: center;
}
.about .banner .banner__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: clamp(65px, 6.7708333333vw, 130px);
  align-items: center;
}
.about .banner .banner__info p {
  margin: 40px 0;
}
.about .banner .banner__mockup img {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .about .banner .banner__info h2 {
    clip-path: inset(0 100% 0 0);
    animation: 0.75s revealLeft ease-in-out forwards;
  }
  .about .banner .banner__info p {
    clip-path: inset(0 100% 0 0);
    animation: 0.75s revealLeft 0.3s ease-in-out forwards;
  }
  .about .banner .banner__info a {
    clip-path: inset(0 100% 0 0);
    animation: 0.75s revealLeft 0.6s ease-in-out forwards;
  }
  .about .banner .banner__mockup {
    animation: 1s zoomInBannerMockup ease-in-out forwards;
  }
  @keyframes zoomInBannerMockup {
    0% {
      transform: scale(0.5);
      opacity: 0;
    }
    50% {
      opacity: 1;
      transform: scale(1.1);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
}
@media screen and (max-width: 1024px), screen and (min-height: 768px) {
  .about .banner {
    min-height: fit-content;
  }
}
@media screen and (max-width: 768px) {
  .about .banner {
    padding: clamp(50px, 5.2083333333vw, 100px) 0 clamp(35px, 3.6458333333vw, 70px);
    background-position: center right;
  }
  .about .banner .banner__inner {
    grid-template-columns: 1fr;
    grid-gap: 40px;
    justify-items: center;
    text-align: center;
  }
  .about .banner .banner__info {
    max-width: 500px;
  }
  .about .banner .banner__mockup {
    grid-row: 1/2;
  }
  .about .banner .banner__mockup img {
    max-width: clamp(250px, 45.5729166667vw, 350px);
  }
  .about .banner a {
    margin-inline: auto;
  }
}
.about .goal {
  background: transparent;
}
.about .goal .goal__top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.about .goal .goal__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 4px;
  margin: 50px 0 0;
}
.about .goal .goal__items .item {
  background: var(--c-grey);
  padding: clamp(20px, 2.0833333333vw, 40px);
  border-radius: 20px;
  transition: all 0.5s ease-in-out;
}
.about .goal .goal__items .item:hover {
  background: var(--c-grey-light);
}
.about .goal .goal__items .item .item__head {
  gap: clamp(15px, 1.5625vw, 30px);
}
.about .goal .goal__items .item .item__head img {
  max-width: clamp(50px, 3.5416666667vw, 68px);
}
.about .goal .goal__items .item .item__head h4 {
  color: var(--c-white);
}
.about .goal .goal__items .item p {
  margin: 14px 0 0;
}
@media screen and (min-width: 1024px) {
  .about .goal .goal__items .item {
    opacity: 0;
  }
  .about .goal .goal__items.active .item:nth-child(1) {
    animation: 0.5s fadeInUp ease-in-out forwards;
  }
  .about .goal .goal__items.active .item:nth-child(2) {
    animation: 0.5s fadeInUp ease-in-out forwards 0.2s;
  }
  .about .goal .goal__items.active .item:nth-child(3) {
    animation: 0.5s fadeInUp ease-in-out forwards 0.4s;
  }
}
@media screen and (max-width: 850px) {
  .about .goal h2 {
    text-align: center;
  }
  .about .goal .goal__items {
    grid-template-columns: 1fr;
    max-width: 80%;
    margin: 50px auto 0;
  }
  .about .goal .goal__items .item .item__head {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .about .goal .goal__items .item .item__head h4 {
    margin: unset;
  }
}
@media screen and (max-width: 576px) {
  .about .goal .goal__top {
    flex-direction: column-reverse;
  }
  .about .goal .goal__top img {
    max-width: 33px;
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 500px) {
  .about .goal .goal__items {
    max-width: 100%;
  }
}
.about .safety {
  background: url(../img/about/safety_bg.png) no-repeat;
  background-size: 100% 100%;
  background-position: center;
}
.about .safety .safety__top {
  display: grid;
  grid-template-columns: 1fr 1fr 30px;
  grid-gap: clamp(35px, 3.6458333333vw, 70px);
  padding: 0 0 clamp(35px, 3.6458333333vw, 70px);
  border-bottom: 1px solid var(--c-white);
  margin: 0 0 clamp(50px, 5.2083333333vw, 100px);
}
.about .safety .safety__top p {
  max-width: 450px;
}
.about .safety .safety__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 4px;
}
.about .safety .safety__items .item {
  border-radius: 20px;
  padding: clamp(25px, 2.6041666667vw, 50px) clamp(15px, 1.5625vw, 30px) clamp(25px, 2.6041666667vw, 50px);
}
.about .safety .safety__items .item h3 {
  margin: 0 0 28px;
}
.about .safety .safety__items .item:first-child {
  background: var(--c-grey-light);
}
.about .safety .safety__items .item:not(:first-child) {
  background: var(--c-bg-main);
}
@media screen and (max-width: 1024px) {
  .about .safety .safety__top {
    display: flex;
    flex-direction: column;
    text-align: center;
    grid-gap: unset;
    gap: 20px;
  }
  .about .safety .safety__top h2 {
    order: 2;
  }
  .about .safety .safety__top h2 br {
    content: "";
  }
  .about .safety .safety__top h2 br::after {
    content: " ";
  }
  .about .safety .safety__top p {
    order: 3;
    margin-inline: auto;
  }
  .about .safety .safety__top img {
    order: 1;
    max-width: 33px;
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 850px) {
  .about .safety .safety__items {
    grid-template-columns: 1fr;
    max-width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 500px) {
  .about .safety .safety__items {
    max-width: 100%;
  }
}
.about .core .core__top {
  display: flex;
  gap: clamp(30px, 3.6458333333vw, 60px);
  align-items: center;
}
.about .core .core__top .line {
  background: var(--c-white);
  flex: 1 1 0%;
  height: 1px;
}
.about .core .core__items {
  display: grid;
  grid-template-columns: clamp(320px, 19.7916666667vw, 380px) 1fr;
  grid-gap: clamp(35px, 3.6458333333vw, 70px);
  margin: clamp(35px, 3.6458333333vw, 70px) 0 0;
}
.about .core .core__info {
  display: flex;
  gap: clamp(65px, 6.7708333333vw, 130px);
  margin: auto 0 0;
}
@media screen and (max-width: 1024px) {
  .about .core .core__top {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .about .core .core__top .line {
    flex: unset;
    width: 100%;
  }
  .about .core .core__items {
    grid-template-columns: 1fr;
    margin: 40px 0 0;
  }
  .about .core .core__info {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 50px;
  }
  .about .core .core__info p {
    max-width: 650px;
  }
  .about .core .core__mockup {
    grid-row: 1/2;
    text-align: center;
  }
  .about .core .core__mockup img {
    max-width: 650px;
    width: 100%;
  }
}

@media (max-width: 1199.98px) {
  .types .types__wrap {
    overflow: auto;
  }
}
.types .types__rows {
  text-align: center;
}
@media (max-width: 1199.98px) {
  .types .types__rows {
    width: max-content;
  }
}
.types .types__rows .types__packages,
.types .types__rows .types__row,
.types .types__rows .types__btns {
  display: grid;
  grid-template-columns: clamp(250px, 16.1458333333vw, 310px) repeat(4, minmax(200px, 1fr));
}
.types .types__rows .types__packages {
  margin: 0 0 14px;
}
.types .types__rows .types__packages .types__package {
  padding: 30px;
  border-radius: 30px;
  margin: 0 15px;
}
.types .types__rows .types__packages .types__package:nth-of-type(2), .types .types__rows .types__packages .types__package:nth-of-type(3) {
  background: var(--c-grey);
}
.types .types__rows .types__packages .types__package:nth-of-type(4) {
  background: var(--c-white);
}
.types .types__rows .types__packages .types__package:nth-of-type(4) h3,
.types .types__rows .types__packages .types__package:nth-of-type(4) .price {
  color: var(--c-black);
}
.types .types__rows .types__packages .types__package:nth-of-type(5) {
  background: var(--c-prime);
}
.types .types__rows .types__packages .price {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--c-white);
}
.types .types__rows .types__row {
  padding: 20px;
  align-items: center;
  border-radius: 6px;
}
.types .types__rows .types__row .text1 {
  color: var(--c-white);
}
.types .types__rows .types__row:nth-child(odd) {
  background: var(--c-grey);
}
.types .types__rows .types__btns {
  margin: 24px 0 0;
}

.contacts-page .contacts h2,
.contacts-page .contacts h4 {
  color: var(--c-white);
}
.contacts-page .contacts .contacts__inner {
  display: grid;
  grid-template-columns: 1.38fr 1fr;
  grid-gap: 4px;
}
.contacts-page .contacts .contacts__inner > div {
  background: var(--c-grey);
  border-radius: 20px;
}
.contacts-page .contacts .contacts__feedback {
  padding: clamp(30px, 3.6458333333vw, 60px) clamp(35px, 3.6458333333vw, 70px) clamp(25px, 2.6041666667vw, 50px);
}
.contacts-page .contacts .contacts__feedback .feedback__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.contacts-page .contacts .contacts__feedback form {
  position: relative;
  display: grid;
  grid-gap: 4px;
  margin: 50px auto 0;
}
.contacts-page .contacts .contacts__feedback form input {
  height: clamp(40px, 4.1666666667vw, 80px);
  padding: 0 clamp(20px, 2.0833333333vw, 40px);
}
.contacts-page .contacts .contacts__feedback form textarea {
  height: clamp(120px, 7.8125vw, 150px);
  padding: clamp(15px, 1.5625vw, 30px) clamp(20px, 2.0833333333vw, 40px);
  resize: none;
}
.contacts-page .contacts .contacts__feedback form input,
.contacts-page .contacts .contacts__feedback form textarea {
  width: 100%;
  border: none;
  border-radius: 20px;
  box-shadow: none;
  font-family: "Open Sans", sans-serif;
  font-size: clamp(16px, 0.9375vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  background: var(--c-grey-light);
  color: var(--c-text1);
  margin: 0;
}
.contacts-page .contacts .contacts__feedback form input:focus::placeholder,
.contacts-page .contacts .contacts__feedback form textarea:focus::placeholder {
  color: var(--c-white);
}
.contacts-page .contacts .contacts__feedback form input::placeholder,
.contacts-page .contacts .contacts__feedback form textarea::placeholder {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(16px, 0.9375vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  color: #828282;
  transition: all 0.3s ease-in-out;
}
.contacts-page .contacts .contacts__feedback form button {
  margin: 20px 0 0;
}
.contacts-page .contacts .contacts__feedback 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;
}
.contacts-page .contacts .contacts__feedback form .form__response.active {
  transform: scale(1, 1);
}
.contacts-page .contacts .contacts__feedback form .form__response .form__status {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(16px, 0.9375vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  text-align: center;
  transform: translate(-50%, -50%);
  border-radius: 24px;
  background: #fafafa;
  box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.3);
  padding: 24px;
}
.contacts-page .contacts .contacts__feedback form .form__response .response__closer {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 20px;
  color: #fafafa;
  font-weight: 700;
  font-size: 34px;
}
.contacts-page .contacts .contacts__info {
  padding: clamp(30px, 3.6458333333vw, 60px) clamp(15px, 1.5625vw, 30px) clamp(25px, 2.6041666667vw, 50px);
}
.contacts-page .contacts .contacts__items {
  margin: 50px 0 0;
  display: flex;
  flex-direction: column;
  grid-gap: clamp(25px, 2.6041666667vw, 50px);
}
.contacts-page .contacts .contacts__items .item {
  display: grid;
  grid-template-columns: clamp(40px, 3.9583333333vw, 76px) 1fr;
  grid-gap: clamp(15px, 1.5625vw, 30px);
  align-items: center;
}
.contacts-page .contacts .contacts__items .item .contacts__line h4 {
  margin: 0 0 8px;
}
.contacts-page .contacts .contacts__items .item .contacts__line a {
  width: fit-content;
  transition: all 0.3s ease-in-out;
}
.contacts-page .contacts .contacts__items .item .contacts__line a:hover {
  color: var(--c-prime);
}
@media screen and (max-width: 768px) {
  .contacts-page .contacts .contacts__inner {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .contacts-page .contacts .contacts__feedback form button {
    margin: 20px auto 0;
  }
  .contacts-page .contacts .contacts__info {
    padding: clamp(30px, 3.6458333333vw, 60px) clamp(35px, 3.6458333333vw, 70px) clamp(25px, 2.6041666667vw, 50px);
    grid-row: 1/2;
  }
}
@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: 150px;
  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: "Open Sans", sans-serif;
  font-size: clamp(16px, 0.9375vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  color: var(--c-text1);
}
.docs-page .tabs-nav__item {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 14px 24px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  color: var(--c-white);
  border-radius: 20px;
}
.docs-page .tabs-nav__item.is-active {
  background: var(--c-prime);
}
.docs-page .tabs-nav__item:not(.is-active):hover {
  color: var(--c-prime);
}
.docs-page .tabs-nav__item .tabs__content {
  position: relative;
}
.docs-page .tab {
  display: none;
  transition: var(--transition-main);
  font-family: "Open Sans", sans-serif;
  font-size: clamp(16px, 0.9375vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}
.docs-page .tab.is-active {
  display: block;
}
.docs-page .tab__title {
  margin-bottom: 30px;
}

@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: "Open Sans", sans-serif;
  font-size: clamp(24px, 1.6666666667vw, 32px);
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  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;
  }
}
.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}
