@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями и видео
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

button {
  padding: 0;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
   */
  scrollbar-gutter: stable;
}

/**
  Плавный скролл
 */
html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут fill со значением 'none' или начинается с 'url')
 */
:where([fill]:not([fill=none],
[fill^=url])) {
  fill: currentColor;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут stroke со значением 'none')
 */
:where([stroke]:not([stroke=none],
[stroke^=url])) {
  stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

/**
  Приведение рамок таблиц в классический 'collapse' вид
 */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat/Montserrat-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat/Montserrat-Medium.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat/Montserrat-SemiBold.ttf) format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat/Montserrat-Bold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url(../fonts/Oswald/Oswald-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-dark: #000;
  --color-purple: #21083B;
  --color-header-button: #EBEEF6;
  --color-header-lang-button: rgba(255, 255, 255, 0.30);
  --color-text-white: #FFF;
  --color-text-white-accent: #EBEEF6;
  --color-text-blue: #3865C2;
  --color-border-purple: 1px solid #9578FA;
  --color-border-blue: 1px solid var(--New-Blue-Blue-Dark, #3865C2);
  --font-family-base: "Montserrat", sans-serif;
  --font-family-accent: "Oswald", sans-serif;
  --transiotion-duration: 0.2s;
}

.visibility-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0) !important;
  overflow: hidden !important;
}

@media (width <= 750.98px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (width > 750.98px) {
  .visible-mobile {
    display: none !important;
  }
}

@media (width <= 1750.98px) {
  .hidden-laptop {
    display: none !important;
  }
}

@media (width > 1750.98px) {
  .visible-laptop {
    display: none !important;
  }
}

@media (width <= 1199.98px) {
  .hidden-tablet {
    display: none !important;
  }
}

@media (width > 1199.98px) {
  .visible-tablet {
    display: none !important;
  }
}

html,
body {
  margin: 0;
  padding: 0;
  background-color: var(--color-dark);
  overflow-x: hidden;
  position: relative;
}

body {
  z-index: 1;
}

.container {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.content-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: black;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  gap: 200px;
  z-index: 1;
}
@media (width <= 1750.98px) {
  .content-wrapper {
    gap: 150px;
  }
}
@media (width <= 750.98px) {
  .content-wrapper {
    padding: 50px 16px 0px 16px;
    max-width: 450px;
    gap: 40px;
  }
}
.content-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1250px;
  z-index: -1;
  bottom: 0;
  background-image: url(../images/img/body-footer-bg-car.png), url(../images/img/body-footer-bg.png);
  background-repeat: no-repeat;
  background-position: calc(50% - 130px) calc(100% - 166px), center bottom;
}
@media (width <= 750.98px) {
  .content-wrapper::after {
    height: 850px;
    background-image: url(../images/img/body-mobile-bottom-car-bg.png), url(../images/img/body-mobile-bottom.png);
    background-position: right calc(100% - 180px), center calc(100% + 200px);
    background-size: 370px 232px, 100%;
  }
}

/* уменьшаем размер точки относительно размера шрифта li */
ul li::marker {
  font-size: 0.5em;
  color: #fff;
}

/* фиксим скролл, перекрывающий header */
section[id] {
  scroll-margin-top: 112px;
}

