@charset "UTF-8";

/** Подключение шрифтов локально из папки "./src/fonts" */

@font-face {
  font-family: Geist;
  font-display: swap;
  src: url("../fonts/Geist-Bold.woff2") format("woff2"), url("../fonts/Geist-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: Geist;
  font-display: swap;
  src: url("../fonts/Geist-ExtraBold.woff2") format("woff2"), url("../fonts/Geist-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: Geist;
  font-display: swap;
  src: url("../fonts/Geist-Medium.woff2") format("woff2"), url("../fonts/Geist-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: Geist;
  font-display: swap;
  src: url("../fonts/Geist-Regular.woff2") format("woff2"), url("../fonts/Geist-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
.fancybox__container {
  --fancybox-bg: rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: 5px;
}
/** Подключение переменных */

/** Подключение sass function и mixins и extends стилей */

@-webkit-keyframes security-marquee {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  to {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}

@keyframes security-marquee {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  to {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}

@-webkit-keyframes card {
  from {
    -webkit-transform: translateY(200px) rotate(4deg);
            transform: translateY(200px) rotate(4deg);
  }

  to {
    -webkit-transform: rotate(-9deg);
            transform: rotate(-9deg);
  }
}

@keyframes card {
  from {
    -webkit-transform: translateY(200px) rotate(4deg);
            transform: translateY(200px) rotate(4deg);
  }

  to {
    -webkit-transform: rotate(-9deg);
            transform: rotate(-9deg);
  }
}

/*! 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;
  overflow-x: hidden;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
  min-height: 67vh;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  -webkit-box-sizing: content-box;
          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;
}

/**
 * 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 {
  -webkit-box-sizing: border-box;
          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] {
  -webkit-box-sizing: border-box;
          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;
}

/** Общие параметры, шаблоны(заготовки) и вспомогательные классы */

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.container {
  max-width: 1840px;
  width: 100%;
  padding: 0 40px;
  margin: 0 auto;
  height: 100%;
}

.text_12 {
  font-size: 12px;
}

.text_14 {
  font-size: 14px;
}

.text_16 {
  font-size: 16px;
}

.text_18 {
  font-size: 18px;
}

.text_20 {
  font-size: 20px;
}

.text_22 {
  font-size: 22px;
}

.text_24 {
  font-size: 24px;
}

.text_28 {
  font-size: 28px;
}

.text_30 {
  font-size: 30px;
}

.text_32 {
  font-size: 32px;
}

.text_36 {
  font-size: 36px;
}

.text_40 {
  font-size: 40px;
}

.text_48 {
  font-size: 48px;
}

.text_56 {
  font-size: 56px;
}

.text_64 {
  font-size: 64px;
}

.text_72 {
  font-size: 72px;
}

.text_80 {
  font-size: 80px;
}

.text_90 {
  font-size: 90px;
}

.text_96 {
  font-size: 96px;
}

.text_100 {
  font-size: 100px;
}

.text_120 {
  font-size: 120px;
}

.text_130 {
  font-size: 130px;
}

.text_130-45 {
  font-size: clamp(
                    45px,
                    calc(
                        45px + (130 - 45) * ((100vw - 730px) / 1070)
                    ),
                    130px
                );
}

.text_90-35 {
  font-size: clamp(
                    35px,
                    calc(
                        35px + (90 - 35) * ((100vw - 730px) / 1070)
                    ),
                    90px
                );
}

.text_80-35 {
  font-size: clamp(
                    35px,
                    calc(
                        35px + (80 - 35) * ((100vw - 730px) / 1070)
                    ),
                    80px
                );
}

.text_64-36 {
  font-size: clamp(
                    36px,
                    calc(
                        36px + (64 - 36) * ((100vw - 730px) / 1070)
                    ),
                    64px
                );
}

.text_64-30 {
  font-size: clamp(
                    30px,
                    calc(
                        30px + (64 - 30) * ((100vw - 730px) / 1070)
                    ),
                    64px
                );
}

.text_48-36 {
  font-size: clamp(
                    36px,
                    calc(
                        36px + (48 - 36) * ((100vw - 730px) / 1070)
                    ),
                    48px
                );
}

.text_30-24 {
  font-size: clamp(
                    24px,
                    calc(
                        24px + (30 - 24) * ((100vw - 730px) / 1070)
                    ),
                    30px
                );
}

.text_30-20 {
  font-size: clamp(
                    20px,
                    calc(
                        20px + (30 - 20) * ((100vw - 730px) / 1070)
                    ),
                    30px
                );
}

.text_30-18 {
  font-size: clamp(
                    18px,
                    calc(
                        18px + (30 - 18) * ((100vw - 730px) / 1070)
                    ),
                    30px
                );
}

.text_30-14 {
  font-size: clamp(
                    14px,
                    calc(
                        14px + (30 - 14) * ((100vw - 730px) / 1070)
                    ),
                    30px
                );
}

.text_24-20 {
  font-size: clamp(
                    20px,
                    calc(
                        20px + (24 - 20) * ((100vw - 730px) / 1070)
                    ),
                    24px
                );
}

.text_22-18 {
  font-size: clamp(
                    18px,
                    calc(
                        18px + (22 - 18) * ((100vw - 730px) / 1070)
                    ),
                    22px
                );
}

.text_22-16 {
  font-size: clamp(
                    16px,
                    calc(
                        16px + (22 - 16) * ((100vw - 730px) / 1070)
                    ),
                    22px
                );
}

.text_22-14 {
  font-size: clamp(
                    14px,
                    calc(
                        14px + (22 - 14) * ((100vw - 730px) / 1070)
                    ),
                    22px
                );
}

.text_22-12 {
  font-size: clamp(
                    12px,
                    calc(
                        12px + (22 - 12) * ((100vw - 730px) / 1070)
                    ),
                    22px
                );
}

.text_20-16 {
  font-size: clamp(
                    16px,
                    calc(
                        16px + (20 - 16) * ((100vw - 730px) / 1070)
                    ),
                    20px
                );
}

.text_20-14 {
  font-size: clamp(
                    14px,
                    calc(
                        14px + (20 - 14) * ((100vw - 730px) / 1070)
                    ),
                    20px
                );
}

.text_20-12 {
  font-size: clamp(
                    12px,
                    calc(
                        12px + (20 - 12) * ((100vw - 730px) / 1070)
                    ),
                    20px
                );
}

.text_18-14 {
  font-size: clamp(
                    14px,
                    calc(
                        14px + (18 - 14) * ((100vw - 730px) / 1070)
                    ),
                    18px
                );
}

.text_18-12 {
  font-size: clamp(
                    12px,
                    calc(
                        12px + (18 - 12) * ((100vw - 730px) / 1070)
                    ),
                    18px
                );
}

.text_18-10 {
  font-size: clamp(
                    10px,
                    calc(
                        10px + (18 - 10) * ((100vw - 730px) / 1070)
                    ),
                    18px
                );
}

.text_16-12 {
  font-size: clamp(
                    12px,
                    calc(
                        12px + (16 - 12) * ((100vw - 730px) / 1070)
                    ),
                    16px
                );
}

.text_14-12 {
  font-size: clamp(
                    12px,
                    calc(
                        12px + (14 - 12) * ((100vw - 730px) / 1070)
                    ),
                    14px
                );
}

.text_14-10 {
  font-size: clamp(
                    10px,
                    calc(
                        10px + (14 - 10) * ((100vw - 730px) / 1070)
                    ),
                    14px
                );
}

.text_12-10 {
  font-size: clamp(
                    10px,
                    calc(
                        10px + (12 - 10) * ((100vw - 730px) / 1070)
                    ),
                    12px
                );
}

.text_title {
  font-family: "Ricordi", sans-serif;
}

.text_alt {
  font-family: "Noto", sans-serif;
}

.p_4 {
  padding: 4px;
}

.p_8 {
  padding: 8px;
}

.p_12 {
  padding: 12px;
}

.p_16 {
  padding: 16px;
}

.p_20 {
  padding: 20px;
}

.p_24 {
  padding: 24px;
}

.p_32 {
  padding: 32px;
}

.p_40 {
  padding: 40px;
}

.p_48 {
  padding: 48px;
}

.p_64 {
  padding: 64px;
}

.p_96 {
  padding: 96px;
}

.pt_4 {
  padding-top: 4px;
}

.pt_8 {
  padding-top: 8px;
}

.pt_12 {
  padding-top: 12px;
}

.pt_16 {
  padding-top: 16px;
}

.pt_20 {
  padding-top: 20px;
}

.pt_24 {
  padding-top: 24px;
}

.pt_32 {
  padding-top: 32px;
}

.pt_40 {
  padding-top: 40px;
}

.pt_48 {
  padding-top: 48px;
}

.pt_64 {
  padding-top: 64px;
}

.pt_96 {
  padding-top: 96px;
}

.pr_4 {
  padding-right: 4px;
}

.pr_8 {
  padding-right: 8px;
}

.pr_12 {
  padding-right: 12px;
}

.pr_16 {
  padding-right: 16px;
}

.pr_20 {
  padding-right: 20px;
}

.pr_24 {
  padding-right: 24px;
}

.pr_32 {
  padding-right: 32px;
}

.pr_40 {
  padding-right: 40px;
}

.pr_48 {
  padding-right: 48px;
}

.pr_64 {
  padding-right: 64px;
}

.pr_96 {
  padding-right: 96px;
}

.pb_4 {
  padding-bottom: 4px;
}

.pb_8 {
  padding-bottom: 8px;
}

.pb_12 {
  padding-bottom: 12px;
}

.pb_16 {
  padding-bottom: 16px;
}

.pb_20 {
  padding-bottom: 20px;
}

.pb_24 {
  padding-bottom: 24px;
}

.pb_32 {
  padding-bottom: 32px;
}

.pb_40 {
  padding-bottom: 40px;
}

.pb_48 {
  padding-bottom: 48px;
}

.pb_64 {
  padding-bottom: 64px;
}

.pb_96 {
  padding-bottom: 96px;
}

.pl_4 {
  padding-left: 4px;
}

.pl_8 {
  padding-left: 8px;
}

.pl_12 {
  padding-left: 12px;
}

.pl_16 {
  padding-left: 16px;
}

.pl_20 {
  padding-left: 20px;
}

.pl_24 {
  padding-left: 24px;
}

.pl_32 {
  padding-left: 32px;
}

.pl_40 {
  padding-left: 40px;
}

.pl_48 {
  padding-left: 48px;
}

.pl_64 {
  padding-left: 64px;
}

.pl_96 {
  padding-left: 96px;
}

.m_4 {
  margin: 4px;
}

.m_8 {
  margin: 8px;
}

.m_12 {
  margin: 12px;
}

.m_16 {
  margin: 16px;
}

.m_20 {
  margin: 20px;
}

.m_24 {
  margin: 24px;
}

.m_32 {
  margin: 32px;
}

.m_40 {
  margin: 40px;
}

.m_48 {
  margin: 48px;
}

.m_64 {
  margin: 64px;
}

.m_96 {
  margin: 96px;
}

.mt_4 {
  margin-top: 4px;
}

.mt_8 {
  margin-top: 8px;
}

.mt_12 {
  margin-top: 12px;
}

.mt_16 {
  margin-top: 16px;
}

.mt_20 {
  margin-top: 20px;
}

.mt_24 {
  margin-top: 24px;
}

.mt_32 {
  margin-top: 32px;
}

.mt_40 {
  margin-top: 40px;
}

.mt_48 {
  margin-top: 48px;
}

.mt_64 {
  margin-top: 64px;
}

.mt_96 {
  margin-top: 96px;
}

.mr_4 {
  margin-right: 4px;
}

.mr_8 {
  margin-right: 8px;
}

.mr_12 {
  margin-right: 12px;
}

.mr_16 {
  margin-right: 16px;
}

.mr_20 {
  margin-right: 20px;
}

.mr_24 {
  margin-right: 24px;
}

.mr_32 {
  margin-right: 32px;
}

.mr_40 {
  margin-right: 40px;
}

.mr_48 {
  margin-right: 48px;
}

.mr_64 {
  margin-right: 64px;
}

.mr_96 {
  margin-right: 96px;
}

.mb_4 {
  margin-bottom: 4px;
}

.mb_8 {
  margin-bottom: 8px;
}

.mb_12 {
  margin-bottom: 12px;
}

.mb_16 {
  margin-bottom: 16px;
}

.mb_20 {
  margin-bottom: 20px;
}

.mb_24 {
  margin-bottom: 24px;
}

.mb_32 {
  margin-bottom: 32px;
}

.mb_40 {
  margin-bottom: 40px;
}

.mb_48 {
  margin-bottom: 48px;
}

.mb_64 {
  margin-bottom: 64px;
}

.mb_96 {
  margin-bottom: 96px;
}

.ml_4 {
  margin-left: 4px;
}

.ml_8 {
  margin-left: 8px;
}

.ml_12 {
  margin-left: 12px;
}

.ml_16 {
  margin-left: 16px;
}

.ml_20 {
  margin-left: 20px;
}

.ml_24 {
  margin-left: 24px;
}

.ml_32 {
  margin-left: 32px;
}

.ml_40 {
  margin-left: 40px;
}

.ml_48 {
  margin-left: 48px;
}

.ml_64 {
  margin-left: 64px;
}

.ml_96 {
  margin-left: 96px;
}

/** БЕМ блоки используемые во всё проекте */

body {
  background: #0C0C0C;
  font-family: "Geist", sans-serif;
  color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Geist", sans-serif;
}

a {
  color: #ffffff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

a:hover,
a:focus {
  color: #ffffff;
  opacity: 0.85;
  text-decoration: none;
}

.social-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  background-color: rgba(255, 255, 255, 0.0509803922);
  backdrop-filter: blur(15px);
  border-radius: 8px;
  padding: 9px;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  aspect-ratio: 1;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  opacity: 1;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 800;
  text-transform: uppercase;
  background-color: white;
  color: #0C0C0C;
  padding: 8px 8px 8px 20px;
  border-radius: 12px;
  min-width: 300px;
  gap: 20px;
}

.btn__icon-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 18px;
  border-radius: 8px;
  background-color: #0C0C0C;
  color: white;
}

.btn:hover {
  opacity: 1;
  color: #0C0C0C;
  -webkit-box-shadow: inset 0 15px 40px rgba(12, 12, 12, 0.3);
          box-shadow: inset 0 15px 40px rgba(12, 12, 12, 0.3);
}

/** Подключение стилей отдельных блоков и секций */

.header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 0;
  height: 60px;
  backdrop-filter: blur(10px);
  z-index: 98;
}
.header:has(+.glossary-page) {
  background: rgba(9, 9, 11, 0.8);
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  @media (max-width: 400px) { 
    gap: 10px;
  }
  @media (max-width: 369px) { 
    padding: 0px 10px !important;
  }
}

.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  line-height: 0;
}

.header__logo-img {
  display: block;
  width: 130px;
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
      @media (max-width: 498px) { 
        display: none;
      }
}



/*================ MOBILE MNU Start =============*/
#header .open_menu {
    display: flex;
    align-items: center;
    background-color: transparent;
    height: fit-content;
    width: fit-content;
    align-items: center;
    border-radius: 8px;
    flex-shrink: 0;
    background: var(--white);
    padding: 12px;
    gap: 7px;
    cursor: pointer;
    .menu-name {
        font-family: var(--font-family);
        font-weight: 700;
        font-size: 14px;
        text-transform: uppercase;
        text-align: center;
        color: var(--black);
    }
    & svg {
        margin-bottom: 1px;
    }
    @media (max-width: 498px) { 
        padding: 8px 10px;
    }
}
#mobile-mnu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 320px;
    background: linear-gradient(0deg, #cad3db 0%, #0c0c0c 100%);
    padding: 50px 15px 30px;
    transition: all 0.3s ease-in;
    transform: translateX(-350px);
    z-index: 9999;
    overflow: auto;
    #close-mnu {
        position: absolute;
        right: 10px;
        top: 10px;
        cursor: pointer;
        display: block;
        width: 30px;
        height: 30px;
        & svg {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: contain;
        }
        & a {
            font-size: 16px;
            line-height: 130%;
            font-weight: 450;
        }
    }
    .menuTop {
        list-style-type: none;
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding-left: unset;
        & li a {
            font-size: 14px;
            line-height: 130%;
            font-weight: 600;
            color: var(--txt-main-text-secondary);
            position: relative;
        }
    }
    &.opened {
        transform: translateX(0);
    }
    .sub-menu {
        display: none;
    }
}
/*================ MOBILE MNU End =============*/



/********* HERO BLOCK START *********/
.hero {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 90svh;
  margin-top: -60px;
	@media (max-width: 768px) { 
		padding-top: 60px;
	}
}

.hero__bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 130%;
  overflow: hidden;
}

.hero__bg {
  pointer-events: none;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}

.hero__container {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  height: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero__titles {
	margin-top: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  max-width: 1078px;
}

.hero__title {
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
	font-size: clamp(45px, calc(45px + (110 - 45) * ((100vw - 730px) / 1070)), 110px);
	margin: 0.50em 0;
}

.hero__tagline {
  max-width: 654px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
}

.hero__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-height: 270px;
  height: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 300px;
          flex: 1 1 300px;
	@media (max-width: 1200px) { 
		min-height: 250px;
		padding: 30px 0px;
	}
}

.hero__card-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-animation: card 1s 0.3s both;
          animation: card 1s 0.3s both;
  z-index: 4;
}

