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

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

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure, fieldset):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]) {
  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;
  /**
    Плавный скролл
   */
  scroll-behavior: smooth;
}

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

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

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

/**
  Убирает серую подсветку при тапе на мобильных устройствах (iOS/Android)
 */
button {
  -webkit-tap-highlight-color: transparent;
}

/**
  Приводим к единому цвету 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 * {
  -webkit-transition-property: fill, stroke;
  transition-property: fill, stroke;
}

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

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --white: #FFFFFF;
  --black: #000000;
  --base-ff: "Geologica";
  --title-ff: "Furore";
  --grey-1: #676767;
  --grey-2: #414141;
  --gradient-1: linear-gradient(76.69deg, #A40000 19.13%, #E90000 39.67%, #FFDA00 99.72%);
  --hover: #f23f00;
}

@font-face {
  font-family: "Furore";
  src: url("../fonts/Furore.woff2") format("woff2"), url("../fonts/Furore.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica-SemiBold.woff2") format("woff2"), url("../fonts/Geologica-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica-Regular.woff2") format("woff2"), url("../fonts/Geologica-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica-ExtraLight.woff2") format("woff2"), url("../fonts/Geologica-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica-Light.woff2") format("woff2"), url("../fonts/Geologica-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica-ExtraBold.woff2") format("woff2"), url("../fonts/Geologica-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica-Bold.woff2") format("woff2"), url("../fonts/Geologica-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica-Medium.woff2") format("woff2"), url("../fonts/Geologica-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica-Thin.woff2") format("woff2"), url("../fonts/Geologica-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica-Black.woff2") format("woff2"), url("../fonts/Geologica-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
html {
  height: 100%;
  height: auto;
}

body {
  height: 100%;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

a, button {
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

svg, path {
  -webkit-transition: fill 0.2s linear, stroke 0.2s linear;
  transition: fill 0.2s linear, stroke 0.2s linear;
}

ul[class], ol[class] {
  list-style: none;
  padding: 0;
}

ul, ol {
  margin: 0;
}

img {
  height: auto;
  max-width: 100%;
}

button {
  background: none;
  border: none;
  padding: 0;
}

label {
  cursor: pointer;
}

input, textarea {
  outline: none;
  -ms-touch-action: none;
      touch-action: none;
}

textarea {
  resize: none;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100svh;
}

.content {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

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

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

.d-grid {
  display: grid;
}
.d-grid > * {
  min-width: 0;
}

.grid-gap {
  gap: 1.25rem;
}

.centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.icon svg, .icon img {
  width: 100%;
  height: 100%;
}
.icon svg, .icon path {
  stroke: inherit;
}

.medium {
  font-weight: 500;
}

.bold {
  font-weight: bold;
}

.full-link::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.border {
  position: relative;
}
.border::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: inherit;
  border: 1px solid;
  pointer-events: none;
}

.text-crop {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
}

.html-rem {
  font-size: calc(0.9259259259vw + 0PX);
  overflow-x: hidden;
}

body {
  font-family: var(--base-ff);
  background: var(--black);
  color: var(--white);
  line-height: 1.25;
}

.wrapper {
  position: relative;
  z-index: 3;
  overflow: hidden;
}

.container {
  width: 100%;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: calc(-1 * var(--gutter-y));
  margin-right: calc(-0.5 * var(--gutter-x));
  margin-left: calc(-0.5 * var(--gutter-x));
}
.row > * {
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--gutter-x) * 0.5);
  padding-left: calc(var(--gutter-x) * 0.5);
  margin-top: var(--gutter-y);
}

.title {
  font-family: var(--title-ff);
}

h1, .h1 {
  font-size: 3.75rem;
  line-height: 4.3125rem;
  font-weight: normal;
}

.mobile {
  display: none;
}

.slider {
  overflow: hidden;
}
.slider-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.decor-svg {
  position: absolute;
  left: -9999px;
}

.o-hidden {
  overflow: hidden;
}

strong {
  font-weight: bold;
}

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

.text {
  font-weight: 200;
  font-size: 1.125rem;
}

.clipPath {
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.nowrap {
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .html-rem {
    font-size: calc(1.5625vw + 0PX);
  }
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media (max-width: 640px) {
  .html-rem {
    font-size: calc(4.0712468193vw + 0PX);
  }
  .container {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
  h1, .h1 {
    font-size: 1.875rem;
    line-height: 2.1875rem;
  }
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
  .text {
    font-size: 0.875rem;
  }
}
.section__top {
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}
.section__top-left {
  grid-column: span 4;
}
.section__top-right {
  grid-column: span 8;
}
.section__name {
  font-size: 1.25rem;
  line-height: 1.5rem;
  color: var(--grey-1);
  font-weight: 300;
  padding-top: 2.5rem;
}

.logo-text img {
  width: 15.25rem;
  display: inline;
}

@media (max-width: 1024px) {
  .section__top {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }
  .section__top-left {
    grid-column: span 1;
  }
  .section__top-right {
    grid-column: span 1;
  }
  .section__name {
    padding-top: 0;
  }
}
@media (max-width: 640px) {
  .section__name {
    font-size: 1rem;
    line-height: 1.1875rem;
  }
  .logo-text img {
    width: 7.625rem;
  }
}
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 3.375rem 0 1.875rem;
  -webkit-transition: top 0.5s ease-in-out, padding 0.5s ease-in-out;
  transition: top 0.5s ease-in-out, padding 0.5s ease-in-out;
}
.header.scrolled {
  top: -100%;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(17px);
          backdrop-filter: blur(17px);
  padding: 1.125rem 0;
}
.header.scrolled .menu__link::after {
  bottom: -1.5rem;
}
.header.fixed {
  position: fixed;
  top: 0;
}
.header__content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 2.5rem;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.header__group {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-left: 9.125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 0.25rem;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.header__contacts {
  margin-left: auto;
}
.header-contacts {
  font-size: 1.25rem;
  font-weight: bold;
}
.header-contacts__link:hover {
  opacity: 0.8;
}
.header__m-menu {
  margin-left: 2.5rem;
}
.header__tablet-phone {
  display: none;
}

.logo img {
  width: 9.8125rem;
}

.menu {
  gap: 3.125rem;
  font-weight: 500;
}
.menu__link {
  position: relative;
}
.menu__link::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  right: 0;
  height: 0.25rem;
  background: var(--gradient-1);
  width: 0;
  -webkit-transition: width 0.2s ease-in-out;
  transition: width 0.2s ease-in-out;
}
.menu__link:hover::after {
  width: 100%;
}

.open-menu {
  color: inherit;
  font-size: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.open-menu__icon {
  width: 1.875rem;
  height: 1.875rem;
}
.open-menu__icon span {
  width: 1.375rem;
  height: 0.125rem;
  border-radius: 0.5rem;
  background: var(--white);
  position: relative;
}
.open-menu__icon span::before, .open-menu__icon span::after {
  content: "";
  display: block;
  width: 1.375rem;
  height: 0.125rem;
  border-radius: 0.5rem;
  background: var(--white);
  position: absolute;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.open-menu__icon span::before {
  top: -0.5rem;
}
.open-menu__icon span::after {
  bottom: -0.5rem;
}
.open-menu.active .open-menu__txt {
  opacity: 0;
}
.open-menu.active .open-menu__icon span {
  background: transparent;
}
.open-menu.active .open-menu__icon span::before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0;
}
.open-menu.active .open-menu__icon span::after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 0;
}

.social {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
}
.social__link {
  fill: var(--white);
}
.social__link:hover {
  opacity: 0.8;
}
.social__tg {
  width: 2rem;
  height: 1.75rem;
}
.social__wa {
  width: 2rem;
  height: 2rem;
}
.social__vk {
  width: 2.375rem;
  height: 1.4375rem;
}

@media (min-width: 1025px) {
  .header.scrolled .header__content {
    padding: 0;
  }
  .header.scrolled .header__group {
    padding-top: 0;
    padding-left: 11.625rem;
  }
}
@media (max-width: 1024px) {
  .header {
    padding: 2.8125rem 0;
  }
  .header.scrolled {
    padding: 0.5625rem 0;
  }
  .header.scrolled .header__content {
    padding: 0;
  }
  .header__group {
    position: fixed;
    inset: 0;
    overflow: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(17px);
            backdrop-filter: blur(17px);
    padding: 4.625rem 0.9375rem 2.375rem;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    height: 100vh;
  }
  .header__group.visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .header__m-menu {
    display: block;
  }
  .header__menu {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .header__contacts {
    width: 100%;
    margin-top: auto;
  }
  .header-contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.625rem;
    font-size: 1.375rem;
  }
  .header-contacts__item.mobile {
    display: block;
  }
  .header__logo {
    position: relative;
    z-index: 9;
  }
  .header__tablet-phone {
    display: block;
    margin-left: auto;
  }
  .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 18px;
    gap: 2.5rem;
  }
}
@media (min-width: 641px) and (max-width: 1024px) {
  .open-menu {
    font-size: 1rem;
  }
  .open-menu__icon {
    width: 2.125rem;
    height: 2.125rem;
  }
}
@media (max-width: 640px) {
  .header {
    padding: 1.5rem 0;
  }
  .header__content {
    padding: 0 0.9375rem;
  }
  .header__tablet-phone {
    display: none;
  }
  .header__m-menu {
    margin-left: auto;
  }
  .social {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.25rem;
  }
  .social__link {
    fill: var(--white);
  }
  .social__tg {
    width: 1.5rem;
    height: 1.25rem;
  }
  .social__wa {
    width: 1.375rem;
    height: 1.375rem;
  }
  .social__vk {
    width: 1.625rem;
    height: 1rem;
  }
  .logo img {
    width: 6.125rem;
  }
}
.footer {
  padding: 1rem 0;
}
.footer__logo {
  margin-bottom: 3rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__logo img {
  height: 14.375rem;
  width: auto;
}
.footer__bottom {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__dev {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--grey-2);
  gap: 0.5rem;
  font-size: 1.125rem;
}
.footer__dev-img {
  width: 4rem;
}
.footer__dev-img img {
  width: 100%;
}

.callbackBtn {
  display: none;
  position: fixed;
  right: 1.25rem;
  bottom: 4.25rem;
  width: 3rem;
  z-index: 29;
  -webkit-transition: bottom 0.4s linear;
  transition: bottom 0.4s linear;
}
.callbackBtn img {
  width: 100%;
}

body:has(.scrolled) .callbackBtn {
  bottom: 1.25rem;
}

.decorItems__item {
  position: absolute;
  width: 83.25rem;
  z-index: -1;
}
.decorItems__item-1 {
  top: 109.125rem;
  right: -14rem;
}
.decorItems__item-2 {
  bottom: 153.4375rem;
  right: -9.875rem;
}
.decorItems__item-3 {
  bottom: -29.375rem;
  left: -40rem;
}
.decorItems__item img {
  width: 100%;
}

@media (max-width: 1024px) {
  .footer__logo {
    margin-bottom: 2.5rem;
  }
  .footer__logo img {
    height: 8.5rem;
  }
  .decorItems__item-1 {
    top: 86.5rem;
    right: -39rem;
  }
  .decorItems__item-2 {
    bottom: 186.5rem;
    right: -11.625rem;
  }
  .decorItems__item-3 {
    bottom: -24.625rem;
    right: 21rem;
  }
}
@media (max-width: 640px) {
  .footer__logo {
    margin-bottom: 1rem;
  }
  .footer__logo-left {
    display: none;
  }
  .footer__logo img {
    width: 100%;
    height: auto;
  }
  .footer__logo-right {
    width: 100%;
  }
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.25rem;
  }
  .footer__dev {
    font-size: 0.875rem;
    gap: 0.375rem;
  }
  .footer__dev-img {
    width: 3.125rem;
  }
  .callbackBtn {
    display: block;
  }
  .decorItems__item {
    width: 52rem;
  }
  .decorItems__item-1 {
    top: 49rem;
    right: -31.75rem;
  }
  .decorItems__item-2 {
    bottom: 206.25rem;
    right: -30.375rem;
  }
  .decorItems__item-3 {
    bottom: -17.25rem;
    right: -30.375rem;
  }
}
.intro {
  padding: 1.5rem 1.875rem;
  height: 100vh;
}
.intro__inner {
  height: 100%;
  position: relative;
}
.intro-info {
  position: absolute;
  inset: 0;
  z-index: 9;
  padding: 11.625rem 2.5rem;
  pointer-events: none;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}
.intro-info__inner {
  max-width: 48.75rem;
}
.intro-info__txt {
  font-size: 1.625rem;
  line-height: normal;
  margin-top: 1.5rem;
}
.intro-slider {
  height: 100%;
}
.intro-slider__slide.swiper-slide-active .intro-item__img img {
  -webkit-animation-name: zoom;
          animation-name: zoom;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.intro-item {
  height: 100%;
}
.intro-item__img {
  height: 100%;
  clip-path: url(#myComplexClipPath);
  position: relative;
}
.intro-item__img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}
.intro-item__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.5);
      -ms-transform: scale(1.5);
          transform: scale(1.5);
}
.intro__pagination {
  position: absolute;
  bottom: 3rem;
  left: 2.5rem;
  right: 2.5rem;
  z-index: 9;
}

.intro-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
}
.intro-pagination .swiper-pagination-bullet {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  margin: 0 !important;
  border-radius: 0;
  opacity: 1;
  background: #FFFFFF;
  position: relative;
  display: block;
  height: 0.1875rem;
}
.intro-pagination .swiper-pagination-bullet-active .intro-pagination__progress {
  -webkit-animation-name: countingBar;
          animation-name: countingBar;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.intro-pagination .swiper-pagination-bullet-finished .intro-pagination__progress {
  width: 100%;
}
.intro-pagination__item {
  height: 0.25rem;
  background: var(--white);
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}
.intro-pagination__progress {
  height: 100%;
  background: var(--gradient-1);
  display: block;
  width: 0%;
}

@-webkit-keyframes countingBar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes countingBar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes zoom {
  0% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoom {
  0% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@media (max-width: 1024px) {
  .intro {
    padding: 1.25rem;
    min-height: 40rem;
  }
  .intro-item__img {
    clip-path: url(#myComplexClipPathLg);
  }
  .intro-info {
    padding: 10.625rem 2.5rem;
  }
}
@media (max-width: 640px) {
  .intro {
    padding: 0.9375rem;
  }
  .intro-item__img {
    clip-path: url(#myComplexClipPathSm);
  }
  .intro__pagination {
    left: 0.9375rem;
    right: 0.9375rem;
    bottom: 2.125rem;
  }
  .intro-pagination {
    gap: 0.625rem;
  }
  .intro-info {
    padding: 5.25rem 0.9375rem;
  }
  .intro-info__txt {
    font-size: 1.375rem;
    line-height: 1.75rem;
    margin-top: 0.5rem;
  }
}
.about {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}
.about-desc {
  max-width: 63.25rem;
}
.about-desc__title {
  margin-bottom: 2rem;
}
.about-desc__txt {
  font-size: 1.625rem;
  line-height: 2rem;
  font-weight: 200;
}
.about-desc__txt strong {
  font-weight: bold;
}
.about-desc__txt p {
  margin-bottom: 2.375rem;
}
.about-desc__txt p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .about {
    padding: 5rem 0;
  }
}
@media (max-width: 640px) {
  .about {
    padding: 3.5rem 0;
  }
  .about-desc__title {
    margin-bottom: 1.25rem;
  }
  .about-desc__txt {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
  .about-desc__txt p {
    margin-bottom: 1.125rem;
  }
}
.application {
  padding-top: 3.375rem;
  padding-bottom: 3.375rem;
}
.application__title {
  max-width: 38.125rem;
}
.application__txt {
  font-weight: 100;
  font-size: 1.875rem;
  margin-top: 1.375rem;
}
.application__content {
  margin-top: 3.125rem;
}
.application-list {
  grid-template-columns: repeat(4, 1fr);
}
.application-list__item-1 {
  margin-bottom: 12.75rem;
}
.application-list__item-3 {
  margin-top: 15.5rem;
  margin-bottom: 22.125rem;
}
.application-list__item-5 {
  margin-top: 29.625rem;
}
.application-list__item-6 {
  margin-top: 2.875rem;
  margin-bottom: 16.75rem;
}
.application-card {
  will-change: transform;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}
.application-card__img {
  margin-bottom: 0.9375rem;
}
.application-card__title {
  font-weight: bold;
  font-size: 1.625rem;
  margin-bottom: 0.625rem;
}
.application-card__txt {
  font-size: 1.125rem;
}
.application__scroll {
  margin-top: 3.125rem;
}
.application-scroll {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.875rem;
  opacity: 0.3;
  font-size: 0.875rem;
  fill: var(--white);
}
.application-scroll__icon {
  width: 1.6875rem;
  height: 1.6875rem;
}

@media (max-width: 1024px) {
  .application {
    padding: 3.125rem 0;
  }
  .application__content {
    margin-top: 3.125rem;
  }
  .application-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: auto;
    margin-right: -1.25rem;
    margin-left: -1.25rem;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .application-list::-webkit-scrollbar {
    display: none;
  }
  .application-list__col {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.25rem;
  }
  .application-list__item {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 0;
  }
  .application-card {
    width: 25.125rem;
  }
  .application__scroll {
    display: block;
  }
}
@media (max-width: 640px) {
  .application {
    padding-top: 2.125rem;
    padding-bottom: 2.125rem;
  }
  .application__txt {
    font-size: 1.25rem;
    margin-top: 0.9375rem;
  }
  .application__content {
    margin-top: 1.5625rem;
  }
  .application-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: auto;
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
  .application-list__col {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.25rem;
  }
  .application-list__item {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 0;
  }
  .application-card {
    width: 19.25rem;
  }
  .application-card__img img {
    min-height: 18.75rem;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .application-card__title {
    font-size: 1.375rem;
    margin-bottom: 0.3125rem;
  }
  .application-card__txt {
    font-size: 0.875rem;
  }
  .application__scroll {
    margin-top: 1.875rem;
  }
}
.mission {
  padding-top: 7.5rem;
  padding-bottom: 3.75rem;
}
.mission__top {
  grid-template-columns: repeat(2, 1fr);
}
.mission__txt-sm {
  font-size: 1.625rem;
  font-weight: 200;
  padding-top: 1rem;
}
.mission__txt-big {
  font-size: 2.5625rem;
  font-weight: 200;
  max-width: 34.375rem;
  margin-left: 5rem;
}
.mission__txt-big .logo-text img {
  width: 10.5rem;
}
.mission__content {
  margin-left: -1.875rem;
  margin-right: -1.875rem;
  margin-top: 5.25rem;
  overflow: hidden;
}
.mission-line__item {
  font-size: 5.625rem;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 0.125rem #252525;
  text-stroke: 0.125rem #252525;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.25rem;
}
.mission-line__item:last-child {
  margin-bottom: 0;
}
.mission-line__item-inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation: scroll-left 50s linear infinite;
          animation: scroll-left 50s linear infinite;
}
.mission-line__item[data-pos=left] .mission-line__item-inner {
  -webkit-animation: scroll-right 50s linear infinite;
          animation: scroll-right 50s linear infinite;
}
.mission-line__item-dot {
  width: 3rem;
  height: 3rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0 3rem;
}

@-webkit-keyframes scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@-webkit-keyframes scroll-right {
  from {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes scroll-right {
  from {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media (max-width: 1024px) {
  .mission {
    padding: 4.375rem 0;
  }
  .mission__top {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .mission__top-right {
    grid-row: 1;
  }
  .mission__content {
    margin-top: 3.5rem;
  }
  .mission__txt-big {
    margin-left: 0;
    max-width: 100%;
  }
  .mission__txt-sm {
    padding-top: 0;
  }
  .mission-line__item {
    font-size: 4.25rem;
  }
  .mission-line__item-dot {
    width: 2.375rem;
    height: 2.375rem;
    margin: 0 2.25rem;
  }
}
@media (max-width: 640px) {
  .mission {
    padding: 3.5rem 0;
  }
  .mission__top {
    gap: 2rem;
  }
  .mission__txt-big {
    font-size: 1.75rem;
  }
  .mission__txt-big .logo-text img {
    width: 5.875rem;
  }
  .mission__txt-sm {
    font-size: 1rem;
  }
  .mission__content {
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    margin-top: 1.5rem;
  }
  .mission-line__item {
    font-size: 3.125rem;
    -webkit-text-stroke: 0.09375rem #252525;
    text-stroke: 0.09375rem #252525;
  }
  .mission-line__item-dot {
    width: 1.75rem;
    height: 1.75rem;
    margin: 0 1.5rem;
  }
}
.advantages {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.advantages__title {
  max-width: 41.125rem;
}
.advantages__content {
  margin-top: 2.25rem;
}
.advantages-list {
  grid-template-columns: repeat(4, 1fr);
  row-gap: 1.875rem;
}
.advantages-card {
  height: 100%;
  min-height: 18.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 3.5rem 0.75rem 1.25rem 1.75rem;
  position: relative;
  background: #161616;
}
.advantages-card__icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2.25rem;
  height: auto;
}
.advantages-card__icon img {
  width: 100%;
}
.advantages-card__title {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.advantages-card__txt {
  font-weight: 200;
  font-size: 1.125rem;
}

@media (max-width: 1024px) {
  .advantages {
    padding-top: 1.5rem;
  }
  .advantages-list {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 1.25rem;
  }
  .advantages-list__item.desktop {
    display: none;
  }
  .advantages-card {
    min-height: 19.875rem;
    padding: 4rem 1.25rem 1.25rem;
  }
  .advantages-card__icon {
    top: 1.25rem;
    right: 1.25rem;
  }
}
@media (max-width: 640px) {
  .advantages {
    padding-top: 1.5rem;
    padding-bottom: 3rem;
  }
  .advantages__content {
    margin-top: 1.5rem;
  }
  .advantages-list {
    grid-template-columns: 1fr;
  }
  .advantages-card {
    padding: 4rem 1.25rem 1.875rem 1.25rem;
  }
  .advantages-card__title {
    font-size: 1.375rem;
    margin-bottom: 0.625rem;
  }
  .advantages-card__txt {
    font-size: 0.875rem;
  }
}
.new {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
.new__content {
  margin-top: 1.875rem;
}
.new-slider-wrapper {
  position: relative;
}
.new-item {
  position: relative;
}
.new-item__img {
  clip-path: url(#clipPathNew);
  height: 42.75rem;
}
.new-item__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.new-item__title {
  font-size: 1.5rem;
  margin-bottom: 0.625rem;
  font-weight: bold;
}
.new-item__txt {
  font-weight: 200;
  font-size: 1.125rem;
}
.new-actions {
  position: absolute;
  right: 2.5rem;
  bottom: 3rem;
  gap: 0.625rem;
  z-index: 9;
}
.new__btn {
  width: 3.75rem;
  height: 3.75rem;
  background: #EF2407;
  -webkit-backdrop-filter: blur(22px);
          backdrop-filter: blur(22px);
}
.new__btn svg {
  width: 1.625rem;
}
.new__btn:hover {
  background: rgba(0, 0, 0, 0.5);
}

@media (min-width: 641px) {
  .new-item__info {
    position: absolute;
    left: 4rem;
    bottom: 3rem;
    width: 36rem;
    max-width: 100%;
    padding: 1.875rem;
    background: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(22px);
            backdrop-filter: blur(22px);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  }
}
@media (max-width: 1024px) {
  .new {
    padding: 3.75rem 0;
  }
  .new-item__img {
    height: 50.25rem;
    clip-path: url(#clipPathNewLg);
  }
  .new-item__info {
    left: 1.875rem;
    bottom: 2.5rem;
  }
  .new-actions {
    bottom: 2.5rem;
    right: 2.5rem;
  }
}
@media (max-width: 640px) {
  .new {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .new__content {
    margin-top: 1.25rem;
  }
  .new-item__img {
    height: 32rem;
    clip-path: url(#clipPathNewSm);
  }
  .new-item__info {
    margin-top: 1.25rem;
  }
  .new-item__txt {
    font-size: 1rem;
  }
  .new-actions {
    right: 0;
    top: 26.75rem;
  }
}
.catalog {
  padding: 4.625rem 0;
}
.catalog__title {
  max-width: 52.75rem;
}
.catalog__content {
  margin-top: 2.75rem;
}
.catalog-slider {
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}
.catalog-slider .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.catalog-slider__slide {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  width: 25%;
}
.catalog-card {
  position: relative;
  height: 36.25rem;
}
.catalog-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 18.75rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(4.55%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.9)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 4.55%, rgba(0, 0, 0, 0.9) 100%);
  -webkit-transition: height 0.2s ease-in-out;
  transition: height 0.2s ease-in-out;
}
.catalog-card:hover::before {
  height: 100%;
}
.catalog-card:hover .catalog-card__hidden {
  height: auto;
}
.catalog-card__img {
  height: 100%;
}
.catalog-card__info {
  position: absolute;
  inset: 0;
  padding: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.catalog-card__hidden {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.2s ease-in-out;
  transition: height 0.2s ease-in-out;
}
.catalog-card__title {
  font-weight: bold;
  font-size: 1.625rem;
}
.catalog-card__subtitle {
  font-size: 1.625rem;
  margin-bottom: 0.5rem;
}
.catalog-card__txt {
  font-weight: 200;
  font-size: 1.125rem;
}
.catalog .application__scroll {
  display: none;
}

@media (max-width: 1024px) {
  .catalog {
    padding: 3.75rem 0;
  }
  .catalog__title {
    max-width: 100%;
  }
  .catalog__content {
    margin-top: 1.875rem;
  }
  .catalog-slider .swiper-wrapper {
    row-gap: 1.25rem;
  }
  .catalog-slider__slide {
    width: 50%;
  }
  .catalog-card {
    height: 25rem;
  }
  .catalog-card::before {
    height: 100%;
  }
  .catalog-card__hidden {
    height: auto !important;
  }
  .catalog-card__info {
    padding: 1.25rem;
  }
  .catalog-card__title {
    font-size: 1.375rem;
  }
  .catalog-card__subtitle {
    font-size: 1.375rem;
    margin-bottom: 0.625rem;
  }
  .catalog-card__txt {
    font-size: 0.875rem;
  }
}
@media (max-width: 640px) {
  .catalog {
    padding: 2.25rem 0;
  }
  .catalog__title {
    padding-right: 0.125rem;
  }
  .catalog__content {
    margin-top: 2rem;
  }
  .catalog-slider-wrapper {
    overflow: hidden;
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
  .catalog-slider {
    overflow: initial;
  }
  .catalog-slider .swiper-wrapper {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .catalog-slider__slide {
    width: 21.75rem;
  }
  .catalog-card__txt {
    max-width: 16.75rem;
  }
  .catalog .application__scroll {
    display: block;
  }
}
.gallery {
  padding: 3.5rem 0;
}
.gallery__title {
  max-width: 52.75rem;
}
.gallery__content {
  margin-top: 2.75rem;
}
.gallery-slider {
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}
.gallery-slider .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}
.gallery-slider__slide {
  width: auto;
  width: 35.25rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.gallery-item {
  position: relative;
  height: 23.5rem;
}
.gallery-item__img {
  height: 100%;
}
.gallery-item__open {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 3;
  opacity: 0;
}
.gallery-item__open img {
  width: 3.5rem;
}
.gallery-item__open:hover {
  opacity: 1;
}

@media (max-width: 1024px) {
  .gallery {
    padding: 3.75rem 0;
  }
  .gallery__content {
    margin-top: 1.875rem;
  }
}
@media (max-width: 640px) {
  .gallery {
    padding: 3.5rem 0;
  }
  .gallery__content {
    margin-top: 1.25rem;
  }
  .gallery-slider-wrapper {
    overflow: hidden;
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
  .gallery-slider {
    overflow: initial;
  }
  .gallery-slider__slide {
    width: 16.875rem;
  }
  .gallery-item {
    height: 10.875rem;
  }
}
.steps {
  padding: 4rem 0;
}
.steps__content {
  margin-top: 0.75rem;
}
.steps-list {
  grid-template-columns: repeat(3, 1fr);
}
.steps-item__number {
  position: relative;
  font-size: 10.125rem;
  margin-bottom: -3.375rem;
}
.steps-item__number::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  right: 0;
  background: var(--black);
  height: 4.625rem;
}
.steps-item__number span {
  background: linear-gradient(72.85deg, #A40000 0.35%, #E90000 31.86%, #FFDA00 99.65%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.steps-item__info {
  position: relative;
  z-index: 3;
}
.steps-item__title {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 0.625rem;
}
.steps-item__txt {
  max-width: 25rem;
}
.steps__bottom {
  margin-top: 5.125rem;
  grid-template-columns: repeat(12, 1fr);
}
.steps__bottom-col {
  grid-column: 5/12;
}
.steps__txt {
  font-size: 2.125rem;
  font-weight: 800;
  max-width: 28.5rem;
}

@media (max-width: 1024px) {
  .steps {
    padding: 3.75rem 0;
  }
  .steps__content {
    margin-top: 0;
  }
  .steps__bottom {
    margin-top: 3.25rem;
  }
}
@media (max-width: 640px) {
  .steps {
    padding: 1.75rem 0;
  }
  .steps-list {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }
  .steps__bottom {
    grid-template-columns: 1fr;
    margin-top: 2.25rem;
  }
  .steps__bottom-col {
    grid-column: 1/1;
  }
  .steps-item__number {
    font-size: 7.5rem;
    margin-bottom: -2.125rem;
  }
  .steps-item__number::after {
    height: 3.375rem;
    left: -0.5rem;
  }
  .steps-item__number span {
    display: inline-block;
    margin-left: -0.5rem;
  }
  .steps-item__title {
    font-size: 1.375rem;
    margin-right: -0.5rem;
  }
  .steps__txt {
    font-size: 1.75rem;
    margin-right: -0.25rem;
  }
}
.popular {
  padding: 4rem 0;
}
.popular__content {
  margin-top: 2.625rem;
}
.popular-list {
  grid-template-columns: repeat(4, 1fr);
}
.popular-card {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.popular-card__img {
  margin-bottom: 0.75rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.popular-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.popular-card__info {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.popular-card__title {
  font-size: 1.5rem;
  font-weight: bold;
}
.popular-card__subtitle {
  font-size: 1.125rem;
  color: #414141;
}

@media (max-width: 1024px) {
  .popular {
    padding: 3.75rem 0;
  }
  .popular-list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2.5rem;
  }
  .popular-card__img {
    height: 18.4375rem;
  }
}
@media (max-width: 640px) {
  .popular__content {
    margin-top: 1.25rem;
  }
  .popular-list {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .popular-card__img {
    margin-bottom: 0.625rem;
    height: 16.75rem;
  }
  .popular-card__title {
    font-size: 1.375rem;
  }
  .popular-card__subtitle {
    font-size: 0.875rem;
  }
}
.documents {
  padding: 1.5rem 0;
}
.documents__content {
  margin-top: 3.125rem;
}
.documents-desc {
  max-width: 51.5rem;
}
.documents-desc__title {
  margin-bottom: 1.5rem;
}
.documents-desc ul {
  padding-left: 1.75rem;
  margin-bottom: 1.5rem;
}
.documents-slider {
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}
.documents-slider__slide {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

@media (max-width: 1024px) {
  .documents {
    padding: 3.75rem 0;
  }
  .documents-slider-wrapper {
    overflow: hidden;
    margin-right: -1.25rem;
    margin-left: -1.25rem;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .documents-slider {
    overflow: initial;
  }
  .documents-slider__slide {
    width: 17.5rem;
  }
}
@media (max-width: 640px) {
  .documents {
    padding: 1.5rem 0;
  }
  .documents__content {
    margin-top: 2.5rem;
  }
  .documents-slider-wrapper {
    overflow: hidden;
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
  .documents-slider {
    overflow: initial;
    margin-left: -0.375rem;
    margin-right: -0.375rem;
  }
  .documents-slider__slide {
    padding-left: 0.375rem;
    padding-right: 0.375rem;
    width: 10.75rem;
  }
  .documents-desc ul {
    padding-left: 1.25rem;
  }
}
.contacts {
  padding-top: 6.5rem;
  padding-bottom: 3.5rem;
}
.contacts__content {
  margin-top: 2.5rem;
  grid-template-columns: repeat(2, 1fr);
}
.contacts__social {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.contacts-info {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.contacts-info__col {
  margin-right: 2.75rem;
}
.contacts-info__col:last-child {
  margin-right: 0;
}
.contacts-info__item {
  font-weight: bold;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}
.contacts-info__item-name {
  font-weight: 100;
  font-size: 18px;
  line-height: 1;
}
.contacts-info__item:last-child {
  margin-bottom: 0;
}
.contacts-info__txt span {
  display: block;
  font-weight: 200;
  font-size: 1.125rem;
  margin-top: 0.125rem;
}
.contacts-info__link:hover {
  opacity: 0.8;
}
.contacts-requisites__title {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 0.625rem;
}
.contacts-requisites__info {
  grid-template-columns: repeat(2, 1fr);
}
.contacts-requisites__txt span {
  color: #414141;
}

@media (max-width: 1024px) {
  .contacts {
    padding: 3.75rem 0;
  }
  .contacts__content {
    grid-template-columns: 1fr;
    gap: 3.75rem;
    margin-top: 2.5rem;
  }
  .contacts-requisites {
    max-width: 51.5rem;
  }
}
@media (max-width: 640px) {
  .contacts {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
  .contacts__content {
    gap: 2.5rem;
    margin-top: 1.875rem;
  }
  .contacts-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contacts-info__col {
    margin-bottom: 1rem;
  }
  .contacts-info__item {
    font-size: 1.375rem;
    margin-bottom: 1rem;
  }
  .contacts-info__txt span {
    font-size: 0.875rem;
  }
  .contacts-requisites__title {
    font-size: 1.375rem;
    margin-bottom: 1rem;
  }
  .contacts-requisites__info {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}