:root {
  --content-width: 96.75rem;
  --container-padding: 1.5rem;
  --container: calc(var(--content-width) + 2 * var(--container-padding));
  --base-font-size: 16px;
  --font-family-axiforma: "Axiforma", sans-serif;
  --font-family-avenir-next: "Avenir Next", sans-serif;
  --font-family-primary: var(--font-family-axiforma);
  --body-font-family: var(--font-family-axiforma);
  --body-font-size: 1rem;
  --body-font-weight: 500;
  --body-line-height: 1.625;
  --display-font-family: var(--font-family-avenir-next);
  --display-font-weight: 700;
  --display-line-height: 1.3;
  --border-radius-8: 0.5rem;
  --border-radius-10: 0.625rem;
  --border-radius-24: 1.5rem;
  --border-radius-36: 2.25rem;
  --border-radius-40: 2.5rem;
  --color-black: #000;
  --color-black-neverything: #13171c;
  --color-black-ebony-clay: #313439;
  --color-black-noble: #1e2227;
  --color-white: #fff;
  --color-white-500: #ffffff80;
  --color-white-700: #ffffffb3;
  --color-orange-flush: #ff6e00;
  --color-primary: var(--color-orange-flush);
  --transition-duration: 0.3s;
}

/* stylelint-disable scss/selector-no-redundant-nesting-selector */
/* stylelint-disable selector-no-vendor-prefix */
/* MEDIA QUERIES
------------------------- */
/* Font
------------------------- */
/* DISABLED MOB HOVER
------------------------- */
/* ADAPTIVE VALUE
------------------------- */
/*
// Mixin:
@include adaptive-value("Property", start value, min value, type of adapt);
// Example:
@include adaptive-value("padding", 50, 20, 0);
*/
/* Line Height
------------------------- */
/* Border Radius
------------------------- */
/* Opacity
------------------------- */
/* Aspect Ratio
------------------------- */
/* Text overflow
------------------------- */
/* Text Shorten
------------------------- */
/* Placeholders
------------------------- */
/* Scrollbars
------------------------- */
/* Triangle
------------------------- */
/* Fluid (Responsive) Font
------------------------- */
/* z-index
------------------------- */
.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-7 {
  margin-bottom: 1.75rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-9 {
  margin-bottom: 2.25rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mb-20 {
  margin-bottom: 5rem;
}

.mb-25 {
  margin-bottom: 25%;
}

.mb-50 {
  margin-bottom: 50%;
}

.mb-100 {
  margin-bottom: 100%;
}

.capitalize {
  text-transform: capitalize;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

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

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

/* ========== GRID ========== */
@media (max-width: 480px) {
  :root {
    --media-breakdown: 480 * 100vw;
  }
}
@media (min-width: 480px) {
  :root {
    --media-breakdown: 568 * 100vw;
  }
}
@media (min-width: 568px) {
  :root {
    --media-breakdown: 768 * 100vw;
  }
}
@media (min-width: 768px) {
  :root {
    --media-breakdown: 992 * 100vw;
  }
}
@media (min-width: 992px) {
  :root {
    --media-breakdown: 1200 * 100vw;
  }
}
@media (min-width: 1200px) {
  :root {
    --media-breakdown: 1580 * 100vw;
  }
}
@media (min-width: 1580px) {
  :root {
    --media-breakdown: 1920 * 100vw;
  }
}
.row {
  display: flex;
  flex-flow: row wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}

[class^=col-],
[class*=" col-"] {
  flex: 0 0 100%;
  max-width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
}

@media (min-width: 320px) {
  .col-2xs-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}

@media (min-width: 320px) {
  .col-2xs-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}

@media (min-width: 320px) {
  .col-2xs-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (min-width: 320px) {
  .col-2xs-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

@media (min-width: 320px) {
  .col-2xs-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
}

@media (min-width: 320px) {
  .col-2xs-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 320px) {
  .col-2xs-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
}

@media (min-width: 320px) {
  .col-2xs-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
}

@media (min-width: 320px) {
  .col-2xs-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
}

@media (min-width: 320px) {
  .col-2xs-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
}

@media (min-width: 320px) {
  .col-2xs-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
}

@media (min-width: 320px) {
  .col-2xs-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 480px) {
  .col-xs-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}

@media (min-width: 480px) {
  .col-xs-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}

@media (min-width: 480px) {
  .col-xs-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (min-width: 480px) {
  .col-xs-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

@media (min-width: 480px) {
  .col-xs-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
}

@media (min-width: 480px) {
  .col-xs-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 480px) {
  .col-xs-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
}

@media (min-width: 480px) {
  .col-xs-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
}

@media (min-width: 480px) {
  .col-xs-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
}

@media (min-width: 480px) {
  .col-xs-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
}

@media (min-width: 480px) {
  .col-xs-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
}

@media (min-width: 480px) {
  .col-xs-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}

@media (min-width: 768px) {
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}

@media (min-width: 768px) {
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (min-width: 768px) {
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

@media (min-width: 768px) {
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
}

@media (min-width: 768px) {
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
}

@media (min-width: 768px) {
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
}

@media (min-width: 768px) {
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
}

@media (min-width: 768px) {
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
}

@media (min-width: 768px) {
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
}

@media (min-width: 768px) {
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}

@media (min-width: 992px) {
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}

@media (min-width: 992px) {
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (min-width: 992px) {
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

@media (min-width: 992px) {
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
}

@media (min-width: 992px) {
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
}

@media (min-width: 992px) {
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
}

@media (min-width: 992px) {
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
}

@media (min-width: 992px) {
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
}

@media (min-width: 992px) {
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
}

@media (min-width: 992px) {
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 1280px) {
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}

@media (min-width: 1280px) {
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}

@media (min-width: 1280px) {
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (min-width: 1280px) {
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

@media (min-width: 1280px) {
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
}

@media (min-width: 1280px) {
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 1280px) {
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
}

@media (min-width: 1280px) {
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
}

@media (min-width: 1280px) {
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
}

@media (min-width: 1280px) {
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
}

@media (min-width: 1280px) {
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
}

@media (min-width: 1280px) {
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 1440px) {
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}

@media (min-width: 1440px) {
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}

@media (min-width: 1440px) {
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (min-width: 1440px) {
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

@media (min-width: 1440px) {
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
}

@media (min-width: 1440px) {
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 1440px) {
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
}

@media (min-width: 1440px) {
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
}

@media (min-width: 1440px) {
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
}

@media (min-width: 1440px) {
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
}

@media (min-width: 1440px) {
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
}

@media (min-width: 1440px) {
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 1560px) {
  .col-2xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}

@media (min-width: 1560px) {
  .col-2xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}

@media (min-width: 1560px) {
  .col-2xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (min-width: 1560px) {
  .col-2xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

@media (min-width: 1560px) {
  .col-2xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
}

@media (min-width: 1560px) {
  .col-2xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 1560px) {
  .col-2xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
}

@media (min-width: 1560px) {
  .col-2xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
}

@media (min-width: 1560px) {
  .col-2xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
}

@media (min-width: 1560px) {
  .col-2xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
}

@media (min-width: 1560px) {
  .col-2xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
}

@media (min-width: 1560px) {
  .col-2xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.flex {
  display: flex;
}

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

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-start {
  justify-content: flex-start;
}

.justify-between {
  justify-content: space-between;
}

html {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

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

main,
header,
footer {
  display: block;
}

hr {
  overflow: visible;
  height: 0;
}

ul {
  list-style: none;
}

a {
  display: inline-block;
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
}

b,
strong {
  font-weight: 700;
}

code,
kbd,
samp {
  font-family: monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
}

img {
  border-style: none;
  max-width: 100%;
  object-fit: cover;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

legend {
  display: table;
  max-width: 100%;
  white-space: normal;
  color: inherit;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

[hidden] {
  display: none;
}

@font-face {
  src: url("../fonts/AvenirNextCyr-Bold.woff") format("woff"), url("../fonts/AvenirNextCyr-Bold.woff2") format("woff2");
  font-family: "Avenir Next";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../fonts/AvenirNextCyr-BoldItalic.woff") format("woff"), url("../fonts/AvenirNextCyr-BoldItalic.woff2") format("woff2");
  font-family: "Avenir Next";
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  src: url("../fonts/AvenirNextCyr-Medium.woff") format("woff"), url("../fonts/AvenirNextCyr-Medium.woff2") format("woff2");
  font-family: "Avenir Next";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../fonts/AvenirNextCyr-MediumItalic.woff") format("woff"), url("../fonts/AvenirNextCyr-MediumItalic.woff2") format("woff2");
  font-family: "Avenir Next";
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  src: url("../fonts/Axiforma-Light.woff") format("woff"), url("../fonts/Axiforma-Light.woff2") format("woff2");
  font-family: "Axiforma";
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../fonts/Axiforma-LightItalic.woff") format("woff"), url("../fonts/Axiforma-LightItalic.woff2") format("woff2");
  font-family: "Axiforma";
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../fonts/Axiforma-Regular.woff") format("woff"), url("../fonts/Axiforma-Regular.woff2") format("woff2");
  font-family: "Axiforma";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../fonts/Axiforma-Italic.woff") format("woff"), url("../fonts/Axiforma-Italic.woff2") format("woff2");
  font-family: "Axiforma";
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  src: url("../fonts/Axiforma-Medium.woff") format("woff"), url("../fonts/Axiforma-Medium.woff2") format("woff2");
  font-family: "Axiforma";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../fonts/Axiforma-MediumItalic.woff") format("woff"), url("../fonts/Axiforma-MediumItalic.woff2") format("woff2");
  font-family: "Axiforma";
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  src: url("../fonts/Axiforma-SemiBold.woff") format("woff"), url("../fonts/Axiforma-SemiBold.woff2") format("woff2");
  font-family: "Axiforma";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../fonts/Axiforma-SemiBoldItalic.woff") format("woff"), url("../fonts/Axiforma-SemiBoldItalic.woff2") format("woff2");
  font-family: "Axiforma";
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  src: url("../fonts/Axiforma-Bold.woff") format("woff"), url("../fonts/Axiforma-Bold.woff2") format("woff2");
  font-family: "Axiforma";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../fonts/Axiforma-BoldItalic.woff") format("woff"), url("../fonts/Axiforma-BoldItalic.woff2") format("woff2");
  font-family: "Axiforma";
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
.btn {
  display: inline-flex;
  gap: 0.625rem;
  align-items: center;
  justify-content: center;
  vertical-align: top;
  overflow: hidden;
  outline: none;
  border: none;
  border-radius: var(--border-radius-8);
  min-height: 3.75rem;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(86deg, #ff9b01 9.73%, #ff7001 93.17%);
  background-size: 300% 100%;
  font-family: var(--display-font-family);
  font-size: 1.5rem;
  font-weight: var(--display-font-weight);
  line-height: var(--display-line-height);
  white-space: nowrap;
  text-align: center;
  color: var(--color-white);
  transition: background-position var(--transition-duration);
}
.btn:disabled, .btn._disabled {
  border-color: #c8c8c8;
  background-color: #c8c8c8;
  color: #000;
  cursor: default;
  pointer-events: none;
}
.btn--sm {
  min-height: 3.5rem;
  font-family: var(--body-font-family);
  font-size: 1.125rem;
  font-weight: 600;
}
.btn--sm span {
  padding-top: 0.125rem;
}
.btn--telegram {
  background: linear-gradient(270deg, #774cff 0%, #498fff 100%);
  background-size: 300% 100%;
  color: var(--color-white);
}
.btn:not(:disabled, ._disabled) {
  cursor: pointer;
}
@media (any-hover: hover) {
  .btn:not(:disabled, ._disabled):hover {
    background-position: 100% 0;
  }
}
.btn:not(:disabled, ._disabled):focus {
  background-position: 100% 0;
}
.btn:not(:disabled, ._disabled):active {
  background-position: 100% 0;
}

.store-btn {
  height: 4.125rem;
  transition: opacity var(--transition-duration);
}
@media (max-width: 991px) {
  .store-btn {
    height: 1.875rem;
  }
}
@media (any-hover: hover) {
  .store-btn:hover {
    opacity: 0.8;
  }
}
.store-btn img {
  display: block;
  width: auto;
  height: 100%;
  max-height: 100%;
}

.header {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  background-color: var(--color-black-noble);
  color: var(--color-white);
  transition: box-shadow var(--transition-duration), background-color var(--transition-duration), transform var(--transition-duration);
}
.header._hidden {
  box-shadow: none;
  transform: translateY(-100%);
}
.header__wrap {
  position: relative;
  z-index: 10;
  display: flex;
  gap: 0.625rem;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  padding: 1.1875rem 0;
}
@media (max-width: 991px) {
  .header__wrap {
    padding: 0.875rem 0;
  }
}
.header__logo {
  max-width: 15.5rem;
  transition: opacity var(--transition-duration);
}
@media (max-width: 991px) {
  .header__logo {
    max-width: 8.25rem;
  }
}
@media (max-width: 767px) {
  .header__logo {
    max-width: 5.75rem;
  }
}
@media (any-hover: hover) {
  .header__logo:hover {
    opacity: 0.75;
  }
}
.header__logo:focus, .header__logo:active {
  opacity: 0.75;
}
.header__logo img {
  display: block;
  width: 100%;
}
.header__btn-box {
  display: flex;
  gap: 1rem;
  align-items: center;
  min-width: 0;
}
@media (max-width: 991px) {
  .header__btn-box {
    gap: 0.375rem;
  }
}
.header__btn {
  flex-shrink: 0;
}

.lang-select {
  --img-size: 3rem;
  position: relative;
}
.lang-select:hover .lang-select__popup {
  opacity: 1;
  visibility: visible;
}
.lang-select__btn {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  border: none;
  padding: 0.25rem;
  background: none;
}
.lang-select__btn:not(:disabled) {
  cursor: pointer;
}
.lang-select__btn img {
  display: block;
  flex: 0 0 var(--img-size);
  border-radius: var(--img-size);
  width: var(--img-size);
  height: var(--img-size);
}
.lang-select__popup {
  position: absolute;
  right: 0;
  min-width: 100%;
  padding: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transition: visibility var(--transition-duration), opacity var(--transition-duration);
}
.lang-select__list > li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.lang-select__list > li > button,
.lang-select__list > li > a {
  display: flex;
  border: none;
  background: none;
}
.lang-select__list > li > button:not(:disabled),
.lang-select__list > li > a:not(:disabled) {
  cursor: pointer;
}
.lang-select__list > li > button img,
.lang-select__list > li > a img {
  display: block;
  flex: 0 0 var(--img-size);
  border-radius: var(--img-size);
  width: var(--img-size);
  height: var(--img-size);
}

.header-btn {
  display: inline-flex;
  gap: 0.625rem;
  align-items: center;
  justify-content: center;
  vertical-align: top;
  overflow: hidden;
  outline: none;
  border: none;
  border-radius: var(--border-radius-8);
  min-height: 4.125rem;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(86deg, #ff9b01 9.73%, #ff7001 93.17%);
  background-size: 300% 100%;
  font-family: var(--body-font-family);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: var(--display-line-height);
  white-space: nowrap;
  text-align: center;
  color: var(--color-white);
  transition: background-position var(--transition-duration);
}
@media (max-width: 991px) {
  .header-btn {
    gap: 0.375rem;
    min-height: 2.375rem;
    padding: 0.25rem 0.375rem;
    font-size: 0.875rem;
  }
}
.header-btn:disabled, .header-btn._disabled {
  border-color: #c8c8c8;
  background-color: #c8c8c8;
  color: #000;
  cursor: default;
  pointer-events: none;
}
.header-btn--telegram {
  background: linear-gradient(270deg, #774cff 0%, #498fff 100%);
  background-size: 300% 100%;
  color: var(--color-white);
}
.header-btn--join {
  background: linear-gradient(270deg, #774cff 0%, #498fff 100%);
  background-size: 300% 100%;
  color: var(--color-white);
}
.header-btn:not(:disabled, ._disabled) {
  cursor: pointer;
}
@media (any-hover: hover) {
  .header-btn:not(:disabled, ._disabled):hover {
    background-position: 100% 0;
  }
}
.header-btn:not(:disabled, ._disabled):focus {
  background-position: 100% 0;
}
.header-btn:not(:disabled, ._disabled):active {
  background-position: 100% 0;
}
.header-btn span {
  padding-top: 0.1875rem;
}
@media (max-width: 991px) {
  .header-btn span {
    padding-top: 0.0625rem;
  }
}

.footer {
  overflow: hidden;
  background-color: rgba(49, 52, 57, 0.3);
  color: var(--color-white);
}
.footer__wrap {
  padding: 3rem 0;
}
@media (max-width: 991px) {
  .footer__wrap {
    padding: 1.25rem 0 2.625rem;
  }
}
.footer__row {
  display: flex;
  gap: 1.5rem 1.5rem;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .footer__row {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.footer__logo {
  max-width: 15.5rem;
  transition: opacity var(--transition-duration);
}
@media (max-width: 991px) {
  .footer__logo {
    order: 1;
  }
}
@media (min-width: 992px) {
  .footer__logo {
    flex: 0 0 15.5rem;
    width: 15.5rem;
  }
}
@media (any-hover: hover) {
  .footer__logo:hover {
    opacity: 0.75;
  }
}
.footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__copyright {
  flex: 1 1 auto;
  font-size: var(--body-font-size);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  color: var(--color-white-500);
}
@media (max-width: 991px) {
  .footer__copyright {
    order: 3;
    padding-top: 0.5rem;
  }
}
@media (max-width: 991px) {
  .footer__btn-box {
    order: 2;
  }
}

.hero {
  position: relative;
  border-radius: var(--border-radius-40);
  background: linear-gradient(84deg, #5218b1 0%, #2b95d0 99.5%);
  color: var(--color-white);
}
@media (max-width: 991px) {
  .hero {
    border-radius: var(--border-radius-10);
  }
}
.hero__bg {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__coin {
  position: absolute;
  z-index: 1;
  max-width: 10%;
}
.hero__coin--01 {
  left: 0;
  top: 0;
  max-width: 5.68%;
}
@media (max-width: 479px) {
  .hero__coin--01 {
    max-width: 12%;
  }
}
.hero__coin--02 {
  left: 0;
  bottom: 0;
  max-width: 9.64%;
}
@media (max-width: 479px) {
  .hero__coin--02 {
    bottom: 45%;
    max-width: 12%;
  }
}
.hero__coin--03 {
  right: 40%;
  bottom: 5%;
  max-width: 5.68%;
}
@media (max-width: 479px) {
  .hero__coin--03 {
    right: 70%;
    bottom: 45%;
    max-width: 12%;
  }
}
.hero__coin--04 {
  right: 30%;
  top: 34%;
  max-width: 9.42%;
}
@media (max-width: 479px) {
  .hero__coin--04 {
    right: 76%;
    top: 20%;
    max-width: 20%;
  }
}
.hero__coin--05 {
  right: 20%;
  bottom: 0;
  max-width: 12.5%;
}
@media (max-width: 479px) {
  .hero__coin--05 {
    right: 40%;
    bottom: 40%;
    max-width: 25%;
  }
}
.hero__coin--06 {
  right: 1%;
  top: 1%;
  max-width: 12.5%;
}
@media (max-width: 479px) {
  .hero__coin--06 {
    max-width: 20%;
  }
}
.hero__coin--07 {
  right: 0;
  bottom: -12%;
  max-width: 8%;
}
@media (max-width: 479px) {
  .hero__coin--07 {
    bottom: 40%;
    max-width: 12%;
  }
}
.hero__wrap {
  position: relative;
  z-index: 9;
  padding: 6.75rem 0;
}
@media (max-width: 991px) {
  .hero__wrap {
    padding: 0.75rem 0 2rem;
  }
}
.hero__row {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .hero__row {
    flex-wrap: wrap-reverse;
  }
}
.hero__text {
  position: relative;
}
@media (max-width: 991px) {
  .hero__text {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.hero__text::after {
  content: "";
  position: absolute;
  left: calc(var(--container-padding) * -1);
  top: calc(var(--container-padding) * -1);
  width: calc(100% + var(--container-padding) * 2);
  height: calc(100% + var(--container-padding) * 2);
  background: linear-gradient(81deg, #895aca 4.31%, #499dee 105.02%);
  filter: blur(10.6px);
}
.hero__title {
  position: relative;
  z-index: 9;
  font-family: var(--body-font-family);
  line-height: 1.25;
}
@media (max-width: 479px) {
  .hero__title {
    max-width: 15.875rem;
  }
}
.hero__title:not(:last-child) {
  margin-bottom: 1.75rem;
}
@media (max-width: 991px) {
  .hero__title:not(:last-child) {
    margin-bottom: 0.875rem;
  }
}
.hero__body {
  position: relative;
  z-index: 9;
}
.hero__btn-box {
  position: relative;
  z-index: 9;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero__btn-box:not(:last-child) {
  margin-bottom: 3.25rem;
}
@media (max-width: 991px) {
  .hero__btn-box:not(:last-child) {
    margin-bottom: 0.875rem;
  }
}
@media (max-width: 767px) {
  .hero__btn-box .btn {
    width: 100%;
    font-size: 0.8125rem;
  }
}
.hero__store-btns {
  position: relative;
  z-index: 9;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 991px) {
  .hero__store-btns {
    gap: 0.375rem;
  }
}
.hero__img {
  flex: 1 1 auto;
}
.hero__img img {
  display: block;
  margin: 0 auto;
  object-fit: contain;
}
@media (max-width: 991px) {
  .hero__img img {
    max-height: 60vh;
  }
}

.section-benefits {
  position: relative;
  overflow: hidden;
}
.section-benefits__decor {
  position: absolute;
  right: 5%;
  bottom: 20%;
  max-width: 21.5%;
  object-fit: contain;
}
@media (max-width: 991px) {
  .section-benefits__decor {
    right: -30%;
    bottom: 0;
  }
}
@media (max-width: 479px) {
  .section-benefits__decor {
    max-width: 80%;
  }
}
.section-benefits__wrap {
  position: relative;
  z-index: 9;
  padding: 7rem 0 7.75rem;
}
@media (max-width: 991px) {
  .section-benefits__wrap {
    padding: 5rem 0;
  }
}
@media (max-width: 767px) {
  .section-benefits__wrap {
    padding: 1.5rem 0 3.75rem;
  }
}
.section-benefits__row {
  --col-width: 100%;
  --col-gap: 5rem;
  display: flex;
  flex-wrap: wrap;
  gap: var(--col-gap) 0;
  margin: 0 calc(var(--col-gap) / 2 * -1);
}
@media (max-width: 991px) {
  .section-benefits__row {
    --col-gap: 0;
  }
}
.section-benefits__col {
  flex: 0 0 var(--col-width);
  min-width: 0;
  max-width: var(--col-width);
  padding: 0 calc(var(--col-gap) / 2);
}
@media (min-width: 1280px) {
  .section-benefits__col--left {
    --col-width: 35%;
  }
}
.section-benefits__col--right {
  position: relative;
  z-index: 9;
}
@media (min-width: 1280px) {
  .section-benefits__col--right {
    --col-width: 65%;
  }
}
.section-benefits__title {
  text-transform: uppercase;
}
.section-benefits__title strong {
  display: block;
  max-width: fit-content;
  background: linear-gradient(90deg, #28a5ff 0%, #7828fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-benefits__title:not(:last-child) {
  margin-bottom: 1rem;
}
.section-benefits__img {
  position: relative;
}
@media (max-width: 991px) {
  .section-benefits__img {
    display: none;
  }
}
.section-benefits__img::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  width: 50%;
  height: 50%;
  background: #e96efa;
  opacity: 0.7;
  filter: blur(150px);
  transform: translate(-30%, -50%);
  pointer-events: none;
}
.section-benefits__img img {
  position: relative;
  z-index: 9;
  display: block;
  margin: 0 auto;
  max-height: 75vh;
  object-fit: contain;
}
.section-benefits__cards {
  --col-width: 100%;
  --col-gap: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: var(--col-gap) 0;
  margin: 0 calc(var(--col-gap) / 2 * -1);
  min-width: 0;
}
@media (min-width: 768px) {
  .section-benefits__cards {
    --col-width: 50%;
  }
}
@media (min-width: 992px) {
  .section-benefits__cards {
    --col-width: 33.33%;
    --col-gap: 1.5rem;
  }
}
.section-benefits__cards:not(:last-child) {
  margin-bottom: 1.5rem;
}
@media (max-width: 991px) {
  .section-benefits__cards:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}
.section-benefits__cards > li {
  flex: 0 0 var(--col-width);
  max-width: var(--col-width);
  padding: 0 calc(var(--col-gap) / 2);
}
.section-benefits__cards > li .benefit-card {
  min-height: 100%;
}
.section-benefits__btn-box {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2.5rem;
}
@media (max-width: 991px) {
  .section-benefits__btn-box {
    gap: 1.25rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .section-benefits__btn-box {
    flex-direction: column;
  }
}

.section-enjoy {
  position: relative;
  border-radius: var(--border-radius-36);
  background: linear-gradient(78deg, #511bb2 12.03%, #0bb8f1 94.81%);
  color: var(--color-white);
}
@media (max-width: 991px) {
  .section-enjoy {
    border-radius: var(--border-radius-10);
  }
}
.section-enjoy__bg {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-enjoy__coin {
  position: absolute;
  max-width: 10%;
}
.section-enjoy__coin--01 {
  left: 0;
  top: 25%;
  max-width: 9.45%;
}
@media (max-width: 1559px) {
  .section-enjoy__coin--01 {
    top: 0;
  }
}
.section-enjoy__coin--02 {
  left: 15%;
  bottom: 0;
  max-width: 10.83%;
}
.section-enjoy__coin--03 {
  left: 40%;
  top: 3%;
  max-width: 7%;
}
.section-enjoy__coin--04 {
  right: 10%;
  top: 32%;
  max-width: 9.5%;
}
.section-enjoy__coin--05 {
  right: 4%;
  top: 0;
  max-width: 10.5%;
}
.section-enjoy__coin--06 {
  right: 4%;
  bottom: 0;
  max-width: 8.33%;
}
.section-enjoy__wrap {
  position: relative;
  z-index: 9;
}
.section-enjoy__row {
  display: flex;
  gap: 0 1.5rem;
}
@media (max-width: 991px) {
  .section-enjoy__row {
    flex-wrap: wrap-reverse;
  }
}
.section-enjoy__text {
  --text-padding-y: 9.25rem;
  --text-width: 40%;
  flex: 0 0 var(--text-width);
  max-width: var(--text-width);
  padding: var(--text-padding-y) 0;
}
@media (max-width: 991px) {
  .section-enjoy__text {
    --text-width: 100%;
    --text-padding-y: 1.875rem;
  }
}
.section-enjoy__img {
  position: relative;
  flex: 1 1 auto;
  min-height: 13.5rem;
}
@media (max-width: 991px) {
  .section-enjoy__img::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3.375rem;
    background: linear-gradient(78deg, #511bb2 12.03%, #0bb8f1 94.81%);
    filter: blur(10.6px);
    transform: translateY(50%);
  }
}
.section-enjoy__img img {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: block;
  max-width: 100%;
  max-height: 105%;
  object-fit: contain;
  object-position: bottom center;
  transform: translateX(-50%);
}
.section-enjoy__title {
  position: relative;
  padding-bottom: 1.375rem;
  text-transform: uppercase;
}
.section-enjoy__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 9.3125rem;
  height: 0.5rem;
  background: url("../img/title-decor-gradient.svg") no-repeat center/contain;
}
.section-enjoy__title:not(:last-child) {
  margin-bottom: 1.5rem;
}
.section-enjoy__body {
  font-family: var(--font-family-avenir-next);
  font-size: 1.125rem;
  font-weight: var(--body-font-weight);
  line-height: 1.44;
  text-transform: capitalize;
  color: var(--color-white-700);
}
@media (max-width: 991px) {
  .section-enjoy__body {
    font-size: 1rem;
  }
}
@media (max-width: 479px) {
  .section-enjoy__body {
    font-size: 0.75rem;
  }
}
.section-enjoy__body:not(:last-child) {
  margin-bottom: 1.5rem;
}
.section-enjoy__btn-box {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1rem;
}
@media (max-width: 767px) {
  .section-enjoy__btn-box {
    flex-direction: column;
  }
}

.section-flow {
  position: relative;
  overflow: hidden;
  background-color: var(--color-black-neverything);
  color: var(--color-white);
}
.section-flow__coin {
  position: absolute;
  z-index: 1;
  max-width: 15%;
  object-fit: contain;
}
.section-flow__coin--01 {
  left: 2%;
  top: 5%;
  max-width: 9.4%;
}
@media (max-width: 479px) {
  .section-flow__coin--01 {
    left: -5%;
    top: 1%;
    max-width: 18.9%;
  }
}
.section-flow__coin--02 {
  left: 0;
  bottom: 0;
  max-width: 7.4%;
}
@media (max-width: 479px) {
  .section-flow__coin--02 {
    left: -7%;
    bottom: 22%;
    max-width: 24.5%;
  }
}
.section-flow__coin--03 {
  right: 1%;
  top: 24%;
  max-width: 4.6%;
}
@media (max-width: 479px) {
  .section-flow__coin--03 {
    right: -3%;
    top: 7%;
    max-width: 14.95%;
  }
}
.section-flow__decor {
  position: absolute;
  right: 0;
  top: 20%;
  max-width: 31%;
}
.section-flow__wrap {
  position: relative;
  z-index: 9;
  padding: 9.25rem 0 10.25rem;
}
@media (max-width: 991px) {
  .section-flow__wrap {
    padding: 1.25rem 0 3.75rem;
  }
}
.section-flow__header:not(:last-child) {
  margin-bottom: 3.75rem;
}
@media (max-width: 991px) {
  .section-flow__header:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.section-flow__title {
  margin: 0 auto;
  max-width: 46.75rem;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 479px) {
  .section-flow__title {
    max-width: 19.75rem;
  }
}
.section-flow__title strong {
  display: block;
  margin: 0 auto;
  max-width: fit-content;
  background: linear-gradient(90deg, #28a5ff 0%, #7828fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-flow__cards {
  --col-width: 100%;
  --col-gap: 0.625rem;
  display: flex;
  flex-wrap: wrap;
  gap: var(--col-gap) 0;
  margin: 0 calc(var(--col-gap) / 2 * -1);
}
@media (min-width: 992px) {
  .section-flow__cards {
    --col-width: 50%;
    --col-gap: 4.875rem;
  }
}
@media (min-width: 1280px) {
  .section-flow__cards {
    --col-width: 25%;
  }
}
.section-flow__cards > li {
  position: relative;
  display: flex;
  flex: 0 0 var(--col-width);
  flex-direction: column;
  gap: 0.625rem;
  max-width: var(--col-width);
  padding: 0 calc(var(--col-gap) / 2);
}
@media (min-width: 1280px) {
  .section-flow__cards > li > .flow-card {
    min-height: 100%;
  }
}
.section-flow__arrow {
  --arrow-size: 2.75rem;
  display: flex;
  flex: 0 0 var(--arrow-size);
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: var(--arrow-size);
  height: var(--arrow-size);
}
@media (min-width: 992px) {
  .section-flow__arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
  }
}
.section-flow__arrow img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
@media (max-width: 991px) {
  .section-flow__arrow img {
    transform: rotate(90deg);
  }
}

.text-primary {
  color: var(--color-primary);
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.fond-bold {
  font-weight: 700;
}

@media (max-width: 991px) {
  .pc-only {
    display: none !important;
  }
}

.benefit-card {
  --card-padding-x: 2rem;
  --card-padding-y: 1.75rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-36);
  padding: var(--card-padding-y) var(--card-padding-x);
  background: linear-gradient(166deg, #313439 68.34%, #481cb5 96.63%);
}
@media (max-width: 991px) {
  .benefit-card {
    --card-padding-x: 1.75rem;
    --card-padding-y: 1.25rem;
  }
}
.benefit-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(166deg, rgba(49, 52, 57, 0.3) 3.42%, rgba(126, 66, 255, 0.3) 96.63%);
}
.benefit-card__header {
  position: relative;
  z-index: 9;
}
.benefit-card__header:not(:last-child) {
  margin-bottom: 1rem;
}
.benefit-card__title {
  font-size: 1.5625rem;
  line-height: 1.2;
  text-transform: uppercase;
}
.benefit-card__body {
  position: relative;
  z-index: 9;
  text-transform: capitalize;
  color: var(--color-white-700);
}

.flow-card {
  --card-padding-x: 2rem;
  --card-padding-y: 2rem;
  --card-num-size: 5rem;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.flow-card._active .flow-card__inner {
  background: linear-gradient(90deg, #28a5ff 0%, #7828fa 100%);
}
.flow-card__num {
  position: relative;
  z-index: 9;
  display: flex;
  flex: 0 0 var(--card-num-size);
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 0.5rem solid rgba(29, 33, 38, 0.4);
  border-radius: var(--card-num-size);
  width: var(--card-num-size);
  height: var(--card-num-size);
  background: linear-gradient(219deg, #0f8aec 16.78%, #5e27fa 61.1%);
  background-clip: padding-box;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
}
.flow-card__inner {
  flex: 1 1 auto;
  overflow: hidden;
  margin-top: calc(var(--card-num-size) / 2 * -1);
  border-radius: var(--border-radius-24);
  padding: 4rem var(--card-padding-x) var(--card-padding-y);
  background: linear-gradient(88deg, #272a2f 2.21%, #313439 98.72%);
}
.flow-card__title {
  position: relative;
  padding-bottom: 1.125rem;
  font-size: 1.5625rem;
  text-transform: uppercase;
}
.flow-card__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 4.4375rem;
  height: 0.3125rem;
  background: url("../img/title-decor.svg") no-repeat center/contain;
  transform: translateX(-50%);
}
.flow-card__title:not(:last-child) {
  margin-bottom: 1rem;
}
.flow-card__body {
  color: var(--color-white-700);
}

html {
  font-size: var(--base-font-size);
}

body {
  background-color: var(--color-black-noble);
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
  color: var(--color-white);
}
*::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}
*::-webkit-scrollbar-thumb {
  background: var(--color-primary);
}
*::-webkit-scrollbar-track {
  background: var(--color-black);
}
* {
  scrollbar-face-color: var(--color-primary);
  scrollbar-track-color: var(--color-black);
}

::selection {
  background-color: var(--color-primary);
  color: #fff;
}

.disable-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.wrapper {
  overflow: hidden;
  min-height: 100vh;
  padding-top: var(--header-height, 6.75rem);
}
@media (min-width: 992px) {
  .wrapper--visible {
    overflow: visible;
  }
}

.container {
  margin: 0 auto;
  max-width: var(--container);
  padding: 0 var(--container-padding);
}

.offset-container {
  padding-left: max(1.5rem, (100% - 96.75rem) / 2);
}
@media (max-width: 991px) {
  .offset-container {
    padding: 0 1.5rem;
  }
}

/* Hiding class, making content visible only to screen readers but not visually */
/* "sr" meaning "screen-reader" */
.sr-only:not(:focus, :active) {
  position: absolute;
  clip-path: inset(50%);
  overflow: hidden;
  width: 1px;
  height: 1px;
  white-space: nowrap;
  clip: rect(0 0 0 0);
}

.text-block ol li:not(:last-child),
.text-block ul li:not(:last-child) {
  margin-bottom: 1.25rem;
}
.text-block ul {
  list-style: disc outside;
  padding-left: 1.25rem;
}
.text-block strong,
.text-block b {
  font-weight: 700;
}
.text-block em,
.text-block i {
  font-style: italic;
}
.text-block mark {
  background-color: var(--color-primary);
  color: #fff;
}
.text-block del {
  background-color: #fbb;
  text-decoration: line-through;
}
.text-block ins {
  background-color: #d4fcbc;
  text-decoration: none;
}
.text-block blockquote {
  border-left: 0.1875rem solid var(--color-primary);
  padding-left: 0.9375rem;
}
.text-block > *:not(:last-child) {
  margin-bottom: 1.25rem;
}

a[x-apple-data-detectors] {
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  text-decoration: none !important;
  color: inherit !important;
}

picture {
  display: inline-block;
}
picture img {
  vertical-align: middle;
}

code {
  border: 1px dashed #999;
  border-radius: 0.2rem;
  padding: 0.1rem 0.3rem 0.2rem;
  background: #fff3f4;
  box-decoration-break: clone;
  word-wrap: break-word;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--display-font-family);
  font-weight: var(--display-font-weight);
  line-height: var(--display-line-height);
}

h1,
.h1 {
  font-size: 4.375rem;
}
@media (max-width: 1439px) {
  h1,
  .h1 {
    font-size: 3rem;
  }
}
@media (max-width: 991px) {
  h1,
  .h1 {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  h1,
  .h1 {
    font-size: 1.75rem;
  }
}
@media (max-width: 479px) {
  h1,
  .h1 {
    font-size: 1.25rem;
  }
}

h2,
.h2 {
  font-size: 3.125rem;
}
@media (max-width: 1559px) {
  h2,
  .h2 {
    font-size: 3rem;
  }
}
@media (max-width: 991px) {
  h2,
  .h2 {
    font-size: 2.625rem;
  }
}
@media (max-width: 767px) {
  h2,
  .h2 {
    font-size: 1.75rem;
  }
}
@media (max-width: 479px) {
  h2,
  .h2 {
    font-size: 1.25rem;
  }
}

h3,
.h3 {
  font-size: 1.5rem;
}
@media (max-width: 991px) {
  h3,
  .h3 {
    font-size: 1.25rem;
  }
}

h4,
.h4 {
  font-size: 1.25rem;
}
@media (max-width: 991px) {
  h4,
  .h4 {
    font-size: 1.125rem;
  }
}

h5,
.h5 {
  font-size: 1rem;
}

h6,
.h6 {
  font-size: 0.75rem;
}

.pages-list {
  padding-left: 1rem;
}
.pages-list > li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.pages-list > li a {
  text-decoration: underline;
  transition: color 0.35s;
}
@media (any-hover: hover) {
  .pages-list > li a:hover {
    color: var(--color-primary);
  }
}

@media (max-width: 991px) {
  :root {
    --container-padding: 0.875rem;
  }
}