.hero__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  width: 100%;
  margin-top: 0px;
}

.hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.esti-holder {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.03em;
    text-align: center;
    color: var(--color-foreground);
    margin-top: 6px;
    .exti-icon {
        width: 84px;
        height: 22px;
        display: flex;
        margin-bottom: 3px;
        & img {
            width: auto;
            height: auto;
            display: block;
            object-fit: contain;
            max-width: 100%;
            max-height: 100%;
        }
    }
}

.hero__desc {
  max-width: 420px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.hero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 4px;
}

.hero__social-btn {
  width: 70px;
}

.hero__download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 15px;
  border-radius: 20px;
  background: #fff;
}

.hero__download-label {
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #0c0c0c;
  text-align: center;
}

.hero__download-img {
  display: block;
  width: 130px;
  aspect-ratio: 1;
  height: auto;
}
/********* HERO BLOCK END *********/


/********* PLAYBOOK BLOCK START *********/
.playbook {
  position: relative;
  z-index: 2;
  scroll-margin-top: 120px;
  border-bottom: 1px solid #292a2c;
  padding: 240px 0;
}

.playbook__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 80px;
}

.playbook__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
}

.playbook__label {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #6c7074;
}

.playbook__title {
  max-width: 1189px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
}

.playbook__title b {
  color: #c2c2c2;
}

.playbook__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}

.playbook__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 20px;
  max-width: 540px;
  width: 100%;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.2;
  color: #ffffff;
}

.playbook__compare {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 24px;
  width: 800px;
}

.playbook__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  max-width: 436px;
}

.playbook__column_invert .playbook__column-head {
  background: #fff;
}

.playbook__column_invert .playbook__column-title {
  color: black;
}

.playbook__column_invert .playbook__row-value {
  color: white;
}

.playbook__column_invert .playbook__row {
  border-color: #727479;
}

.playbook__column-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  min-height: 70px;
  padding: 8px 20px;
  border-radius: 12px;
  background: #292a2c;
}

.playbook__column-title {
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #cad3db;
}

.playbook__column-logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 0;
}

.playbook__column-logo-svg {
  display: block;
  width: 25px;
  height: 26px;
}

.playbook__rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.playbook__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding: 24px 0 8px;
  border-bottom: 1px solid #333437;
}

.playbook__row-label {
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #cad3db;
  opacity: 0.5;
}

.playbook__row-value {
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #cad3db;
}
/********* PLAYBOOK BLOCK END *********/


/********* HOW BLOCK START *********/
.how-it-works {
  position: relative;
  z-index: 2;
  scroll-margin-top: 180px;
  height: calc(100vh + var(--how-it-works-scroll, 2000px));
}

.how-it-works__pin {
  position: sticky;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
  padding: 120px 0 120px;
  background: radial-gradient(50% 100% at 50% 100%, #292a2c 0%, #0c0c0c 100%);
}

.how-it-works__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.how-it-works__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  max-width: 609px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.how-it-works__label {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #6c7074;
}

.how-it-works__title {
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
}

.how-it-works__note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  max-width: 80%;
  opacity: 0.3;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: #c9c9c9;
  margin-top: 16px;
}

.how-it-works__steps {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  max-width: 600px;
}

.how-it-works__accordion {
  margin: 0;
  padding: 35px 0 0;
  list-style: none;
}

.how-it-works__item {
  margin: 0 0 20px;
  background: #0c0c0c;
  border-radius: 12px;
}

.how-it-works__item.uk-open {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#c6cbd7));
  background: linear-gradient(#fff 0%, #c6cbd7 100%);
}

.how-it-works__item.uk-open .how-it-works__item-title {
  color: black;
}

.how-it-works__item.uk-open .how-it-works__item-head {
  padding-bottom: 15px;
}

.how-it-works__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  cursor: pointer;
  position: relative;
  padding: 30px 20px 25px 25px;
  pointer-events: none;
}

.how-it-works__item-num {
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #cad3db;
  opacity: 0.5;
  position: absolute;
  left: -40px;
  top: 0px;
}

.how-it-works__item-title {
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #ffffff;
}

.how-it-works__item-body {
  margin: 0;
}

.how-it-works__item-card {
  border-radius: 12px;
  overflow: hidden;
}

.how-it-works__item-desc {
  margin-bottom: 15px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: #0c0c0c;
  opacity: 0.8;
  padding: 0 25px;
}

.how-it-works__item-media {
  line-height: 0;
}

.how-it-works__item-img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
/********* HOW BLOCK END *********/


/********* CARD BLOCK START *********/
.card {
  position: relative;
  z-index: 2;
  scroll-margin-top: 180px;
  padding: 120px 0;
  overflow: hidden;
}

.card__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  pointer-events: none;
}

.card__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

.card__container {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}

.card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  text-align: center;
}

.card__label {
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #ffffff;
}

.card__title {
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
}