@media (width <= 750.98px) {
  section[id] {
    scroll-margin-top: 82px;
  }
}
.js-video-preview {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.js-video-preview iframe {
  border: none;
}

[data-i18n][dir=rtl] {
  unicode-bidi: embed;
  direction: rtl;
  text-align: left;
}

[data-i18n][dir=ltr] {
  direction: ltr;
  unicode-bidi: embed;
}

.header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  justify-content: center;
}
@media (width <= 750.98px) {
  .header {
    padding: 20px 16px;
  }
}
.header--fixed {
  position: fixed;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.25);
}
.header--fixed:has(.header__overlay.is-active) {
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}
.header__inner {
  width: 100%;
  display: flex;
  padding: 50px 0px 20px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
}
@media (width <= 1750.98px) {
  .header__inner {
    max-width: 1200px;
    padding-inline: 20px;
  }
}
@media (width <= 750.98px) {
  .header__inner {
    padding: 0;
    max-width: 450px;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header__menu-wrapper {
  display: flex;
  gap: 40px;
}
@media (width <= 750.98px) {
  .header__menu-wrapper {
    gap: 10px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header__nav-link {
  color: var(--color-text-white);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-decoration: none;
  transition: opacity var(--transiotion-duration);
}
.header__nav-link:hover {
  opacity: 0.7;
}
.header__cta {
  display: flex;
  height: 42px;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 10px;
  background-color: var(--color-header-button);
  transition: opacity var(--transiotion-duration);
  color: var(--color-text-blue);
  text-align: center;
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
}
.header__cta:hover {
  opacity: 0.7;
}
.header__lang {
  display: flex;
  width: 42px;
  height: 42px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: var(--color-header-lang-button);
  position: relative;
  user-select: none;
  color: var(--color-text-white);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
.header__lang-item {
  width: 100%;
  border-radius: 10px;
}
.header__lang-current {
  background: none;
  border: none;
  color: var(--color-text-white);
  cursor: pointer;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.header__lang-current, .header__lang-btn {
  transition: background-color 0.2s ease, transform 0.15s ease;
}
.header__lang-current:hover, .header__lang-btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}
.header__lang-current:active, .header__lang-btn:active {
  transform: scale(0.98);
}
.header__lang-list {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 0;
  justify-content: center;
  align-items: center;
  list-style: none;
  border-radius: 10px;
  background: var(--color-header-lang-button);
  width: 42px;
  z-index: 10;
}
.header__lang--open .header__lang-list {
  display: flex;
}
.header__lang--open .header__lang-current {
  display: none;
}
.header__lang-btn {
  display: block;
  height: 42px;
  width: 100%;
  background: none;
  border: none;
  color: var(--color-text-white);
  cursor: pointer;
  border-radius: 10px;
}
.header__overlay {
  display: contents;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-clip: padding-box;
  flex-direction: column;
  padding: 20px 16px 0px 16px;
  overflow-y: auto;
  z-index: 200;
  border-radius: 0px 0px 20px 20px;
}
.header__overlay-nav {
  display: none;
  padding: 40px 16px;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
  align-self: stretch;
}
.header__overlay-nav-link {
  color: var(--color-text-white);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-decoration: none;
  transition: opacity var(--transiotion-duration);
}
.header__overlay-nav-link:hover {
  opacity: 0.7;
}
.header__overlay-nav.is-active {
  display: flex;
}
.header__overlay-cta {
  display: flex;
  height: 42px;
  width: 240px;
  padding: 12px 16px;
  position: relative;
  left: 16px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: var(--color-header-button);
  transition: opacity var(--transiotion-duration);
  color: var(--color-text-blue);
  text-align: center;
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
}
.header__overlay-cta:hover {
  opacity: 0.7;
}
.header__overlay.is-active {
  display: flex;
}

.burger-button {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 45px;
  height: 40px;
  padding: 7px;
  border: none;
  background-color: transparent;
}
.burger-button.is-active .burger-button__line {
  position: relative;
  top: 5px;
}
.burger-button.is-active .burger-button__line:first-child {
  rotate: 45deg;
  translate: -0.2em 0.6em;
}
.burger-button.is-active .burger-button__line:nth-child(2) {
  width: 0;
}
.burger-button.is-active .burger-button__line:last-child {
  rotate: -45deg;
  translate: -0.2em -0.9em;
}
.burger-button__line {
  width: 100%;
  height: 2.5px;
  background: var(--color-header-button);
  border-radius: 3px;
  transition-duration: var(--transiotion-duration);
}

.revolution {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 280px;
  margin-bottom: 260px;
  width: 50%;
  z-index: 1;
}
@media (width <= 1750.98px) {
  .revolution {
    gap: 20px;
    margin-top: 220px;
    margin-bottom: 140px;
  }
}
@media (width <= 750.98px) {
  .revolution {
    margin-block: 120px 326px;
    width: 100%;
    gap: 20px;
    padding-inline: 16px;
  }
}
.revolution__wrappper {
  max-width: 1440px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  z-index: 1;
}
@media (width <= 1750.98px) {
  .revolution__wrappper {
    max-width: 1200px;
    padding-inline: 20px;
  }
}
@media (width <= 750.98px) {
  .revolution__wrappper {
    max-width: 450px;
    position: relative;
    padding-inline: 0px;
  }
}
.revolution__wrappper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1250px;
  top: 0;
  left: 0%;
  background-image: url(../images/img/body-up-bg.png);
  background-repeat: no-repeat;
  background-position: top right;
  z-index: 0;
}
@media (width <= 1750.98px) {
  .revolution__wrappper::after {
    background-size: contain;
  }
}
@media (width <= 750.98px) {
  .revolution__wrappper::after {
    max-width: 450px;
    height: 1580px;
    background-image: url(../images/img/body-mobile-up-bg.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
  }
}
.revolution__video {
  position: absolute;
  width: 100%;
  max-width: 1475px;
  aspect-ratio: 16/9;
  right: 0px;
  top: 0px;
  z-index: 0;
}
@media (width <= 1750.98px) {
  .revolution__video {
    max-width: 1050px;
    right: -150px;
    aspect-ratio: 16/10;
  }
}
@media (width <= 750.98px) {
  .revolution__video {
    left: -225px;
    top: auto;
    bottom: -20px;
    right: auto;
    min-width: 715px;
    aspect-ratio: 16/9;
  }
}
.revolution__video .video-preview__thumb {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}
.revolution__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  border: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.revolution__title {
  color: var(--color-text-white);
  font-family: "Oswald";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
}
@media (width <= 1750.98px) {
  .revolution__title {
    font-size: 36px;
  }
}
@media (width <= 750.98px) {
  .revolution__title {
    font-size: 24px;
  }
}
.revolution__subtitle {
  color: var(--New-Main-White-Primary, #FFF);
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (width <= 1750.98px) {
  .revolution__subtitle {
    font-size: 20px;
  }
}
@media (width <= 750.98px) {
  .revolution__subtitle {
    font-size: 16px;
  }
}
.revolution__text {
  color: var(--color-text-white);
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
  text-align: left;
}
@media (width <= 750.98px) {
  .revolution__text {
    font-size: 14px;
    width: 90%;
    margin-bottom: 5px;
  }
}
.revolution__metrics-block {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (width <= 750.98px) {
  .revolution__metrics-block {
    gap: 10px;
  }
}
.revolution__metric {
  display: flex;
  padding: 20px 30px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 20px;
  border: 1px solid var(--1, rgba(255, 255, 255, 0.2));
  background: rgba(30, 30, 30, 0.5);
}
@media (width <= 750.98px) {
  .revolution__metric {
    padding: 20px;
  }
}
.revolution__metric-title {
  color: var(--color-text-white);
  font-family: "Oswald";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (width <= 750.98px) {
  .revolution__metric-title {
    font-size: 20px;
    padding-right: 40px;
  }
}
.revolution__metric-text {
  color: var(--color-text-white);
  font-family: "Montserrat";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (width <= 750.98px) {
  .revolution__metric-text {
    font-size: 14px;
  }
}

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.video-modal.active {
  display: flex;
}

.video-modal__container {
  position: relative;
  padding: 60px;
  background: transparent;
  border-radius: 20px;
  z-index: 1;
  width: 80vw;
  max-width: 1120px;
  aspect-ratio: 16/10;
  overflow: hidden;
}
@media (width <= 750.98px) {
  .video-modal__container {
    padding: 16px;
    width: 90%;
  }
}
.video-modal__container--creators {
  width: 75%;
  aspect-ratio: 16/28;
}

.video-modal__inner {
  width: 100%;
  height: 97%;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
}

.video-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: #2E2E4F;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 36px;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  z-index: 2;
}
.video-modal__close:hover {
  background: #4B4B7A;
}

.video-modal__container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal.active .revolution__video::after {
  opacity: 0;
}

.video-preview__play {
  position: absolute;
  top: 50%;
  left: 65%;
  width: 170px;
  height: 170px;
  transform: translate(-50%, -50%);
  background: url("../../images/icons/play.png") center/contain no-repeat;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.video-preview__play--creators, .video-preview__play--achievment {
  left: 50%;
}
.video-preview__play:hover {
  opacity: 1;
}
@media (width <= 750.98px) {
  .video-preview__play {
    width: 140px;
    height: 140px;
    left: 61%;
  }
  .video-preview__play--creators, .video-preview__play--achievment {
    width: 120px;
    height: 120px;
    left: 50%;
  }
}

.revolution__video.playing .video-preview__play {
  display: none;
}

.loss {
  width: 100%;
  max-width: 1440px;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  border-radius: 40px;
  background-image: url(../images/img/loss-metrics.png), url(../images/img/loss-bg.png);
  background-position: 40px center, right top;
  background-repeat: no-repeat;
  margin-top: 200px;
}
@media (width <= 1750.98px) {
  .loss {
    max-width: 1200px;
    padding: 60px 20px;
    margin-top: 150px;
    background-position: 20px center, right top;
  }
}
@media (width <= 750.98px) {
  .loss {
    padding: 40px 16px;
    margin-top: 0;
    padding-bottom: 350px;
    max-width: 450px;
    background-image: url(../images/img/loss-metrics-mobile.png), url(../images/img/loss-mobile-bg.png);
    background-position: center calc(100% - 40px), bottom;
    background-repeat: no-repeat;
    background-size: 311px 270px, cover;
    border-radius: 20px;
  }
}
.loss__title {
  color: var(--color-text-white-accent);
  font-family: var(--font-family-accent);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  margin-bottom: 40px;
  width: 39%;
}
@media (width <= 1750.98px) {
  .loss__title {
    font-size: 36px;
  }
}
@media (width <= 750.98px) {
  .loss__title {
    font-size: 24px;
    width: 100%;
    margin-bottom: 20px;
  }
}
.loss__text {
  color: var(--color-text-white);
  font-family: var(--font-family-base);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
  width: 39%;
}
@media (width <= 750.98px) {
  .loss__text {
    width: 100%;
    margin-bottom: 15px;
    font-size: 14px;
  }
}
.loss #loss__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
  width: 39%;
  padding: 0;
  margin-top: 0;
}
@media (width <= 750.98px) {
  .loss #loss__list {
    width: 100%;
    margin-bottom: 40px;
  }
}
.loss__item {
  color: var(--color-text-white);
  font-family: var(--font-family-base);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (width <= 750.98px) {
  .loss__item {
    font-size: 14px;
  }
}
.loss__metrics {
  display: flex;
  padding: 20px 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 20px;
  border: var(--color-border-purple);
  background: var(--color-purple);
  box-shadow: 0px 0px 50px 0px rgba(140, 62, 240, 0.5);
  margin-right: 5px;
}
@media (width <= 1750.98px) {
  .loss__metrics {
    width: 39%;
    padding: 20px;
    margin-right: 0;
  }
}
@media (width <= 750.98px) {
  .loss__metrics {
    padding: 20px;
    width: 100%;
  }
}
.loss__metrics-title {
  color: var(--color-text-white);
  font-family: var(--font-family-accent);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (width <= 750.98px) {
  .loss__metrics-title {
    font-size: 20px;
  }
}
.loss__metrics-text {
  color: var(--color-text-white);
  font-family: var(--font-family-base);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (width <= 750.98px) {
  .loss__metrics-text {
    font-size: 14px;
  }
}

.future {
  display: flex;
  max-width: 1440px;
  width: 100%;
  padding: 80px 40px;
  flex-direction: column;
  align-items: flex-start;
  background-image: url(../images/img/future-bg.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  border-radius: 40px;
}
@media (width <= 1750.98px) {
  .future {
    padding: 60px 20px;
    max-width: 1200px;
    background-size: contain;
    background-position: calc(100% + 40px) bottom;
  }
}
@media (width <= 750.98px) {
  .future {
    max-width: 450px;
    padding: 40px 16px;
    background-image: url(../../images/img/test-img.png);
    background-position: center bottom;
    background-size: contain;
    border-radius: 20px;
  }
}
.future__title {
  color: var(--color-text-white-accent);
  font-family: var(--font-family-accent);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  margin-bottom: 30px;
  width: 35%;
}
@media (width <= 1750.98px) {
  .future__title {
    font-size: 36px;
    width: 40%;
  }
}
@media (width <= 750.98px) {
  .future__title {
    width: 100%;
    margin-bottom: 20px;
    font-size: 24px;
  }
}
.future__text {
  color: var(--color-text-white-accent);
  font-family: var(--font-family-base);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 80px;
  width: 40%;
}
@media (width <= 1750.98px) {
  .future__text {
    font-size: 18px;
    margin-bottom: 50px;
    width: 45%;
  }
}
@media (width <= 750.98px) {
  .future__text {
    width: 100%;
    margin-bottom: 40px;
    font-size: 14px;
  }
}
.future__subtitle {
  color: var(--color-text-white);
  font-family: var(--font-family-base);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 30px;
}
@media (width <= 1750.98px) {
  .future__subtitle {
    font-size: 22px;
  }
}
@media (width <= 750.98px) {
  .future__subtitle {
    margin-bottom: 20px;
    font-size: 16px;
  }
}
.future #future__list {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  flex-direction: column;
  width: 40%;
}
@media (width <= 750.98px) {
  .future #future__list {
    width: 100%;
    padding-bottom: 365px;
  }
}
.future__list-item {
  color: var(--color-text-white);
  font-family: var(--font-family-base);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.future__list-item[dir=rtl] {
  text-align: right;
}
@media (width <= 1750.98px) {
  .future__list-item {
    font-size: 16px;
  }
}
@media (width <= 750.98px) {
  .future__list-item {
    font-size: 14px;
  }
}

.tool {
  width: 100%;
  max-width: 1440px;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  border-radius: 40px;
  background-image: url(../images/img/tool-bg.png), url(../images/img/tool-clients.png), url(../images/img/tool-partners.png);
  background-position: left center, calc(100% + 15px) calc(100% - 195px), calc(100% + 18px) calc(100% - 65px);
  background-repeat: no-repeat;
  background-size: contain, 600px 140px, 600px 36px;
}
@media (width <= 1750.98px) {
  .tool {
    max-width: 1200px;
    padding: 60px 20px;
    background-position: left center, calc(100% + 15px) calc(100% - 160px), calc(100% + 18px) calc(100% - 55px);
    background-size: contain, 500px auto, 500px auto;
  }
}
@media (width <= 750.98px) {
  .tool {
    max-width: 450px;
    background-image: url(../images/img/test-2.png), url(../images/img/tool-mobile-clients.png), url(../images/img/tool-mobile-partners.png), url(../images/img/tool-mobile-bg.png);
    background-position: center top, 16px calc(100% - 155px), 16px calc(100% - 30px), center bottom;
    background-size: contain, 311px 149px, 311px 64px, contain;
    padding: 40px 16px;
    padding-top: 300px;
    border-radius: 20px;
  }
}
.tool__title {
  color: var(--color-text-white-accent);
  font-family: var(--font-family-accent);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  margin-bottom: 70px;
  width: 40%;
}
@media (width <= 1750.98px) {
  .tool__title {
    font-size: 36px;
    margin-bottom: 50px;
  }
}
@media (width <= 750.98px) {
  .tool__title {
    width: 100%;
    margin-bottom: 40px;
    font-size: 24px;
  }
}
.tool__subtitle {
  color: var(--color-text-white);
  font-family: var(--font-family-base);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 30px;
  width: 40%;
}
@media (width <= 1750.98px) {
  .tool__subtitle {
    font-size: 22px;
  }
}
@media (width <= 750.98px) {
  .tool__subtitle {
    width: 100%;
    margin-bottom: 20px;
    font-size: 16px;
  }
}
.tool__subtitle--clients {
  margin-bottom: 200px;
}
@media (width <= 1750.98px) {
  .tool__subtitle--clients {
    margin-bottom: 160px;
  }
}
@media (width <= 750.98px) {
  .tool__subtitle--clients {
    margin-bottom: 190px;
  }
}
.tool__subtitle--partners {
  margin-bottom: 40px;
}
@media (width <= 750.98px) {
  .tool__subtitle--partners {
    margin-bottom: 70px;
  }
}
.tool #tool__list {
  padding: 0;
  margin-top: 0;
  margin-bottom: 70px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 40%;
}
@media (width <= 1750.98px) {
  .tool #tool__list {
    margin-bottom: 50px;
  }
}
@media (width <= 750.98px) {
  .tool #tool__list {
    width: 100%;
    margin-bottom: 40px;
  }
}
.tool__list-item {
  color: var(--color-text-white);
  font-family: var(--font-family-base);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.tool__list-item[dir=rtl] {
  text-align: right;
}
@media (width <= 1750.98px) {
  .tool__list-item {
    font-size: 16px;
  }
}
@media (width <= 750.98px) {
  .tool__list-item {
    font-size: 14px;
  }
}

.scale {
  display: flex;
  max-width: 1440px;
  width: 100%;
  padding: 40px 80px 40px 40px;
  justify-content: center;
  align-items: center;
  gap: 30px;
  border-radius: 40px;
  border: var(--color-border-blue);
  background: #051223;
  background-image: url(../images/img/scale-bg.png);
  background-position: left center;
  background-repeat: no-repeat;
}
@media (width <= 1750.98px) {
  .scale {
    max-width: 1200px;
    padding: 20px 60px 20px 20px;
  }
}
@media (width <= 750.98px) {
  .scale {
    flex-direction: column;
    padding: 35px 16px;
    max-width: 450px;
    gap: 10px;
    background-image: url(../images/img/scale-mobile-bg.png);
    background-size: cover;
    border-radius: 20px;
  }
}
.scale__info {
  width: 50%;
  display: flex;
  flex-direction: column;
}
@media (width <= 750.98px) {
  .scale__info {
    width: 100%;
  }
}
.scale__title {
  color: var(--color-text-white-accent);
  font-family: var(--font-family-accent);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  text-align: center;
  margin-bottom: 30px;
}
.scale__title[dir=rtl] {
  text-align: center;
}
@media (width <= 1750.98px) {
  .scale__title {
    font-size: 36px;
  }
}
@media (width <= 750.98px) {
  .scale__title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: left;
  }
  .scale__title[dir=rtl] {
    text-align: left;
  }
}
.scale__text {
  color: var(--color-text-white);
  text-align: center;
  font-family: var(--font-family-base);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.scale__text[dir=rtl] {
  text-align: center;
}
@media (width <= 1750.98px) {
  .scale__text {
    font-size: 18px;
  }
}
@media (width <= 750.98px) {
  .scale__text {
    font-size: 14px;
    text-align: left;
    margin-bottom: 10px;
  }
  .scale__text[dir=rtl] {
    text-align: left;
  }
}
.scale__table-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 10px;
  align-self: stretch;
  width: 50%;
}
@media (width <= 750.98px) {
  .scale__table-wrapper {
    width: 100%;
  }
}
.scale__table {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}
@media (width <= 750.98px) {
  .scale__table {
    gap: 10px;
  }
}
.scale__table thead, .scale__table tbody {
  width: 100%;
}
.scale__table-row {
  display: flex;
  width: 100%;
  padding: 20px 0px;
  gap: 70px;
  align-items: center;
  align-self: stretch;
  border-bottom: 1px solid var(--New-Main-Black-Primary, #383838);
}
@media (width <= 750.98px) {
  .scale__table-row {
    gap: 40px;
  }
}
.scale__table-title {
  color: var(--New-Main-White-Primary, #FFF);
  font-family: var(--font-family-base);
  font-size: 20px;
  font-style: normal;
  text-align: left;
  font-weight: 700;
  line-height: 120%;
  width: 150px;
}
@media (width <= 1750.98px) {
  .scale__table-title {
    font-size: 18px;
  }
}
@media (width <= 750.98px) {
  .scale__table-title {
    width: 80px;
    font-size: 14px;
  }
}
.scale__table-text {
  color: var(--New-Main-White-Primary, #FFF);
  font-family: var(--font-family-base);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  width: 150px;
}
@media (width <= 1750.98px) {
  .scale__table-text {
    font-size: 18px;
  }
}
@media (width <= 750.98px) {
  .scale__table-text {
    width: 80px;
    font-size: 14px;
    text-align: left;
  }
}
.scale__metrics {
  color: var(--New-Main-Black-Secondary, #888);
  text-align: center;
  font-family: var(--font-family-base);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (width <= 750.98px) {
  .scale__metrics {
    font-size: 12px;
  }
}

.journey {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (width <= 1750.98px) {
  .journey {
    max-width: 1200px;
  }
}
@media (width <= 750.98px) {
  .journey {
    padding: 40px 0px;
    max-width: 450px;
  }
}
.journey__title {
  color: var(--color-text-white-accent);
  font-family: var(--font-family-accent);
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  margin-bottom: 80px;
}
@media (width <= 1750.98px) {
  .journey__title {
    font-size: 48px;
    margin-bottom: 60px;
  }
}
@media (width <= 750.98px) {
  .journey__title {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: left;
    width: 100%;
  }
}
.journey__subtitle {
  color: var(--color-text-white);
  font-family: var(--font-family-base);
  font-size: 24px;
  font-style: normal;
  align-self: flex-start;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 30px;
}
@media (width <= 1750.98px) {
  .journey__subtitle {
    font-size: 22px;
  }
}
@media (width <= 750.98px) {
  .journey__subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.journey__list {
  display: flex;
  align-items: center;
  gap: 44px;
  align-self: stretch;
  margin-bottom: 80px;
}
@media (width <= 750.98px) {
  .journey__list {
    margin-bottom: 40px;
    flex-direction: column;
    gap: 34px;
  }
}
.journey__block {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 20px;
  border: 1px solid var(--New-Blue-Blue-Primary, #467EF3);
  background: #051223;
  position: relative;
  background-repeat: no-repeat;
}
@media (width <= 1750.98px) {
  .journey__block {
    padding: 15px;
  }
}
@media (width <= 750.98px) {
  .journey__block {
    padding: 20px;
    background-position: left center;
  }
}
.journey__block--purple {
  border: 1px solid var(--New-Accent-Purple, #9578FA);
  background: #21083B;
  box-shadow: 0px 0px 50px 0px rgba(140, 62, 240, 0.5);
}
.journey__block--buyer:nth-child(1) {
  background-image: url(../images/icons/journey-buyer-1.svg);
  background-repeat: no-repeat;
}
.journey__block--buyer:nth-child(2) {
  background-image: url(../images/icons/journey-buyer-2.png);
}
.journey__block--buyer:nth-child(3) {
  background-image: url(../images/icons/journey-buyer-3.png);
}
.journey__block--buyer:nth-child(4) {
  background-image: url(../images/icons/journey-buyer-4.svg);
}
.journey__block--buyer:nth-child(5) {
  background-position: 20px 20px;
  background-image: url(../images/icons/journey-buyer-5.svg);
}
@media (width <= 750.98px) {
  .journey__block--buyer:nth-child(5) {
    background-position: 20px center;
  }
}
.journey__block--buyer:nth-child(6) {
  background-repeat: no-repeat;
  background-image: url(../images/icons/journey-buyer-6.png);
}
@media (width <= 750.98px) {
  .journey__block--buyer:nth-child(6) {
    background-position: left calc(50% - 5px);
  }
}
.journey__block--seller:nth-child(1) {
  background-image: url(../images/icons/journey-seller-1.png);
}
.journey__block--seller:nth-child(2) {
  background-image: url(../images/icons/journey-seller-2.svg);
}
.journey__block--seller:nth-child(3) {
  background-image: url(../images/icons/journey-seller-3.png);
}
.journey__block--seller:nth-child(4) {
  background-image: url(../images/icons/journey-seller-4.svg);
}
.journey__block--seller:nth-child(5) {
  background-image: url(../images/icons/journey-seller-5.svg);
}
.journey__block--seller:nth-child(6) {
  background-repeat: no-repeat;
  background-image: url(../images/icons/journey-seller-6.svg);
}
@media (width <= 750.98px) {
  .journey__block--seller:nth-child(6) {
    background-position: left calc(50% - 5px);
  }
}
.journey__block:nth-child(1)::after, .journey__block:nth-child(2)::after, .journey__block:nth-child(3)::after, .journey__block:nth-child(4)::after, .journey__block:nth-child(5)::after {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../images/icons/journey-arrow.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: calc(100% + 10px);
  width: 24px;
  height: 24px;
}
@media (width <= 750.98px) {
  .journey__block:nth-child(1)::after, .journey__block:nth-child(2)::after, .journey__block:nth-child(3)::after, .journey__block:nth-child(4)::after, .journey__block:nth-child(5)::after {
    left: 46%;
    top: calc(100% + 5px);
    transform: rotate(90deg);
  }
}
.journey__block-text {
  color: var(--color-text-white);
  font-family: var(--font-family-base);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 70px;
}
@media (width <= 1750.98px) {
  .journey__block-text {
    font-size: 16px;
  }
}
@media (width <= 750.98px) {
  .journey__block-text {
    margin-top: 0;
    margin-left: 64px;
    font-size: 14px;
  }
}

.achievment {
  width: 100%;
  max-width: 1440px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  border-radius: 40px;
  position: relative;
  background: url(../images/img/achievment-bg.png) right top no-repeat, linear-gradient(180deg, #1E1E1E 0%, rgba(30, 30, 30, 0) 100%);
}
@media (width <= 1750.98px) {
  .achievment {
    padding: 40px 20px;
    max-width: 1200px;
  }
}
@media (width <= 750.98px) {
  .achievment {
    max-width: 450px;
    padding: 40px 16px;
    background-image: url(../images/img/achieve-mobile-bg-new.png);
    background-position: center bottom;
    background-size: cover;
    position: relative;
    border-radius: 20px;
  }
}
.achievment__video {
  position: absolute;
  width: 100%;
  max-width: 980px;
  aspect-ratio: 16/9;
  left: 40px;
  top: 40px;
}
@media (width <= 1750.98px) {
  .achievment__video {
    max-width: 800px;
  }
}
@media (width <= 750.98px) {
  .achievment__video {
    left: 0px;
  }
}
.achievment__video .video-preview__thumb {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}
.achievment__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.achievment__video.playing::after {
  opacity: 0;
}
.achievment__video.playing iframe {
  opacity: 1;
}
.achievment__title {
  color: var(--color-text-white-accent);
  font-family: var(--font-family-accent);
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 96px;
  margin-block: 20px 70px;
  width: 24%;
}
@media (width <= 1750.98px) {
  .achievment__title {
    width: 27%;
    margin-bottom: 50px;
    font-size: 48px;
    margin-top: 0px;
    line-height: normal;
  }
}
@media (width <= 750.98px) {
  .achievment__title {
    width: 100%;
    font-size: 36px;
    margin-block: 240px 40px;
  }
}
.achievment__metric-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 24%;
  margin-bottom: 30px;
}
@media (width <= 1750.98px) {
  .achievment__metric-block {
    width: 27%;
  }
}
@media (width <= 750.98px) {
  .achievment__metric-block {
    width: 100%;
    margin-bottom: 20px;
  }
}
.achievment__subtitle {
  color: var(--color-text-white-accent);
  font-family: var(--font-family-accent);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}
@media (width <= 1750.98px) {
  .achievment__subtitle {
    font-size: 28px;
  }
}
@media (width <= 750.98px) {
  .achievment__subtitle {
    font-size: 20px;
    line-height: normal;
  }
}
.achievment__text {
  color: var(--color-text-white-accent);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (width <= 750.98px) {
  .achievment__text {
    font-size: 14px;
  }
}

.potentional {
  width: 100%;
  max-width: 1440px;
  display: flex;
  padding: 60px 40px 40px 40px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 40px;
  border: 1px solid var(--New-Blue-Blue-Dark, #3865C2);
  background: #051223;
  background-image: url(../images/img/potentional-bg.png);
  background-repeat: no-repeat;
  background-position: left center;
}
@media (width <= 1750.98px) {
  .potentional {
    max-width: 1200px;
    padding: 50px 30px 30px 30px;
  }
}
@media (width <= 750.98px) {
  .potentional {
    padding: 40px 16px;
    max-width: 450px;
    border-radius: 20px;
    background-image: url(../images/img/potentional-bg-mobile.png);
    background-size: 100% 100%;
  }
}
.potentional__title {
  color: var(--color-text-white-accent);
  font-family: var(--font-family-accent);
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  margin-bottom: 20px;
}
@media (width <= 1750.98px) {
  .potentional__title {
    font-size: 48px;
  }
}
@media (width <= 750.98px) {
  .potentional__title {
    font-size: 36px;
  }
}
.potentional__text {
  color: var(--color-text-white-accent);
  font-family: var(--font-family-base);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 50px;
  width: 65%;
  text-align: left;
}
@media (width <= 1750.98px) {
  .potentional__text {
    font-size: 18px;
    margin-bottom: 40px;
  }
}
@media (width <= 750.98px) {
  .potentional__text {
    width: 100%;
    font-size: 14px;
  }
}
.potentional__metrics {
  display: flex;
  width: 100%;
  gap: 20px;
  height: 290px;
}
@media (width <= 750.98px) {
  .potentional__metrics {
    height: auto;
    gap: 10px;
    flex-direction: column;
  }
}
.potentional__metrics-subtitle {
  color: var(--color-text-white);
  font-family: var(--font-family-accent);
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (width <= 1750.98px) {
  .potentional__metrics-subtitle {
    font-size: 36px;
  }
}
@media (width <= 750.98px) {
  .potentional__metrics-subtitle {
    font-size: 36px;
  }
}
.potentional__metrics-item {
  display: flex;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}
@media (width <= 1750.98px) {
  .potentional__metrics-item {
    padding: 30px;
  }
}
@media (width <= 750.98px) {
  .potentional__metrics-item {
    padding: 20px;
  }
}
.potentional__metrics-text {
  color: var(--color-text-white);
  font-family: var(--font-family-base);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
@media (width <= 1750.98px) {
  .potentional__metrics-text {
    font-size: 18px;
  }
}
@media (width <= 750.98px) {
  .potentional__metrics-text {
    font-size: 14px;
  }
}

.model {
  width: 100%;
  max-width: 1440px;
  display: flex;
  padding: 80px 40px 40px 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  border-radius: 40px;
  border: 1px solid var(--New-Blue-Blue-Dark, #3865C2);
  background: #051223;
}
@media (width <= 1750.98px) {
  .model {
    max-width: 1200px;
    padding: 60px 30px 30px 30px;
  }
}
@media (width <= 750.98px) {
  .model {
    padding: 40px 16px 40px 16px;
    max-width: 450px;
    gap: 40px;
    border-radius: 20px;
  }
}
.model__title {
  color: var(--color-text-white-accent);
  font-family: var(--font-family-accent);
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}
@media (width <= 1750.98px) {
  .model__title {
    font-size: 48px;
  }
}
@media (width <= 750.98px) {
  .model__title {
    font-size: 36px;
  }
}
.model__subtitle {
  color: var(--color-text-white);
  font-family: var(--font-family-base);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-right: 30px;
}
@media (width <= 1750.98px) {
  .model__subtitle {
    font-size: 22px;
  }
}
@media (width <= 750.98px) {
  .model__subtitle {
    font-size: 16px;
    margin-right: 0;
  }
}
.model__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width <= 750.98px) {
  .model__wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
    width: 100%;
  }
}
.model__strategy-block {
  display: flex;
  align-items: flex-start;
  gap: 44px;
  flex: 1 0 0;
}
@media (width <= 750.98px) {
  .model__strategy-block {
    gap: 34px;
    flex-direction: column;
  }
}
.model #model__resource-block {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1 0 0;
}
@media (width <= 750.98px) {
  .model #model__resource-block {
    gap: 10px;
    flex-direction: column;
  }
}
.model__strategy, .model__rescource {
  display: flex;
  padding: 20px;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-text-white);
  font-family: var(--font-family-accent);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}
@media (width <= 1750.98px) {
  .model__strategy, .model__rescource {
    font-size: 22px;
  }
}
@media (width <= 750.98px) {
  .model__strategy, .model__rescource {
    width: 100%;
    font-size: 20px;
    text-align: left;
    justify-content: flex-start;
  }
}
.model__strategy:nth-child(1)::after, .model__strategy:nth-child(2)::after {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../images/icons/journey-arrow.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 35%;
  left: calc(100% + 10px);
  width: 24px;
  height: 24px;
}
@media (width <= 750.98px) {
  .model__strategy:nth-child(1)::after, .model__strategy:nth-child(2)::after {
    left: 46%;
    top: calc(100% + 5px);
    transform: rotate(90deg);
  }
}
.model__rescource {
  padding-left: 45px;
}
.model__rescource::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 20px;
  top: 45%;
  background-image: url(../images/icons/model-point.svg);
  background-repeat: no-repeat;
}

.comparison {
  display: flex;
  max-width: 1440px;
  width: 100%;
  padding: 40px 80px 40px 40px;
  align-items: flex-start;
  gap: 40px;
  border-radius: 40px;
  border: 1px solid var(--New-Blue-Blue-Dark, #3865C2);
  background: #051223;
  background-image: url(../images/img/compare-bg.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}
@media (width <= 1750.98px) {
  .comparison {
    max-width: 1200px;
    padding: 30px 60px 30px 30px;
  }
}
@media (width <= 750.98px) {
  .comparison {
    max-width: 450px;
    flex-direction: column;
    padding: 40px 16px;
    border-radius: 20px;
    background-image: url(../images/img/compare-mobile-bg.png);
    background-size: 100% 100%;
  }
}
.comparison__title {
  color: var(--color-text-white-accent);
  font-family: var(--font-family-accent);
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  padding: 40px;
  width: 35%;
}
@media (width <= 1750.98px) {
  .comparison__title {
    font-size: 48px;
  }
}
@media (width <= 750.98px) {
  .comparison__title {
    width: 100%;
    font-size: 36px;
    padding: 0;
  }
}
.comparison__table {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
  width: 65%;
}
@media (width <= 750.98px) {
  .comparison__table {
    width: 100%;
  }
}
.comparison__table thead, .comparison__table tbody {
  width: 100%;
}
.comparison__row {
  display: flex;
  padding: 20px 0px;
  gap: 50px;
  align-items: center;
  align-self: stretch;
  border-bottom: 1px solid var(--New-Main-Black-Primary, #383838);
}
@media (width <= 750.98px) {
  .comparison__row {
    gap: 10px;
  }
}
.comparison__head {
  color: var(--color-text-white);
  font-family: var(--font-family-base);
  font-size: 20px;
  font-style: normal;
  text-align: left;
  font-weight: 700;
  line-height: 120%;
  width: 180px;
}
@media (width <= 1750.98px) {
  .comparison__head {
    font-size: 18px;
  }
}
@media (width <= 750.98px) {
  .comparison__head {
    font-size: 10px;
    width: 70px;
    white-space: nowrap;
  }
  .comparison__head--feature {
    width: 115px;
  }
}
.comparison__text {
  color: var(--color-text-white);
  font-family: var(--font-family-base);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  width: 180px;
  text-align: left;
}
@media (width <= 1750.98px) {
  .comparison__text {
    font-size: 18px;
  }
}
@media (width <= 750.98px) {
  .comparison__text {
    font-size: 12px;
    width: 70px;
  }
  .comparison__text--feature {
    width: 115px;
  }
}

.roadmap {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
@media (width <= 1750.98px) {
  .roadmap {
    max-width: 1200px;
    gap: 50px;
  }
}
@media (width <= 750.98px) {
  .roadmap {
    gap: 40px;
    max-width: 450px;
    padding: 40px 0px;
  }
}
.roadmap__title {
  color: var(--color-text-white-accent);
  font-family: var(--font-family-accent);
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}
@media (width <= 1750.98px) {
  .roadmap__title {
    font-size: 48px;
  }
}
@media (width <= 750.98px) {
  .roadmap__title {
    font-size: 36px;
    line-height: normal;
    width: 100%;
    text-align: left;
  }
}
.roadmap__block {
  padding-top: 50px;
  display: flex;
  align-items: center;
  gap: 104px;
  flex-direction: column;
  width: 100%;
  background-image: url(../images/img/roadmap-chain-1.png), url(../images/img/roadmap-chain-2.png);
  background-repeat: no-repeat, no-repeat;
  background-position: center top, left 56%;
}
@media (width <= 750.98px) {
  .roadmap__block {
    flex-direction: column;
    align-items: flex-end;
    gap: 40px;
    background-image: url(../images/img/roadmap-mobile-chain.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
    padding-top: 0px;
    gap: 20px;
  }
}
.roadmap__row-wrapper {
  display: flex;
  gap: 30px;
  width: 100%;
}
@media (width <= 750.98px) {
  .roadmap__row-wrapper {
    width: 85%;
    flex-direction: column;
    gap: 20px;
  }
}
.roadmap__block-item {
  display: flex;
  padding: 40px 30px 40px 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 30px;
  background: var(--Style, #1E1E1E);
  height: 320px;
}
@media (width <= 750.98px) {
  .roadmap__block-item {
    height: auto;
    padding: 20px;
    gap: 10px;
    width: 100%;
    align-self: normal;
  }
}
.roadmap__block-item--first {
  background-image: url(../images/img/roadmap-bg-1.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.roadmap__block-item--second {
  background-image: url(../images/img/roadmap-bg-2.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.roadmap__block-item--last {
  background: rgba(30, 30, 30, 0.3) url(../images/img/roadmap-last-block.png) no-repeat 152px center;
  padding: 0px 208.5px 0px 208.5px;
  justify-content: center;
  align-items: center;
}
@media (width <= 1750.98px) {
  .roadmap__block-item--last {
    padding: 0px 178px 0px 178px;
    background-position: 90px center;
  }
}
@media (width <= 750.98px) {
  .roadmap__block-item--last {
    background-position: center 0px;
    padding: 150px 45.5px 20px 45.5px;
  }
}
.roadmap__subtitle {
  color: var(--New-Main-White-Primary, #FFF);
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  width: 100%;
}
@media (width <= 1750.98px) {
  .roadmap__subtitle {
    font-size: 22px;
  }
}
.roadmap__subtitle--blue {
  color: #709EFF;
}
.roadmap__subtitle--purple {
  color: #9578FA;
}
@media (width <= 750.98px) {
  .roadmap__subtitle {
    font-size: 20px;
    text-align: left;
  }
}
.roadmap #roadmap__list {
  margin: 0;
  padding-left: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (width <= 750.98px) {
  .roadmap #roadmap__list {
    gap: 10px;
    padding-left: 20px;
  }
}
.roadmap__list-item {
  color: var(--color-text-white);
  font-family: var(--font-family-base);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.roadmap__list-item[dir=rtl] {
  text-align: right;
}
@media (width <= 750.98px) {
  .roadmap__list-item {
    font-size: 14px;
  }
}
.roadmap__text {
  color: var(--New-Main-Black-Primary, #383838);
  text-align: center;
  font-family: var(--font-family-base);
  font-size: 15px;
  font-style: normal;
  position: relative;
  left: 70px;
  font-weight: 500;
  line-height: 140%;
}
@media (width <= 750.98px) {
  .roadmap__text {
    left: 0;
    font-size: 14px;
  }
}

.whitepaper {
  max-width: 1440px;
  width: 100%;
  display: flex;
  padding: 40px;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  background: linear-gradient(90deg, #D3D3D3 0%, rgba(30, 30, 30, 0) 100%), #1E1E1E;
  height: 132px;
  border-radius: 40px;
}
@media (width <= 1750.98px) {
  .whitepaper {
    max-width: 1200px;
  }
}
@media (width <= 750.98px) {
  .whitepaper {
    flex-direction: column;
    padding: 40px 20px;
    gap: 40px;
    height: auto;
    border-radius: 30px;
    background: linear-gradient(180deg, #D3D3D3 -45%, rgba(30, 30, 30, 0) 99.83%), #1E1E1E;
  }
}
.whitepaper__title {
  color: var(--color-dark);
  font-family: var(--font-family-accent);
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 96px;
}
@media (width <= 1750.98px) {
  .whitepaper__title {
    font-size: 48px;
  }
}
@media (width <= 750.98px) {
  .whitepaper__title {
    line-height: normal;
  }
}
.whitepaper__link-open {
  color: var(--color-text-white);
  font-family: var(--font-family-base);
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: opacity var(--transiotion-duration);
  position: relative;
  left: -60px;
}
@media (width <= 750.98px) {
  .whitepaper__link-open {
    font-size: 24px;
    left: 0px;
  }
}
.whitepaper__link-open:hover {
  opacity: 0.7;
}
.whitepaper__link-text {
  position: relative;
  left: -30px;
}
@media (width <= 750.98px) {
  .whitepaper__link-text {
    left: -15px;
  }
}
.whitepaper__link-text::after {
  content: "";
  display: block;
  position: absolute;
  width: 58.854px;
  height: 59.146px;
  top: -10px;
  left: calc(100% + 30px);
  background-image: url(../images/icons/whitepaper-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
}
@media (width <= 750.98px) {
  .whitepaper__link-text::after {
    width: 32px;
    height: 32px;
    top: 0px;
    left: calc(100% + 15px);
    background-image: url(../images/img/whitepaper-arrow-mobile.svg);
  }
}

.faq {
  display: flex;
  max-width: 1440px;
  width: 100%;
  padding: 80px 80px 40px 80px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
  border-radius: 40px;
  border: 1px solid var(--New-Blue-Blue-Dark, #3865C2);
  background: #051223;
  background-image: url(../images/img/faq-bg.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}
@media (width <= 1750.98px) {
  .faq {
    max-width: 1200px;
    padding: 60px 40px;
  }
}
@media (width <= 750.98px) {
  .faq {
    max-width: 450px;
    padding: 40px 16px;
    gap: 30px;
    background-size: cover;
  }
}
.faq__title {
  color: var(--color-text-white-accent);
  font-family: var(--font-family-accent);
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}
@media (width <= 1750.98px) {
  .faq__title {
    font-size: 48px;
    line-height: 72px;
  }
}
@media (width <= 750.98px) {
  .faq__title {
    font-size: 40px;
    line-height: normal;
  }
}
.faq__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}
.faq__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  width: 100%;
  transition: all 0.3s ease;
}
.faq__item:nth-child(2), .faq__item:nth-child(3), .faq__item:nth-child(4), .faq__item:nth-child(5) {
  border-top: 1px solid var(--New-Main-White-Primary, #FFF);
}
.faq__question {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  cursor: pointer;
  padding-bottom: 24px;
}
@media (width <= 750.98px) {
  .faq__question {
    padding-block: 10px;
  }
}
.faq__text {
  color: var(--color-text-white);
  font-family: var(--font-family-base);
  font-size: 20px;
  text-align: left;
  width: 100%;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (width <= 750.98px) {
  .faq__text {
    font-size: 14px;
  }
}
.faq__toggle {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.faq__toggle img {
  width: 42px;
  height: 42px;
  transition: transform 0.3s ease;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq .faq__item.active .faq__answer {
  max-height: 1000px;
}
.faq .faq__item.active .faq__toggle img {
  transform: rotate(45deg);
}
.faq #faq__text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1000;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 680px;
  padding: 60px 80px;
  flex-direction: column;
  border-radius: 40px;
  background: var(--Style, #1E1E1E);
  background-image: url(../images/img/modal-sucsess-mark.svg), url(../images/img/modal-sucsess-bg.png);
  background-repeat: no-repeat, no-repeat;
  background-position: center 50px, left 56%;
}
@media (width <= 750.98px) {
  .modal {
    padding: 40px 20px;
    width: 90%;
    border-radius: 20px;
    max-width: 450px;
  }
}
.modal.visible {
  opacity: 1;
  visibility: visible;
}
.modal__title {
  margin-top: 90px;
  color: var(--01, #EBEEF6);
  text-align: center;
  font-family: var(--font-family-accent);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  margin-bottom: 20px;
}
.modal__title[dir=rtl] {
  text-align: center;
}
@media (width <= 750.98px) {
  .modal__title {
    font-size: 36px;
  }
}
.modal__subtitle {
  color: var(--01, #EBEEF6);
  text-align: center;
  font-family: var(--font-family-base);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 40px;
}
.modal__subtitle[dir=rtl] {
  text-align: center;
}
@media (width <= 750.98px) {
  .modal__subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.modal__close {
  padding: 12px 16px;
  background: linear-gradient(90deg, #467EF3 0%, #709EFF 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: var(--New-Main-White-Primary, #FFF);
  text-align: center;
  font-family: var(--font-family-base);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.modal__close[dir=rtl] {
  text-align: center;
}
@media (width <= 750.98px) {
  .modal__close {
    font-size: 16px;
  }
}

.partnership {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
@media (width <= 1750.98px) {
  .partnership {
    max-width: 1200px;
  }
}
@media (width <= 750.98px) {
  .partnership {
    gap: 280px;
    max-width: 450px;
    padding: 40px 0px;
  }
}
.partnership__form {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 60px 80px;
  background: #1E1E1E;
  border-radius: 40px;
  width: 100%;
  max-width: 600px;
  align-self: flex-end;
}
@media (width <= 1750.98px) {
  .partnership__form {
    padding: 50px 60px;
    max-width: 520px;
  }
}
@media (width <= 750.98px) {
  .partnership__form {
    border-radius: 20px;
    padding: 40px 20px;
  }
}
.partnership__title {
  font-family: Oswald, sans-serif;
  font-size: 48px;
  line-height: 110%;
  font-weight: 400;
  color: #EBEEF6;
  text-align: center;
  margin-bottom: 40px;
}
.partnership__title[dir=rtl] {
  text-align: center;
}
@media (width <= 1750.98px) {
  .partnership__title {
    font-size: 36px;
  }
}
@media (width <= 750.98px) {
  .partnership__title {
    font-size: 24px;
  }
}
.partnership__labels-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (width <= 750.98px) {
  .partnership__labels-wrapper {
    gap: 24px;
  }
}
.partnership__input-wrapper {
  position: relative;
  width: 100%;
}
.partnership__input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 0;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
}
@media (width <= 1750.98px) {
  .partnership__input {
    font-size: 18px;
  }
}
@media (width <= 750.98px) {
  .partnership__input {
    padding-top: 0px;
    font-size: 14px;
  }
}
.partnership__input:focus {
  border-color: #709EFF;
}
.partnership__input::placeholder {
  color: transparent;
}
.partnership__label {
  position: absolute;
  left: 0;
  top: 40%;
  transform: translateY(-50%);
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  transition: all 0.2s;
}
@media (width <= 1750.98px) {
  .partnership__label {
    font-size: 18px;
  }
}
@media (width <= 750.98px) {
  .partnership__label {
    font-size: 14px;
  }
}
.partnership__input:focus + .partnership__label, .partnership__input:not(:placeholder-shown) + .partnership__label {
  top: -8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.partnership__error {
  display: none;
  margin-top: 4px;
  font-size: 13px;
  font-family: var(--font-family-base);
  color: #f44336;
}
@media (width <= 750.98px) {
  .partnership__error {
    font-size: 10px;
  }
}
.partnership__error:not(:empty) {
  display: block;
}
.partnership__submit-btn {
  width: 100%;
  padding: 14px 0;
  margin-top: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(90deg, #467EF3 0%, #709EFF 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.partnership__submit-btn[dir=rtl] {
  text-align: center;
}
@media (width <= 1750.98px) {
  .partnership__submit-btn {
    font-size: 18px;
  }
}
@media (width <= 750.98px) {
  .partnership__submit-btn {
    font-size: 14px;
  }
}
.partnership__submit-btn:hover {
  opacity: 0.9;
}

.footer {
  max-width: 1440px;
  width: 100%;
  display: flex;
  padding-bottom: 50px;
  justify-content: space-between;
}
@media (width <= 750.98px) {
  .footer {
    max-width: 450px;
    padding-bottom: 0px;
    gap: 20px;
    flex-direction: column;
  }
}
.footer__company {
  display: flex;
  align-items: center;
  gap: 330px;
  width: 70%;
}
@media (width <= 1750.98px) {
  .footer__company {
    gap: 225px;
  }
}
@media (width <= 750.98px) {
  .footer__company {
    order: 1;
    gap: 40px;
    justify-content: center;
    width: auto;
  }
}
.footer__download-links {
  display: flex;
  gap: 16px;
}
@media (width <= 750.98px) {
  .footer__download-links {
    width: 100%;
    align-items: center;
  }
}
.footer__text, .footer__link--mail {
  color: var(--New-Main-White-Primary, #FFF);
  text-align: center;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  /* 120% */
}
@media (width <= 750.98px) {
  .footer__text, .footer__link--mail {
    font-size: 14px;
  }
}
.footer__link--mail {
  transition: opacity var(--transiotion-duration);
}
.footer__link--mail:hover {
  opacity: 0.7;
}
.footer__link-download {
  display: flex;
  height: 45px;
  width: 220px;
  padding: 4px 40px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  flex: 1 0 0;
  border-radius: 10px;
  background: var(--white-30, rgba(255, 255, 255, 0.3));
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.footer__link-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}
@media (width <= 750.98px) {
  .footer__link-download {
    width: auto;
    max-width: 200px;
    min-width: 160px;
    padding: 4px 0px;
  }
}
.footer__text-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer__text-up, .footer__text-down {
  color: var(--color-text-white);
  font-family: var(--font-family-base);
  font-style: normal;
  line-height: normal;
  text-transform: uppercase;
}
.footer__text-up {
  font-size: 10px;
  font-weight: 500;
}
.footer__text-down {
  font-weight: 700;
  font-size: 14px;
}
@media (width <= 750.98px) {
  .footer__text-down {
    font-size: 12px;
  }
}

.creators {
  width: 100%;
  max-width: 1440px;
  padding: 40px 76px;
  background: url("../images/img/creators-bg.png") no-repeat, linear-gradient(180deg, #1e1e1e 0%, rgba(30, 30, 30, 0) 100%);
  background-position: right top, left top;
  background-size: contain, cover;
  display: flex;
  gap: 120px;
  border-radius: 40px;
}
@media (width <= 1750.98px) {
  .creators {
    max-width: 1200px;
    padding: 40px;
    gap: 100px;
  }
}
@media (width <= 750.98px) {
  .creators {
    background: url("../images/img/creators-mobile-bg.png") no-repeat, linear-gradient(180deg, #1e1e1e 0%, rgba(30, 30, 30, 0) 100%);
    background-position: center top, left top;
    background-size: contain, cover;
    gap: 30px;
    flex-direction: column;
    padding: 40px 16px;
    border-radius: 20px;
  }
}
.creators__creator {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-block: 50px 110px;
}
@media (width <= 1750.98px) {
  .creators__creator {
    gap: 80px;
  }
}
@media (width <= 750.98px) {
  .creators__creator {
    gap: 30px;
    margin-block: 0px;
  }
}
.creators__title {
  color: var(--color-text-white-accent);
  font-family: var(--font-family-accent);
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}
@media (width <= 1750.98px) {
  .creators__title {
    font-size: 48px;
  }
}
@media (width <= 750.98px) {
  .creators__title {
    font-size: 36px;
  }
}
.creators__text-block {
  padding-block: 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: 250px;
  position: relative;
}
@media (width <= 1750.98px) {
  .creators__text-block {
    margin-left: 190px;
  }
}
@media (width <= 750.98px) {
  .creators__text-block {
    margin-left: 120px;
    padding-block: 6px;
    gap: 10px;
  }
}
.creators__text-block::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  left: calc(0% - 250px);
  bottom: 30px;
  background-image: url(../images/img/creators-tony.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media (width <= 1750.98px) {
  .creators__text-block::before {
    width: 170px;
    height: 170px;
    left: calc(0% - 200px);
  }
}
@media (width <= 750.98px) {
  .creators__text-block::before {
    width: 100px;
    height: 100px;
    left: calc(0% - 120px);
    bottom: 10px;
  }
}
.creators__metric {
  display: flex;
  gap: 10px;
}
.creators__metric-subtitle {
  color: var(--01, #EBEEF6);
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media (width <= 1750.98px) {
  .creators__metric-subtitle {
    font-size: 22px;
  }
}
@media (width <= 750.98px) {
  .creators__metric-subtitle {
    font-size: 16px;
  }
}
.creators__metric-text {
  color: var(--New-Main-Black-Tertiary, #AFAFAF);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  align-self: center;
}
@media (width <= 1750.98px) {
  .creators__metric-text {
    font-size: 18px;
  }
}
@media (width <= 750.98px) {
  .creators__metric-text {
    font-size: 14px;
  }
}
.creators__creator-name {
  color: var(--color-text-white-accent);
  font-family: var(--font-family-base);
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  position: relative;
}
@media (width <= 1750.98px) {
  .creators__creator-name {
    font-size: 30px;
  }
}
@media (width <= 750.98px) {
  .creators__creator-name {
    font-size: 20px;
  }
}
.creators__creator-name::after {
  content: "";
  position: absolute;
  width: 46px;
  height: 46px;
  left: calc(100% + 10px);
  bottom: -3px;
  background-image: url(../../images/img/creators-text-gal.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media (width <= 750.98px) {
  .creators__creator-name::after {
    width: 24px;
    height: 24px;
    left: 140px;
    bottom: 0px;
  }
}
.creators__videos {
  display: flex;
  width: 100%;
  gap: 60px;
}
@media (width <= 1750.98px) {
  .creators__videos {
    gap: 70px;
  }
}
@media (width <= 750.98px) {
  .creators__videos {
    gap: 6px;
    height: 286px;
  }
}
.creators__video {
  flex: 1;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
@media (width <= 750.98px) {
  .creators__video {
    border-radius: 10px;
  }
}
.creators__video--1.playing::after {
  opacity: 0;
  pointer-events: none;
}
.creators__video--2.playing::after {
  opacity: 0;
  pointer-events: none;
}
.creators__video.playing iframe {
  opacity: 1;
}
.creators__video:not(.playing):hover::after {
  opacity: 1;
}

.team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  width: 100%;
  max-width: 1440px;
}
@media (width <= 1750.98px) {
  .team {
    max-width: 1200px;
    gap: 60px;
    padding-top: 40px;
  }
}
@media (width <= 750.98px) {
  .team {
    max-width: 450px;
    gap: 40px;
    padding-bottom: 40px;
  }
}
.team__title {
  color: var(--color-text-white-accent);
  font-family: var(--font-family-accent);
  text-align: center;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 96px;
}
@media (width <= 1750.98px) {
  .team__title {
    font-size: 48px;
    line-height: normal;
  }
}
@media (width <= 750.98px) {
  .team__title {
    font-size: 36px;
    align-self: flex-start;
  }
}
.team__list {
  display: flex;
  gap: 80px;
  flex-direction: column;
  width: 100%;
}
@media (width <= 1750.98px) {
  .team__list {
    gap: 60px;
  }
}
@media (width <= 750.98px) {
  .team__list {
    gap: 40px;
    flex-direction: column;
  }
}
.team__list-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (width <= 750.98px) {
  .team__list-row {
    flex-direction: column;
    gap: 40px;
    justify-content: flex-start;
  }
}
.team__person {
  display: flex;
  align-items: stretch;
}
.team__person-img {
  border-radius: 20px;
  height: 184px;
}
@media (width <= 750.98px) {
  .team__person-img {
    width: 100px;
    height: 115px;
    aspect-ratio: 20/23;
  }
}
.team__person-info {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 0 0;
  min-width: 280px;
  max-width: 285px;
}
@media (width <= 1750.98px) {
  .team__person-info {
    min-width: 240px;
    max-width: 245px;
  }
}
@media (width <= 750.98px) {
  .team__person-info {
    padding: 0px 20px;
  }
}
.team__person-name {
  color: var(--color-text-white-accent);
  font-family: var(--font-family-accent);
  font-size: 31px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (width <= 1750.98px) {
  .team__person-name {
    font-size: 26px;
  }
}
@media (width <= 750.98px) {
  .team__person-name {
    font-size: 24px;
  }
}
.team__person-about {
  color: var(--color-text-white-accent);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: left;
}
@media (width <= 1750.98px) {
  .team__person-about {
    font-size: 15px;
  }
}
@media (width <= 750.98px) {
  .team__person-about {
    font-size: 14px;
  }
}
.team__person-role {
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  justify-self: flex-end;
  border-radius: 10px;
  background: var(--Style, #1E1E1E);
  margin-top: auto;
}
@media (width <= 750.98px) {
  .team__person-role--CEO {
    position: relative;
    bottom: -12px;
  }
}
.team__person-role-text {
  color: var(--color-text-white-accent);
  font-family: var(--font-family-base);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.review {
  display: flex;
  width: 100%;
  overflow: hidden;
  max-width: 1600px;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  justify-content: center;
}
@media (width <= 1750.98px) {
  .review {
    max-width: 1200px;
  }
}
@media (width <= 750.98px) {
  .review {
    max-width: 450px;
    gap: 40px;
    padding-bottom: 40px;
  }
}
.review__title {
  color: var(--01, #EBEEF6);
  text-align: center;
  font-family: Oswald;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 96px;
}
@media (width <= 1750.98px) {
  .review__title {
    font-size: 48px;
    line-height: 72px;
  }
}
@media (width <= 750.98px) {
  .review__title {
    font-size: 36px;
    line-height: normal;
    align-self: flex-start;
  }
}
.review__slide {
  display: flex;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border-radius: 40px;
  border: 1px solid var(--New-Blue-Blue-Dark, #3865C2);
  background: #051223;
}
@media (width <= 750.98px) {
  .review__slide {
    padding: 20px 16px;
    min-height: 402px;
    border-radius: 20px;
  }
}
.review__person {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.review__person-info {
  display: flex;
  gap: 20px;
}
.review__person-avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding: 7.5px 6.786px 6.786px 7.5px;
  aspect-ratio: 1/1;
  border-radius: 1000px;
  background: var(--1, linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 100%));
}
.review__person-name {
  color: var(--01, #EBEEF6);
  font-family: Oswald;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (width <= 1750.98px) {
  .review__person-name {
    font-size: 28px;
    align-self: center;
  }
}
@media (width <= 750.98px) {
  .review__person-name {
    font-size: 24px;
  }
}
.review__resource {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (width <= 750.98px) {
  .review__resource {
    margin-top: auto;
  }
}
.review__resource-text {
  color: var(--01, #EBEEF6);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}
.review__resource-platform {
  display: flex;
  height: 36px;
  padding: 16px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
}
.review__resource-platform-name {
  color: var(--01, #EBEEF6);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}
.review__text {
  color: var(--01, #EBEEF6);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
@media (width <= 1750.98px) {
  .review__text {
    font-size: 18px;
  }
}
@media (width <= 750.98px) {
  .review__text {
    font-size: 14px;
  }
}

.swiper-slide {
  max-width: 1200px;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  transition-property: transform;
  display: block;
  cursor: grab;
}
@media (width <= 1750.98px) {
  .swiper-slide {
    max-width: 900px;
  }
}
@media (width <= 750.98px) {
  .swiper-slide {
    min-width: 100%;
    min-height: 420px;
  }
}
@media (width <= 750.98px) {
  .swiper-slide {
    max-height: none;
  }
}

.swiper {
  max-width: 100%;
}
.swiper::before {
  content: "";
  position: absolute;
  display: flex;
  width: 220px;
  height: 100%;
  gap: 10px;
  right: -3px;
  z-index: 100;
  background: linear-gradient(270deg, #000 35.71%, rgba(0, 0, 0, 0) 100%);
}
@media (width <= 1750.98px) {
  .swiper::before {
    width: 150px;
    background: linear-gradient(270deg, #000 35.71%, rgba(0, 0, 0, 0) 100%);
  }
}
@media (width <= 750.98px) {
  .swiper::before {
    display: none;
  }
}
.swiper::after {
  content: "";
  position: absolute;
  display: flex;
  width: 220px;
  height: 100%;
  top: 0;
  left: -5px;
  z-index: 100;
  background: linear-gradient(90deg, #000 35.71%, rgba(0, 0, 0, 0) 100%);
}
@media (width <= 1750.98px) {
  .swiper::after {
    width: 150px;
    background: linear-gradient(90deg, #000 35.71%, rgba(0, 0, 0, 0) 100%);
  }
}
@media (width <= 750.98px) {
  .swiper::after {
    display: none;
  }
}
.swiper-button-prev, .swiper-button-next {
  display: flex;
  width: 44px;
  height: 84px;
  padding: 20px 4px;
  align-items: center;
  border-radius: 4px;
  opacity: 0.5;
  background: var(--New-Main-Black-Primary, #383838);
  position: absolute;
  z-index: 200;
  transition: opacity var(--transiotion-duration) ease;
}
.swiper-button-prev:hover, .swiper-button-next:hover {
  opacity: 1;
}
.swiper-button-next {
  right: 0px;
}
.swiper-button-next::after {
  content: "";
  width: 36px;
  height: 36px;
  background-image: url(../images/icons/review-right.png);
  background-repeat: no-repeat;
  background-position: center;
}
@media (width <= 750.98px) {
  .swiper-button-next {
    display: none;
  }
}
.swiper-button-prev {
  left: 0;
}
.swiper-button-prev::after {
  content: "";
  width: 36px;
  height: 36px;
  background-image: url(../images/icons/review-left.png);
  background-repeat: no-repeat;
  background-position: center;
}
@media (width <= 750.98px) {
  .swiper-button-prev {
    display: none;
  }
}

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

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

.swiper-pagination-bullet-active {
  opacity: 1;
}

@media (min-width: 768px) {
  .swiper-pagination {
    display: none !important;
  }
}
.swiper-pagination {
  position: absolute;
  bottom: 0px !important;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: auto;
  padding: 0;
}

.challenge {
  max-width: 1440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  padding-top: 230px;
}
@media (width <= 1750.98px) {
  .challenge {
    max-width: 1200px;
  }
}
@media (width <= 750.98px) {
  .challenge {
    padding-top: 60px;
    max-width: 450px;
    gap: 40px;
  }
}
.challenge__title {
  color: var(--color-text-white-accent);
  font-family: var(--font-family-accent);
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}
@media (width <= 1750.98px) {
  .challenge__title {
    font-size: 48px;
  }
}
@media (width <= 750.98px) {
  .challenge__title {
    font-size: 36px;
  }
}
.challenge__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.challenge__list-item {
  display: flex;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  border-radius: 20px;
  border: 1px solid var(--1, rgba(255, 255, 255, 0.1));
  background: linear-gradient(90deg, rgba(0, 78, 9, 0) 0%, rgba(0, 78, 9, 0.5) 100%), rgba(30, 30, 30, 0.5);
}
@media (width <= 1750.98px) {
  .challenge__list-item {
    padding: 32px;
    gap: 30px;
  }
}
@media (width <= 750.98px) {
  .challenge__list-item {
    padding: 20px 12px;
    gap: 20px;
    background: linear-gradient(180deg, rgba(0, 78, 9, 0) 0%, rgba(0, 78, 9, 0.5) 100%), rgba(30, 30, 30, 0.5);
  }
}
.challenge__subtitle {
  color: var(--color-text-white-accent);
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
@media (width <= 1750.98px) {
  .challenge__subtitle {
    font-size: 22px;
  }
}
@media (width <= 750.98px) {
  .challenge__subtitle {
    font-size: 16px;
    margin-left: 4px;
  }
}
.challenge__text-block {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media (width <= 750.98px) {
  .challenge__text-block {
    gap: 20px;
    flex-direction: column;
  }
}
.challenge__text {
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-left: 32px;
  position: relative;
}
@media (width <= 1750.98px) {
  .challenge__text {
    font-size: 16px;
  }
}
@media (width <= 750.98px) {
  .challenge__text {
    font-size: 12px;
  }
}
.challenge__text--problem {
  color: var(--New-Main-Black-Tertiary, #AFAFAF);
  width: 50%;
}
@media (width <= 750.98px) {
  .challenge__text--problem {
    width: calc(100% - 32px);
  }
}
.challenge__text--problem::before {
  content: "";
  display: flex;
  position: absolute;
  top: 0;
  left: -32px;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-image: url(../images/icons/challenge-problem-no.png);
}
.challenge__text--solution {
  color: var(--color-text-white);
  width: 50%;
}
@media (width <= 750.98px) {
  .challenge__text--solution {
    width: calc(100% - 32px);
  }
}
.challenge__text--solution::before {
  content: "";
  display: flex;
  position: absolute;
  top: -5px;
  left: -32px;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-image: url(../images/icons/compare-yes.png);
}

/*# sourceMappingURL=main.css.map */
