@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap');

body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #203459;
  text-align: left;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body::before {
  content: '';
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#d0ecff),
    color-stop(15.5%, #edf7ff)
  );
  background: -o-linear-gradient(top, #d0ecff 0%, #edf7ff 15.5%);
  background: linear-gradient(180deg, #d0ecff 0%, #edf7ff 15.5%);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
  z-index: 1;
}

body.overflow-hidden {
  height: 100vh;
  overflow: hidden;
}

body > * {
  width: 100%;
  z-index: 10;
}

*::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

*,
body {
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type='number'] {
  -moz-appearance: textfield;
}

table {
  width: 100%;
}

p {
  width: 100%;
}

ul,
ol {
  text-align: left;
}

/* Article */
article > *,
.text > * {
  margin-bottom: 20px;
}

article > *:last-child,
.text > *:last-child {
  margin-bottom: 0;
}

.text a,
article a {
  color: #206df7;
  font: inherit;
  text-decoration: none;
}

.text a:hover,
article a:hover {
  color: rgba(32, 52, 89, 0.7);
}

h1,
h2,
h3,
h4 {
  display: block;
  position: relative;
  width: 100%;
  font-weight: 800;
  text-transform: none;
  text-align: left;
  line-height: 1.1;
  color: #203459;
}

h1 {
  margin-bottom: 24px;
  font-size: 70px;
}

h1.text__title,
h2.text__title.high {
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.5;
}

h2 {
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 700;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
}

.title {
  width: 100%;
}
.title.title-center {
  margin-bottom: 48px;
  text-align: center;
}

.button {
  padding: 12px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 180px;
  color: #fff;
  background: #203459;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.27;
  text-transform: none;
  text-align: center;
  cursor: pointer;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.button:hover {
  background: #206df7;
}

.button.hidden {
  display: none;
}

.button > img,
.button > span {
  display: inline-block;
  position: relative;
  font: inherit;
  line-height: 1;
  vertical-align: middle;
}

.button > img {
  margin-right: 12px;
}

.image img,
.background img {
  margin: 0 auto;
  display: block;
  -o-object-position: center;
  object-position: center;
}

.background img {
  height: 100%;
}

.background {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: absolute !important;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.js-expand-content {
  display: none;
  overflow: hidden;
}

svg {
  display: inline-block;
  position: relative;
  vertical-align: inherit;
  fill: #f6f6f6;
  line-height: 1;
}

use {
  fill-rule: evenodd;
}

.content,
.cover {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  margin: 0 auto;
}

.cover {
  height: auto;
  padding-left: -webkit-calc(50% - 1200px / 2);
  padding-left: calc(50% - 1200px / 2);
  padding-right: -webkit-calc(50% - 1200px / 2);
  padding-right: calc(50% - 1200px / 2);
}

.content > *,
.cover > * {
  display: block;
  position: relative;
}

.desc {
  margin-bottom: 48px;
}

.desc:last-child {
  margin-bottom: 0;
}

.desc > * {
  margin-bottom: 16px;
}
.desc > *:last-child {
  margin-bottom: 0;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#d0ecff),
    color-stop(15.5%, #edf7ff)
  );
  background: -o-linear-gradient(top, #d0ecff 0%, #edf7ff 15.5%);
  background: linear-gradient(180deg, #d0ecff 0%, #edf7ff 15.5%);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 9999;
}

#loader {
  width: 300px;
  height: 300px;
}

/* header */
.header__nav > ul {
  padding: 5px 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 5px;
  background: rgba(244, 251, 255, 0.5);
  border: 1px solid #ffffff;
  -webkit-border-radius: 15px;
  border-radius: 15px;
}

.header-nav__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  color: #203459;
}

.header__nav a {
  padding: 10px;
  display: block;
  width: 100%;
  color: rgba(32, 52, 89, 0.7);
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  text-decoration: none;
}

.header__nav a:hover {
  color: #206df7;
}

.header-nav__item.active a {
  font-weight: 800;
  color: #203459;
}

.header {
  padding-top: 40px;
  padding-bottom: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: unset;
  z-index: 900;
}

.header__logo {
  margin-right: 32px;
}

.header__logo img {
  display: block;
  height: 38px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.header__nav {
  margin: 0 auto;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-transform: translateX(-84px);
  -ms-transform: translateX(-84px);
  transform: translateX(-84px);
}

.header__menu {
  margin: 0 0 0 auto;
  z-index: 10;
}

.header__button-menu {
  display: none;
}

.header__dropdown {
  margin-left: 60px;
  width: auto;
}

.header-dropdown__button {
  padding: 0 !important;
  width: 38px !important;
  height: 38px;
  min-width: unset !important;
  position: relative;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

/* MAIN */
.main {
  padding-top: 10px;
  padding-bottom: 48px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  position: relative;
  z-index: 1;
}

.main > * {
  margin-bottom: 80px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.main > *:last-child {
  margin-bottom: 0;
}

.dummy {
  padding: 0 !important;
  position: absolute;
  z-index: -100;
  left: 0;
  top: -50px;
}

/* Prime */
.prime {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: flex-start;
  position: relative;
  gap: 50px;
  width: 100%;
  text-align: left;
}

.prime::before {
  content: '';
  position: absolute;
  width: 493px;
  height: 630px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0.5;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  background-image: url(../images/prime-logo.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  overflow: visible;
  z-index: -1;
}

.prime__wrap {
  margin-top: 54px;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  max-width: 720px;
  z-index: 100;
}

.prime__title {
  margin-bottom: 24px;
  width: 100%;
  line-height: 1;
  letter-spacing: 0.04em;
}

.prime__title:last-child {
  margin-bottom: 0;
}

.prime__desc {
  font-size: 24px;
  letter-spacing: 0.02em;
}

.prime__image {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.prime__image-mob {
  display: none;
}

.prime__image img {
  display: block;
  width: 100%;
  max-height: -webkit-calc(100vh - 200px);
  max-height: calc(100vh - 200px);
  -o-object-position: center;
  object-position: center;
  -o-object-fit: contain;
  object-fit: contain;
}

/* Text */
.text__list {
  counter-reset: section;
  list-style: none;
}

.text__list *:last-child {
  margin-bottom: 0 !important;
}

.text__list h2 {
  margin-bottom: 16px;
  padding-left: 44px;
}

.text__list li {
  margin-bottom: 10px;
  position: relative;
}

.text__list p {
  margin-bottom: 10px;
}

.text__list li a {
  color: #206df7;
  text-decoration: none;
}

.text__list li a:hover {
  color: rgba(32, 52, 89, 0.7);
}

.text__list ul,
.text__list ol {
  margin-bottom: 16px;
}

.text__list > li {
  margin-bottom: 24px;
  counter-increment: section;
}

ol.text__list > li::before {
  content: counter(section) '. ';
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.1;
}

.text__list ol {
  counter-reset: subsection;
  list-style: none;
  padding-left: 44px;
}

.text__list ol > li {
  counter-increment: subsection;
  padding-left: 40px;
  position: relative;
}

.text__list > li > ol > li::before {
  content: counter(section) '.' counter(subsection) ' ';
  font: inherit;
  font-weight: 600;
  position: absolute;
  left: 0;
  width: 36px;
  top: 0;
}

.text__list ol ol {
  counter-reset: subsubsection;
  padding-left: 0;
}

.text__list ol ol > li {
  padding-left: 52px;
  counter-increment: subsubsection;
}

.text__list ol ol > li::before {
  content: counter(section) '.' counter(subsection) '.' counter(subsubsection)
    ' ';
  font-weight: bold;
  position: absolute;
  left: 0;
  width: 48px;
  top: 0;
}

.text__list ul > li,
ul.text__list li {
  padding-left: 24px;
  position: relative;
}

ul.text__list > li {
  margin-bottom: 10px;
}

.text__list ul > li::before,
ul.text__list > li::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 4px;
  height: 4px;
  left: 9px;
  top: 10px;
  background-color: #203459;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.cookies > h3 {
  font-size: 32px;
}
