@charset "UTF-8";

@font-face {
  font-family: 'JetBrains Mono';
  src: url('./../fonts/JetBrains_Mono/JetBrainsMono-Bold.woff2') format('woff2'),
    url('./../fonts/JetBrains_Mono/JetBrainsMono-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'JetBrains Mono';
  src: url('./../fonts/JetBrains_Mono/JetBrainsMono-Medium.woff2') format('woff2'),
    url('./../fonts/JetBrains_Mono/JetBrainsMono-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'JetBrains Mono';
  src: url('./../fonts/JetBrains_Mono/JetBrainsMono-Regular.woff2') format('woff2'),
    url('./../fonts/JetBrains_Mono/JetBrainsMono-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'JetBrains Mono';
  src: url('./../fonts/JetBrains_Mono/JetBrainsMono-ExtraLightItalic.woff2') format('woff2'),
    url('./../fonts/JetBrains_Mono/JetBrainsMono-ExtraLightItalic.woff') format('woff');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

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

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

@font-face {
  font-family: 'Montserrat';
  src: url('./../fonts/Montserrat/Montserrat-Regular.woff2') format('woff2'),
    url('./../fonts/Montserrat/Montserrat-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('./../fonts/Montserrat/Montserrat-Light.woff2') format('woff2'),
    url('./../fonts/Montserrat/Montserrat-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
video {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --container-width: 1260px;
  --transition: 0.3s ease;
  --default-font-family: 'Montserrat';
  --heading-font-family: 'JetBrains Mono';
  --sp: 70px;
  --accent: #ffb93e;
  --bg: #000;
  --bg-l-gradient: linear-gradient(90deg, #246cfd 0%, #6a45e6 50%, #ff4243 100%);
  --bg-l-gradient-hover: linear-gradient(90deg, #246cfd 0%, #6a45e6 25%, #ff4243 100%);
  --link-hover: #6a45e6;
  --text-color: #fff;
  --fz-default: 16px;
  --h1: 124px;
  --h2: 72px;
  --h3: 18px;
  --l: 27px;
  --m: 21px;
  --s: 16px;
}

body {
  font: 400 var(--fz-default) var(--default-font-family), Helvetica, Arial, sans-serif;
  background: var(--bg);
  min-width: 360px;
  color: var(--text-color);
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  outline: none;
}

.hidden {
  display: none;
  overflow: hidden;
}

.wrapper {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-flow: column;
}

[class*='__container'] {
  margin: 0 auto;
  max-width: var(--container-width);
  padding: 0 10px;
  width: 100%;
}

button {
  border: none;
}

.btn {
  font: 700 18px 'JetBrains Mono';
  position: relative;
  display: inline-flex;
  padding: 13px 20px 15px;
  justify-content: center;
  text-transform: uppercase;
  min-width: 340px;
  background: var(--bg-l-gradient);
  cursor: pointer;
}

.btn__decor {
  position: absolute;
  aspect-ratio: 1/1;
  width: 8px;
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%228%22%20height%3D%228%22%20viewBox%3D%220%200%208%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Crect%20width%3D%221.33333%22%20height%3D%228%22%20transform%3D%22matrix(4.37114e-08%20-1%20-1%20-4.37114e-08%208%201.33325)%22%20fill%3D%22white%22%2F%3E%0A%3Crect%20width%3D%221.33333%22%20height%3D%228%22%20transform%3D%22matrix(1%208.74228e-08%208.74228e-08%20-1%200%208)%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E%0A')
    center/contain no-repeat;
  transition: var(--transition);
}

.btn__decor-1 {
  left: 3px;
  top: 3px;
}

.btn__decor-2 {
  right: 3px;
  top: 3px;
  transform: rotate(90deg);
}

.btn__decor-3 {
  right: 3px;
  bottom: 3px;
  transform: rotate(180deg);
}

.btn__decor-4 {
  left: 3px;
  bottom: 3px;
  transform: rotate(270deg);
}

.btn:hover {
  background: var(--bg-l-gradient-hover);
}

.btn:hover .btn__decor {
  width: 10px;
  opacity: 0;
}

.btn:hover .btn__decor-1 {
  left: 0;
  top: 0;
}

.btn:hover .btn__decor-2 {
  right: 0;
  top: 0;
}

.btn:hover .btn__decor-3 {
  right: 0;
  bottom: 0;
}

.btn:hover .btn__decor-4 {
  left: 0;
  bottom: 0;
}

form input.error {
  box-shadow: inset 0px 0px 20px 1px rgba(255, 0, 0, 0.3);
  border: 2px solid red !important;
}

form input.not_error {
  box-shadow: inset 0px 0px 20px 1px rgba(100, 255, 100, 0.3);
  border: 2px solid #99ff99 !important;
}

h1,
._h1 {
  font: 700 var(--h1) / 82% var(--heading-font-family);
}

h2,
._h2 {
  font: 700 var(--h2) / 100% var(--heading-font-family);
}

h3,
._h3 {
  font-weight: 700;
  font-size: var(--h3);
}

a {
  color: var(--text-color);
  text-decoration: none;
}

._semibold {
  font-weight: 600;
}

._bold {
  font-weight: 700;
}

._accent {
  color: var(--accent);
}

._s {
  font-size: var(--s);
  line-height: 140%;
}

._m {
  font-size: var(--m);
  line-height: 140%;
}

._l {
  font-size: var(--l);
  line-height: 140%;
}

._title-selection {
  position: relative;
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid #484848;
}

._title-selection__decor {
  background: #484848;
  content: '';
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
}

._title-selection__decor--1 {
  top: -4px;
  left: -4px;
}

._title-selection__decor--2 {
  top: -4px;
  right: -4px;
}

._title-selection__decor--3 {
  bottom: -4px;
  left: -4px;
}

._title-selection__decor--4 {
  bottom: -4px;
  right: -4px;
}

.btn {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
}

.subm {
  cursor: pointer;
  border: none;
  display: block;
  margin: 0 auto;
}

.form {
  max-width: 400px;
  position: relative;
}

.form__inputs {
  display: flex;
  flex-flow: column;
  gap: 15px;
}

.form .input {
  background: #fff;
  width: 100%;
  height: 60px;
  border: 2px solid #dcdcdc;
  border-radius: 3px;
  padding-left: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 60px;
  display: block;
}

.form .input__wrap {
  display: block;
  text-align: left;
}

.form .input__label {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  display: block;
}

.form:before {
  content: '';
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.7) url(../img/loading.svg) 50% no-repeat;
  z-index: 10;
}

.form.loading:before {
  display: block;
}

.form .intl-tel-input {
  width: 100%;
}

.form .country-list .country-name {
  color: #333;
}

.header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 100;
}

.header__container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: flex;
  align-items: center;
  aspect-ratio: 216/38;
  width: 216px;
  cursor: pointer;
}

.header__logo img {
  width: 100%;
}

.header__nav {
  display: flex;
  gap: 42px;
}

.header__nav-list {
  display: flex;
  gap: 42px;
  font-weight: 300;
  line-height: 162%;
}

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

.header__nav-list .item a {
  transition: var(--transition);
}

.header__nav-list .item a:hover {
  color: var(--link-hover);
}

.header__btn {
  font: 700 16px 'Montserrat';
  background: transparent;
  padding: 10px 30px;
  min-width: auto;
  border: 2px solid;
  -o-border-image: var(--bg-l-gradient) 1;
  border-image: var(--bg-l-gradient) 1;
}

.header__btn:hover {
  background: transparent;
  -o-border-image: var(--bg-l-gradient-hover) 1;
  border-image: var(--bg-l-gradient-hover) 1;
}

.header__btn:hover .btn__decor-1 {
  left: -2px;
  top: -2px;
}

.header__btn:hover .btn__decor-3 {
  right: -2px;
  bottom: -2px;
}

.header__burger-btn {
  display: none;
}

.header__burger-btn:hover {
  gap: 5px;
}

.header__burger-btn:hover span:nth-child(1) {
  width: 100%;
}

.header__burger-btn:hover span:nth-child(2) {
  width: 100%;
}

.header__burger-btn:hover span:nth-child(3) {
  width: 100%;
}

.header__burger-btn.active span:nth-child(1) {
  width: 100%;
  transform: translateY(5px) rotate(45deg);
}

.header__burger-btn.active span:nth-child(2) {
  width: 100%;
  transform: translateY(-2px) rotate(-45deg);
}

.header__burger-btn.active span:nth-child(3) {
  display: none;
}

.header__lang {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__lang .item {
  cursor: pointer;
}

.header__lang .active {
  background: var(--bg-l-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.burger-open .header__lang .item {
  color: rgba(255, 255, 255, 0.5019607843);
}

body.burger-open .header__lang .active {
  color: var(--text-color);
}

.burger-menu {
  display: none;
  position: fixed;
  flex-direction: column;
  justify-content: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--bg-l-gradient);
  background: linear-gradient(155deg, #246cfd 13.53%, #6a45e6 44.74%, #ff4243 79.77%);
  z-index: 50;
}

.burger-menu__list {
  font-size: 26px;
  display: flex;
  flex-direction: column;
  gap: 42px;
  font-weight: 500;
  align-items: center;
}

.burger-menu .btn {
  background: #000;
  margin: 32px auto 0;
  padding: 10px 30px;
  max-width: 294px;
  line-height: 26px;
}

.burger-menu .btn::before,
.burger-menu .btn::after {
  content: '';
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%228%22%20height%3D%228%22%20viewBox%3D%220%200%208%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Crect%20width%3D%221.33333%22%20height%3D%228%22%20transform%3D%22matrix(4.37114e-08%20-1%20-1%20-4.37114e-08%208%201.33325)%22%20fill%3D%22white%22%2F%3E%0A%3Crect%20width%3D%221.33333%22%20height%3D%228%22%20transform%3D%22matrix(1%208.74228e-08%208.74228e-08%20-1%200%208)%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E%0A')
    center/contain no-repeat;
}

.burger-menu .btn::before {
  top: auto;
  left: 10px;
  bottom: 10px;
  transform: rotate(270deg);
}

.burger-menu .btn::after {
  right: 10px;
  top: 10px;
  transform: rotate(90deg);
}

.burger-menu.active {
  display: flex;
}

.footer {
  margin-top: auto;
}

.modal-overlay {
  display: none;
  padding-top: 1px;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  overflow: auto;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}

.modal-overlay .modal-content {
  margin-bottom: 0px;
  border-radius: 4px;
}

.modal-overlay .close-button {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 10px;
  right: 10px;
  cursor: pointer;
  transition: 0.2s linear;
}

.modal-overlay .close-button:before {
  background: #fff;
  content: '';
  height: 50px;
  width: 2px;
  display: block;
  transform: translateX(25px) rotate(-45deg);
}

.modal-overlay .close-button:after {
  background: #fff;
  content: '';
  margin-top: -50px;
  height: 50px;
  width: 2px;
  display: block;
  transform: translateX(25px) rotate(45deg);
  transition: 0.2s linear;
}

#modal-video .modal-content {
  height: auto;
  width: 100%;
}

#modal-video .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

#modal-video .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.countdownHolder {
  margin: 0 auto;
  font: 30px/1 Gilroy, sans-serif;
  text-align: center;
  letter-spacing: -3px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  /*Параметры цифр */
  /*Параметры подложки для секций */
  /*Параметры секций разделения (:)*/
  /*Параметры вспомогательного текста (дни, часы, минуты, секунды)*/
}

.countdownHolder .position {
  display: inline-block;
  height: 1em;
  overflow: hidden;
  position: relative;
  width: 0.5em;
}

.countdownHolder .digit {
  position: absolute;
  display: block;
  border-radius: 0.2em;
  text-align: center;
  color: #000;
  letter-spacing: -1px;
  left: 50%;
  transform: translateX(-50%);
}

.countdownHolder .countDays,
.countdownHolder .countHours,
.countdownHolder .countMinutes,
.countdownHolder .countSeconds {
  background: #fff;
  border-radius: 5px;
  padding: 10px;
}

.countdownHolder .countDiv {
  display: none;
  width: 10px;
  height: 1em;
  position: relative;
}

.countdownHolder .countDiv:before,
.countdownHolder .countDiv:after {
  background: #444;
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  left: 50%;
  margin-left: -3px;
  top: 0.2em;
  box-shadow: 1px 1px 1px rgba(4, 4, 4, 0.5);
  content: '';
}

.countdownHolder .countDiv:after {
  top: 0.6em;
}

.countdownHolder .textdigit {
  font-size: 15px;
  letter-spacing: 0px;
}

.hero {
  position: relative;
  padding: 124px 0 160px;
  font-size: 16px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 85%, rgba(0, 0, 0, 0.6) 100%),
    url('../img/demo/demo-bg.webp') center/cover no-repeat;
  z-index: 0;
}

.hero__container {
  position: relative;
  display: flex;
}

.hero__container::before {
  content: '';
  position: absolute;
  left: -37%;
  top: -41%;
  display: block;
  aspect-ratio: 829/991;
  width: 747px;
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%22829%22%20height%3D%22991%22%20viewBox%3D%220%200%20829%20991%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20filter%3D%22url(%23filter0_f_107_138)%22%3E%0A%3Cpath%20d%3D%22M578.983%20190.992C747.982%20236.276%20562.169%20337.344%20516.886%20506.343C471.603%20675.341%20583.997%20848.273%20414.999%20802.99C246%20757.707%20145.709%20583.998%20190.992%20414.999C236.275%20246.001%20409.985%20145.709%20578.983%20190.992Z%22%20fill%3D%22url(%23paint0_linear_107_138)%22%2F%3E%0A%3C%2Fg%3E%0A%3Cdefs%3E%0A%3Cfilter%20id%3D%22filter0_f_107_138%22%20x%3D%220.119141%22%20y%3D%220.119385%22%20width%3D%22828.54%22%20height%3D%22990.189%22%20filterUnits%3D%22userSpaceOnUse%22%20color-interpolation-filters%3D%22sRGB%22%3E%0A%3CfeFlood%20flood-opacity%3D%220%22%20result%3D%22BackgroundImageFix%22%2F%3E%0A%3CfeBlend%20mode%3D%22normal%22%20in%3D%22SourceGraphic%22%20in2%3D%22BackgroundImageFix%22%20result%3D%22shape%22%2F%3E%0A%3CfeGaussianBlur%20stdDeviation%3D%2290%22%20result%3D%22effect1_foregroundBlur_107_138%22%2F%3E%0A%3C%2Ffilter%3E%0A%3ClinearGradient%20id%3D%22paint0_linear_107_138%22%20x1%3D%22384.335%22%20y1%3D%22688.988%22%20x2%3D%22584.718%22%20y2%3D%22300.749%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%0A%3Cstop%20offset%3D%220.202177%22%20stop-color%3D%22%23FF4243%22%2F%3E%0A%3Cstop%20offset%3D%220.519231%22%20stop-color%3D%22%236A45E6%22%2F%3E%0A%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23246CFD%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E%0A')
    center/cover no-repeat;
  z-index: -1;
}

.hero__container::after {
  content: '';
  position: absolute;
  left: 97%;
  top: 67%;
  display: block;
  aspect-ratio: 438/553;
  width: 353px;
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%22438%22%20height%3D%22553%22%20viewBox%3D%220%200%20438%20553%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20filter%3D%22url(%23filter0_f_107_179)%22%3E%0A%3Cpath%20d%3D%22M155.924%20439.115C66.301%20435.857%20147.554%20364.069%20150.812%20274.445C154.07%20184.822%2078.0995%20111.302%20167.723%20114.56C257.346%20117.819%20327.359%20193.114%20324.101%20282.737C320.843%20372.36%20245.547%20442.373%20155.924%20439.115Z%22%20fill%3D%22url(%23paint0_linear_107_179)%22%2F%3E%0A%3C%2Fg%3E%0A%3Cdefs%3E%0A%3Cfilter%20id%3D%22filter0_f_107_179%22%20x%3D%220.189903%22%20y%3D%220.701622%22%20width%3D%22437.774%22%20height%3D%22552.277%22%20filterUnits%3D%22userSpaceOnUse%22%20color-interpolation-filters%3D%22sRGB%22%3E%0A%3CfeFlood%20flood-opacity%3D%220%22%20result%3D%22BackgroundImageFix%22%2F%3E%0A%3CfeBlend%20mode%3D%22normal%22%20in%3D%22SourceGraphic%22%20in2%3D%22BackgroundImageFix%22%20result%3D%22shape%22%2F%3E%0A%3CfeGaussianBlur%20stdDeviation%3D%2256.8772%22%20result%3D%22effect1_foregroundBlur_107_179%22%2F%3E%0A%3C%2Ffilter%3E%0A%3ClinearGradient%20id%3D%22paint0_linear_107_179%22%20x1%3D%22192.019%22%20y1%3D%22115.444%22%20x2%3D%22128.714%22%20y2%3D%22416.894%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%0A%3Cstop%20stop-color%3D%22%23FF4243%22%2F%3E%0A%3Cstop%20offset%3D%220.519231%22%20stop-color%3D%22%236A45E6%22%2F%3E%0A%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23246CFD%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E%0A')
    center/cover no-repeat;
  z-index: -1;
}

.hero__title {
  position: relative;
  margin: 20px 0 0;
  z-index: -1;
}

.hero__sub-title {
  font: 30px 'JetBrains Mono';
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.hero__sub-title .item {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.hero__sub-title .item__decor {
  position: absolute;
  aspect-ratio: 1/1;
  width: 8px;
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%228%22%20height%3D%228%22%20viewBox%3D%220%200%208%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20opacity%3D%220.3%22%3E%0A%3Crect%20width%3D%221.33333%22%20height%3D%228%22%20transform%3D%22matrix(4.37114e-08%20-1%20-1%20-4.37114e-08%208%201.33325)%22%20fill%3D%22white%22%2F%3E%0A%3Crect%20width%3D%221.33333%22%20height%3D%228%22%20transform%3D%22matrix(1%208.74228e-08%208.74228e-08%20-1%200%208)%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A')
    center/contain no-repeat;
}

.hero__sub-title .item__decor-1 {
  left: -8px;
  top: -1px;
}

.hero__sub-title .item__decor-2 {
  right: -8px;
  top: -1px;
  transform: rotate(90deg);
}

.hero__sub-title .item__decor-3 {
  right: -8px;
  bottom: -1px;
  transform: rotate(180deg);
}

.hero__sub-title .item__decor-4 {
  left: -8px;
  bottom: -1px;
  transform: rotate(270deg);
}

.hero__sub-title .item:nth-child(1) {
  margin-left: 20px;
}

.hero__sub-title .item:nth-child(2) {
  margin-left: 191px;
}

.hero__sub-title .item:nth-child(3) {
  margin-left: 61px;
}

.hero__part-1 {
  width: 50%;
  flex-shrink: 0;
}

.hero__part-2 {
  display: flex;
  flex-direction: column;
  width: 50%;
  flex-shrink: 0;
  align-items: end;
}

.hero__slider {
  position: relative;
  padding: 18px 23px;
  width: 357px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(28, 28, 28, 0.4);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

.hero__slider::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 61px;
  display: block;
  width: 22px;
  height: 15px;
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2223%22%20height%3D%2216%22%20viewBox%3D%220%200%2023%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cmask%20id%3D%22mask0_107_161%22%20style%3D%22mask-type%3Aalpha%22%20maskUnits%3D%22userSpaceOnUse%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2223%22%20height%3D%2216%22%3E%0A%3Cpath%20d%3D%22M18.2275%2015.04V13.76H20.7075V1.28H18.2275V0H22.1475V15.04H18.2275Z%22%20fill%3D%22url(%23paint0_linear_107_161)%22%2F%3E%0A%3Cpath%20d%3D%22M7.27344%207.63999V6.35999H10.3294V3.23999H11.7374V6.35999H14.7934V7.63999H11.7374V10.76H10.3294V7.63999H7.27344Z%22%20fill%3D%22url(%23paint1_linear_107_161)%22%2F%3E%0A%3Cpath%20d%3D%22M0%2015.04V0H3.92V1.28H1.44V13.76H3.92V15.04H0Z%22%20fill%3D%22url(%23paint2_linear_107_161)%22%2F%3E%0A%3C%2Fmask%3E%0A%3Cg%20mask%3D%22url(%23mask0_107_161)%22%3E%0A%3Crect%20width%3D%2223%22%20height%3D%2216%22%20fill%3D%22url(%23paint3_linear_107_161)%22%2F%3E%0A%3C%2Fg%3E%0A%3Cdefs%3E%0A%3ClinearGradient%20id%3D%22paint0_linear_107_161%22%20x1%3D%2218.0505%22%20y1%3D%221%22%20x2%3D%2223.3457%22%20y2%3D%221.62481%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%0A%3Cstop%20stop-color%3D%22white%22%2F%3E%0A%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23999999%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3ClinearGradient%20id%3D%22paint1_linear_107_161%22%20x1%3D%226.9339%22%20y1%3D%223.73999%22%20x2%3D%2215.4814%22%20y2%3D%227.60965%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%0A%3Cstop%20stop-color%3D%22white%22%2F%3E%0A%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23999999%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3ClinearGradient%20id%3D%22paint2_linear_107_161%22%20x1%3D%22-0.176995%22%20y1%3D%221%22%20x2%3D%225.11812%22%20y2%3D%221.62481%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%0A%3Cstop%20stop-color%3D%22white%22%2F%3E%0A%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23999999%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3ClinearGradient%20id%3D%22paint3_linear_107_161%22%20x1%3D%2211.5%22%20y1%3D%220%22%20x2%3D%2211.5%22%20y2%3D%2216%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%0A%3Cstop%20stop-color%3D%22%23246CFD%22%2F%3E%0A%3Cstop%20offset%3D%220.514423%22%20stop-color%3D%22%236A45E6%22%2F%3E%0A%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23FF4243%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E%0A')
    center/contain no-repeat;
}

.hero__slider .hero__slider-title {
  font: 500 20px 'JetBrains Mono';
}

.hero__slider .swiper {
  position: relative;
  margin-top: 14px;
  margin-left: 32px;
}

.hero__slider .swiper-wrapper {
  padding-bottom: 32px;
}

.hero__slider .swiper-slide {
  cursor: grab;
}

.hero__slider .swiper-pagination {
  position: absolute;
  left: 0 !important;
  bottom: 4px;
  transform: translateX(0) !important;
  width: auto;
  transform: none;
}

.hero__slider .swiper-pagination-bullet {
  background: #fff;
}

.hero__slider .swiper-button-prev,
.hero__slider .swiper-button-next {
  height: 24px;
  width: 24px;
  flex-shrink: 0;
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Crect%20x%3D%2223.6842%22%20y%3D%2223.6842%22%20width%3D%2223.3684%22%20height%3D%2223.3684%22%20rx%3D%2211.6842%22%20transform%3D%22rotate(-180%2023.6842%2023.6842)%22%20stroke%3D%22white%22%20stroke-width%3D%220.631579%22%2F%3E%0A%3Cpath%20d%3D%22M14.5264%2015.1798L11.8665%2012.0002L14.5264%208.82068L13.1727%207.57892L9.47374%2012.0002L13.1727%2016.421L14.5264%2015.1798Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E%0A')
    center/contain no-repeat;
}

.hero__slider .swiper-button-prev {
  position: absolute;
  top: auto;
  left: auto;
  bottom: 0;
  right: 34px;
}

.hero__slider .swiper-button-next {
  position: absolute;
  top: auto;
  left: auto;
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}

.hero__slider .swiper-button-prev::after,
.hero__slider .swiper-button-next::after {
  content: '';
  z-index: 1;
}

.hero__part-2-text {
  margin-top: 109px;
  width: 349px;
  text-align: right;
  font-size: 18px;
  font-weight: 500;
  line-height: 138%;
  background: var(--bg-l-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  z-index: 2;
}

.hero__part-2-text span {
  font-weight: 700;
  color: transparent;
}

.hero__btn {
  margin-top: 36px;
  z-index: 2;
}

.hero__image {
  position: absolute;
  aspect-ratio: 778/663;
  width: 778px;
  left: 21%;
  top: 0%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 85%, rgb(0, 0, 0) 100%),
    url('../img/hero/hero-image.webp') center/contain no-repeat;
  pointer-events: none;
  z-index: -1;
}

.features {
  padding: 77px 0;
  z-index: 1;
}

.features__container {
  position: relative;
  display: flex;
  gap: 18px;
}

.features__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.features__col-1 {
  width: 374px;
  flex-grow: 0;
  flex-shrink: 0;
}

.features__col-2 {
  flex: 1;
}

.features__col-3 {
  flex: 1;
}

.features__title {
  text-transform: uppercase;
}

.features__title span {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
  padding: 10px 24px;
  transform: rotate(3.312deg);
}

.features__title-decor {
  background: #484848;
  content: '';
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
}

.features__title-decor-1 {
  top: -4px;
  left: -4px;
}

.features__title-decor-2 {
  top: -4px;
  right: -4px;
}

.features__title-decor-3 {
  bottom: -4px;
  left: -4px;
}

.features__title-decor-4 {
  bottom: -4px;
  right: -4px;
}

.features__col-1-text {
  margin-top: auto;
  font-size: 22px;
  font-weight: 500;
  background: var(--bg-l-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.features__col-1-text span {
  font-weight: 700;
  color: transparent;
}

.features__text-block {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: #1c1c1c;
}

.features__text-block::before,
.features__text-block::after {
  content: '';
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%228%22%20height%3D%228%22%20viewBox%3D%220%200%208%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20opacity%3D%220.3%22%3E%0A%3Crect%20width%3D%221.33333%22%20height%3D%228%22%20transform%3D%22matrix(4.37114e-08%20-1%20-1%20-4.37114e-08%208%201.33325)%22%20fill%3D%22white%22%2F%3E%0A%3Crect%20width%3D%221.33333%22%20height%3D%228%22%20transform%3D%22matrix(1%208.74228e-08%208.74228e-08%20-1%200%208)%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A')
    center/contain no-repeat;
}

.features__text-block::before {
  left: 10px;
  bottom: 10px;
  transform: rotate(270deg);
}

.features__text-block::after {
  right: 10px;
  top: 10px;
  transform: rotate(90deg);
}

.features__text-block-title {
  text-transform: uppercase;
}

.features__text-block-text {
  color: rgba(255, 255, 255, 0.6);
  line-height: 140%;
}

.features__text-block-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 140%;
}

.features__text-block-list .item {
  position: relative;
  padding-left: 29px;
}

.features__text-block-list .item::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 6px;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(44deg, #246cfd 17.41%, #6a45e6 44.83%, #ff4243 86.18%);
}

.features__btn {
  margin-top: auto;
}

.why {
  padding: 77px 0;
}

.why__title {
  text-align: center;
  text-transform: uppercase;
}

.why__title span {
  margin-right: 20px;
  transform: rotate(-5.333deg);
}

.why__list {
  display: flex;
  margin-top: 79px;
  gap: 19px;
}

.why__list .item {
  position: relative;
  display: flex;
  flex: 1;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #1c1c1c;
}

.why__list .item__icon {
  width: 36px;
  height: 36px;
  background: center/contain no-repeat;
  flex-shrink: 0;
}

.why__list .item::before,
.why__list .item::after {
  content: '';
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%228%22%20height%3D%228%22%20viewBox%3D%220%200%208%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Crect%20width%3D%221.33333%22%20height%3D%228%22%20transform%3D%22matrix(4.37114e-08%20-1%20-1%20-4.37114e-08%208%201.33325)%22%20fill%3D%22white%22%2F%3E%0A%3Crect%20width%3D%221.33333%22%20height%3D%228%22%20transform%3D%22matrix(1%208.74228e-08%208.74228e-08%20-1%200%208)%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E%0A')
    center/contain no-repeat;
}

.why__list .item::before {
  left: 10px;
  bottom: 10px;
  transform: rotate(270deg);
}

.why__list .item::after {
  right: 10px;
  top: 10px;
  transform: rotate(90deg);
}

.why__bottom {
  margin-top: 45px;
  position: relative;
  display: flex;
  justify-content: space-between;
}

.why__bottom-title {
  font: normal 700 40px 'Montserrat';
  text-transform: uppercase;
  flex-shrink: 0;
}

.why__bottom-title span {
  background: linear-gradient(90deg, #246cfd 17.81%, #ff4243 84.67%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.why__bottom-text {
  position: absolute;
  top: 50%;
  left: 30%;
  width: 320px;
  font-size: 20px;
  line-height: 130%;
}

.why__btn {
  margin-top: 80px;
  align-self: flex-end;
}

.seller {
  position: relative;
  padding: 77px 0;
}

.seller__title {
  text-align: center;
  text-transform: uppercase;
}

.seller__ticker {
  position: absolute;
  top: 0;
  background: linear-gradient(90deg, #246cfd 0%, #6a45e6 20%, #ff4243 70%);
  transform: rotate(1.199deg);
}

.seller__ticker .swiper-wrapper {
  transition: linear;
}

.seller__ticker .swiper-slide {
  aspect-ratio: 384/49;
  width: 384px;
  background: center/contain no-repeat;
}

.seller__list {
  margin-top: 48px;
  display: flex;
  gap: 26px;
}

.seller__list .item {
  flex: 1;
  display: flex;
}

.seller__list .item__image {
  width: 94px;
  aspect-ratio: 1/1;
  background: center/contain no-repeat;
  flex-shrink: 0;
}

.seller__list .item__text-container {
  padding: 25px 26px;
  background: #1c1c1c;
  width: 100%;
}

.seller__list .item__text {
  font-size: 18px;
  font-weight: 500;
}

.seller__list .item__text span {
  white-space: nowrap;
}

.for {
  padding: 77px 0;
}

.for__container {
  display: flex;
  gap: 10px;
}

.for__title {
  font-size: 62px;
  text-align: center;
  text-transform: uppercase;
  width: 300px;
}

.for__title span {
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-6.216deg) translate(0px, 4px);
}

.for__list {
  margin-top: 75px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.for__list .item {
  position: relative;
  padding: 10px 14px 10px 47px;
  display: inline-flex;
  justify-content: start;
  height: -moz-fit-content;
  height: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.for__list .item::before {
  content: '';
  display: block;
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  aspect-ratio: 1/1;
  width: 40px;
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2255%22%20height%3D%2242%22%20viewBox%3D%220%200%2055%2042%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20filter%3D%22url(%23filter0_f_107_493)%22%3E%0A%3Cellipse%20cx%3D%2225.6111%22%20cy%3D%2221%22%20rx%3D%2211.6111%22%20ry%3D%2211%22%20fill%3D%22%23FF4243%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20filter%3D%22url(%23filter1_f_107_493)%22%3E%0A%3Cellipse%20cx%3D%2225.9168%22%20cy%3D%2220.7684%22%20rx%3D%228.86111%22%20ry%3D%228.32407%22%20fill%3D%22%23FF4243%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20filter%3D%22url(%23filter2_f_107_493)%22%3E%0A%3Ccircle%20cx%3D%2225.6111%22%20cy%3D%2221%22%20r%3D%226.11111%22%20fill%3D%22%236A45E6%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20filter%3D%22url(%23filter3_f_107_493)%22%3E%0A%3Ccircle%20cx%3D%2225.8253%22%20cy%3D%2221.214%22%20r%3D%222.65833%22%20fill%3D%22%23246CFD%22%2F%3E%0A%3C%2Fg%3E%0A%3Cdefs%3E%0A%3Cfilter%20id%3D%22filter0_f_107_493%22%20x%3D%22-2.885%22%20y%3D%22-6.885%22%20width%3D%2256.9927%22%20height%3D%2255.77%22%20filterUnits%3D%22userSpaceOnUse%22%20color-interpolation-filters%3D%22sRGB%22%3E%0A%3CfeFlood%20flood-opacity%3D%220%22%20result%3D%22BackgroundImageFix%22%2F%3E%0A%3CfeBlend%20mode%3D%22normal%22%20in%3D%22SourceGraphic%22%20in2%3D%22BackgroundImageFix%22%20result%3D%22shape%22%2F%3E%0A%3CfeGaussianBlur%20stdDeviation%3D%228.4425%22%20result%3D%22effect1_foregroundBlur_107_493%22%2F%3E%0A%3C%2Ffilter%3E%0A%3Cfilter%20id%3D%22filter1_f_107_493%22%20x%3D%2212.3944%22%20y%3D%227.78305%22%20width%3D%2227.0452%22%20height%3D%2225.9708%22%20filterUnits%3D%22userSpaceOnUse%22%20color-interpolation-filters%3D%22sRGB%22%3E%0A%3CfeFlood%20flood-opacity%3D%220%22%20result%3D%22BackgroundImageFix%22%2F%3E%0A%3CfeBlend%20mode%3D%22normal%22%20in%3D%22SourceGraphic%22%20in2%3D%22BackgroundImageFix%22%20result%3D%22shape%22%2F%3E%0A%3CfeGaussianBlur%20stdDeviation%3D%222.33064%22%20result%3D%22effect1_foregroundBlur_107_493%22%2F%3E%0A%3C%2Ffilter%3E%0A%3Cfilter%20id%3D%22filter2_f_107_493%22%20x%3D%2216.2831%22%20y%3D%2211.672%22%20width%3D%2218.6564%22%20height%3D%2218.6559%22%20filterUnits%3D%22userSpaceOnUse%22%20color-interpolation-filters%3D%22sRGB%22%3E%0A%3CfeFlood%20flood-opacity%3D%220%22%20result%3D%22BackgroundImageFix%22%2F%3E%0A%3CfeBlend%20mode%3D%22normal%22%20in%3D%22SourceGraphic%22%20in2%3D%22BackgroundImageFix%22%20result%3D%22shape%22%2F%3E%0A%3CfeGaussianBlur%20stdDeviation%3D%221.60845%22%20result%3D%22effect1_foregroundBlur_107_493%22%2F%3E%0A%3C%2Ffilter%3E%0A%3Cfilter%20id%3D%22filter3_f_107_493%22%20x%3D%2221.5809%22%20y%3D%2216.9695%22%20width%3D%228.48868%22%20height%3D%228.48893%22%20filterUnits%3D%22userSpaceOnUse%22%20color-interpolation-filters%3D%22sRGB%22%3E%0A%3CfeFlood%20flood-opacity%3D%220%22%20result%3D%22BackgroundImageFix%22%2F%3E%0A%3CfeBlend%20mode%3D%22normal%22%20in%3D%22SourceGraphic%22%20in2%3D%22BackgroundImageFix%22%20result%3D%22shape%22%2F%3E%0A%3CfeGaussianBlur%20stdDeviation%3D%220.793069%22%20result%3D%22effect1_foregroundBlur_107_493%22%2F%3E%0A%3C%2Ffilter%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E%0A')
    center/contain no-repeat;
}

.how {
  position: relative;
  padding: 77px 0 179px;
}

.how::before {
  background: #fff;
  content: '';
  position: absolute;
  top: 297px;
  display: block;
  width: 100%;
  height: 1px;
  opacity: 0.2;
  z-index: -1;
}

.how__title {
  text-align: center;
  text-transform: uppercase;
}

.how__list {
  margin-top: 58px;
  display: flex;
  gap: 55px;
}

.how__list .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 23px;
  flex: 1;
}

.how__list .item__number {
  position: relative;
  font-size: 46px;
  font-weight: 300;
  text-align: center;
  flex-shrink: 0;
}

.how__list .item:last-child .item__number::before {
  display: none;
}

.how__list .item__decor {
  display: block;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  width: 20px;
  background: linear-gradient(44deg, #246cfd 17.41%, #6a45e6 44.83%, #ff4243 86.18%);
  border-radius: 10px;
  animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.5);
  }
  50% {
    transform: scale(1);
  }
}

.how__list .item:nth-child(1) .item__decor {
  animation-delay: 0s;
}
.how__list .item:nth-child(2) .item__decor {
  animation-delay: 0.25s;
}
.how__list .item:nth-child(3) .item__decor {
  animation-delay: 0.5s;
}
.how__list .item:nth-child(4) .item__decor {
  animation-delay: 1s;
}

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

.how__ticker {
  position: absolute;
  bottom: 82px;
  background: linear-gradient(90deg, #246cfd 0%, #6a45e6 20%, #ff4243 70%);
  transform: rotate(-1.718deg);
}

.how__ticker .swiper-wrapper {
  transition: linear;
}

.how__ticker .swiper-slide {
  aspect-ratio: 384/49;
  width: 384px;
  background: center/contain no-repeat;
}

.demo {
  padding: 77px 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 85%, rgba(0, 0, 0, 0.6) 100%),
    url('../img/hero/hero-bg.webp') center/cover no-repeat;
}

.demo__title {
  font-size: 102px;
}

.demo__content {
  margin-top: 20px;
  display: flex;
  gap: 60px;
}

.demo__content-left {
  position: relative;
  width: 560px;
  flex-shrink: 0;
}

.demo__text {
  font-size: 22px;
  line-height: 145%;
}

.demo__text span {
  background: var(--bg-l-gradient);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
}

.demo__text i {
  font-style: italic;
  font-weight: 200;
}

.demo__sub-text {
  font: 400 42px/82% 'JetBrains Mono';
  position: absolute;
  top: 117px;
  left: 122px;
  text-transform: uppercase;
  transform: rotate(-4.604deg);
}

.demo__content-bottom {
  margin-top: 126px;
}

.demo .content-bottom {
  display: flex;
  align-items: center;
  gap: 27px;
}

.demo .content-bottom__image {
  aspect-ratio: 1/1;
  width: 62px;
  flex-shrink: 0;
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2262%22%20height%3D%2262%22%20viewBox%3D%220%200%2062%2062%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Crect%20width%3D%2262%22%20height%3D%2262%22%20fill%3D%22url(%23paint0_linear_107_695)%22%2F%3E%0A%3Cpath%20d%3D%22M44.8125%2025.9531H42.4219V24.625C42.4219%2019.4982%2038.2507%2015.3281%2033.125%2015.3281H28.875C23.7493%2015.3281%2019.5781%2019.4982%2019.5781%2024.625V25.9531H17.1875C15.5771%2025.9531%2014.2656%2027.2636%2014.2656%2028.875V35.25C14.2656%2036.8614%2015.5771%2038.1719%2017.1875%2038.1719H19.6587C20.061%2041.7476%2023.0676%2044.5469%2026.75%2044.5469H27.1401C27.4898%2045.7694%2028.6051%2046.6719%2029.9375%2046.6719H32.0625C33.6729%2046.6719%2034.9844%2045.3614%2034.9844%2043.75C34.9844%2042.1386%2033.6729%2040.8281%2032.0625%2040.8281H29.9375C28.6051%2040.8281%2027.4898%2041.7306%2027.1401%2042.9531H26.75C23.6746%2042.9531%2021.1719%2040.4504%2021.1719%2037.375V24.625C21.1719%2020.3771%2024.6271%2016.9219%2028.875%2016.9219H33.125C37.3729%2016.9219%2040.8281%2020.3771%2040.8281%2024.625V37.375C40.8281%2037.8149%2041.1851%2038.1719%2041.625%2038.1719H44.8125C46.4229%2038.1719%2047.7344%2036.8614%2047.7344%2035.25V28.875C47.7344%2027.2636%2046.4229%2025.9531%2044.8125%2025.9531ZM29.9375%2042.4219H32.0625C32.795%2042.4219%2033.3906%2043.0175%2033.3906%2043.75C33.3906%2044.4825%2032.795%2045.0781%2032.0625%2045.0781H29.9375C29.205%2045.0781%2028.6094%2044.4825%2028.6094%2043.75C28.6094%2043.0175%2029.205%2042.4219%2029.9375%2042.4219ZM15.8594%2035.25V28.875C15.8594%2028.1425%2016.455%2027.5469%2017.1875%2027.5469H19.5781V36.5781H17.1875C16.455%2036.5781%2015.8594%2035.9825%2015.8594%2035.25ZM46.1406%2035.25C46.1406%2035.9825%2045.545%2036.5781%2044.8125%2036.5781H42.4219V27.5469H44.8125C45.545%2027.5469%2046.1406%2028.1425%2046.1406%2028.875V35.25Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M29.9375%2024.8906H28.875C28.5263%2024.8906%2028.2192%2025.1168%2028.1134%2025.4499L25.4571%2033.9499C25.3264%2034.3701%2025.5609%2034.8173%2025.9801%2034.9481C26.4096%2035.0819%2026.8475%2034.8453%2026.9803%2034.4251L27.4694%2032.8594H31.343L31.8321%2034.4251C31.94%2034.7665%2032.2534%2034.9844%2032.5937%2034.9844C32.6726%2034.9844%2032.7514%2034.973%2032.8324%2034.9481C33.2515%2034.8173%2033.486%2034.3701%2033.3553%2033.9499L30.6991%2025.4499C30.5932%2025.1168%2030.2861%2024.8906%2029.9375%2024.8906ZM27.9672%2031.2656L29.4062%2026.6587L30.8452%2031.2656H27.9672Z%22%20fill%3D%22white%22%2F%3E%0A%3Cpath%20d%3D%22M35.7812%2024.8906C35.3413%2024.8906%2034.9844%2025.2476%2034.9844%2025.6875V34.1875C34.9844%2034.6274%2035.3413%2034.9844%2035.7812%2034.9844C36.2212%2034.9844%2036.5781%2034.6274%2036.5781%2034.1875V25.6875C36.5781%2025.2476%2036.2212%2024.8906%2035.7812%2024.8906Z%22%20fill%3D%22white%22%2F%3E%0A%3Cdefs%3E%0A%3ClinearGradient%20id%3D%22paint0_linear_107_695%22%20x1%3D%2262%22%20y1%3D%2262%22%20x2%3D%220%22%20y2%3D%220%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%0A%3Cstop%20stop-color%3D%22%23FF4243%22%2F%3E%0A%3Cstop%20offset%3D%220.524038%22%20stop-color%3D%22%236A45E6%22%2F%3E%0A%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23246CFD%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E%0A')
    center/contain no-repeat;
}

.demo .content-bottom__text {
  background: var(--bg-l-gradient);
  width: 342px;
  flex-shrink: 0;
  -webkit-background-clip: text;
}

.demo .content-bottom__text b {
  font-weight: 700;
}

.demo .content-bottom__text span {
  color: transparent;
  font-weight: 700;
}

.demo .form {
  position: relative;
  background: #1c1c1c;
  padding: 20px;
}

.demo .form .input {
  background: transparent;
  padding: 0;
  border: none;
  height: 44px;
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3019607843);
  color: var(--text-color);
}

.demo .form .input::-moz-placeholder {
  color: var(--text-color);
  opacity: 1;
}

.demo .form .input::placeholder {
  color: var(--text-color);
  opacity: 1;
}

.demo .form .btn {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.demo .form__bottom-text {
  margin-top: 28px;
  font-size: 12px;
  font-weight: 400;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.4);
}

.demo .form__bottom-text a {
  color: #fff;
  text-decoration: underline;
}

.demo .form::before,
.demo .form::after {
  content: '';
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%228%22%20height%3D%228%22%20viewBox%3D%220%200%208%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Crect%20width%3D%221.33333%22%20height%3D%228%22%20transform%3D%22matrix(4.37114e-08%20-1%20-1%20-4.37114e-08%208%201.33325)%22%20fill%3D%22white%22%2F%3E%0A%3Crect%20width%3D%221.33333%22%20height%3D%228%22%20transform%3D%22matrix(1%208.74228e-08%208.74228e-08%20-1%200%208)%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E%0A')
    center/contain no-repeat;
}

.demo .form::before {
  top: auto;
  left: 10px;
  bottom: 10px;
  transform: rotate(270deg);
}

.demo .form::after {
  right: 10px;
  top: 10px;
  transform: rotate(90deg);
}

.success {
  position: relative;
  padding: 124px 0 20px;
  font-size: 16px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 85%, rgba(0, 0, 0, 0.6) 100%),
    url('../img/demo/demo-bg.webp') center/cover no-repeat;
  z-index: 0;
  min-height: 100vh;
  height: 100%;
}

.success__container {
  position: relative;
}

.success__container::before {
  content: '';
  position: absolute;
  left: 25%;
  top: -50%;
  display: block;
  aspect-ratio: 829/991;
  width: 664px;
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%22829%22%20height%3D%22991%22%20viewBox%3D%220%200%20829%20991%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20filter%3D%22url(%23filter0_f_107_138)%22%3E%0A%3Cpath%20d%3D%22M578.983%20190.992C747.982%20236.276%20562.169%20337.344%20516.886%20506.343C471.603%20675.341%20583.997%20848.273%20414.999%20802.99C246%20757.707%20145.709%20583.998%20190.992%20414.999C236.275%20246.001%20409.985%20145.709%20578.983%20190.992Z%22%20fill%3D%22url(%23paint0_linear_107_138)%22%2F%3E%0A%3C%2Fg%3E%0A%3Cdefs%3E%0A%3Cfilter%20id%3D%22filter0_f_107_138%22%20x%3D%220.119141%22%20y%3D%220.119385%22%20width%3D%22828.54%22%20height%3D%22990.189%22%20filterUnits%3D%22userSpaceOnUse%22%20color-interpolation-filters%3D%22sRGB%22%3E%0A%3CfeFlood%20flood-opacity%3D%220%22%20result%3D%22BackgroundImageFix%22%2F%3E%0A%3CfeBlend%20mode%3D%22normal%22%20in%3D%22SourceGraphic%22%20in2%3D%22BackgroundImageFix%22%20result%3D%22shape%22%2F%3E%0A%3CfeGaussianBlur%20stdDeviation%3D%2290%22%20result%3D%22effect1_foregroundBlur_107_138%22%2F%3E%0A%3C%2Ffilter%3E%0A%3ClinearGradient%20id%3D%22paint0_linear_107_138%22%20x1%3D%22384.335%22%20y1%3D%22688.988%22%20x2%3D%22584.718%22%20y2%3D%22300.749%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%0A%3Cstop%20offset%3D%220.202177%22%20stop-color%3D%22%23FF4243%22%2F%3E%0A%3Cstop%20offset%3D%220.519231%22%20stop-color%3D%22%236A45E6%22%2F%3E%0A%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23246CFD%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E%0A')
    center/cover no-repeat;
  z-index: -1;
  transform: rotate(63deg);
}

.success__title {
  margin: 0 auto;
  width: 630px;
  text-align: center;
  font-size: 44px;
  line-height: 127%;
}

.success__sub-title {
  margin: 32px auto 0;
  width: 669px;
  text-align: center;
  font-size: 26px;
  font-weight: 500;
  background: var(--bg-l-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.success__sub-title span {
  font-weight: 700;
  color: transparent;
}

.sfmh-widget-container {
  bottom: auto;
  top: 400px;
}

@media (max-width: 1260px) {
  :root {
    --container-width: 760px;
    --h1: 70px;
    --h2: 58px;
  }

  .header__logo {
    width: 192px;
  }

  .header__nav-list {
    display: none;
  }

  .header__btn {
    display: none;
  }

  .header__burger-btn {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    gap: 4px;
    padding: 1px;
    aspect-ratio: 1/1;
    width: 28px;
    cursor: pointer;
  }

  .header__burger-btn span {
    display: block;
    background-color: #fff;
    height: 2px;
    transition: var(--transition);
  }

  .header__burger-btn span:nth-child(1) {
    width: 100%;
  }

  .header__burger-btn span:nth-child(2) {
    width: 50%;
  }

  .header__burger-btn span:nth-child(3) {
    width: 75%;
  }

  .header__lang {
    position: absolute;
    right: 60px;
    top: 9px;
  }

  .burger-menu .btn::before {
    left: 6px;
    bottom: 6px;
  }

  .burger-menu .btn::after {
    right: 6px;
    top: 6px;
  }

  .hero {
    padding: 80px 0 24px;
  }

  .hero__container {
    flex-direction: column;
    gap: 15px;
  }

  .hero__container::before {
    left: -24%;
    top: -13%;
    width: 522px;
  }

  .hero__container::after {
    display: none;
  }

  .hero__title {
    margin: 10px 0 0;
  }

  .hero__sub-title {
    margin-top: 0;
    font-size: 20px;
    gap: 1px;
  }

  .hero__sub-title .item:nth-child(1) {
    margin-left: 0px;
  }

  .hero__sub-title .item:nth-child(2) {
    margin-left: 135px;
  }

  .hero__sub-title .item:nth-child(3) {
    margin-left: 30px;
  }

  .hero__part-1 {
    display: flex;
    flex-direction: column-reverse;
    justify-content: start;
    width: 100%;
  }

  .hero__part-2 {
    width: 100%;
  }

  .hero__slider {
    padding: 16px 14px;
    width: 306px;
  }

  .hero__slider::before {
    left: 18px;
    top: 57px;
  }

  .hero__slider .swiper-slide {
    font-size: 14px;
  }

  .hero__part-2-text {
    margin-top: 77px;
    font-size: 16px;
  }

  .hero__btn {
    margin-top: 22px;
  }

  .hero__image {
    width: 620px;
    top: 22%;
    left: -20%;
  }

  .features {
    padding: 48px 0;
  }

  .features__container {
    flex-direction: column;
  }

  .features__col {
    width: 100%;
  }

  .features__col-1-text {
    position: absolute;
    font-size: 20px;
    /* bottom: 70px; */
    bottom: 88px;
  }

  .features__btn {
    margin-top: 98px;
    width: 100%;
  }

  .why {
    padding: 54px 0;
  }

  .why__list {
    margin-top: 40px;
    flex-direction: column;
    gap: 16px;
  }

  .why__list .item {
    flex-direction: row;
    align-items: center;
    padding: 10px 20px;
  }

  .why__list .item__text br {
    display: none;
  }

  .why__list .item::before {
    left: 6px;
    bottom: 6px;
  }

  .why__list .item::after {
    right: 6px;
    top: 6px;
  }

  .why__bottom {
    flex-direction: column;
  }

  .why__bottom-title {
    font-size: 30px;
  }

  .why__bottom-text {
    position: static;
    margin: 15px 0 0 56px;
  }

  .why__btn {
    margin-top: 15px;
    align-self: auto;
  }

  .seller {
    padding: 54px 0;
  }

  .seller__ticker {
    background: linear-gradient(90deg, #246cfd 0%, #6a45e6 10%, #ff4243 50%);
  }

  .seller__ticker .swiper-slide {
    width: 263px;
  }

  .seller__list {
    margin-top: 32px;
    flex-direction: column;
    gap: 16px;
  }

  .seller__list .item__text {
    font-size: 16px;
  }

  .for {
    padding: 54px 0;
  }

  .for__container {
    flex-direction: column;
  }

  .for__title {
    width: 100%;
    text-align: center;
  }

  .for__title span {
    margin: 0 auto;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    transform: rotate(-6.216deg) translate(-20px, 4px);
  }

  .for__list {
    margin-top: 30px;
  }

  .how {
    padding: 54px 0 138px;
  }

  .how::before {
    top: 244px;
  }

  .how__list {
    margin-top: 47px;
    gap: 16px;
  }

  .how__list .item {
    gap: 18px;
  }

  .how__ticker {
    background: linear-gradient(90deg, #246cfd 0%, #6a45e6 10%, #ff4243 50%);
    bottom: 96px;
  }

  .how__ticker .swiper-slide {
    width: 263px;
  }

  .demo {
    padding: 77px 0 44px;
  }

  .demo__title {
    font-size: 72px;
  }

  .demo__content {
    margin-top: 34px;
    gap: 20px;
  }

  .demo__content-left {
    width: auto;
    flex-shrink: 1;
  }

  .demo__text {
    font-size: 20px;
  }

  .demo__sub-text {
    font-size: 32px;
    top: 150px;
    left: -2px;
  }

  .demo .content-bottom {
    gap: 18px;
    align-items: start;
  }

  .demo .content-bottom__image {
    width: 50px;
  }

  .demo .content-bottom__text {
    width: auto;
    flex-shrink: 1;
  }

  .demo .form {
    padding: 20px 18px;
  }

  .demo .form::before {
    left: 6px;
    bottom: 6px;
  }

  .demo .form::after {
    right: 6px;
    top: 6px;
  }

  .success {
    padding: 163px 0 24px;
  }

  .success__container::before {
    left: 13%;
    top: -168%;
    width: 522px;
  }

  .success__title {
    width: 520px;
    font-size: 35px;
  }

  .success__sub-title {
    width: 520px;
    font-size: 18px;
  }
}

@media (max-width: 760px) {
  :root {
    --container-width: 372px;
  }

  [class*='__container'] {
    flex-wrap: wrap;
  }

  .header__lang {
    position: static;
    top: auto;
    right: auto;
  }

  .hero__slider::before {
    left: 113px;
    top: 56px;
  }

  .hero__slider .swiper {
    margin-left: 129px;
  }

  .hero__part-2-text {
    width: 242px;
  }

  .hero__part-2-text br {
    display: none;
  }

  .hero__image {
    width: 577px;
    top: 31%;
    left: -64%;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 70%, rgb(0, 0, 0) 100%),
      url('../img/hero/hero-image.webp') center/contain no-repeat;
  }

  .features__container {
    gap: 10px;
  }

  .features__col {
    gap: 10px;
  }

  .features__title span {
    left: 59px;
    top: 4px;
  }

  .features__btn {
    /* margin-top: 116px; */
    margin-top: 160px;
  }

  .why__title {
    text-align: left;
  }

  .why__title span {
    transform: rotate(6.158deg) translate(80px, -6px);
  }

  .seller__ticker {
    background: linear-gradient(90deg, #246cfd 0%, #6a45e6 5%, #ff4243 20%);
  }

  .for__list .item {
    width: 100%;
  }

  .how::before {
    display: none;
  }

  .how__list {
    flex-direction: column;
    gap: 29px;
  }

  .how__list .item {
    flex-direction: row;
  }

  .how__list .item__number {
    width: 61px;
  }

  .how__list .item__number::before {
    background: #fff;
    content: '';
    position: absolute;
    left: 89px;
    top: 26px;
    display: block;
    height: 100px;
    width: 1px;
    z-index: -1;
    opacity: 0.2;
  }

  .how__list .item__text {
    text-align: start;
  }

  .how__ticker {
    background: linear-gradient(90deg, #246cfd 0%, #6a45e6 5%, #ff4243 20%);
  }

  .demo__content {
    margin-top: 28px;
    flex-direction: column;
  }

  .demo .form .btn {
    min-width: auto;
  }

  .success__container::before {
    left: -12%;
    top: -73%;
    width: 388px;
  }

  .success__title {
    width: 100%;
  }

  .success__sub-title {
    width: 100%;
  }

  body .sfmh-widget-container.collapsed {
    top: 65% !important;
  }
}
#noologic-widget-slot .sfmh-widget-container {
  position: relative;
  top: 20px;
  margin-bottom: 20px;
}
@media (max-width: 560px) {
    #noologic-widget-slot .sfmh-widget-container .sfmh-chat-window {
       height: calc(100% - 66px)!important;
       top: 66px;
    }
    #noologic-widget-slot .sfmh-widget-container.collapsed .sfmh-chat-window {
       height: 100px!important;
    }
}