.card__panel {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.card__tabs {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: auto;
  margin: 0 auto 30px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(45px);
  list-style: none;
  gap: 4px;
}

.card__tab {
  margin: 0;
  border-radius: 12px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.card__tab_active {
  background: #fff;
}

.card__tab_active .card__tab-link {
  color: #0c0c0c;
}

.card__tab-link {
  display: block;
  padding: 20px 30px;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}

.card__switcher {
  margin: 0;
  margin-top: 20px;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 60px;
}

.card__pane {
  margin: 0;
}

.card__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 40px;
  gap: 24px;
  width: 100%;
  max-width: 387px;
  opacity: 0.4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.card__row_active {
  opacity: 1;
}

.card__bullet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

.card__bullet-icon {
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.card__bullet-text {
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #ffffff;
  text-align: center;
}

.card__visual {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 582px;
  -webkit-perspective: 2400px;
          perspective: 2400px;
}

.card__flipper {
  position: relative;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  transition: -webkit-transform 0.7s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  transition: transform 0.7s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  transition: transform 0.7s cubic-bezier(0.68, -0.6, 0.32, 1.6), -webkit-transform 0.7s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.card__flipper_flipped {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.card__face {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.card__face_back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.card__img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 27.75px;
  -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 5px 0 rgba(0, 0, 0, 0.25);
}

.card__footer {
  max-width: 900px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.4;
  text-align: center;
  color: #c9c9c9;
}
/********* CARD BLOCK START *********/


/********* EARN BLOCK START *********/
.earn {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid #292a2c;
  padding: 180px 0;
  background: radial-gradient(50% 70% at 50% 100%, #28282b 0%, #0d0d0d 100%);
}

.earn__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}

.earn__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  max-width: 780px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.earn__title {
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
}

.earn__desc {
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.2;
  color: #ffffff;
}

.earn__features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.earn__feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.earn__feature-text {
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.2;
  color: #ffffff;
}

.earn__feature-icon {
  width: 30px;
  height: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.earn__risk {
  max-width: 680px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #4D4D4D;
}

.earn__risk a {
  color: #4D4D4D;
  text-decoration: underline;
}

.earn__table {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 586px;
  padding: 35px 30px;
  border-radius: 24px;
  background: #0c0c0c;
}

.earn__table-head {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 80px 80px;
  grid-template-columns: 1fr 80px 80px;
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 24px;
}

.earn__table-col {
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #cad3db;
  opacity: 0.4;
}

.earn__table-col:not(:first-child) {
  text-align: right;
}

.earn__table-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.earn__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 80px 80px;
  grid-template-columns: 1fr 80px 80px;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.earn__row:not(:last-child) {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.earn__row-vault {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  min-width: 0;
}

.earn__row-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}

.earn__row-name {
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.earn__row-ltv {
  font-weight: 500;
  letter-spacing: -0.02em;
  text-align: right;
  color: #5e5e5e;
}

.earn__row-apy {
  font-weight: 500;
  letter-spacing: -0.02em;
  text-align: right;
  color: #2cb44e;
}
/********* EARN BLOCK END *********/


/********* PLANS BLOCK START *********/
.plans {
  position: relative;
  z-index: 2;
  scroll-margin-top: 180px;
  border-bottom: 1px solid #292a2c;
  padding: 180px 0;
}

.plans__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}

.plans__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 52px;
  text-align: center;
}

.plans__label {
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #6c7074;
}

.plans__title {
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
}

.plans__desc {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: white;
}

.plans__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  width: 100%;
}

.plans__card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  width: 100%;
  padding: 30px;
  border: 3px solid #141515;
  border-radius: 12px;
  background: transparent;
}

.plans__card_silver {
  border: none;
  background: -webkit-gradient(linear, left bottom, left top, from(#1A1A1A), to(#141515));
  background: linear-gradient(0deg, #1A1A1A 0%, #141515 100%);
}

.plans__card_gold {
  border: none;
  background: -webkit-gradient(linear, left bottom, left top, from(#25231F), to(#141515));
  background: linear-gradient(0deg, #25231F 0%, #141515 100%);
}

.plans__card_platinum {
  border: none;
  background: -webkit-gradient(linear, left bottom, left top, from(#36383B), to(#141515));
  background: linear-gradient(0deg, #36383B 0%, #141515 100%);
}

.plans__card-visual {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 180px;
  border-radius: 9px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 0 #343434;
          box-shadow: 0 2px 0 #343434;
}

.plans__card-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.plans__card-name {
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.plans__rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.plans__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.plans__row:not(:last-child) {
  border-bottom: 1px solid #292A2C;
  padding-bottom: 16px;
}

.plans__row-label {
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #cad3db;
  opacity: 0.6;
  text-transform: uppercase;
  opacity: 0.4;
}

.plans__row-value {
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.plans__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}

.plans__btn-text {
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.plans__social-btn {
  width: 70px;
  height: 70px;
  border-radius: 12px;
}
/********* PLANS BLOCK END *********/


/********* PLATINUM BLOCK START *********/
.platinum {
  position: relative;
  z-index: 2;
  scroll-margin-top: 180px;
  padding: 180px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#0d0d0d), to(#cad3db));
  background: linear-gradient(#0d0d0d 0%, #cad3db 100%);
  overflow: hidden;
}

.platinum__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 54px;
}

.platinum__hero {
  line-height: 0;
}

.platinum__hero-img {
  display: block;
  width: 100%;
  max-width: 327px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  -webkit-box-shadow: 0 3.5px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 3.5px 0 rgba(0, 0, 0, 0.25);
}

.platinum__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  max-width: 994px;
  text-align: center;
}

.platinum__label {
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #6c7074;
}

.platinum__title {
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
}

.platinum__subtitle {
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.2;
  color: #ffffff;
}

.platinum__marquee {
  width: 100vw;
  margin-left: 0;
  margin-top: 30px;
}

.platinum__marquee-viewport {
  width: 100%;
  overflow: hidden;
  cursor: -webkit-grab;
  cursor: grab;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.platinum__marquee-viewport::-webkit-scrollbar {
  display: none;
}

.platinum__marquee-viewport.is-dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.platinum__marquee-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}

.platinum__marquee-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding-right: 20px;
}

.platinum__feature {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 800px;
  height: 600px;
  border-radius: 24px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 120px;
  padding: 40px;
}

.platinum__feature-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.platinum__feature-title {
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #ffffff;
  position: relative;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.1019607843);
  backdrop-filter: blur(30px);
  border-radius: 18px;
  padding: 28px 38px;
  text-transform: uppercase;
}

.platinum__feature-desc {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: white;
  position: relative;
  z-index: 2;
  max-width: 400px;
  text-align: center;
  opacity: 0.8;
}
/********* PLATINUM BLOCK END *********/


/********* SUPPORT BLOCK START *********/
.support {
  background-color: #09090B;
}

.support__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}

.support__content {
  max-width: 780px;
}

.support__title {
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 1;
}

.support__title b {
  color: #BDC4CA;
}

.support__subtitle {
  color: #CBD5E1;
  margin-top: 40px;
  font-weight: 700;
}

.support__desc {
  margin-top: 200px;
  color: #CBD5E1;
}

.support__img {
  width: 800px;
  height: 800px;
  -o-object-fit: contain;
     object-fit: contain;
}
/********* SUPPORT BLOCK END *********/


/********* SECURITY BLOCK START *********/
.security {
  position: relative;
  z-index: 2;
  padding: 180px 0;
  background: #0d0d0d;
  overflow: hidden;
  background: radial-gradient(100% 100% at 50% 0%, #292A2C 0%, #0C0C0C 100%);
  border-bottom: 1px solid #292a2c;
}

.security__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 120px;
}

.security__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}

.security__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  max-width: 900px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.security__label {
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #6c7074;
}

.security__title {
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
}

.security__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  max-width: 560px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-top: 60px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #cad3db;
}

.security__marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.security__marquee-viewport {
  width: 100%;
  overflow: hidden;
}

.security__marquee-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: security-marquee 40s linear infinite;
          animation: security-marquee 40s linear infinite;
  will-change: transform;
}

.security__marquee-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding-right: 20px;
}

.security__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 320px;
  height: 160px;
  border-radius: 12px;
  background: #111111;
}

.security__logo-img {
  display: block;
  width: 180px;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}
/********* SECURITY BLOCK END *********/


/********* FAQ BLOCK START *********/
.faq {
  position: relative;
  z-index: 2;
  scroll-margin-top: 180px;
  border-bottom: 1px solid #292a2c;
  padding: 180px 0;
}

.faq__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 106px;
}

.faq__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  max-width: 860px;
}

.faq__label {
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #6c7074;
}

.faq__title {
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
}

.faq__accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 660px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq__item {
  margin: 0;
  border-radius: 12px;
  background: #1b1b1b;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.faq__item.uk-open {
  background: white;
}

.faq__item.uk-open .faq__question {
  color: black;
}

.faq__item.uk-open .faq__question-icon-wrapper {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.faq__item.uk-open .faq__answer {
  color: black;
}

.faq__question {
  padding: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #ffffff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 10px 10px 10px 20px;
}

.faq__question-icon-wrapper {
  width: 50px;
  height: 50px;
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #353535;
  border-radius: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.faq__answer {
  margin: 0;
  padding: 40px 20px 20px 20px;
}

.faq__support {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  max-width: 600px;
}

.faq__support-title {
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.faq__support-desc {
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #cad3db;
}
/********* FAQ BLOCK END *********/


/********* CTA BLOCK START *********/
.cta {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 80px 0;
}

.cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cta__bg-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 100%;
     object-position: 0 100%;
}

.cta__container {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}

.cta__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
  max-width: 700px;
}

.cta__title {
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
}

.cta__desc {
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.cta__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 180px;
}

.cta__btn {
  min-width: 180px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.cta__social-btn {
  width: 70px;
  height: 70px;
}

.cta__img {
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform: rotate(-9deg) scale(0.8);
      -ms-transform: rotate(-9deg) scale(0.8);
          transform: rotate(-9deg) scale(0.8);
	
}
/********* CTA BLOCK END *********/


/********* FOOTER START *********/
.footer {
  position: relative;
  z-index: 2;
  padding: 80px 0 40px;
  background: #0c0c0c;
}

.glossary-page {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
  .mobile-logo {
    display: none;
  }
}

.footer__logo-img {
  display: block;
  height: 32px;
  width: auto;
}

.footer__cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 96px;
  margin-top: 40px;
}

.footer__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  width: 200px;
}

.footer__col-title {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__links a {
  color: #CBD5E1;
  font-weight: 400;
  line-height: 1.3;
}

.footer__newsletter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 500px;
          flex: 0 0 500px;
}

.footer__newsletter-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.footer__newsletter-title {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #ffffff;
}

.footer__newsletter-desc {
  color: #CBD5E1;
  line-height: 1.4;
}

.footer__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}

.footer__form-field {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #212123;
  border-radius: 12px;
  min-height: 64px;
}

.footer__input {
  width: 100%;
  padding: 20px 120px 20px 20px;
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-family: inherit;
  outline: none;
  background-color: transparent;
  font-weight: 500;
}

.footer__input::-webkit-input-placeholder {
  color: #6c7074;
}

.footer__input::-moz-placeholder {
  color: #6c7074;
}

.footer__input:-ms-input-placeholder {
  color: #6c7074;
}

.footer__input::-ms-input-placeholder {
  color: #6c7074;
}

.footer__input::placeholder {
  color: #6c7074;
}

.footer__submit {
  position: absolute;
  top: 8px;
  right: 8px;
  bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #ffffff;
  color: #0c0c0c;
  cursor: pointer;
  font-family: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.footer__submit-icon {
  display: block;
  width: 14px;
  height: 14px;
}

.footer__submit-icon path {
  fill: black;
}

.footer__consent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.footer__checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer__checkbox:checked ~ .footer__checkbox-box {
  border-color: #ffffff;
  background-color: #ffffff;
}

.footer__checkbox:checked ~ .footer__checkbox-box::after {
  opacity: 1;
}

.footer__checkbox:focus-visible ~ .footer__checkbox-box {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.footer__checkbox-box {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  width: 25px;
  height: 25px;
  margin-top: 2px;
  border-radius: 4px;
  background-color: rgba(217, 217, 217, 0.1019607843);
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.footer__checkbox-box::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  width: 6px;
  height: 12px;
  border: solid #0c0c0c;
  border-width: 0 2px 2px 0;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.footer__consent-text {
  color: #CBD5E1;
  line-height: 1.4;
}

.footer__consent-link {
  text-decoration: underline;
  color: #CBD5E1;
}

.footer__social {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}

.footer__divider {
  height: 1px;
  background: #FFFFFF;
  opacity: 0.1;
}

.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}

.footer__bottom-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  width: 500px;
}

.footer__copyright {
  color: #696E75;
  font-weight: 500;
}

.footer__disclaimer {
  color: #696E75;
  line-height: 1.4;
}

.footer__legal {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-height: 140px;
  gap: 18px 60px;
}

.footer__legal a {
  color: #696E75;
  line-height: 1.3;
}
/********* FOOTER END *********/

.hero__bg {
    height: 100%;
}

@media screen and (max-width: 1440px) {
    .hero__container {
        padding-top: 80px;
    }
}


/********* COMMON START *********/
.empty-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 100px 0px;
  .btn {
    width: fit-content;
    padding: 15px 25px;
    min-width: unset;
  }
  h2.main-title {
    max-width: 700px;
    text-align: center;
  }
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding: 112px 0px 80px;
  gap: 15px;
  & span {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    position: relative;
    padding-right: 30px;
    color: #6c7074;
      &:before {
        content: "";
        width: 12px;
        height: 12px;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        background-image: url(../images/breadElement.svg);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
      }
      & a {
        & span {
          color: #6c7074;
        }
      }
      & span,
      &.current-item {
        padding-right: unset;
        color: white;
        &:before {
          display: none;
        }
      }
      &:has(>span) {
        padding-right: unset;
        &:before {
          display: none;
        }
      }
  }
  @media (max-width: 1440px) { 
    padding: 72px 0px 60px;
    gap: 10px;
    & span {
        padding-right: 22px;
        font-size: 14px;
        &:before {
            width: 10px;
            height: 12px;
        }
    }
  }
  @media (max-width: 498px) { 
    padding: 40px 0px 36px;
    gap: 10px;
    & span {
      font-size: 12px;
      padding-right: 20px;
    }
  }
}
.page-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 100px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: radial-gradient(59.11% 100% at 59.11% 100%, #292a2c 0%, #0c0c0c 100%);
    .page-banner__desc {
        font-weight: 700;
        font-size: 24px;
        line-height: 120%;
        letter-spacing: -0.04em;
        text-align: center;
        color: var(--color-foreground);
        max-width: 692px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 1440px) { 
        .page-banner__desc {
            font-size: 20px;
        }
    }
    @media (max-width: 996px) { 
        padding-bottom: 80px;
        .page-banner__desc {
            font-size: 18px;
        }
    }
    @media (max-width: 498px) { 
        padding-bottom: 60px;
        .page-banner__desc {
            font-size: 14px;
        }
    }
}
h1.page-title {
    font-weight: 700;
    font-size: 96px;
    line-height: 100%;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-foreground);
    margin-top: unset;
    margin-bottom: 56px;
    @media (max-width: 1440px) { 
        font-size: 80px;
        margin-bottom: 44px;
    }
    @media (max-width: 996px) { 
        font-size: 60px;
        margin-bottom: 32px;
    }
    @media (max-width: 768px) { 
        font-size: 45px;
    }
    @media (max-width: 498px) { 
		font-size: 38px;
        margin-bottom: 24px;
    }
	@media (max-width: 420px) { 
		font-size: 34px;
    }
	@media (max-width: 370px) { 
		font-size: 28px;
    }
}
h2.main-title {
    font-size: 42px;
    color: white;
    margin-top: unset;
    &.big-title {
        font-weight: 700;
        font-size: 80px;
        line-height: 100%;
        letter-spacing: -0.04em;
        text-transform: uppercase;
        text-align: center;
        color: var(--white);
        margin-bottom: 80px;
    }
    @media (max-width: 1440px) { 
        &.big-title {
            font-size: 60px;
            margin-bottom: 60px;
        }
    }
    @media (max-width: 996px) { 
        &.big-title {
            font-size: 48px;
            margin-bottom: 40px;
        }
    }
    @media (max-width: 600px) { 
        font-size: 35px;
        &.big-title {
            font-size: 40px;
            margin-bottom: 30px;
        }
    }
}
.search-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    .search-item {
        display: flex;
        gap: 10px;
        align-items: center;
        font-size: 24px;
        font-weight: 600;
        width: fit-content;
        padding-bottom: 5px;
        border-bottom: 1px solid gray;
        & svg {
        width: fit-content;
        min-width: fit-content;
        }
    }
    @media (max-width: 600px) { 
        gap: 10px;
        .search-item {
        font-size: 18px;
        }
    }
}
.block-container {
    padding: 40px 0px;
    @media (max-width: 1440px) { 
        padding: 30px 0px;
    }
}
.single-padding {
    padding-top: 20px;
    @media (max-width: 600px) { 
        padding-top: unset;
    }
}
.single-container {
    max-width: 1214px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    padding: 0px 20px;
    @media (max-width: 1440px) { 
        max-width: 946px;
    }
    @media (max-width: 1200px) { 
        max-width: 786px;
    }
}
.block-label {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #6c7074;
    margin-bottom: 30px;
    @media (max-width: 1440px) { 
        margin-bottom: 20px;
    }
}
.text-holder {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: -0.02em;
    color: var(--color-foreground);
    & p {
        display: flex;
        flex-direction: column;
        margin: unset;
        & strong {
            font-weight: 500;
            font-size: 22px;
            letter-spacing: -0.02em;
            color: var(--color-foreground);
        }
        &:has(strong) {
            gap: unset;
        }
        &:has(+ ol),
        &:has(+ ul) {
            margin: 10px 0px;
        }
    }
    & p,
    & li {
        font-weight: 400;
        font-size: 20px;
        letter-spacing: -0.02em;
        color: var(--color-foreground);
    }
    & br {
        display: none;
    }
    & ol,
    & ul {
        display: flex;
        flex-direction: column;
        padding-left: unset;
        margin: 10px 0px;
    }
    & li {
        gap: 15px;
        & strong {
            font-size: 24px;
            font-size: 700;
        }
        &:has( strong) {
            display: flex;
            flex-direction: column;
            gap: 12px;
        } 
    }
    & ol {
        gap: 30px;
        counter-reset: list;
        & li {
            list-style-type: none;
            padding-left: 50px;
            position: relative;
            counter-increment: list;
            &:before {
                content: counter(list);
                border: 1px solid rgba(255, 255, 255, 0.16);
                width: 35px;
                height: 35px;
                border-radius: 6px;
                display: flex;
                align-items: center;
                justify-content: center;
                top: -8px;
                left: 0px;
                position: absolute;
                font-weight: 500;
                font-size: 16px;
                letter-spacing: -0.02em;
                color: var(--color-foreground);
            }
        }
    }
    & ul {
        gap: 15px;
        & li {
            padding-left: 30px;
            position: relative;
            list-style-type: none;
            &:before {
                content: "";
                width: 12px;
                height: 12px;
                top: 50%;
                transform: translateY(-50%);
                left: 2px;
                position: absolute;
                background-image: url(../images/star.png);
                background-position: center;
                background-repeat: no-repeat;
                background-size: contain;
            }
            &:has(strong) {
                &:before {
                    top: 14px;
                }
            }
        }
    }
    & h2 {
        font-weight: 700;
        font-size: 42px;
        letter-spacing: -0.02em;
        color: var(--color-foreground);
        margin-top: 20px;
        margin-bottom: 10px;
        &:first-child { margin-top: unset }
    }
    & h3 {
        font-weight: 700;
        font-size: 36px;
        letter-spacing: -0.02em;
        color: var(--color-foreground);
        margin-top: 20px;
        margin-bottom: 10px;
        &:first-child { margin-top: unset }
    }
    & h4 {
        font-weight: 600;
        font-size: 28px;
        letter-spacing: -0.02em;
        color: var(--color-foreground);
        margin-top: 10px;
        margin-bottom: 5px;
        &:first-child { margin-top: unset }
    }
    & h5 {
        font-weight: 600;
        font-size: 24px;
        letter-spacing: -0.02em;
        color: var(--color-foreground);
        margin-top: 10px;
        margin-bottom: 5px;
        &:first-child { margin-top: unset }
    }
    blockquote {
        margin-top: 25px;
        padding: 30px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        border-left: 1px solid #292a2c;
        border-right: 1px solid #292a2c;
        font-weight: 500;
        font-size: 22px;
        letter-spacing: -0.02em;
        color: var(--color-foreground);
        font-style: normal;
        margin-bottom: unset;
        &>*,
        & p {
            font-style: normal;
            font-weight: 500;
            font-size: 22px;
            letter-spacing: -0.02em;
            color: var(--color-foreground);
        }
        & p em {
            font-style: normal;
            font-weight: 500;
            font-size: 12px;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: var(--color-muted-foreground);
            opacity: 0.4;
        }
    }
    @media (max-width: 1440px) { 
        & p,
        & li {
            font-size: 16px;
        }
        & li {
            &:has( strong) { 
                gap: 6px;
            }
            & strong {
                font-size: 20px;
            }
        }
        & ul li {
            padding-left: 25px;
        }
        & p {
            & strong {
                font-size: 18px;
            }
            &:has(+ ol), &:has(+ ul) {
                margin: 5px 0px;
            }
        }
        & h3 {
            font-size: 30px;
        }
        & h4 {
            font-size: 24px;
        }
        blockquote {
            margin-top: 20px;
            padding: 25px;
            font-size: 18px;
            &>*,
            & p {
                font-size: 18px;
            }
        }
        & p strong {
            font-size: 18px;
        }
    }

    @media (max-width: 996px) { 
        font-size: 14px;
        & p,
        & li {
            font-size: 14px;
        }
        & ul li {
            padding-left: 22px;
            &:before {
                width: 9px;
                height: 9px;
            }
            &:has(strong) {
                &:before {
                    top: 9px;
                }
            }
        }
        & p {
            & strong {
                font-size: 14;
            }
            &:has(+ ol), &:has(+ ul) {
                margin: 5px 0px;
            }
        }
        & h2 {
            font-size: 36px;
            margin-top: 10px;
        }
        & h3 {
            font-size: 24px;
            margin-bottom: unset;
        }
        & h4 {
            font-size: 20px;
            margin-bottom: unset;
        }
        & h5 {
            font-size: 18px;
            margin-bottom: unset;
        }
        & ol {
            gap: 8px;
            & li {
                padding-left: 38px;
                &:before {
                    width: 26px;
                    height: 26px;
                    font-size: 14px;
                    top: -3px;
                }
            }
        }
        & ul {
            & li {
                padding-left: 24px;
                &:before {
                    left: 0px;
                }
            }
        }
        & p strong {
            font-size: 16px;
        }
        blockquote {
            margin-top: 10px;
            padding: 22px;
            font-size: 16px;
            &>*,
            & p {
                font-size: 16px;
            }
            & p em {
                font-size: 10px;
            }
        }
        & li {
            &:has( strong) { 
                gap: 6px;
            }
            strong {
                font-size: 16px;
            }
        }
    }
    @media (max-width: 498px) { 
        & ol,
        & ul {
            margin: 0px 0px 10px;
        }
        & ol {
            gap: 15px;
            & li {
                padding-left: 32px;
                &:before {
                    width: 24px;
                    height: 24px;
                    font-size: 14px;
                    top: -3px;
                }
            }
        }
        & ul li {
            padding-left: 22px;
        }
    }
}
.more-btn {
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 263px;
    min-width: unset;
    cursor: pointer;
    .btn__text {
        font-size: 18px;
    }
    .btn__icon-wrapper img {
        transition: 0.3s;
        transform: rotate(90deg);
    }
    &:hover .btn__icon-wrapper img{
        transform: rotate(0deg);
    }
    @media (max-width: 1200px) { 
        margin-top: 30px;
    }
}
/********* COMMON END *********/


