@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;
}

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: "Kumbh Sans";
  src: url(../fonts/KumbhSans-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url(../fonts/Inter-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url(../fonts/Inter-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url(../fonts/Inter-SemiBold.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url(../fonts/Inter-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-ligth: #fff;
  --color-bg-dark: #E5E5E5;
  --color-bg-dark-10: #F5F5F5;
  --color-dark-40: #666666;
  --color-gray: #899D9D;
  --color-accent: #9312FF;
  --color-active: #7A00D6;
  --gradient: (135deg, #9312FF 0%, #7A00D6 100%);
  --border: 0.0625rem solid var(--color-gray);
  --font-famile-base: "Inter", sans-serif;
  --font-family-accent: "Kumbh Sans", sans-serif;
  --conteiner-width: 100rem;
  --conteiner-padding-x: 1rem;
  --transition-duration: 0.2s;
  --100vw: calc(100vw - var(--scrollbar-width));
}
@media (width <= 90.06125rem) {
  :root {
    --conteiner-width: 80rem;
  }
}

.container {
  max-width: calc(var(--conteiner-width) + var(--conteiner-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--conteiner-padding-x);
}

.visually-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 0) !important;
  overflow: hidden !important;
}

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

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

.full-vw-line {
  position: relative;
}
.full-vw-line::before, .full-vw-line::after {
  position: absolute;
  width: 100vw;
  height: 0.0625rem;
  background-color: var(--color-gray);
}
.full-vw-line--top::before {
  content: "";
  bottom: 100%;
}
.full-vw-line--bottom::after {
  content: "";
  top: 100%;
}
.full-vw-line--left::before, .full-vw-line--left::after {
  right: 100%;
}
.full-vw-line--right::before, .full-vw-line--right::after {
  left: 100%;
}

html.is-lock {
  overflow: hidden;
}

body {
  font-size: clamp(0.875rem, 0.7156862745rem + 0.6535947712vw, 1.5rem);
  display: flex;
  flex-direction: column;
  font-family: var(--font-famile-base);
  letter-spacing: -0.03em;
  color: var(--color-gray-50);
}

main {
  flex-grow: 1;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  color: var(--color-accent);
}

h1, .h1,
h2, .h2,
h3, .h3 {
  font-family: var(--font-family-accent);
  font-weight: 500;
}

h4, .h4,
h5, .h5,
h6, .h6 {
  font-weight: 600;
}

h1, .h1 {
  font-size: clamp(1.875rem, 1.237745098rem + 2.614379085vw, 4.375rem);
  line-height: 1.2;
}

h2, .h2 {
  font-size: clamp(1.75rem, 1.2720588235rem + 1.9607843137vw, 3.625rem);
  line-height: 1.3;
}

h3, .h3 {
  font-size: clamp(1.5rem, 1.2450980392rem + 1.045751634vw, 2.5rem);
}

h4, .h4 {
  font-size: clamp(1.125rem, 0.9975490196rem + 0.522875817vw, 1.625rem);
}

h5, .h5 {
  font-size: clamp(1.125rem, 1.0294117647rem + 0.3921568627vw, 1.5rem);
}

h6, .h6 {
  font-size: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
}

a,
button,
label,
input,
textarea,
select,
svg * {
  transition-duration: var(--transition-duration);
}

a {
  color: inherit;
}
@media (any-hover: hover) {
  a:hover {
    color: var(--color-accent);
  }
}
@media (any-hover: none) {
  a:active {
    color: var(--color-accent);
  }
}
a[class] {
  text-decoration: none;
}

:focus-visible {
  outline: 0.125rem dashed var(--color-ligth);
  outline-offset: 0.25rem;
  transition-duration: 0s !important;
}

.icon {
  display: inline-flex;
  align-items: center;
  column-gap: 0.625rem;
}
.icon::after {
  --size: 1.5rem;
  width: var(--size);
  height: var(--size);
  content: "";
  flex-shrink: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (width <= 90.06125rem) {
  .icon::after {
    --size: 1.25rem;
  }
}
.icon--yellow-arrow {
  background-image: url(/src/icons/yellowArrow.svg);
}

.logo {
  max-width: clamp(7.875rem, 7.0306372549rem + 3.4640522876vw, 11.1875rem);
}

.button {
  display: inline-flex;
  justify-content: center;
  padding: 1.375rem 1.625rem;
  font-size: 1.5rem;
  color: var(--color-accent);
  white-space: nowrap;
  background-color: var(--color-dark);
  border: var(--border);
  border-radius: 0.75rem;
}
@media (width <= 90.06125rem) {
  .button {
    padding: 1rem 1.375rem;
    font-size: 0.875rem;
    border-radius: 0.5rem;
  }
}
@media (any-hover: hover) {
  .button:hover {
    color: var(--color-accent);
    background-color: var(--gradient);
    border-color: var(--color-accent);
  }
}
@media (any-hover: none) {
  .button:active {
    color: var(--color-accent);
    background-color: var(--gradient);
    border-color: var(--color-accent);
  }
}
.button--accent {
  background-color: var(--color-accent);
  border-color: var(--color-bg-dark);
  color: var(--color-dark);
  font-weight: 500;
  border-radius: 0.5rem;
}

.burger-button {
  width: 2.125rem;
  height: 2.125rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.53125rem 0.265625rem;
  color: var(--color-active);
  background-color: transparent;
  border: none;
}
@media (any-hover: hover) {
  .burger-button:hover {
    color: var(--color-accent);
  }
}
@media (any-hover: none) {
  .burger-button:active {
    color: var(--color-accent);
  }
}
.burger-button.is-active .burger-button__line:first-child {
  rotate: 45deg;
  transform-origin: 0;
  translate: 0.25em -0.1em;
}
.burger-button.is-active .burger-button__line:nth-child(2) {
  rotate: -45deg;
}
.burger-button.is-active .burger-button__line:last-child {
  width: 0;
}
.burger-button__line {
  width: 100%;
  height: 0.125rem;
  background-color: currentColor;
  border-radius: 1rem;
  transition-duration: var(--transition-duration);
}
.burger-button__line:last-child {
  align-self: end;
  width: 55%;
}

.header {
  position: sticky;
  z-index: 100;
  top: 0;
  animation-name: scrolling-header;
  animation-fill-mode: both;
  animation-timeline: scroll();
  animation-range: 6.25rem 12.5rem;
}
@keyframes scrolling-header {
  to {
    box-shadow: 0 0 1rem 0 var(--color-dark-40);
  }
}
.header__body {
  padding-block: 1.5rem;
  background-color: var(--color-bg-dark-10);
}
@media (width <= 47.99875rem) {
  .header__body {
    padding-block: 1.25rem;
  }
}
.header__body-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 1rem;
}
@media (width > 47.99875rem) {
  .header__overlay {
    display: contents;
  }
}
@media (width <= 47.99875rem) {
  .header__overlay {
    position: fixed;
    inset: 0;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 3rem;
    background-color: var(--color-bg-dark-10);
    transition-duration: var(--transition-duration);
  }
  .header__overlay:not(.is-active) {
    opacity: 0;
    visibility: hidden;
    translate: 100%;
  }
}
@media (width <= 47.99875rem) {
  .header__menu {
    overflow-y: auto;
  }
}
.header__menu-list {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}
@media (width <= 90.06125rem) {
  .header__menu-list {
    column-gap: 0.375rem;
  }
}
@media (width <= 47.99875rem) {
  .header__menu-list {
    flex-direction: column;
    row-gap: 1rem;
  }
}
.header__menu-link {
  padding: 0.875rem 1.5rem;
  color: var(#333);
}
@media (width <= 90.06125rem) {
  .header__menu-link {
    padding: 0.625rem 1.125rem;
  }
}
@media (width <= 47.99875rem) {
  .header__contact-us-link {
    width: 100%;
    max-width: 18.75rem;
    align-self: center;
  }
}

.footer {
  background-color: var(--color-bg-dark-10);
}
.footer__body {
  padding: 1.875rem 0;
}
.footer__body-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.875rem;
}
@media (width <= 47.99875rem) {
  .footer__body-info {
    row-gap: 0;
  }
}
.footer__body-button {
  width: 3.4375rem;
  height: 3.4375rem;
}
.footer__body-button:hover {
  background-color: var(--color-accent);
  border-radius: 15%;
}

.metrics__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.metrics__item {
  display: flex;
  flex-direction: column-reverse;
  row-gap: 0.625rem;
  padding: 3.125rem;
}
@media (width <= 90.06125rem) {
  .metrics__item {
    padding: 1.875rem 2.5rem;
    row-gap: 0.125rem;
  }
}
@media (width <= 63.99875rem) {
  .metrics__item {
    row-gap: 0;
    padding: 1.25rem;
  }
}
.metrics__item:first-child {
  padding-left: 0;
}
.metrics__item:not(:last-child) {
  border-right: var(--border);
}
.metrics__value {
  font-weight: 600;
}
.metrics__sign {
  color: var(--color-accent);
}

.resources-preview {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  row-gap: 1.875rem;
}
@media (width <= 90.06125rem) {
  .resources-preview {
    row-gap: 1.25rem;
  }
}
@media (width <= 63.99875rem) {
  .resources-preview {
    border-block: var(--border);
  }
}
@media (width <= 47.99875rem) {
  .resources-preview {
    align-items: center;
  }
}
.resources-preview__case {
  display: flex;
  align-items: center;
}
.resources-preview__case img {
  width: 41.5625rem;
}
@media (width <= 47.99875rem) {
  .resources-preview__case img {
    padding: 3.125rem 0;
    width: 20.9375rem;
  }
}
.resources-preview__body {
  display: grid;
  row-gap: 0.875rem;
}
@media (width <= 90.06125rem) {
  .resources-preview__body {
    row-gap: 0.375rem;
  }
}
@media (width <= 30.06125rem) {
  .resources-preview__button {
    width: 100%;
  }
}

.hero {
  border-bottom: var(--border);
}
@media (width > 63.99875rem) {
  .hero__main {
    display: grid;
    grid-template-columns: 60% auto;
    grid-template-areas: "body resources-preview" "metricks resources-preview";
  }
}
.hero__body {
  grid-area: body;
  padding-top: 6.25rem;
  padding-right: 3.125rem;
  padding-bottom: 6.25rem;
}
@media (width <= 90.06125rem) {
  .hero__body {
    padding-top: 6.25rem;
    padding-right: 2.5rem;
  }
}
@media (width <= 63.99875rem) {
  .hero__body {
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 1.875rem;
  }
}
.hero__subtitle {
  font-size: clamp(1.125rem, 0.9338235294rem + 0.7843137255vw, 1.875rem);
  font-family: var(--font-family-accent);
  font-weight: 500;
  color: var(--color-dark-40);
}
.hero__subtitle:not(:last-child) {
  margin-bottom: 1.875rem;
}
@media (width <= 47.99875rem) {
  .hero__subtitle:not(:last-child) {
    margin-bottom: 0.875rem;
  }
}
.hero__title:not(:last-child) {
  margin-bottom: 1.25rem;
}
@media (width <= 47.99875rem) {
  .hero__title:not(:last-child) {
    margin-bottom: 0.625rem;
  }
}
.hero__metrics {
  grid-area: metricks;
}
@media (width > 63.99875rem) {
  .hero__metrics {
    border-top: var(--border);
  }
}
@media (width <= 63.99875rem) {
  .hero__metrics::before {
    width: 100vw;
    right: calc(var(--conteiner-padding-x) * -1);
  }
}
.hero__resources-preview {
  grid-area: resources-preview;
  padding-left: 5rem;
  padding-bottom: 5rem;
}
@media (width <= 90.06125rem) {
  .hero__resources-preview {
    padding-left: 3.125rem;
    padding-bottom: 3.125rem;
  }
}
@media (width > 63.99875rem) {
  .hero__resources-preview {
    border-left: var(--border);
  }
}
@media (width <= 63.99875rem) {
  .hero__resources-preview {
    width: 100vw;
    margin-left: calc(var(--conteiner-padding-x) * -1);
    padding: 6.25rem 2.5rem 2.5rem;
  }
}
@media (width <= 47.99875rem) {
  .hero__resources-preview {
    padding: 3.125rem 1.25rem 3.125rem 1.25rem;
  }
}

.slider {
  position: relative;
  overflow: hidden;
}
.slider__item {
  display: none;
  row-gap: 1.875rem;
  text-align: start;
}
.slider__item.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  opacity: 1;
  transform: translateX(0);
}
.slider__button {
  padding: 1.875rem 3.75rem;
  font-size: 1.5rem;
}

.prev-button,
.next-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: transparent;
  border: none;
  font-size: 24px;
  color: var(--color-accent);
}

.prev-button {
  left: 0.625rem;
}

.next-button {
  right: 0.625rem;
}

.item__img {
  width: 100%;
  max-width: 50rem;
  max-height: 22.5rem;
  height: auto;
}
.item__description p {
  font-size: 1.5rem;
}

.products {
  padding-top: 6.25rem;
  margin-bottom: 6.25rem;
}
.products__main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9.375rem;
}
.products__slider {
  padding-bottom: 12.5rem;
  border-bottom: var(--border);
}
.products__slider .prev-button,
.products__slider .next-button {
  top: 40%;
}
@media (width <= 47.99875rem) {
  .products__slider .prev-button,
  .products__slider .next-button {
    top: 25%;
  }
}

.second-products__slider .item__img {
  width: 100%;
  max-width: 18.75rem;
  max-height: 31.25rem;
  height: auto;
}
@media (width <= 47.99875rem) {
  .second-products__slider .item__img {
    max-width: 25rem;
    max-height: 37.5rem;
  }
}
@media (width <= 30.06125rem) {
  .second-products__slider .item__img {
    max-width: 12.5rem;
    max-height: 25rem;
  }
}

.about_us {
  overflow: hidden;
  border-top: var(--border);
  margin-bottom: 6.25rem;
}
@media (width <= 47.99875rem) {
  .about_us {
    margin-bottom: 1.875rem;
  }
}
.about_us__main {
  padding-top: 6.25rem;
  display: grid;
  grid-template-columns: 50% auto;
}
.about_us__main-description {
  padding-top: 2rem;
}
@media (width <= 47.99875rem) {
  .about_us__main-description {
    padding-top: 1.25rem;
  }
}
.about_us__main-title {
  font-size: 3rem;
}
.about_us__description {
  padding-right: 3.125rem;
}
@media (width <= 47.99875rem) {
  .about_us__description {
    padding: 0 0;
  }
}
.about_us__promo {
  padding-left: 5rem;
  display: flex;
  flex-direction: column;
  row-gap: 1.875rem;
}
@media (width <= 47.99875rem) {
  .about_us__promo {
    padding-left: 1.875rem;
  }
}
.about_us__promo-pic {
  max-width: 38.1875rem;
  max-height: 35.625rem;
}

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