/********* ARCHIVE_GLOSSARY START *********/
.glossary-content {
  .container {
    position: relative;
    padding-top: 200px;
  }
  &:has(.fixed) {
    position: relative;
    .container {
      position: unset;
    }
  }
  @media (max-width: 1440px) { 
    .container {
        padding-top: 160px;
    }
  }
  @media (max-width: 600px) { 
    .container {
        padding-top: 95px;
    }
  }
}
.glossary-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 98;
    .glossary-tabs__overflow {
        display: flex;
        gap: 15px;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    .tab-item {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        font-weight: 800;
        font-size: 18px;
        letter-spacing: -0.02em;
        text-transform: uppercase;
        color: var(--color-muted-foreground);
        cursor: pointer;
        transition: 0.3s;
        &.empty {
            opacity: 0.3;
            pointer-events: none;
        }
        &.active,
        &:hover {
            background: var(--white);
            color: var(--zinc-950);
        } 
    }
    &.fixed {
        position: fixed;
        width: 100%;
        top: 60px;
        background: rgba(9, 9, 11, 0.8);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 40px 5px;
    }
    @media (max-width: 1440px) { 
        padding: 60px 5px;
        gap: 5px 10px;
    }
    @media (max-width: 1200px) { 
        .glossary-tabs__overflow {
            gap: 10px;
        }
        .tab-item {
            width: 35px;
            height: 35px;
            font-size: 14px;
        }
    }
    @media (max-width: 996px) { 
        padding: 40px 5px;
        &.fixed {
            padding: 20px 5px;
        }
    }
    @media (max-width: 600px) { 
        overflow-x: auto;
        align-items: unset;
        justify-content: unset;
        padding: 30px 0px 5px 20px;
        .glossary-tabs__overflow {
            min-width: fit-content;
            flex-wrap: unset;
        }
    }
}
.glossary-info {
    display: flex;
    align-items: center;
    gap: 10px 26px;
    .counter {
        font-weight: 500;
        font-size: 16px;
        letter-spacing: -0.02em;
        text-transform: uppercase;
        color: var(--color-muted-foreground);
        opacity: 0.3;
        position: relative;
        &:first-child:before {
            content: "";
            width: 6px;
            height: 6px;
            border-radius: 100%;
            position: absolute;
            top: 50%;
            right: -17px;
            transform: translateY(-50%);
            background: var(--slate-300);
        }
    }
    @media (max-width: 1440px) { 
        .counter {
            font-size: 14px;
        }
    }
    @media (max-width: 996px) { 
        .counter {
            font-size: 12px;
        }
    }
}
.glossary-cats {
    display: flex;
    flex-direction: column;
    padding: 60px 0px 80px;
    gap: 60px;
    @media (max-width: 1440px) { 
        padding: 40px 0px 120px;
        gap: 40px;
    }
    @media (max-width: 996px) { 
        padding-top: 30px;
        gap: 30px;
    }
    @media (max-width: 600px) { 
        gap: 15px;
    }
    @media (max-width: 498px) { 
        padding-top: 20px;
    }
}
.glossary-cat {
    display: flex;
    flex-direction: column;
    .glossary-cat__top {
        display: flex;
        align-items: center;
        gap: 40px;
        justify-content: space-between;
    }
    .glossary-cat__name {
        font-weight: 700;
        font-size: 60px;
        line-height: 100%;
        letter-spacing: -0.04em;
        text-transform: uppercase;
        color: var(--color-foreground);
        min-width: fit-content;
    }
    .line {
        border-bottom: 1px solid var(--zinc-800);
        height: 1px;
        flex-grow: 1;
    }
    .glossary-cat__count {
        font-weight: 500;
        font-size: 16px;
        letter-spacing: -0.02em;
        text-transform: uppercase;
        text-align: right;
        color: var(--slate-300);
        opacity: 0.4;
    }
    @media (max-width: 1440px) { 
        .glossary-cat__name {
            font-size: 48px;
        }
        .glossary-cat__top {
        gap: 30px;
        }
        .glossary-cat__count {
            font-size: 14px;
        }
    }
    @media (max-width: 996px) { 
        .glossary-cat__name {
            font-size: 36px;
        }
    }
    @media (max-width: 498px) { 
        .glossary-cat__name {
            font-size: 30px;
        }
        .glossary-cat__count {
            font-size: 12px;
        }
        .glossary-cat__top {
            gap: 15px;
        }
    }
}
.glossary-cat__overflow {
    @media (max-width: 600px) { 
        overflow-x: auto;
        padding-bottom: 4px;
        margin-right: -20px;
    }
}
.glossary-cat__posts {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 40px;
    @media (max-width: 1440px) { 
        margin-top: 30px;
    }
    @media (max-width: 1200px) { 
        margin-top: 20px;
    }
    @media (max-width: 600px) { 
        display: flex;
        width: fit-content;
        min-width: fit-content;
        gap: 10px;
    }
    @media (max-width: 498px) { 
        margin-top: 15px;
    }
}
.glossary-post {
  display: flex;
  flex-direction: column;
  min-height: 240px;
  border-radius: 16px;
  border: 1px solid var(--zinc-800);
  padding: 30px 35px;
  cursor: pointer;
  transition: 0.3s;
  .glossary-post__title {
    font-weight: 700;
    font-size: 30px;
    letter-spacing: -0.02em;
    color: var(--color-foreground);
    margin-bottom: auto;
  }
  .glossary-post__desc {
    font-weight: 400;
    font-size: 20px;
    letter-spacing: -0.02em;
    color: var(--color-muted-foreground);
    margin-top: 10px;
  }
  &:hover {
    border-color: var(--white);
  }
  @media (max-width: 1440px) { 
    padding: 25px 30px;
    min-height: 180px;
    .glossary-post__title {
      font-size: 24px;
    }
    .glossary-post__desc {
      font-size: 16px;
    }
  }
  @media (max-width: 1200px) { 
    padding: 20px 25px;
    min-height: 174px;
  }
  @media (max-width: 996px) { 
    padding: 15px;
    min-height: 129px;
    .glossary-post__title {
        font-size: 18px;
    }
    .glossary-post__desc {
      font-size: 12px;
    }
  }
  @media (max-width: 600px) { 
    min-width: 230px;
    max-width: 230px;
    width: fit-content;
    min-height: 130px;
  }
}
.finder {
  position: relative;
  width: 100%;
  max-width: 587px;
  margin-top: 56px;
  margin-left: auto;
  margin-right: auto;
  .search-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 350px;
    overflow-y: auto;
    background: var(--white);
    border-radius: 8px;
    padding: 20px 10px;
    transform: translateY(100%);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.3s;
    .search-element {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 5px;
      border-bottom: 1px solid var(--slate-300);
      color: var(--black);
      padding-bottom: 5px;
      transition: 0.3s;
      display: none;
      &:last-child {
        border-bottom: unset;
      }
      &.active {
        display: flex;
      }
      &:hover {
        color: #6c7074;
      }
    }
    &.active {
      opacity: 1;
      visibility: visible;
      pointer-events: all;
      &:last-child {
        border-bottom: unset;
      }
    }
    .undefined {
      display: none;
      font-size: 18px;
      font-weight: 600;
      color: var(--black);
    }
  }
  @media (max-width: 1440px) { 
    margin-top: 44px;
  }
  @media (max-width: 996px) { 
    margin-top: 32px;
  }
  @media (max-width: 600px) {
    margin-top: 24px;
    .search-list {
      gap: 7px; 
      .search-element {
        padding-bottom: 3px;
        font-size: 14px;
      }
      .undefined {
        font-size: 16px;
      }
    } 
  }
}
#searchform {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: transparent;
  padding: 8px 8px 8px 20px;
  & input {
    background: transparent;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.02em;
    text-align: center;
    color: var(--white);
    outline: none;
    text-align: left;
    border: unset;
    opacity: 0.5;
    &::placeholder {
      font-weight: 500;
      font-size: 18px;
      letter-spacing: -0.02em;
      color: var(--white);
    }
  }
  .submit-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--white);
    width: 48px;
    min-width: 48px;
    height: 48px;
    transition: 0.3s;
    cursor: pointer;
    margin-left: auto;
    position: relative;
    pointer-events: none;
    & svg {
      position: absolute;
      width: fit-content;
      height: fit-content;
      top: 50%;
      left: 50%;
      pointer-events: none;
      z-index: 2;
      transform: translate(-50%,-50%);
    }
    & input {
      width: 100%;
      height: 100%;
      cursor: pointer;
    }
  }
  @media (max-width: 1200px) { 
    & input {
        font-size: 16px;
        &::placeholder {
            font-size: 16px;
        }
    }
    .submit-wrapper {
      width: 44px;
      height: 44px;
      min-width: 44px;
    }
  }
  @media (max-width: 996px) { 
    padding: 4px 4px 4px 20px;
  }
}
/********* ARCHIVE_GLOSSARY END *********/



/********* SINGLE_GLOSSARY START *********/
.single-glossary {
    background: #09090b;
}
.single-banner {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 100px;
    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .single-short-desc {
        font-weight: 700;
        font-size: 24px;
        line-height: 120%;
        letter-spacing: -0.04em;
        text-align: center;
        color: var(--color-foreground);
    }
    .single-img {
        cursor: pointer;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        height: 550px;
        border-radius: 24px;
        overflow: hidden;
        background-size: cover;
        background-position: center bottom;
        margin-top: 80px;
        & img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: contain;
			object-position: bottom center;
        }
    }
    .banner-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-top: 20px;
        .banner-chars {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 26px;
            .banner-chars__item {
                font-weight: 500;
                font-size: 16px;
                letter-spacing: -0.02em;
                text-transform: uppercase;
                color: var(--color-muted-foreground);
                opacity: 0.4;
                position: relative;
                &:before {
                    content: "";
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                    right: -16px;
                    width: 6px;
                    height: 6px;
                    border-radius: 100%;
                    background: var(--color-muted-foreground);
                }
                &:last-child:before {
                    display: none;
                }
            }
        }
        .author-info {
            display: flex;
            gap: 10px;
            align-items: center;
            .author-photo {
                display: flex;
                width: 22px;
                height: 22px;
                border-radius: 100%;
                min-width: 22px;
                & img {
                    width: 100%;
                    height: 100%;
                    display: block;
                    object-fit: cover;
                    object-position: center;
                }
            }
            .author-info__name {
                font-weight: 500;
                font-size: 16px;
                letter-spacing: -0.02em;
                text-transform: uppercase;
                color: var(--color-muted-foreground);
                opacity: 0.4;
                & span {
                    font-weight: 500;
                    font-size: 16px;
                    letter-spacing: -0.02em;
                    text-transform: uppercase;
                    color: var(--color-muted-foreground);
                    text-decoration: underline;
                }
            }
        }
        .post-cats {
            display: flex;
            gap: 10px;
            align-items: center;
            .post-cats__item {
                font-weight: 500;
                font-size: 16px;
                letter-spacing: -0.02em;
                color: var(--color-foreground);
                padding: 10px 12px;
                border: 1px solid rgba(255, 255, 255, 0.16);
                border-radius: 8px;
            }
        }
    }
    @media (max-width: 1440px) { 
        .single-short-desc {
            font-size: 20px;
        }
        .single-img {
            height: 425px;
            margin-top: 60px;
        }
    }
    @media (max-width: 1200px) { 
        .banner-content {
            .banner-chars {
                gap: 22px;
                .banner-chars__item {
                    font-size: 14px;
                }
            }
            .post-cats {
                .post-cats__item {
                    font-size: 14px;
                    padding: 10px 12px;
                }
            }
            .author-info {
                .author-info__name {
                    font-size: 14px;
                    & span {
                        font-size: 14px;
                    }
                }
            }
        }
        .single-img {
            height: 350px;
        }
    }
    @media (max-width: 996px) { 
        .single-img {
            margin-top: 44px;
        }
    }
    @media (max-width: 768px) { 
        padding-bottom: 50px;
        .banner-content {
            .banner-chars {
                .banner-chars__item {
                    font-size: 12px;
                }
            }
            .post-cats {
                .post-cats__item {
                    font-size: 12px;
                    padding: 8px 10px;
                }
            }
            .author-info {
                .author-info__name {
                    font-size: 12px;
                    & span {
                        font-size: 12px;
                    }
                }
            }
        }
        .single-short-desc {
            font-size: 14px;
        }
        .single-img {
            margin-top: 40px;
            height: auto;
            min-height: 350px;
        }
    }
    @media (max-width: 498px) { 
        .single-img {
            min-height: 240px;
        }
        .banner-content {
            .banner-chars {
                .banner-chars__item {
                    font-size: 10px;
                }
            }
            .post-cats {
                .post-cats__item {
                    font-size: 10px;
                    padding: 6px 8px;
                }
            }
            .author-info {
                .author-info__name {
                    font-size: 10px;
                    & span {
                        font-size: 10px;
                    }
                }
            }
        }
    }
}
/********* SINGLE_GLOSSARY START *********/





/********* FAQ_SECOND BLOCK START *********/
.faq_second {
    display: flex;
    flex-direction: column;
    .faq__accordion {
        width: 100%;
        max-width: unset;
    }
    .faq__item {
        .faq__question {
            padding: 20px;
            font-size: 20px;
        }
        .faq__answer {
            padding: 50px 20px 20px 20px;
            max-width: 670px;
            &>*,
            & p,
            & p>*,
            & li,
            & li>* {
                font-weight: 400;
                font-size: 20px;
                letter-spacing: -0.02em;
                color: var(--black);
            }
        }
        .faq__question-icon-wrapper {
            background: #3f3f46;
            transform: rotate(90deg);
        }
        &.uk-open {
            .faq__question-icon-wrapper {
                transform: rotate(0deg);
            }
        }
    }
    @media (max-width: 1440px) { 
        .faq__item {
            .faq__question {
                padding: 10px;
                font-size: 16px;
            }
            .faq__answer {
                padding: 20px 10px 10px 10px;
                &>*,
                & p,
                & p>*,
                & li,
                & li>* { 
                    font-size: 12px;
                }
            }
        }
    }
}
/********* FAQ_SECOND BLOCK END *********/


/********* RELATED BLOCK START *********/
.related-block {
    background: radial-gradient(59.11% 100% at 59.11% 100%, #292a2c 0%, #0c0c0c 100%);
    padding: 180px 0px;
    margin-top: 140px;
    @media (max-width: 1440px) { 
        padding: 120px 0px;
        margin-top: 90px;
    }
    @media (max-width: 1200px) { 
        padding: 100px 0px;
        margin-top: 70px;
    }
    @media (max-width: 768px) { 
        margin-top: 20px;
        padding: 50px 0px;
    }
}
.relateds {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    @media (max-width: 600px) { 
        min-width: fit-content;
        width: fit-content;
        gap: 10px;
    }
}
.journal-relateds {
  width: 100%;
    .relateds {
        display: grid !important;
        grid-template-columns: repeat(4,1fr);
    }
    @media (max-width: 996px) { 
        .overflow {
            overflow-x: auto;
        }
        .relateds {
            min-width: fit-content;
            width: fit-content;
        }
        .journal-item__wrapper {
            min-width: 350px;
        }
    }
    @media (max-width: 498px) {
        margin-right: -20px; 
        .relateds {
            gap: 10px;
        }
    }
}
/********* RELATED BLOCK END *********/



/********* FORM BLOCK END *********/
.form-block__wrapper {
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    min-height: 344px;
    background: linear-gradient(180deg, #fff 0%, #c6cbd7 100%);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    position: relative;
    .form-img {
        width: 50%;
        height: auto;
        display: flex;
        max-height: 90%;
        position: absolute;
        right: 0;
        bottom: -1px;
        & img {
            width: auto;
            height: auto;
            display: block;
            object-fit: contain;
            object-position: bottom;
            max-width: 100%;
            max-height: 100%;
        }
    }
    @media (max-width: 1440px) { 
        min-height: unset;
        .form-img {
            width: 60%;
            height: auto;
            right: -100px;
        }
    }
    @media (max-width: 1200px) { 
        .form-img {
            width: 70%;
            height: auto;
            right: -130px;
        }
    }
    @media (max-width: 996px) { 
        min-height: unset;
        background: linear-gradient(180deg, #fff 0%, #c6cbd7 100%);
    }
    @media (max-width: 600px) { 
        flex-direction: column;
        .form-img {
            width: 100%;
            margin-bottom: -1px;
            position: static;
        }
    }
}
.form-content {
    display: flex;
    flex-direction: column;
    max-width: 550px;
    padding: 30px 35px;
    .form-content__title {
        font-weight: 700;
        font-size: 48px;
        line-height: 100%;
        letter-spacing: -0.02em;
        text-transform: uppercase;
        color: var(--black);
        margin-bottom: 60px;
        &:has(+.form-info) {
            margin-bottom: 20px;
        }
    }
    .form-info {
        display: flex;
        flex-direction: column;
        gap: 60px;
        .form-info__desc {
            font-weight: 700;
            font-size: 18px;
            line-height: 100%;
            letter-spacing: -0.04em;
            color: var(--color-background);
            opacity: 0.5;
        }
        .btn {
            filter: invert(1);
            width: fit-content;
            min-width: 300px;
            .btn__text {
                font-size: 18px;
            }
        }
    }
    .footer__form-field {
        background: transparent;
    }
    .footer__input {
        background: var(--white);
        color: var(--black);
        &::placeholder {
            opacity: 0.5;
            color: var(--black);
        }
    }
    .footer__submit {
        background: var(--zinc-950);
        color: var(--white);
        & svg {
            filter: brightness(0) invert(1);
            width: 22px;
            height: 22px;
        }
    }
    .footer__consent-text {
        color: var(--black);
    }
    .footer__consent-link {
        color: var(--black);
        text-decoration: underline;
    }
    .footer__checkbox-box {
        background: var(--white);
        border-radius: 2px;
    }
    @media (max-width: 1440px) { 
        min-height: unset;
        padding: 25px 10px 25px 30px;
        max-width: 520px;
        .form-content__title {
            font-size: 36px;
            margin-bottom: 50px;
        }
        .form-info {
            gap: 50px;
        }
    }
    @media (max-width: 1200px) { 
        max-width: 430px;
        .form-info {
            .btn {
                padding: 5px 5px 5px 15px;
                min-width: 220px;
                .btn__text {
                    font-size: 12px;
                }
                .btn__icon-wrapper {
                    width: 45px;
                    height: 45px;
                    min-width: 45px;
                    padding: unset;
                    & img {
                        object-fit: contain;
                        width: 20px;
                        height: 18px;
                    }
                }
            }
        }
        .form-content__title {
            &:has(+.form-info) {
                margin-bottom: 15px;
            }
        }
    }
    @media (max-width: 996px) { 
        padding: 20px 10px 20px 25px;
        .form-info {
            gap: 40px;
        }
    }
    @media (max-width: 600px) { 
        max-width: unset;
        width: 100%;
        padding: 15px;
        .form-content__title {
            font-size: 32px;
            margin-bottom: 30px;
        }
        .form-info {
            gap: 30px;
        }
    }
}
/********* FORM BLOCK END *********/


/********* TABLE BLOCK START *********/
.table-block {
    &:has(+ .text-block) .block-container {
        padding: 20px 0px 5px;
    }
    .main-title {
        font-weight: 700;
        font-size: 30px;
        letter-spacing: -0.02em;
        color: var(--color-foreground);
        margin-bottom: 20px;
    }
    @media (max-width: 1440px) { 
        &:has(+ .text-block) .block-container {
            padding: 15px 0px 0px;
        }
    }
    @media (max-width: 996px) { 
        .main-title {
            font-size: 28px;
        }
    }
}
.single-table-wrapper {
    overflow: auto;
    padding-bottom: 10px;
    @media (max-width: 498px) { 
        margin-right: -20px;
    }
}
.single-table {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    .string {
        display: flex;
        border-bottom: 1px solid var(--color-border);
        .string-el {
            width: 33.5%;
            flex-grow: 1;
            padding: 16px 24px;
            font-weight: 400;
            font-size: 20px;
            letter-spacing: -0.02em;
            color: var(--color-foreground);
            border-right: 1px solid var(--color-border);
            &:last-child {
                border-right: unset;
            }
        }
        &:first-child {
            .string-el {
                font-weight: 700;
                letter-spacing: -0.02em;
                color: var(--color-foreground);
                padding: 20px 24px;
                background: var(--color-card);
            }
        }
        &:last-child {
            border-bottom: unset;
        }
    }
    @media (max-width: 1440px) { 
        .string {
            .string-el {
                padding: 14px 20px;
                font-size: 16px;
            }
        }
    }
    @media (max-width: 996px) { 
        .string {
            .string-el {
                font-size: 14px;
                padding: 12px 18px;
            }
            &:first-child {
                .string-el {
                    padding: 14px 18px;
                    font-size: 14px;
                }
            }
        }
    }
    @media (max-width: 600px) { 
        min-width: 600px;
    }
}
/********* TABLE BLOCK END *********/


/********* TEXT BLOCK START *********/
.text-block {
    .img-wrapper {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 35px;
        .img-wrapper__img {
            background: var(--color-card);
            border-radius: 24px;
            padding: 53px 53px 0px 53px;
            display: flex;
            height: auto;
            & img {
                width: auto;
                height: auto;
                display: block;
                object-fit: contain;
                object-position: bottom center;
                max-width: 100%;
                max-height: 100%;
                border-radius: 16px 16px 0px 0px;
            }
        }
        .img-wrapper__mark {
            font-weight: 500;
            font-size: 16px;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: var(--color-muted-foreground);
            opacity: 0.4;
        }
    }
    &:has(+ .text-block) .block-container {
        padding-bottom: 0px;
    }
    &:has(+ .table-block) .block-container {
        padding-bottom: 5px;
    }
    @media (max-width: 1440px) { 
        .img-wrapper {
            margin-top: 30px;
            .img-wrapper__img {
                padding: 42px 45px 0px 45px;
            }
            .img-wrapper__mark {
                font-size: 14px;
            }
        }
    }
    @media (max-width: 1200px) { 
        .img-wrapper {
            .img-wrapper__img {
                padding: 40px 40px 0px 40px;
            }
        }
    }
    @media (max-width: 996px) { 
        .img-wrapper {
            gap: 12px;
            margin-top: 20px;
            .img-wrapper__mark {
                font-size: 12px;
            }
        }
    }
    @media (max-width: 498px) { 
        .img-wrapper {
            .img-wrapper__img {
                padding: 17px 19px 0px 19px;
                overflow: auto;
                & img {
                    min-width: 450px;
                }
            }
            .img-wrapper__mark {
                font-size: 10px;
            }
        }
    }
}
/********* TEXT BLOCK END *********/


/********* ARCHIVE JOURNAL START *********/
.journal-archive-content {
    padding: 80px 0px 180px;
    .container {
        max-width: 1840px;
    }
    @media (max-width: 1440px) { 
        padding: 60px 0px 120px;
    }
    @media (max-width: 1200px) { 
        padding: 60px 0px 100px;
    }
    @media (max-width: 996px) { 
        padding: 40px 0px 100px;
    }
    @media (max-width: 498px) { 
        padding: 30px 0px 50px;
    }
}
.journals {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  @media (max-width: 996px) { 
    grid-template-columns: repeat(3,1fr);
  }
  @media (max-width: 768px) { 
    display: flex;
    flex-direction: column;
  }
}
.journal-item__wrapper {
    position: relative;
    display: flex;
    .journal-item {
        display: flex;
        flex-direction: column;
        padding: 15px;
        border: 1px solid var(--color-border);
        border-radius: 16px;
        position: relative;
        height: auto;
        flex-grow: 1;
    }
    .journal-item__top {
        display: flex;
        flex-direction: column;
        height: 185px;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
        background-size: cover;
        background-position: center;
        .journal-item__cat {
            padding: 8px 10px;
            font-weight: 500;
            font-size: 14px;
            letter-spacing: -0.02em;
            color: var(--color-foreground);
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 8px;
            position: absolute;
            z-index: 98;
            top: 15px;
            left: 15px;
        }
        .journal-img {
            display: flex;
            justify-content: flex-end;
            height: 100%;
            width: 100%;
            & img {
                width: 100%;
                height: 100%;
                display: block;
                object-fit: contain;
                object-position: bottom;
                max-width: 100%;
                max-height: 100%;
            }
        }
    }
    .journal-gallery {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 195px;
        height: 67%;
        display: flex;
        flex-direction: column;
        z-index: 97;
        transform-style: preserve-3d;
        transition: 0.5s;
        .gallery-img {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: flex-end;
            justify-content: flex-end;
            transition: 0.3s;
            & img {
                width: auto;
                height: auto;
                display: block;
                object-fit: contain;
                object-position: right bottom;
                max-width: 100%;
                max-height: 100%;
            }
            &:nth-child(2) {
                opacity: 0;
                transform: rotateY(180deg);
            }
        }
        &.clicked {
            transform: rotateY(180deg);
            .gallery-img {
                &:nth-child(1) {
                    opacity: 0;
                }
                &:nth-child(2) {
                    opacity: 1;
                }
            }
        }
    }
    .journal-btns {
        display: flex;
        align-items: center;
        gap: 4px;
        border-radius: 8px;
        padding: 4px;
        backdrop-filter: blur(91.80000305175781px);
        background: rgba(255, 255, 255, 0.1);
        width: fit-content;
        position: absolute;
        top: 150px;
        left: 24px;
        z-index: 98;
        .journal-btn {
            padding: 8px 10px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 9px;
            line-height: 100%;
            letter-spacing: -0.04em;
            text-transform: uppercase;
            color: var(--color-foreground);
            transition: 0.3s;
            cursor: pointer;
            &.active,
            &:hover {
                color: var(--black);
                background: var(--white);
            }
        }
    }
    .journal-item__info {
        display: flex;
        flex-direction: column;
        padding: 20px 15px 15px 15px;
        flex-grow: 1;
        height: auto;
    }
    .journal-item__name {
        font-weight: 700;
        font-size: 18px;
        letter-spacing: -0.02em;
        color: var(--color-foreground);
        margin-bottom: 8px;
    }
    .journal-item__desc {
        font-weight: 400;
        font-size: 14px;
        letter-spacing: -0.02em;
        color: var(--color-foreground);
        opacity: 0.8;
        margin-bottom: auto;
    }
    .journal-item__chars {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 24px;
        margin-top: 30px;
        .journal-char {
            position: relative;
            font-weight: 500;
            font-size: 12px;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: var(--color-muted-foreground);
            opacity: 0.4;
            &:before {
                content: "";
                width: 4px;
                height: 4px;
                top: 50%;
                right: -14px;
                transform: translateY(-50%);
                position: absolute;
                background: var(--color-muted-foreground);
                border-radius: 100%;
            }
            &:last-child:before {
                display: none;
            }
        }
    }
    &.archive-item {
        &:first-child {
            grid-column: 1 / span 2;
            grid-row: 1 / span 2;
        }
        &:nth-child(14) {
            grid-column: 3 / span 2;
            grid-row: 4 / span 2;
        }
        &:first-child,
        &:nth-child(14) {
            .journal-item__top {
                height: 493px;
            }
            .journal-item__name {
                margin-bottom: 15px;
                font-size: 30px;
            }
            .journal-item__desc {
                font-size: 20px;
            }
            .journal-item__chars {
                margin-top: 80px;
                .journal-char {
                    font-size: 14px;
    
                }
            }
            .journal-item__top .journal-item__cat {
                font-size: 16px;
                padding: 10px 12px;
                top: 25px;
                left: 25px;
            }
            .journal-item__info {
                padding: 30px 25px 25px 25px;
            }
        }
    }
    &.hidden {
        display: none;
    }
    @media (max-width: 1440px) {
        .journal-item__top {
            height: 160px;
        }
        .journal-item__name {
            font-size: 16px;
        }
        .journal-item__desc {
            font-size: 12px;
        }
        &.archive-item {
            &:first-child,
            &:nth-child(14) {
                .journal-item__top {
                    height: 475px;
                }
                .journal-item__name {
                    font-size: 24px;
                }
                .journal-item__desc {
                    font-size: 18px;
                }
            }
        }
        .journal-btns {
            top: 125px;
        }
    }
    @media (max-width: 1200px) { 
        .journal-item__top .journal-item__cat {
            top: 20px;
            left: 20px;
        }
        .journal-item {
            padding: 10px;
        }
        .journal-item__info {
            padding: 15px 10px 10px 10px;
        }
        .journal-item__name {
            margin-bottom: 6px;
        }
        .journal-item__chars {
            gap: 20px;
            margin-top: 20px;
            .journal-char {
                font-size: 10px;
                &:before {
                    right: -12px;
                }
            }
        }
        .journal-item__top {
            .journal-item__cat {
                font-size: 12px;
                top: 10px;
                left: 10px;
            }
        }
        &.archive-item {
            &:first-child,
            &:nth-child(14) {
                .journal-item__name {
                    font-size: 20px;
                    margin-bottom: 10px;
                }
                .journal-item__desc {
                    font-size: 16px;
                }
                .journal-item__chars {
                    margin-top: 60px;
                }
                .journal-item__info {
                    padding: 20px;
                }
            }
        }
    }
    @media (max-width: 996px) { 
        .journal-item__top {
            height: 145px;
        }
        .journal-btns {
            top: 110px;
        }
        &.archive-item {
            &:first-child,
            &:nth-child(9) {
                .journal-item__top {
                    height: 445px;
                }
            }
            &:nth-child(14) {
                .journal-item__top {
                    height: 145px;
                }
            }
            &:first-child {
                grid-column: 1 / span 2;
                grid-row: 1 / span 2;
            }
            &:nth-child(9) {
                grid-column: 2 / span 2;
                grid-row: 4 / span 2;
                .journal-item__name {
                    font-size: 20px;
                    margin-bottom: 10px;
                }
                .journal-item__desc {
                    font-size: 16px;
                }
                .journal-item__chars {
                    margin-top: 60px;
                }
                .journal-item__info {
                    padding: 20px;
                }
                .journal-item__chars {
                    gap: 26px;
                    margin-top: 40px;
                    .journal-char {
                        font-size: 12px;
                        &:before {
                            right: -16px;
                        }
                    }
                }
            }
            &:nth-child(14) {
                grid-column: unset;
                grid-row: unset;
                .journal-item {
                    padding: 10px;
                }
                .journal-item__name {
                    font-size: 16px;
                    margin-bottom: 6px;
                }
                .journal-item__desc {
                    font-size: 12px;
                }
                .journal-item__chars {
                    margin-top: 60px;
                }
                .journal-item__info {
                    padding: 15px 10px 10px 10px;
                }
                .journal-item__chars {
                    gap: 20px;
                    margin-top: 20px;
                    .journal-char {
                        font-size: 10px;
                        &:before {
                            right: -12px;
                        }
                    }
                }
                .journal-item__top .journal-item__cat {
                    font-size: 12px;
                    padding: 8px 10px;
                    top: 10px;
                    left: 10px;
                }
            }
        }
    }
    @media (max-width: 498px) { 
        .journal-item__top .journal-item__cat {
            font-size: 12px;
            padding: 6px 8px;
            top: 10px;
            left: 10px;
        }
        .journal-item__info {
            padding: 15px 10px 10px 10px;
        }
        .journal-item__desc {
            font-size: 12px;
        }
        .journal-item__chars {
            margin-top: 20px;
        }
        &.archive-item {
            &:first-child,
            &:nth-child(9) {
                .journal-item__top {
                    height: 290px;
                    .journal-item__cat {
                        font-size: 14px;
                        padding: 8px 10px;
                        top: 10px;
                        left: 10px;
                    }
                }
                .journal-item__info {
                    padding: 15px 10px 10px 10px;
                }
                .journal-item__name {
                    font-size: 18px;
                }
                .journal-item__desc {
                    font-size: 14px;
                }
                .journal-item__chars {
                    margin-top: 20px;
                    gap: 26px;
                    .journal-char {
                        font-size: 12px;
                        &:before {
                            right: -16px;
                        }
                    }
                }
            }
        }
    }
}

.journal-filter {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    .finder {
        margin-top: unset;
        margin-left: unset;
        margin-right: unset;
    }
    @media (max-width: 1200px) { 
        margin-bottom: 30px;
    }
    @media (max-width: 996px) { 
        flex-direction: column;
        .terms-wrapper {
            margin-right: -20px;
            order: 2;
            overflow-x: auto;
            padding-bottom: 5px;
        }
    }
}
.journal-archive-content .journal-filter .finder {
    width: 43%;
    @media (max-width: 1440px) { 
      width: 35%;
    }
    @media (max-width: 996px) { 
        width: 100%;
        max-width: unset;
    }
}
.journal-terms {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    .term-btn {
        font-weight: 500;
        font-size: 18px;
        line-height: 100%;
        letter-spacing: -0.02em;
        color: var(--color-foreground);
        transition: 0.3s;
        cursor: pointer;
        opacity: 0.5;
        border-radius: 12px;
        padding: 22px 28px;
        border: 1px solid var(--color-border);
        &.active {
            color: #0c0c0c;
            background: var(--white);
            border-color: var(--white);
            opacity: 1;
        }
        &:hover {
          opacity: 0.7;
        }
    }
    @media (max-width: 1200px) { 
        .term-btn {
            font-size: 16px;
            padding: 20px 23px;
        }
    }
    @media (max-width: 996px) { 
        width: fit-content;
        flex-wrap: unset;
        max-width: fit-content;
        .term-btn {
            min-width: fit-content;
        }
    }
    @media (max-width: 768px) { 
        .term-btn {
            padding: 17px 19px;
        }
    }
}
/********* ARCHIVE JOURNAL END *********/


/********* SINGLE JOURNAL START *********/
.single-journal {
    background: #09090b;
}
.journal-relateds {
    margin-top: 140px;
    padding: 180px 0px;
    background: radial-gradient(59.11% 100% at 59.11% 100%, #292a2c 0%, #0c0c0c 100%);
    .block-label {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        margin-bottom: 35px;
    }
    @media (max-width: 1440px) { 
        margin-top: 80px;
        padding: 130px 0px;
    }
    @media (max-width: 1200px) { 
        margin-top: 70px;
        padding: 100px 0px;
    }
    @media (max-width: 768px) {
        margin-top: 20px; 
        padding: 50px 0px;
    }
    @media (max-width: 498px) { 
        .block-label {
            margin-bottom: 15px;
        }
        h2.main-title.big-title {
            font-size: 35px;
        }
    }
}
/********* SINGLE JOURNAL END *********/





/********* MEDIA START *********/

@media (max-width: 1440.98px) {
  .playbook__text {
    max-width: 360px;
  }

  .playbook__compare {
    width: 600px;
  }

  .how-it-works__pin {
    padding: 80px 0;
  }

  .how-it-works__steps {
    max-width: 500px;
  }

  .plans__cards {
    gap: 10px;
  }

  .plans__card-visual {
    width: 110px;
  }

  .support__img {
    width: 600px;
    height: 600px;
  }

  .footer__cols {
    gap: 40px;
  }

  .footer__newsletter {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    gap: 16px;
  }

  .footer__bottom-left {
    width: 480px;
  }

  .footer__legal {
    max-height: 260px;
  }
}

@media (max-width: 1120.98px) {
  .playbook {
    padding: 60px 0;
  }

  .playbook__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .playbook__compare {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }

  .how-it-works__pin {
    padding: 50px 0;
  }

  .how-it-works {
    height: auto;
  }

  .how-it-works__pin {
    position: static;
    min-height: auto;
  }

  .how-it-works__layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    gap: 30px;
  }

  .how-it-works__steps {
    max-width: unset;
  }

  .how-it-works__accordion {
    padding: 0;
  }

  .how-it-works__item-num {
    display: none;
  }

  .card__switcher {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    gap: 40px;
  }

  .earn {
    padding: 50px 0;
  }

  .earn__layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }

  .plans {
    padding: 50px 0;
  }

  .plans__cards {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .plans__card {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 35%;
            flex: 1 1 35%;
  }

  .platinum__marquee {
    margin: 0;
    width: 100%;
  }

  .platinum__marquee-track {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }

  .platinum__marquee-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 0;
  }

  .platinum__marquee-group:not(:last-child) {
    display: none;
  }

  .platinum__feature {
    width: 100%;
    height: auto;
    aspect-ratio: 1.33;
    gap: 48px;
    padding: 20px;
  }

  .support {
    padding-bottom: 50px;
  }

  .support__layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 100%;
  }

  .support__subtitle {
    margin-top: 20px;
  }

  .support__desc {
    margin-top: 30px;
  }

  .support__img {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    gap: 16px;
  }

  .support__img {
    width: 100%;
    aspect-ratio: 1;
    height: auto;
  }

  .security {
    padding: 50px 0;
  }

  .security__container {
    gap: 40px;
  }

  .security__layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .security__head {
    gap: 16px;
  }

  .security__text {
    padding-top: 0;
  }

  .security__logo {
    width: 250px;
    height: 120px;
  }

  .security__logo-img {
    width: 140px;
    height: 80px;
  }

  .faq {
    padding: 50px 0;
  }

  .faq__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    gap: 32px;
  }

  .cta {
    padding: 50px 0;
  }

  .cta__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 80px;
  }

  .cta__head {
    gap: 20px;
  }

  .cta__img {
    width: 280px;
    -webkit-transform: translateX(10px) rotate(-9deg) scale(0.9);
        -ms-transform: translateX(10px) rotate(-9deg) scale(0.9);
            transform: translateX(10px) rotate(-9deg) scale(0.9);
  }

  .footer {
    padding: 40px 0;
  }

  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    .footer__top-left {
        .footer__logo {
            display: none;
        }
    }
    .footer__newsletter {
        order: 1;
    }
    .footer__top-left {
        order: 2;
    }
    .mobile-logo {
        display: flex;
    }
    .footer__cols {
        margin-top: 10px;
    }
  }
  

  .footer__newsletter {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    gap: 16px;
  }

  .footer__legal {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    max-height: none;
  }
}

@media (max-width: 730.98px) {
  .container {
    max-width: 770px;
    padding: 0 20px;
  }

  .hero__container {
    padding-bottom: 100px;
  }

  .hero__btn {
    min-width: 140px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }

  .hero__download {
    display: none;
  }

  .playbook__container {
    gap: 20px;
  }

  .playbook__intro {
    gap: 16px;
  }

  .playbook__title br {
    display: none;
  }

  .playbook__column-head {
    min-height: 52px;
  }

  .how-it-works__head {
    max-width: 100%;
    width: 100%;
    gap: 12px;
  }

  .how-it-works__note {
    margin-top: 8px;
    max-width: 100%;
  }

  .card {
    padding: 50px 0;
  }

  .card__container {
    gap: 30px;
  }

  .card__head {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    text-align: left;
  }

  .card__panel {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .card__tabs {
    margin: 0;
  }

  .card__tab-link {
    padding: 16px;
  }

  .card__row {
    margin: 0;
    padding: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    display: none;
  }

  .card__row_active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .card__bullet {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .card__bullet-text {
    text-align: left;
  }

  .card__visual {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .card__img {
    border-radius: 12px;
  }

  .earn__content {
    gap: 20px;
  }

  .earn__feature {
    gap: 16px;
  }

  .earn__feature-icon {
    width: 15px;
    height: 15px;
  }

  .earn__table {
    width: 100%;
    padding: 16px;
  }

  .earn__table-head {
    -ms-grid-columns: 1fr 80px;
    grid-template-columns: 1fr 80px;
    margin-top: 24px;
    margin-bottom: 10px;
  }

  .earn__table-col_ltv {
    display: none;
  }

  .earn__table-body {
    gap: 10px;
  }

  .earn__table-logo {
    width: 100px;
  }

  .earn__row {
    -ms-grid-columns: 1fr 80px;
    grid-template-columns: 1fr 80px;
  }

  .earn__row:not(:last-child) {
    padding-bottom: 10px;
  }

  .earn__row-ltv {
    display: none;
  }

  .plans__container {
    gap: 40px;
  }

  .plans__head {
    gap: 28px;
    text-align: left;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .plans__desc {
    max-width: 250px;
  }

  .plans__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .plans__card {
    padding: 20px;
  }

  .plans__card-visual {
    width: 120px;
  }

  .plans__rows {
    gap: 16px;
  }

  .plans__row:not(:first-child) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .plans__actions {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: 100%;
  }

  .plans__btn {
    min-width: 180px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }

  .platinum {
    padding: 50px 0;
  }

  .platinum__container {
    gap: 30px;
  }

  .platinum__hero-img {
    width: 190px;
  }

  .platinum__head {
    gap: 16px;
    text-align: left;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .platinum__subtitle {
    margin-top: 16px;
  }

  .platinum__feature-title {
    padding: 20px 24px;
  }

  .faq__head {
    gap: 16px;
  }

  .faq__question-icon-wrapper {
    width: 45px;
    height: 45px;
  }

  .faq__answer {
    padding-top: 20px;
  }

  .cta__actions {
    margin-top: 10px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .footer__cols {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    gap: 24px;
  }

  .footer__col {
    gap: 16px;
  }

  .footer__form-field {
    min-height: 50px;
  }

  .footer__social {
    margin-top: 32px;
  }

  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }

  .footer__bottom-left {
    width: 100%;
  }
}

@media (max-width: 730px) {
  .text_mobile-12 {
    font-size: 12px;
  }

  .text_mobile-14 {
    font-size: 14px;
  }

  .text_mobile-16 {
    font-size: 16px;
  }

  .text_mobile-18 {
    font-size: 18px;
  }

  .text_mobile-20 {
    font-size: 20px;
  }

  .text_mobile-22 {
    font-size: 22px;
  }

  .text_mobile-24 {
    font-size: 24px;
  }

  .text_mobile-28 {
    font-size: 28px;
  }

  .text_mobile-30 {
    font-size: 30px;
  }

  .text_mobile-32 {
    font-size: 32px;
  }

  .text_mobile-36 {
    font-size: 36px;
  }

  .text_mobile-40 {
    font-size: 40px;
  }

  .text_mobile-48 {
    font-size: 48px;
  }

  .text_mobile-56 {
    font-size: 56px;
  }

  .text_mobile-64 {
    font-size: 64px;
  }

  .text_mobile-72 {
    font-size: 72px;
  }

  .text_mobile-80 {
    font-size: 80px;
  }

  .text_mobile-90 {
    font-size: 90px;
  }

  .text_mobile-96 {
    font-size: 96px;
  }

  .text_mobile-100 {
    font-size: 100px;
  }

  .text_mobile-120 {
    font-size: 120px;
  }

  .text_mobile-130 {
    font-size: 130px;
  }

  .p_mobile-4 {
    padding: 4px;
  }

  .p_mobile-8 {
    padding: 8px;
  }

  .p_mobile-12 {
    padding: 12px;
  }

  .p_mobile-16 {
    padding: 16px;
  }

  .p_mobile-20 {
    padding: 20px;
  }

  .p_mobile-24 {
    padding: 24px;
  }

  .p_mobile-32 {
    padding: 32px;
  }

  .p_mobile-40 {
    padding: 40px;
  }

  .p_mobile-48 {
    padding: 48px;
  }

  .p_mobile-64 {
    padding: 64px;
  }

  .p_mobile-96 {
    padding: 96px;
  }

  .pt_mobile-4 {
    padding-top: 4px;
  }

  .pt_mobile-8 {
    padding-top: 8px;
  }

  .pt_mobile-12 {
    padding-top: 12px;
  }

  .pt_mobile-16 {
    padding-top: 16px;
  }

  .pt_mobile-20 {
    padding-top: 20px;
  }

  .pt_mobile-24 {
    padding-top: 24px;
  }

  .pt_mobile-32 {
    padding-top: 32px;
  }

  .pt_mobile-40 {
    padding-top: 40px;
  }

  .pt_mobile-48 {
    padding-top: 48px;
  }

  .pt_mobile-64 {
    padding-top: 64px;
  }

  .pt_mobile-96 {
    padding-top: 96px;
  }

  .pr_mobile-4 {
    padding-right: 4px;
  }

  .pr_mobile-8 {
    padding-right: 8px;
  }

  .pr_mobile-12 {
    padding-right: 12px;
  }

  .pr_mobile-16 {
    padding-right: 16px;
  }

  .pr_mobile-20 {
    padding-right: 20px;
  }

  .pr_mobile-24 {
    padding-right: 24px;
  }

  .pr_mobile-32 {
    padding-right: 32px;
  }

  .pr_mobile-40 {
    padding-right: 40px;
  }

  .pr_mobile-48 {
    padding-right: 48px;
  }

  .pr_mobile-64 {
    padding-right: 64px;
  }

  .pr_mobile-96 {
    padding-right: 96px;
  }

  .pb_mobile-4 {
    padding-bottom: 4px;
  }

  .pb_mobile-8 {
    padding-bottom: 8px;
  }

  .pb_mobile-12 {
    padding-bottom: 12px;
  }

  .pb_mobile-16 {
    padding-bottom: 16px;
  }

  .pb_mobile-20 {
    padding-bottom: 20px;
  }

  .pb_mobile-24 {
    padding-bottom: 24px;
  }

  .pb_mobile-32 {
    padding-bottom: 32px;
  }

  .pb_mobile-40 {
    padding-bottom: 40px;
  }

  .pb_mobile-48 {
    padding-bottom: 48px;
  }

  .pb_mobile-64 {
    padding-bottom: 64px;
  }

  .pb_mobile-96 {
    padding-bottom: 96px;
  }

  .pl_mobile-4 {
    padding-left: 4px;
  }

  .pl_mobile-8 {
    padding-left: 8px;
  }

  .pl_mobile-12 {
    padding-left: 12px;
  }

  .pl_mobile-16 {
    padding-left: 16px;
  }

  .pl_mobile-20 {
    padding-left: 20px;
  }

  .pl_mobile-24 {
    padding-left: 24px;
  }

  .pl_mobile-32 {
    padding-left: 32px;
  }

  .pl_mobile-40 {
    padding-left: 40px;
  }

  .pl_mobile-48 {
    padding-left: 48px;
  }

  .pl_mobile-64 {
    padding-left: 64px;
  }

  .pl_mobile-96 {
    padding-left: 96px;
  }

  .m_mobile-4 {
    margin: 4px;
  }

  .m_mobile-8 {
    margin: 8px;
  }

  .m_mobile-12 {
    margin: 12px;
  }

  .m_mobile-16 {
    margin: 16px;
  }

  .m_mobile-20 {
    margin: 20px;
  }

  .m_mobile-24 {
    margin: 24px;
  }

  .m_mobile-32 {
    margin: 32px;
  }

  .m_mobile-40 {
    margin: 40px;
  }

  .m_mobile-48 {
    margin: 48px;
  }

  .m_mobile-64 {
    margin: 64px;
  }

  .m_mobile-96 {
    margin: 96px;
  }

  .mt_mobile-4 {
    margin-top: 4px;
  }

  .mt_mobile-8 {
    margin-top: 8px;
  }

  .mt_mobile-12 {
    margin-top: 12px;
  }

  .mt_mobile-16 {
    margin-top: 16px;
  }

  .mt_mobile-20 {
    margin-top: 20px;
  }

  .mt_mobile-24 {
    margin-top: 24px;
  }

  .mt_mobile-32 {
    margin-top: 32px;
  }

  .mt_mobile-40 {
    margin-top: 40px;
  }

  .mt_mobile-48 {
    margin-top: 48px;
  }

  .mt_mobile-64 {
    margin-top: 64px;
  }

  .mt_mobile-96 {
    margin-top: 96px;
  }

  .mr_mobile-4 {
    margin-right: 4px;
  }

  .mr_mobile-8 {
    margin-right: 8px;
  }

  .mr_mobile-12 {
    margin-right: 12px;
  }

  .mr_mobile-16 {
    margin-right: 16px;
  }

  .mr_mobile-20 {
    margin-right: 20px;
  }

  .mr_mobile-24 {
    margin-right: 24px;
  }

  .mr_mobile-32 {
    margin-right: 32px;
  }

  .mr_mobile-40 {
    margin-right: 40px;
  }

  .mr_mobile-48 {
    margin-right: 48px;
  }

  .mr_mobile-64 {
    margin-right: 64px;
  }

  .mr_mobile-96 {
    margin-right: 96px;
  }

  .mb_mobile-4 {
    margin-bottom: 4px;
  }

  .mb_mobile-8 {
    margin-bottom: 8px;
  }

  .mb_mobile-12 {
    margin-bottom: 12px;
  }

  .mb_mobile-16 {
    margin-bottom: 16px;
  }

  .mb_mobile-20 {
    margin-bottom: 20px;
  }

  .mb_mobile-24 {
    margin-bottom: 24px;
  }

  .mb_mobile-32 {
    margin-bottom: 32px;
  }

  .mb_mobile-40 {
    margin-bottom: 40px;
  }

  .mb_mobile-48 {
    margin-bottom: 48px;
  }

  .mb_mobile-64 {
    margin-bottom: 64px;
  }

  .mb_mobile-96 {
    margin-bottom: 96px;
  }

  .ml_mobile-4 {
    margin-left: 4px;
  }

  .ml_mobile-8 {
    margin-left: 8px;
  }

  .ml_mobile-12 {
    margin-left: 12px;
  }

  .ml_mobile-16 {
    margin-left: 16px;
  }

  .ml_mobile-20 {
    margin-left: 20px;
  }

  .ml_mobile-24 {
    margin-left: 24px;
  }

  .ml_mobile-32 {
    margin-left: 32px;
  }

  .ml_mobile-40 {
    margin-left: 40px;
  }

  .ml_mobile-48 {
    margin-left: 48px;
  }

  .ml_mobile-64 {
    margin-left: 64px;
  }

  .ml_mobile-96 {
    margin-left: 96px;
  }
}
@media (max-width: 498px) { 
    
}
/********* MEDIA END *********/

@media (prefers-reduced-motion: reduce) {
  .security__marquee-track {
    -webkit-animation: none;
            animation: none;
  }
}

@media (any-hover: hover) {
  .footer__links a:hover {
    color: #ffffff;
    opacity: 1;
  }

  .footer__submit:hover {
    -webkit-box-shadow: inset 0 10px 30px rgba(12, 12, 12, 0.2);
            box-shadow: inset 0 10px 30px rgba(12, 12, 12, 0.2);
  }

  .footer__consent-link:hover {
    color: #ffffff;
    opacity: 1;
  }

  .footer__legal a:hover {
    color: #ffffff;
    opacity: 1;
  }
}