@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  background-repeat: no-repeat; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */
:where(:root) {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  overflow-wrap: break-word; /* 3 */
  -moz-tab-size: 4; /* 4 */
  -o-tab-size: 4;
     tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%; /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
:where(body) {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */
:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */
:where(hr) {
  color: inherit; /* 1 */
  height: 0; /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */
:where(nav li)::before {
  content: "​";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Safari.
 */
:where(abbr[title]) {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
:where(b, strong) {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
:where(small) {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
:where(iframe) {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
:where(svg:not([fill])) {
  fill: currentColor;
}

/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
:where(table) {
  border-collapse: collapse; /* 1 */
  border-color: inherit; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
:where(button, input, select) {
  margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
:where(button, [type=button i], [type=reset i], [type=submit i]) {
  -webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(fieldset) {
  border: 1px solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
:where(progress) {
  vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */
:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
:where([type=search i]) {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct styles in Safari.
 */
:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

/*
 * Add the correct display in Safari.
 */
:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
:where([aria-busy=true i]) {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
:where([aria-controls]) {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
:where([aria-disabled=true i], [disabled]) {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
:where([aria-hidden=false i][hidden]) {
  display: inline;
  display: initial;
}

:where([aria-hidden=false i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

:root {
  /* Colors */
  --color-white-primary: rgb(255 255 255 / 100%);
  --color-white-secondary: rgb(255 255 255 / 80%);
  --color-white-secondary-60: rgb(255 255 255 / 60%);
  --color-white-tertiary: rgb(255 255 255 / 40%);
  --color-white-bg-tertiary: rgb(255 255 255 / 6%);
  --color-red-primary: rgb(249 27 17 / 100%);
  --color-red-secondary: rgb(255 236 235 / 100%);
  --color-red-tertiary: rgb(205 23 14 / 100%);
  --color-red-accent: rgb(250 47 31 / 100%);
  --color-black-primary: rgb(21 22 27 / 100%);
  --color-black-secondary: rgb(21 22 27 / 20%);
  --color-black-tertiary: rgb(21 22 27 / 80%);
  --color-black-footer: rgb(12 12 12 / 100%);
  --color-grey-primary: rgb(33 33 33 / 100%);
  --color-grey-primary-60: rgb(33 33 33 / 60%);
  --color-grey-primary-40: rgb(33 33 33 / 40%);
  --color-light-grey-primary: rgb(245 245 245 / 100%);
  --color-blue-primary: rgb(70 124 229 / 100%);
  --color-bg-gray: rgb(240 240 240 / 100%);
  --color-bg-light: rgb(239 240 241 / 100%);
  --color-yellow-primary: rgb(255 185 8 / 100%);
  --color-green-primary: rgb(48 215 103 / 100%);
  --color-green-secondary: rgb(222 247 230 / 100%);
  --color-input-placeholder: var(--color-grey-primary-60);
  --color-input-error: rgb(231 76 60 / 100%);
  --color-input-error-bg: rgb(255 245 245 / 100%);
  --color-dot-black: rgb(33 33 33 / 100%);
  --color-link-icon: rgb(0 0 0 / 12%);
  --color-bg-checkbox: rgb(12 12 12 / 100%);
  --color-bg-hover: rgb(21 27 30 / 100%);
  /* Icons */
  --color-icon-white-primary: var(--color-white-primary);
  /* Borders */
  --color-border-dark-secondary-12: rgb(0 0 0 / 12%);
  --color-border-white-secondary: var(--color-white-secondary);
  --color-border-white-fourthiary: rgb(255 255 255 / 10%);
  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  /* Z-indexes */
  --z-index-default: 1;
  --z-index-two: 2;
  --z-index-ten: 10;
  --z-index-tabs: 50;
  --z-index-content: 60;
  --z-index-header-under: 99;
  --z-index-header: 100;
  --z-index-sidebar: 101;
  --color-glass-grey: rgb(105 105 105 / 40%);
  /* Fonts */
  --font-inter: 'Inter', system-ui, -apple-system, blinkmacsystemfont, sans-serif;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  src: url("./InterVariable.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: Inter;
  font-style: italic;
  font-weight: 100 900;
  src: url("./InterVariable-Italic.woff2") format("woff2");
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip; /* clip, not hidden — hidden creates a new scroll context and breaks position:sticky on iOS Safari */
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-feature-settings: "zero" 1, "zero";
  font-variant-numeric: slashed-zero;
  line-height: 1.5;
  color: rgb(21 22 27 / 100%);
  color: var(--color-black-primary);
  background-color: #0c0c0c;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color var(--transition);
}

button {
  padding: 0;
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.page-content {
  position: relative;
  z-index: 60;
  z-index: var(--z-index-content);
  background: rgb(240 240 240 / 100%);
  background: var(--color-bg-gray);
  transform: translateZ(0); /* promote to GPU layer so iOS composites it correctly over sticky pipe section during scroll */
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  z-index: var(--z-index-header);
  display: flex;
  align-items: center;
  width: 100%;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(40px);
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), backdrop-filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color var(--transition), backdrop-filter var(--transition);
}
.header__logo-group {
  position: relative;
  z-index: 102;
  display: flex;
  flex-shrink: 0;
}
.header__logo-pik, .header__logo-azimut {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 192px;
  height: 64px;
  border-right: 1px solid rgb(255 255 255 / 10%);
  border-right: 1px solid var(--color-border-white-fourthiary);
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  border-bottom: 1px solid var(--color-border-white-fourthiary);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity var(--transition), border-color var(--transition);
}
@media (hover: hover) and (pointer: fine){
.header__logo-pik:hover, .header__logo-azimut:hover {
  opacity: 0.7;
}
}
.header__logo-pik-img {
  transition: filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: filter var(--transition);
}
.header__logo-azimut-img {
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color var(--transition);
}
.header__nav {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 8px;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  border-bottom: 1px solid var(--color-border-white-fourthiary);
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: border-color var(--transition);
}
.header__nav-list {
  display: flex;
  gap: 0;
  align-items: center;
  height: 100%;
}
.header__nav-item {
  height: 100%;
}
.header__nav-link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 16px;
  font-family: 'Inter', system-ui, -apple-system, blinkmacsystemfont, sans-serif;
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity var(--transition), color var(--transition);
}
@media (hover: hover) and (pointer: fine){
.header__nav-link:hover {
  opacity: 0.7;
}
}
.header__phone {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  padding: 0 24px;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  border-bottom: 1px solid var(--color-border-white-fourthiary);
  border-left: 1px solid rgb(255 255 255 / 10%);
  border-left: 1px solid var(--color-border-white-fourthiary);
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: border-color var(--transition);
}
.header__phone-link {
  font-family: 'Inter', system-ui, -apple-system, blinkmacsystemfont, sans-serif;
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity var(--transition), color var(--transition);
}
@media (hover: hover) and (pointer: fine){
.header__phone-link:hover {
  opacity: 0.7;
}
}
.header__controls {
  position: relative;
  z-index: 102;
  display: none;
  gap: 8px;
  align-items: center;
  height: 100%;
  padding: 0 16px;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  border-bottom: 1px solid var(--color-border-white-fourthiary);
}
.header__phone-icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity var(--transition);
}
.header__phone-icon img {
  display: block;
}
@media (hover: hover) and (pointer: fine){
.header__phone-icon:hover {
  opacity: 0.7;
}
}
.header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
  border-radius: 4px;
}
.header__burger-bar {
  display: block;
  width: 20px;
  height: 2px;
  background-color: currentcolor;
  border-radius: 1px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform var(--transition), opacity var(--transition);
}
.header__burger.is-active .header__burger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__burger.is-active .header__burger-bar:nth-child(2) {
  opacity: 0;
}
.header__burger.is-active .header__burger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.header__mobile-menu {
  position: fixed;
  inset: 64px 0 0;
  z-index: 101;
  z-index: var(--z-index-sidebar);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px 16px 24px;
  overflow-y: auto;
  pointer-events: none;
  background-color: #0c0c0c;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.header__mobile-menu.is-open {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}
.header__mobile-nav-list {
  display: flex;
  flex-direction: column;
}
.header__mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 12px 0;
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
  letter-spacing: -0.02em;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity var(--transition);
}
@media (hover: hover) and (pointer: fine){
.header__mobile-nav-link:hover {
  opacity: 0.7;
}
}
.header__mobile-info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.header__mobile-contacts {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.header__mobile-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.header__mobile-contact-link {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
  letter-spacing: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity var(--transition);
}
@media (hover: hover) and (pointer: fine){
.header__mobile-contact-link:hover {
  opacity: 0.7;
}
}
.header__mobile-contact-desc {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, blinkmacsystemfont, sans-serif;
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
  letter-spacing: 0.02em;
  opacity: 0.5;
}
.header__mobile-img {
  display: block;
  flex-shrink: 0;
}
.header_menu-open {
  background-color: #0c0c0c;
  backdrop-filter: none;
}
.header_light {
  background-color: rgb(255 255 255 / 100%);
  background-color: var(--color-white-primary);
  backdrop-filter: none;
}
.header_light .header__logo-pik,
.header_light .header__logo-azimut {
  border-right-color: rgba(0, 0, 0, 0.1);
  border-bottom-color: rgba(0, 0, 0, 0.1);
}
.header_light .header__logo-pik-img {
  filter: invert(1);
}
.header_light .header__logo-azimut-img {
  color: rgb(21 22 27 / 100%);
  color: var(--color-black-primary);
}
.header_light .header__nav {
  border-bottom-color: rgba(0, 0, 0, 0.1);
}
.header_light .header__nav-link {
  color: rgb(21 22 27 / 100%);
  color: var(--color-black-primary);
}
.header_light .header__phone {
  border-bottom-color: rgba(0, 0, 0, 0.1);
  border-left-color: rgba(0, 0, 0, 0.1);
}
.header_light .header__phone-link {
  color: rgb(21 22 27 / 100%);
  color: var(--color-black-primary);
}
.header_light .header__controls {
  border-bottom-color: rgba(0, 0, 0, 0.1);
}
.header_light .header__phone-icon img {
  filter: invert(1);
}
.header_light .header__burger {
  color: rgb(21 22 27 / 100%);
  color: var(--color-black-primary);
}
@media (max-width: 1199px) {
  .header__nav {
    display: none;
  }
  .header__controls {
    display: flex;
  }
}
@media (max-width: 899px) {
  .header__phone {
    display: none;
  }
  .header__phone-icon {
    display: flex;
  }
  .header__controls {
    flex: 1;
    justify-content: flex-end;
  }
}
@media (max-width: 699px) {
  .header {
    height: 60px;
  }
  .header__logo-pik {
    width: auto;
    height: auto;
    padding: 24px 22px 21px;
  }
  .header__logo-azimut {
    width: auto;
    height: auto;
    padding: 24px 16px 21px;
  }
  .header__logo-pik-img {
    width: 101px;
    height: 14px;
  }
  .header__logo-azimut-img {
    width: 115px;
    height: 14px;
  }
  .header__phone-icon {
    display: none;
  }
  .header__mobile-menu {
    top: 60px;
  }
}
@media (min-width: 2000px) {
  .header {
    height: min(100vw * 64 / 2000, 179.2px);
  }
  .header__logo-pik, .header__logo-azimut {
    width: min(100vw * 192 / 2000, 537.6px);
    height: min(100vw * 64 / 2000, 179.2px);
  }
  .header__logo-pik-img {
    width: min(100vw * 116 / 2000, 324.8px);
    height: min(100vw * 16 / 2000, 44.8px);
  }
  .header__logo-azimut-img {
    width: min(100vw * 136 / 2000, 380.8px);
    height: min(100vw * 16 / 2000, 44.8px);
  }
  .header__nav {
    padding: 0 min(100vw * 8 / 2000, 22.4px);
  }
  .header__nav-link {
    padding: 0 min(100vw * 16 / 2000, 44.8px);
    font-size: min(100vw * 16 / 2000, 44.8px);
  }
  .header__phone {
    padding: 0 min(100vw * 24 / 2000, 67.2px);
  }
  .header__phone-link {
    font-size: min(100vw * 16 / 2000, 44.8px);
  }
}

.hero {
  position: sticky;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background-color: #0c0c0c;
}
.hero__first-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12, 12, 12, 0.15) 0%, rgba(12, 12, 12, 0) 30%, rgba(12, 12, 12, 0.55) 100%), linear-gradient(to right, rgba(12, 12, 12, 0.55) 0%, transparent 45%);
}
.hero__content {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__content > * {
  pointer-events: auto;
}
.hero__divider {
  position: absolute;
  top: 240px;
  right: 32px;
  left: 32px;
  z-index: 1;
  z-index: var(--z-index-default);
  height: 1px;
  background-color: rgb(255 255 255 / 10%);
  background-color: var(--color-border-white-fourthiary);
}
.hero__title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  position: absolute;
  top: 260px;
  left: 32px;
  z-index: 1;
  z-index: var(--z-index-default);
  width: 564px;
  font-family: 'Inter', system-ui, -apple-system, blinkmacsystemfont, sans-serif;
  font-family: var(--font-inter);
  font-size: 52px;
  font-weight: 500;
  line-height: 1;
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
  letter-spacing: -0.02em;
}
.hero__desc-col {
  position: absolute;
  top: 260px;
  right: 127px;
  z-index: 1;
  z-index: var(--z-index-default);
  display: flex;
  flex-direction: column;
  gap: 56px;
  width: 345px;
}
.hero__desc {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  font-family: 'Inter', system-ui, -apple-system, blinkmacsystemfont, sans-serif;
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
  letter-spacing: 0.02em;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero__stat-number {
  font-family: 'Inter', system-ui, -apple-system, blinkmacsystemfont, sans-serif;
  font-family: var(--font-inter);
  font-size: 52px;
  font-weight: 500;
  line-height: 1;
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
  letter-spacing: -0.02em;
}
.hero__stat-plus {
  color: rgb(255 185 8 / 100%);
  color: var(--color-yellow-primary);
}
.hero__stat-label {
  font-family: 'Inter', system-ui, -apple-system, blinkmacsystemfont, sans-serif;
  font-family: var(--font-inter);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
}
.hero__pipe-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  z-index: var(--z-index-two);
  pointer-events: none;
  opacity: 0;
}
.hero__mobile-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: none;
  width: 100%;
  height: 440px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0) 0%, #0c0c0c 100%);
  opacity: 0;
}
@media (max-width: 699px) {
  .hero__mobile-gradient {
    display: block;
  }
}
.hero__pipe-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  opacity: 0;
}
.hero__pipe-video-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-color: #000;
  opacity: 0;
}
.hero__pipe-img {
  position: absolute;
  top: 39%;
  left: 50%;
  width: auto;
  max-width: none;
  height: 123%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center top;
     object-position: center top;
  transform: translate(-50%, -50%);
}
@media (max-width: 900px) {
  .hero__pipe-img {
    top: 41%;
    height: 125%;
  }
}
.hero__pipe-img_mask {
  z-index: 0;
}
.hero__pipe-img_hot {
  z-index: 1;
}
.hero__pipe-img_paint {
  z-index: 2;
  opacity: 0;
}
.hero__pipe-img_powder {
  z-index: 3;
  opacity: 0;
}
@media (max-width: 1199px) {
  .hero__title {
    width: 480px;
    font-size: 46px;
  }
  .hero__desc-col {
    right: 32px;
    width: 240px;
  }
}
@media (max-width: 899px) {
  .hero__title {
    position: static;
    width: 445px;
    margin-bottom: 14px;
    overflow: inherit;
    font-size: 52px;
  }
  .hero__desc-col {
    position: static;
    gap: 40px;
    justify-content: space-between;
    width: 445px;
    height: 100%;
    text-wrap: balance;
  }
  .hero__content {
    position: static;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 356px 32px 32px;
  }
}
@media (min-width: 700px) and (max-width: 899px) {
  .hero__title {
    font-size: 52px;
  }
}
@media (max-width: 699px) {
  .hero__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 16px 232px;
    margin-bottom: 180px;
  }
  .hero__stat {
    display: none;
  }
  .hero__bg-overlay {
    background: linear-gradient(to top, rgba(12, 12, 12, 0.9) 0%, rgba(12, 12, 12, 0) 50%), linear-gradient(to bottom, rgba(12, 12, 12, 0.4) 0%, transparent 20%);
  }
  .hero__divider {
    position: static;
    margin-bottom: 16px;
  }
  .hero__title {
    position: static;
    width: 100%;
    font-size: 38px;
    letter-spacing: -0.02em;
  }
  .hero__desc-col {
    position: static;
    flex-direction: column;
    gap: 0;
    width: 100%;
    height: -moz-min-content;
    height: min-content;
    margin-top: 12px;
  }
}
@media (min-width: 2000px) {
  .hero__divider {
    top: min(100vw * 240 / 2000, 672px);
    right: min(100vw * 32 / 2000, 89.6px);
    left: min(100vw * 32 / 2000, 89.6px);
  }
  .hero__title {
    top: min(100vw * 260 / 2000, 728px);
    left: min(100vw * 32 / 2000, 89.6px);
    width: min(100vw * 564 / 2000, 1579.2px);
    font-size: min(100vw * 52 / 2000, 145.6px);
  }
  .hero__desc-col {
    top: min(100vw * 260 / 2000, 728px);
    right: min(100vw * 127 / 2000, 355.6px);
    gap: min(100vw * 56 / 2000, 156.8px);
    width: min(100vw * 345 / 2000, 966px);
  }
  .hero__desc {
    font-size: min(100vw * 16 / 2000, 44.8px);
  }
  .hero__stat {
    gap: min(100vw * 8 / 2000, 22.4px);
  }
  .hero__stat-number {
    font-size: min(100vw * 52 / 2000, 145.6px);
  }
  .hero__stat-label {
    font-size: min(100vw * 24 / 2000, 67.2px);
  }
}

.services-tab {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 50;
  z-index: var(--z-index-tabs);
  display: flex;
  align-items: center;
  height: 60px;
  overflow: hidden;
  background-color: rgba(51, 51, 51, 0.3);
  border-radius: 4px;
  backdrop-filter: blur(40px);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity var(--transition);
}
.services-tab_hidden {
  pointer-events: none;
  opacity: 0;
}
.services-tab__item {
  position: relative;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 14px 16px;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color var(--transition);
}
.services-tab__item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(0 * 100%);
  width: calc(var(--tab-progress, 0) * 100%);
  height: 2px;
  content: "";
  background-color: rgb(255 185 8 / 100%);
  background-color: var(--color-yellow-primary);
}
.services-tab__item:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
@media (hover: hover) and (pointer: fine){
.services-tab__item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
}
.services-tab__item_active {
  background-color: rgba(255, 255, 255, 0.1);
}
.services-tab__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: rgb(255 255 255 / 100%);
  color: var(--color-icon-white-primary);
}
.services-tab__label {
  flex: 1;
  font-family: 'Inter', system-ui, -apple-system, blinkmacsystemfont, sans-serif;
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
@media (max-width: 1199.98px) {
  .services-tab {
    display: none;
  }
}
@media (min-width: 2000px) {
  .services-tab {
    bottom: min(100vw * 32 / 2000, 89.6px);
    left: min(100vw * 32 / 2000, 89.6px);
    height: min(100vw * 60 / 2000, 168px);
  }
  .services-tab__item {
    gap: min(100vw * 8 / 2000, 22.4px);
    padding: min(100vw * 14 / 2000, 39.2px) min(100vw * 16 / 2000, 44.8px);
  }
  .services-tab__icon {
    width: min(100vw * 32 / 2000, 89.6px);
    height: min(100vw * 32 / 2000, 89.6px);
  }
  .services-tab__label {
    font-size: min(100vw * 16 / 2000, 44.8px);
  }
}

.cta-production {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 50;
  z-index: var(--z-index-tabs);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  width: 195px;
  height: 207px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(40px);
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color var(--transition);
}
@media (hover: hover) and (pointer: fine){
.cta-production:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
}
.cta-production__corner {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cta-production__corner_tl {
  top: 12px;
  left: 12px;
}
.cta-production__corner_tr {
  top: 12px;
  right: 12px;
}
.cta-production__corner_bl {
  bottom: 12px;
  left: 12px;
}
.cta-production__corner_br {
  right: 12px;
  bottom: 12px;
}
.cta-production__dot {
  display: block;
  width: 4px;
  height: 4px;
  background-color: rgb(33, 33, 33);
  border-radius: 50%;
}
.cta-production__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: rgb(21 22 27 / 100%);
  color: var(--color-black-primary);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: border-color var(--transition), color var(--transition);
}
@media (hover: hover) and (pointer: fine){
.cta-production:hover .cta-production__circle {
  border-color: rgba(0, 0, 0, 0.3);
}
}
.cta-production__label {
  font-family: 'Inter', system-ui, -apple-system, blinkmacsystemfont, sans-serif;
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: rgb(21 22 27 / 100%);
  color: var(--color-black-primary);
  letter-spacing: 0.02em;
}
@media (min-width: 700px) and (max-width: 899px) {
  .cta-production {
    pointer-events: auto !important;
    /* На этом брейкпоинте .pipe-service__cta скрыт, поэтому cta-production
       должен оставаться видимым — перебиваем инлайн-стили от GSAP-анимации. */
    opacity: 1 !important;
  }
}
@media (max-width: 699px) {
  .cta-production {
    right: 16px;
    bottom: 24px;
    left: 16px;
    flex-direction: row;
    width: -moz-fit-content;
    width: fit-content;
    height: 56px;
    padding: 19px 28px;
    background-color: #eff0f1;
    border-radius: 4px;
    box-shadow: none;
    backdrop-filter: none;
  }
  .cta-production__circle {
    display: none;
  }
  .cta-production__corner_tl {
    top: 8px;
    left: 8px;
  }
  .cta-production__corner_tr {
    top: 8px;
    right: 8px;
  }
  .cta-production__corner_bl {
    bottom: 8px;
    left: 8px;
  }
  .cta-production__corner_br {
    right: 8px;
    bottom: 8px;
  }
}
@media (min-width: 2000px) {
  .cta-production {
    right: min(100vw * 32 / 2000, 89.6px);
    bottom: min(100vw * 32 / 2000, 89.6px);
    gap: min(100vw * 16 / 2000, 44.8px);
    width: min(100vw * 195 / 2000, 546px);
    height: min(100vw * 207 / 2000, 579.6px);
  }
  .cta-production__corner_tl {
    top: min(100vw * 12 / 2000, 33.6px);
    left: min(100vw * 12 / 2000, 33.6px);
  }
  .cta-production__corner_tr {
    top: min(100vw * 12 / 2000, 33.6px);
    right: min(100vw * 12 / 2000, 33.6px);
  }
  .cta-production__corner_bl {
    bottom: min(100vw * 12 / 2000, 33.6px);
    left: min(100vw * 12 / 2000, 33.6px);
  }
  .cta-production__corner_br {
    right: min(100vw * 12 / 2000, 33.6px);
    bottom: min(100vw * 12 / 2000, 33.6px);
  }
  .cta-production__circle {
    width: min(100vw * 60 / 2000, 168px);
    height: min(100vw * 60 / 2000, 168px);
  }
  .cta-production__label {
    font-size: min(100vw * 16 / 2000, 44.8px);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 19px 44px;
  font-family: 'Inter', system-ui, -apple-system, blinkmacsystemfont, sans-serif;
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
  text-align: center;
  letter-spacing: 0.02em;
  white-space: nowrap;
  cursor: pointer;
  background-color: rgb(250 47 31 / 100%);
  background-color: var(--color-red-accent);
  border-radius: 4px;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color var(--transition), color var(--transition);
}
@media (hover: hover) and (pointer: fine){
.btn:hover {
  background-color: rgb(205 23 14 / 100%);
  background-color: var(--color-red-tertiary);
}
}
.btn_white {
  position: relative;
  display: inline-block;
  color: #212121;
  background-color: rgb(255 255 255 / 100%);
  background-color: var(--color-white-primary);
}
@media (hover: hover) and (pointer: fine){
.btn_white:hover {
  background-color: rgba(255, 255, 255, 0.85);
}
}
.btn_outline {
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
  background-color: transparent;
  border: 1px solid rgb(255 255 255 / 80%);
  border: 1px solid var(--color-border-white-secondary);
}
@media (hover: hover) and (pointer: fine){
.btn_outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
}
.btn_ghost {
  width: 233px;
  height: 56px;
  padding: 0;
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
  background-color: transparent;
  border: 1px solid rgb(255 255 255 / 10%);
  border: 1px solid var(--color-border-white-fourthiary);
}
@media (hover: hover) and (pointer: fine){
.btn_ghost:hover {
  background-color: rgb(255 255 255 / 6%);
  background-color: var(--color-white-bg-tertiary);
  border-color: rgb(255 255 255 / 80%);
  border-color: var(--color-border-white-secondary);
}
}
.btn_glass {
  position: relative;
  display: inline-flex;
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
  background-color: rgba(105, 105, 105, 0.4);
  backdrop-filter: blur(40px);
}
@media (hover: hover) and (pointer: fine){
.btn_glass:hover {
  background-color: rgba(105, 105, 105, 0.55);
}
}
.btn_glass .btn__dot {
  background-color: rgb(255 255 255 / 100%);
  background-color: var(--color-white-primary);
}
.btn__corner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.btn__corner_tl {
  position: absolute;
  top: 8px;
  left: 8px;
}
.btn__corner_tr {
  position: absolute;
  top: 8px;
  right: 8px;
}
.btn__corner_bl {
  position: absolute;
  bottom: 8px;
  left: 8px;
}
.btn__corner_br {
  position: absolute;
  right: 8px;
  bottom: 8px;
}
.btn__dot {
  display: block;
  width: 4px;
  height: 4px;
  background-color: rgb(33, 33, 33);
  border-radius: 50%;
}
@media (min-width: 2000px) {
  .btn {
    padding: min(100vw * 19 / 2000, 53.2px) min(100vw * 44 / 2000, 123.2px);
    font-size: min(100vw * 16 / 2000, 44.8px);
  }
  .btn_ghost {
    width: min(100vw * 233 / 2000, 652.4px);
    height: min(100vw * 56 / 2000, 156.8px);
  }
  .btn__corner_tl {
    top: min(100vw * 8 / 2000, 22.4px);
    left: min(100vw * 8 / 2000, 22.4px);
  }
  .btn__corner_tr {
    top: min(100vw * 8 / 2000, 22.4px);
    right: min(100vw * 8 / 2000, 22.4px);
  }
  .btn__corner_bl {
    bottom: min(100vw * 8 / 2000, 22.4px);
    left: min(100vw * 8 / 2000, 22.4px);
  }
  .btn__corner_br {
    right: min(100vw * 8 / 2000, 22.4px);
    bottom: min(100vw * 8 / 2000, 22.4px);
  }
}

.pipe-section {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: -100svh;
  overflow-x: hidden;
}
.pipe-section__bg {
  position: sticky;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  opacity: 0;
}
.pipe-section__dark-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 280% 140% at 47% 50%, rgba(24, 25, 45, 0.8) 0%, #0c0c0c 55%), linear-gradient(to bottom, #0c0c0c 0%, transparent 20%, #0c0c0c 100%);
}
.pipe-section__pipe-img {
  position: absolute;
  top: -184px;
  left: 50%;
  width: auto;
  max-width: none;
  height: calc(100% + 184px);
  pointer-events: none;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center top;
     object-position: center top;
  opacity: 1;
  transform: translateX(-50%);
}
.pipe-section__noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='1' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: overlay;
  opacity: 0.06;
}
.pipe-section__screens {
  position: relative;
  z-index: 1;
  margin-top: -100svh;
}
.pipe-section__screen {
  position: relative;
  width: 100%;
  height: 100svh;
}
.pipe-section__directions-title {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  font-size: 160px;
  font-weight: 500;
  line-height: 0.83;
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
  text-align: center;
  letter-spacing: -0.04em;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -60%);
}
.pipe-section__directions-title_top {
  top: 122px;
  transform: translate(-50%, 0);
}
@media (max-width: 899px) {
  .pipe-section__directions-title {
    font-size: 100px;
  }
}
@media (max-width: 699px) {
  .pipe-section__directions-title {
    font-size: 50px;
  }
}
@media (min-width: 2000px) {
  .pipe-section__pipe-img {
    top: max(100vw * -184 / 2000, -515.2px);
    height: calc(100% + min(100vw * 184 / 2000, 515.2px));
  }
  .pipe-section__directions-title {
    font-size: min(100vw * 160 / 2000, 448px);
  }
  .pipe-section__directions-title_top {
    top: min(100vw * 122 / 2000, 341.6px);
  }
}

.pipe-service {
  position: absolute;
  top: 240px;
  right: 32px;
  left: 32px;
}
.pipe-service__divider {
  position: absolute;
  top: -20px;
  right: 0;
  left: 0;
  height: 1px;
  background-color: rgb(255 255 255 / 10%);
  background-color: var(--color-border-white-fourthiary);
}
.pipe-service__main {
  position: absolute;
  top: 0;
  left: 0;
  width: 516px;
}
.pipe-service__title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, blinkmacsystemfont, sans-serif;
  font-family: var(--font-inter);
  font-size: 52px;
  font-weight: 500;
  line-height: 1;
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
  letter-spacing: -0.02em;
  hyphens: none;
  word-break: normal;
  overflow-wrap: break-word;
}
.pipe-service__title-word {
  display: block;
}
.pipe-service__cta {
  margin-top: 32px;
}
.pipe-service__actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}
.pipe-service__action {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 233px;
}
.pipe-service__action .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  padding: 0;
}
.pipe-service__action-label {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
  letter-spacing: 0.02em;
  text-wrap: balance;
}
.pipe-service__side {
  position: absolute;
  top: 0;
  right: 86px;
  width: 344px;
}
.pipe-service__desc {
  max-width: 350px;
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, blinkmacsystemfont, sans-serif;
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
  letter-spacing: 0.02em;
  text-wrap: balance;
}
.pipe-service__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 48px;
}
.pipe-service__stat-num {
  display: block;
  font-size: 52px;
  font-weight: 500;
  line-height: 0.9;
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
  letter-spacing: -0.02em;
}
@media (max-width: 1099px) {
  .pipe-service__stat-num {
    font-size: 38px;
    line-height: 1;
  }
}
.pipe-service__stat-label {
  display: block;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
}
@media (max-width: 1099px) {
  .pipe-service__stat-label {
    font-size: 16px;
    line-height: 1.4;
  }
}
.pipe-service_offset-mid {
  top: 308px;
}
.pipe-service_offset-low {
  top: 414px;
}
@media (max-width: 1099px) {
  .pipe-service {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-inline: 16px;
  }
  .pipe-service__main, .pipe-service__side {
    display: contents; /* dissolve wrappers — children become direct flex items */
  }
  .pipe-service__divider {
    position: static;
    order: 0;
  }
  .pipe-service__title {
    order: 1;
  }
  .pipe-service__desc {
    order: 2;
  }
  .pipe-service__cta {
    order: 3;
    margin-top: 10px;
  }
  .pipe-service__cta .btn_white {
    padding-inline: 28px;
  }
  .pipe-service__actions {
    flex-direction: column;
    order: 3;
    margin-top: 10px;
  }
  .pipe-service__stat {
    gap: 2px;
    order: 4;
    margin-top: 49px;
  }
}
@media (max-width: 899px) {
  .pipe-service__stat {
    max-width: 460px;
    margin-top: 263px;
    font-size: 16px;
  }
  .pipe-service__title {
    max-width: 460px;
    max-height: 200px;
    overflow: hidden;
    font-size: 52px;
  }
}
@media (min-width: 700px) and (max-width: 899px) {
  .pipe-service__cta {
    display: none;
  }
}
@media (max-width: 699px) {
  .pipe-service__title {
    font-size: 38px;
    letter-spacing: 0.015em;
  }
  .pipe-service__stat {
    margin-top: 64px;
  }
}
@media (min-width: 2000px) {
  .pipe-service {
    top: min(100vw * 240 / 2000, 672px);
    right: min(100vw * 32 / 2000, 89.6px);
    left: min(100vw * 32 / 2000, 89.6px);
  }
  .pipe-service__divider {
    top: max(100vw * -20 / 2000, -56px);
  }
  .pipe-service__main {
    width: min(100vw * 516 / 2000, 1444.8px);
  }
  .pipe-service__title {
    font-size: min(100vw * 52 / 2000, 145.6px);
  }
  .pipe-service__cta {
    margin-top: min(100vw * 32 / 2000, 89.6px);
  }
  .pipe-service__actions {
    gap: min(100vw * 16 / 2000, 44.8px);
    margin-top: min(100vw * 32 / 2000, 89.6px);
  }
  .pipe-service__action {
    gap: min(100vw * 16 / 2000, 44.8px);
    width: min(100vw * 233 / 2000, 652.4px);
  }
  .pipe-service__action .btn {
    height: min(100vw * 56 / 2000, 156.8px);
  }
  .pipe-service__action-label {
    font-size: min(100vw * 14 / 2000, 39.2px);
  }
  .pipe-service__side {
    right: min(100vw * 86 / 2000, 240.8px);
    width: min(100vw * 344 / 2000, 963.2px);
  }
  .pipe-service__desc {
    max-width: min(100vw * 350 / 2000, 980px);
    font-size: min(100vw * 16 / 2000, 44.8px);
  }
  .pipe-service__stat {
    gap: min(100vw * 8 / 2000, 22.4px);
    margin-top: min(100vw * 48 / 2000, 134.4px);
  }
  .pipe-service__stat-num {
    font-size: min(100vw * 52 / 2000, 145.6px);
  }
  .pipe-service__stat-label {
    font-size: min(100vw * 24 / 2000, 67.2px);
  }
  .pipe-service_offset-mid {
    top: min(100vw * 308 / 2000, 862.4px);
  }
  .pipe-service_offset-low {
    top: min(100vw * 414 / 2000, 1159.2px);
  }
}

.approach-section {
  padding: 120px 32px 110px;
  background-color: #eff0f1;
}
.approach-section__tag {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 58px;
}
.approach-section__dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background-color: rgb(21 22 27 / 100%);
  background-color: var(--color-black-primary);
  border-radius: 50%;
}
.approach-section__tag-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: rgb(33 33 33 / 100%);
  color: var(--color-grey-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.approach-section__titles {
  margin-bottom: 114px;
}
.approach-section__title-line {
  display: block;
  font-size: 80px;
  font-weight: 500;
  line-height: 100%;
  color: rgb(33 33 33 / 100%);
  color: var(--color-grey-primary);
}
.approach-section__title-line_indent {
  padding-left: calc(37.5vw - 24px);
}
.approach-section__content {
  display: flex;
  gap: 85px;
  align-items: flex-start;
}
.approach-section__media {
  position: relative;
  flex-shrink: 0;
  width: 602px;
  height: 688px;
  overflow: hidden;
  background-color: #d0d1d2;
  border-radius: 4px;
}
.approach-section__media::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-color: #fff;
  mix-blend-mode: color;
  opacity: 0.3;
}
.approach-section__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.approach-section__list {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 80px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.approach-section__item {
  display: flex;
  align-items: flex-start;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.approach-section__num {
  flex-shrink: 0;
  width: 86px;
  padding-top: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: rgb(33 33 33 / 100%);
  color: var(--color-grey-primary);
}
.approach-section__item-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.approach-section__item-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-width: 83%;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  color: rgb(33 33 33 / 100%);
  color: var(--color-grey-primary);
  letter-spacing: 0.02em;
}
.approach-section__item-desc {
  max-width: 380px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: rgb(33 33 33 / 100%);
  color: var(--color-grey-primary);
  letter-spacing: 0.06em;
}
@media (max-width: 1199px) {
  .approach-section {
    padding: 80px 32px;
  }
  .approach-section__tag {
    margin-bottom: 48px;
  }
  .approach-section__titles {
    margin-bottom: 80px;
  }
  .approach-section__title-line {
    font-size: 64px;
  }
  .approach-section__content {
    gap: 56px;
  }
  .approach-section__media {
    width: 460px;
    height: 540px;
  }
  .approach-section__list {
    gap: 64px;
  }
  .approach-section__item-title {
    font-size: 28px;
  }
}
@media (max-width: 899px) {
  .approach-section {
    padding: 120px 32px 0;
  }
  .approach-section__tag {
    margin-bottom: 60px;
  }
  .approach-section__titles {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 65px;
  }
  .approach-section__title-line {
    font-size: 46px;
  }
  .approach-section__title-line_indent {
    padding-left: calc(37.5vw - 12px);
  }
  .approach-section__content {
    flex-direction: column;
    gap: 0;
  }
  .approach-section__media {
    flex-shrink: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
  .approach-section__list {
    gap: 0;
    padding-top: 66px;
  }
  .approach-section__item-title {
    font-size: 32px;
  }
}
@media (min-width: 700px) and (max-width: 899px) {
  .approach-section__title-line {
    font-size: 80px;
    line-height: 0.9;
  }
  .approach-section__item {
    margin-bottom: 79px;
  }
}
@media (max-width: 699px) {
  .approach-section {
    padding: 78px 0 10px;
  }
  .approach-section__tag {
    padding-left: 16px;
    margin-bottom: 40px;
  }
  .approach-section__dot {
    width: 4px;
    height: 4px;
  }
  .approach-section__tag-label {
    font-size: 12px;
  }
  .approach-section__titles {
    padding: 0 16px;
  }
  .approach-section__title-line {
    font-size: 38px;
    line-height: 1;
    letter-spacing: 0.01em;
  }
  .approach-section__title-line_indent {
    padding-left: 39%;
  }
  .approach-section__content {
    flex-direction: column;
    gap: 0;
  }
  .approach-section__media {
    flex-shrink: 1;
    width: 100%;
    height: 375px;
    border-radius: 0;
  }
  .approach-section__list {
    gap: 0;
    padding-top: 0;
  }
  .approach-section__item {
    flex-direction: column;
    gap: 24px;
    align-items: flex-end;
    padding: 20px 20px 37px;
  }
  .approach-section__num {
    padding-top: 0;
    font-size: 16px;
    line-height: 1.1;
    text-align: right;
    letter-spacing: 0.02em;
  }
  .approach-section__item-body {
    gap: 12px;
    width: 100%;
  }
  .approach-section__item-title {
    max-width: none;
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: 0.02em;
  }
  .approach-section__item-desc {
    max-width: none;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}
@media (min-width: 1700px) {
  .approach-section__media {
    width: 760px;
    height: 850px;
  }
}
@media (min-width: 2000px) {
  .approach-section {
    padding: min(100vw * 120 / 2000, 336px) min(100vw * 32 / 2000, 89.6px) min(100vw * 110 / 2000, 308px);
  }
  .approach-section__tag {
    gap: min(100vw * 8 / 2000, 22.4px);
    margin-bottom: min(100vw * 58 / 2000, 162.4px);
  }
  .approach-section__tag-label {
    font-size: min(100vw * 14 / 2000, 39.2px);
  }
  .approach-section__titles {
    margin-bottom: min(100vw * 114 / 2000, 319.2px);
  }
  .approach-section__title-line {
    font-size: min(100vw * 80 / 2000, 224px);
  }
  .approach-section__content {
    gap: min(100vw * 85 / 2000, 238px);
  }
  .approach-section__media {
    width: min(100vw * 760 / 2000, 2128px);
    height: min(100vw * 850 / 2000, 2380px);
  }
  .approach-section__list {
    gap: min(100vw * 80 / 2000, 224px);
  }
  .approach-section__item {
    padding-top: min(100vw * 24 / 2000, 67.2px);
  }
  .approach-section__num {
    width: min(100vw * 86 / 2000, 240.8px);
    padding-top: min(100vw * 10 / 2000, 28px);
    font-size: min(100vw * 16 / 2000, 44.8px);
  }
  .approach-section__item-body {
    gap: min(100vw * 14 / 2000, 39.2px);
  }
  .approach-section__item-title {
    font-size: min(100vw * 32 / 2000, 89.6px);
  }
  .approach-section__item-desc {
    max-width: min(100vw * 380 / 2000, 1064px);
    font-size: min(100vw * 16 / 2000, 44.8px);
  }
}

.image-section {
  position: relative;
  min-height: 1024px;
  overflow: hidden;
  background-color: #0c0c0c;
}
.image-section__media {
  position: absolute;
  inset: 0;
}
.image-section__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.56;
}
.image-section__overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #646464, #d9d9d9);
  mix-blend-mode: overlay;
}
.image-section__overlay-fade {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 178px;
  background: linear-gradient(to bottom, #0c0c0c, transparent);
  opacity: 0.4;
}
.image-section__overlay-color {
  position: absolute;
  inset: 0;
  background-color: #151b1e;
  mix-blend-mode: color;
}
.image-section__overlay-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='1' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: soft-light;
  opacity: 0.5;
}
.image-section__bottom-fade {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 250px;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, #0c0c0c);
}
.image-section__divider {
  position: absolute;
  top: 533px;
  right: 32px;
  left: 32px;
  height: 1px;
  background-color: rgb(255 255 255 / 10%);
  background-color: var(--color-border-white-fourthiary);
}
.image-section__heading {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  position: absolute;
  top: 553px;
  left: 50%;
  max-width: 38%;
  font-size: 52px;
  font-weight: 500;
  line-height: 1;
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
  letter-spacing: 0.02em;
}
.image-section__captions {
  position: absolute;
  top: 773px;
  left: 50%;
  display: flex;
  gap: 86px;
  letter-spacing: 0.06em;
}
.image-section__caption {
  font-family: 'Inter', system-ui, -apple-system, blinkmacsystemfont, sans-serif;
  font-family: var(--font-inter);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
}
.image-section__caption:first-child {
  width: 258px;
}
.image-section__caption:last-child {
  width: 307px;
}
@media (max-width: 1199px) {
  .image-section {
    min-height: 880px;
  }
  .image-section__overlay-fade {
    height: 140px;
  }
  .image-section__bottom-fade {
    height: 280px;
  }
  .image-section__divider {
    top: 450px;
  }
  .image-section__heading {
    top: 470px;
    max-width: 45%;
    font-size: 44px;
  }
  .image-section__captions {
    top: 670px;
    gap: 56px;
  }
  .image-section__caption {
    font-size: 20px;
  }
  .image-section__caption:first-child {
    width: auto;
  }
  .image-section__caption:last-child {
    width: auto;
  }
}
@media (max-width: 899px) {
  .image-section {
    min-height: 1024px;
  }
  .image-section__img {
    -o-object-position: left;
       object-position: left;
  }
  .image-section__overlay-fade {
    height: 122px;
  }
  .image-section__bottom-fade {
    height: 320px;
  }
  .image-section__divider {
    top: 380px;
    right: 24px;
    left: 24px;
  }
  .image-section__heading {
    top: 553px;
    left: 32px;
    max-width: 80%;
    margin-bottom: 64px;
    font-size: 52px;
    line-height: 1;
    text-wrap: balance;
  }
  .image-section__captions {
    top: 772px;
    left: 32px;
    gap: 20px;
  }
  .image-section__caption {
    font-size: 24px;
    line-height: 1.2;
  }
  .image-section__caption:first-child, .image-section__caption:last-child {
    width: auto;
    max-width: calc(100% - 350px);
  }
}
@media (max-width: 699px) {
  .image-section {
    min-height: 702px;
  }
  .image-section__overlay-fade {
    height: 122px;
  }
  .image-section__bottom-fade {
    height: 440px;
  }
  .image-section__divider {
    top: 375px;
    right: 16px;
    left: 16px;
  }
  .image-section__heading {
    top: 390px;
    left: 16px;
    max-width: calc(100% - 32px);
    font-size: 28px;
    letter-spacing: 0.025em;
  }
  .image-section__captions {
    top: 507px;
    left: 16px;
    flex-direction: column;
    gap: 16px;
    letter-spacing: 0.02em;
  }
  .image-section__caption {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
  .image-section__caption:first-child, .image-section__caption:last-child {
    width: auto;
    max-width: calc(100% - 32px);
  }
}
@media (min-width: 2000px) {
  .image-section {
    min-height: min(100vw * 1024 / 2000, 2867.2px);
  }
  .image-section__overlay-fade {
    height: min(100vw * 178 / 2000, 498.4px);
  }
  .image-section__bottom-fade {
    height: min(100vw * 250 / 2000, 700px);
  }
  .image-section__divider {
    top: min(100vw * 533 / 2000, 1492.4px);
    right: min(100vw * 32 / 2000, 89.6px);
    left: min(100vw * 32 / 2000, 89.6px);
  }
  .image-section__heading {
    top: min(100vw * 553 / 2000, 1548.4px);
    font-size: min(100vw * 52 / 2000, 145.6px);
  }
  .image-section__captions {
    top: min(100vw * 773 / 2000, 2164.4px);
    gap: min(100vw * 86 / 2000, 240.8px);
  }
  .image-section__caption {
    font-size: min(100vw * 24 / 2000, 67.2px);
  }
  .image-section__caption:first-child {
    width: min(100vw * 258 / 2000, 722.4px);
  }
  .image-section__caption:last-child {
    width: min(100vw * 307 / 2000, 859.6px);
  }
}

.digits-section {
  display: grid;
  grid-template-rows: 420px 420px 420px 420px;
  grid-template-columns: 1fr 1fr;
  background-color: #0c0c0c;
}
.digits-section__module {
  position: relative;
  overflow: hidden;
}
.digits-section__module_production {
  grid-row: 1/3;
  grid-column: 1;
  background-color: #0c0c0c;
}
.digits-section__module_production .digits-section__module-overlay-color {
  background-color: #1b2225;
  opacity: 0.43;
}
.digits-section__module_production .digits-section__module-overlay-noise {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='1' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.7;
}
.digits-section__module_zinc {
  grid-row: 1;
  grid-column: 2;
  background-color: #eff0f1;
}
.digits-section__module_map {
  grid-row: 2/4;
  grid-column: 2;
  background-color: #151b1e;
}
.digits-section__module_map .digits-section__module-overlay-color {
  background-color: #1b2225;
  opacity: 0.6;
}
.digits-section__module_map .digits-section__module-overlay-noise {
  background-color: #000;
  opacity: 0.6;
}
.digits-section__module_powder {
  grid-row: 4;
  grid-column: 2;
  background-color: #0c0c0c;
}
.digits-section__module_powder .digits-section__stat-num,
.digits-section__module_powder .digits-section__stat-label {
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
}
.digits-section__module_paint {
  grid-row: 3;
  grid-column: 1;
  background-color: #fff;
}
.digits-section__module-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.digits-section__module-overlay-color {
  position: absolute;
  inset: 0;
  mix-blend-mode: color;
}
.digits-section__module-overlay-noise {
  position: absolute;
  inset: 0;
  mix-blend-mode: soft-light;
}
.digits-section__module_production > .digits-section__module-heading {
  position: absolute;
  top: 32px;
  left: 32px;
  width: 516px;
  font-size: 52px;
  font-weight: 500;
  line-height: 1;
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
  letter-spacing: 0.01em;
}
.digits-section__module-text {
  position: absolute;
  top: 32px;
  left: 32px;
  width: 379px;
}
.digits-section__module-heading {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-weight: 500;
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
  letter-spacing: 0.01em;
}
.digits-section__module-text .digits-section__module-heading {
  font-size: 32px;
  line-height: 1.2;
}
.digits-section__module-desc {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
}
.digits-section__tag {
  position: absolute;
  top: 32px;
  left: 32px;
  display: inline-flex;
  align-items: center;
  max-width: 294px;
  height: 32px;
  padding: 0 12px;
  overflow-x: auto;
  border-radius: 100px;
}
.digits-section__tag-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: rgb(33 33 33 / 100%);
  color: var(--color-grey-primary);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.digits-section__module_zinc .digits-section__tag {
  background-color: #fff;
}
.digits-section__module_paint .digits-section__tag {
  background-color: #eff0f1;
}
.digits-section__module_powder .digits-section__tag {
  background-color: rgba(255, 255, 255, 0.12);
}
.digits-section__module_powder .digits-section__tag .digits-section__tag-label {
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
}
.digits-section__pictogram {
  position: absolute;
  top: 32px;
  left: 332px;
  width: 356px;
  height: 356px;
}
.digits-section__module_powder .digits-section__pictogram {
  top: 50%;
  transform: translateY(-50%);
}
.digits-section__stat {
  position: absolute;
  bottom: 32px;
  left: 32px;
  max-height: 300px;
}
.digits-section__stat-num {
  font-size: 80px;
  font-weight: 500;
  line-height: 0.9;
  color: rgb(33 33 33 / 100%);
  color: var(--color-grey-primary);
  letter-spacing: 0.06em;
}
.digits-section__stat-label {
  max-width: 320px;
  margin-top: 8px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  color: rgb(33 33 33 / 100%);
  color: var(--color-grey-primary);
  letter-spacing: 0.01em;
}
@media (max-width: 1199px) {
  .digits-section {
    grid-template-rows: 350px 350px 350px 350px;
  }
  .digits-section__module_production > .digits-section__module-heading {
    width: auto;
    max-width: 90%;
    font-size: 42px;
  }
  .digits-section__pictogram {
    right: 24px;
    left: auto;
    width: 300px;
    height: 300px;
  }
  .digits-section__stat-num {
    font-size: 64px;
  }
  .digits-section__stat-label {
    font-size: 20px;
  }
  .digits-section__module-text .digits-section__module-heading {
    font-size: 32px;
  }
}
@media (max-width: 899px) {
  .digits-section {
    display: flex;
    flex-direction: column;
  }
  .digits-section__module {
    width: 100%;
  }
  .digits-section__module_production {
    order: 1;
    height: 420px;
  }
  .digits-section__module_zinc {
    order: 2;
    height: 420px;
  }
  .digits-section__module_powder {
    order: 3;
    height: 420px;
  }
  .digits-section__module_paint {
    order: 4;
    height: 420px;
  }
  .digits-section__module_map {
    order: 5;
    height: 840px;
  }
  .digits-section__module_production > .digits-section__module-heading {
    width: auto;
    max-width: calc(100% - 64px);
    font-size: 52px;
  }
  .digits-section__pictogram {
    top: 52%;
    right: auto;
    left: 72%;
    width: 356px;
    height: 356px;
    transform: translate(-50%, calc(-50% - 8px));
  }
  .digits-section__module_powder .digits-section__pictogram {
    transform: translate(-50%, calc(-50% - 8px));
  }
  .digits-section__stat-num {
    font-size: 80px;
  }
  .digits-section__stat-label {
    max-width: 320px;
    font-size: 24px;
  }
}
@media (max-width: 699px) {
  .digits-section__module_production {
    height: 360px;
  }
  .digits-section__module_zinc {
    height: 360px;
  }
  .digits-section__module_powder {
    height: 360px;
  }
  .digits-section__module_paint {
    height: 360px;
  }
  .digits-section__module_map {
    height: 480px;
  }
  .digits-section__module_production > .digits-section__module-heading {
    top: 16px;
    left: 16px;
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: 0.027em;
  }
  .digits-section__tag {
    top: 16px;
    left: 16px;
    padding: 0 10px;
    border-radius: 4px;
  }
  .digits-section__pictogram {
    top: 50%;
    right: auto;
    left: 50%;
    width: 220px;
    height: 220px;
    transform: translate(-50%, calc(-50% - 8px));
  }
  .digits-section__module_powder .digits-section__pictogram {
    transform: translate(-50%, calc(-50% - 8px));
  }
  .digits-section__stat {
    bottom: 16px;
    left: 16px;
  }
  .digits-section__stat-num {
    font-size: 38px;
    line-height: 1;
    letter-spacing: 0.04em;
  }
  .digits-section__stat-label {
    max-width: 232px;
    margin-top: 4px;
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: 0.02em;
  }
  .digits-section__module-text {
    top: 40px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: calc(100% - 32px);
  }
  .digits-section__module-text .digits-section__module-heading {
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: 0.025em;
  }
  .digits-section__module-desc {
    max-width: 80%;
    margin-top: 0;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}
@media (min-width: 2000px) {
  .digits-section {
    grid-template-rows: repeat(4, min(100vw * 420 / 2000, 1176px));
  }
  .digits-section__module_production > .digits-section__module-heading {
    top: min(100vw * 32 / 2000, 89.6px);
    left: min(100vw * 32 / 2000, 89.6px);
    width: min(100vw * 516 / 2000, 1444.8px);
    font-size: min(100vw * 52 / 2000, 145.6px);
  }
  .digits-section__module-text {
    top: min(100vw * 32 / 2000, 89.6px);
    left: min(100vw * 32 / 2000, 89.6px);
    width: min(100vw * 379 / 2000, 1061.2px);
  }
  .digits-section__module-text .digits-section__module-heading {
    font-size: min(100vw * 32 / 2000, 89.6px);
  }
  .digits-section__module-desc {
    margin-top: min(100vw * 8 / 2000, 22.4px);
    font-size: min(100vw * 16 / 2000, 44.8px);
  }
  .digits-section__tag {
    top: min(100vw * 32 / 2000, 89.6px);
    left: min(100vw * 32 / 2000, 89.6px);
    height: min(100vw * 32 / 2000, 89.6px);
    padding: 0 min(100vw * 12 / 2000, 33.6px);
  }
  .digits-section__tag-label {
    font-size: min(100vw * 14 / 2000, 39.2px);
  }
  .digits-section__pictogram {
    top: min(100vw * 32 / 2000, 89.6px);
    left: min(100vw * 332 / 2000, 929.6px);
    width: min(100vw * 356 / 2000, 996.8px);
    height: min(100vw * 356 / 2000, 996.8px);
  }
  .digits-section__stat {
    bottom: min(100vw * 32 / 2000, 89.6px);
    left: min(100vw * 32 / 2000, 89.6px);
  }
  .digits-section__stat-num {
    font-size: min(100vw * 80 / 2000, 224px);
  }
  .digits-section__stat-label {
    max-width: min(100vw * 320 / 2000, 896px);
    margin-top: min(100vw * 8 / 2000, 22.4px);
    font-size: min(100vw * 24 / 2000, 67.2px);
  }
}

.industries-section {
  background-color: #eff0f1;
}
.industries-section__head {
  padding: 120px 32px 24px;
}
.industries-section__titles {
  margin-bottom: 65px;
}
.industries-section__title-line {
  display: block;
  font-size: 80px;
  font-weight: 500;
  line-height: 0.9;
  color: rgb(33 33 33 / 100%);
  color: var(--color-grey-primary);
  letter-spacing: 0.001em;
}
.industries-section__title-line_indent {
  padding-left: 38%;
}
.industries-section__tag {
  display: flex;
  gap: 8px;
  align-items: center;
}
.industries-section__tag-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background-color: rgb(33 33 33 / 100%);
  background-color: var(--color-grey-primary);
  border-radius: 50%;
}
.industries-section__tag-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: rgb(33 33 33 / 100%);
  color: var(--color-grey-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.industries-section__body {
  display: flex;
}
.industries-section__media {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 640px;
}
.industries-section__corner {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: rgb(33 33 33 / 100%);
  background-color: var(--color-dot-black);
  border-radius: 50%;
}
.industries-section__corner_tl {
  top: 32px;
  left: 32px;
}
.industries-section__corner_tr {
  top: 32px;
  right: 32px;
}
.industries-section__corner_bl {
  bottom: 32px;
  left: 32px;
}
.industries-section__corner_br {
  right: 32px;
  bottom: 32px;
}
.industries-section__img-wrap {
  position: relative;
  width: 376px;
  height: 376px;
  overflow: hidden;
  background-color: #d0d1d2;
  border-radius: 8px;
}
.industries-section__img-wrap::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-color: #fff;
  mix-blend-mode: color;
  opacity: 0.3;
}
.industries-section__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.industries-section__list {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0;
  margin: 0;
  list-style: none;
}
.industries-section__item {
  flex: 1;
  border-top: 1px solid rgb(21 22 27 / 20%);
  border-top: 1px solid var(--color-black-secondary);
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color var(--transition);
}
.industries-section__item:last-child {
  border-bottom: 1px solid rgb(21 22 27 / 20%);
  border-bottom: 1px solid var(--color-black-secondary);
}
.industries-section__item.is-active {
  background-color: rgb(33 33 33 / 100%);
  background-color: var(--color-grey-primary);
}
.industries-section__item.is-active .industries-section__item-name {
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
}
.industries-section__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 32px;
  cursor: pointer;
}
.industries-section__item-name {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  color: rgb(33 33 33 / 100%);
  color: var(--color-grey-primary);
  text-align: left;
  letter-spacing: 0.02em;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color var(--transition);
}
.industries-section__item-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}
.industries-section__item-dot {
  width: 6px;
  height: 6px;
  background-color: rgb(255 255 255 / 100%);
  background-color: var(--color-white-primary);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity var(--transition);
}
.is-active .industries-section__item-dot {
  opacity: 1;
}
.industries-section__item-panel {
  display: none;
}
@media (max-width: 1199px) {
  .industries-section__head {
    padding: 80px 32px 24px;
  }
  .industries-section__titles {
    margin-bottom: 48px;
  }
  .industries-section__title-line {
    font-size: 64px;
  }
  .industries-section__media {
    height: 520px;
  }
  .industries-section__img-wrap {
    width: 300px;
    height: 300px;
  }
  .industries-section__item-name {
    font-size: 20px;
  }
}
@media (max-width: 899px) {
  .industries-section__head {
    padding: 120px 32px 24px;
  }
  .industries-section__item-dot {
    display: none;
  }
  .industries-section__titles {
    margin-bottom: 65px;
  }
  .industries-section__title-line {
    font-size: 46px;
  }
  .industries-section__title-line_indent {
    padding-left: 30%;
  }
  .industries-section__body {
    flex-direction: column;
  }
  .industries-section__media {
    display: none;
  }
  .industries-section__item {
    flex: none;
  }
  .industries-section__btn {
    height: auto;
    padding: 24px 32px;
  }
  .industries-section__item-name {
    font-size: 24px;
  }
  .industries-section__item-panel {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: rgb(239 240 241 / 100%);
    background-color: var(--color-bg-light);
  }
  .industries-section__item-panel::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    background-color: #fff;
    mix-blend-mode: color;
    opacity: 0.3;
  }
  .industries-section__item-panel-img {
    position: absolute;
    inset: 74px;
    top: 50%;
    left: 50%;
    width: 376px;
    height: 376px;
    -o-object-fit: cover;
       object-fit: cover;
    transform: translate(-50%, -50%);
  }
  .industries-section__item-panel-corner {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: rgb(21 22 27 / 100%);
    background-color: var(--color-black-primary);
    border-radius: 50%;
  }
  .industries-section__item-panel-corner_tl {
    top: 32px;
    left: 32px;
  }
  .industries-section__item-panel-corner_tr {
    top: 32px;
    right: 32px;
  }
  .industries-section__item-panel-corner_bl {
    bottom: 32px;
    left: 32px;
  }
  .industries-section__item-panel-corner_br {
    right: 32px;
    bottom: 32px;
  }
}
@media (min-width: 700px) and (max-width: 899px) {
  .industries-section__title-line {
    font-size: 80px;
  }
}
@media (max-width: 699px) {
  .industries-section__head {
    padding: 40px 16px 16px;
  }
  .industries-section__item-dot {
    display: none;
  }
  .industries-section__tag-label {
    font-size: 12px;
  }
  .industries-section__titles {
    margin-bottom: 80px;
  }
  .industries-section__item-panel-img {
    width: 212px;
    height: 212px;
  }
  .industries-section__title-line {
    font-size: 38px;
    line-height: 1;
    letter-spacing: 0.01em;
  }
  .industries-section__title-line_indent {
    padding-left: 0;
  }
  .industries-section__media {
    height: 260px;
  }
  .industries-section__btn {
    padding: 20px 16px 19px;
  }
  .industries-section__item-name {
    font-size: 16px;
  }
  .industries-section__item-icon {
    width: 24px;
    height: 24px;
  }
}
@media (min-width: 2000px) {
  .industries-section__head {
    padding: min(100vw * 120 / 2000, 336px) min(100vw * 32 / 2000, 89.6px) min(100vw * 24 / 2000, 67.2px);
  }
  .industries-section__titles {
    margin-bottom: min(100vw * 65 / 2000, 182px);
  }
  .industries-section__title-line {
    font-size: min(100vw * 80 / 2000, 224px);
  }
  .industries-section__tag {
    gap: min(100vw * 8 / 2000, 22.4px);
  }
  .industries-section__tag-label {
    font-size: min(100vw * 14 / 2000, 39.2px);
  }
  .industries-section__media {
    height: min(100vw * 640 / 2000, 1792px);
  }
  .industries-section__corner_tl {
    top: min(100vw * 32 / 2000, 89.6px);
    left: min(100vw * 32 / 2000, 89.6px);
  }
  .industries-section__corner_tr {
    top: min(100vw * 32 / 2000, 89.6px);
    right: min(100vw * 32 / 2000, 89.6px);
  }
  .industries-section__corner_bl {
    bottom: min(100vw * 32 / 2000, 89.6px);
    left: min(100vw * 32 / 2000, 89.6px);
  }
  .industries-section__corner_br {
    right: min(100vw * 32 / 2000, 89.6px);
    bottom: min(100vw * 32 / 2000, 89.6px);
  }
  .industries-section__img-wrap {
    width: min(100vw * 376 / 2000, 1052.8px);
    height: min(100vw * 376 / 2000, 1052.8px);
  }
  .industries-section__btn {
    padding: 0 min(100vw * 32 / 2000, 89.6px);
  }
  .industries-section__item-name {
    font-size: min(100vw * 24 / 2000, 67.2px);
  }
  .industries-section__item-icon {
    width: min(100vw * 32 / 2000, 89.6px);
    height: min(100vw * 32 / 2000, 89.6px);
  }
}

.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.swiper-slide {
  flex-shrink: 0;
  height: auto;
}

.content-swiper__controls {
  display: flex;
  flex-shrink: 0;
  gap: 12px;
  align-items: center;
}

.content-swiper__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: rgb(21 22 27 / 80%);
  color: var(--color-black-tertiary);
  cursor: pointer;
  background: transparent;
  border: 1px solid rgb(21 22 27 / 20%);
  border: 1px solid var(--color-black-secondary);
  border-radius: 4px;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color var(--transition), border-color var(--transition);
}
@media (hover: hover) and (pointer: fine){
.content-swiper__btn:hover {
  color: rgb(21 22 27 / 100%);
  color: var(--color-black-primary);
  border-color: rgb(21 22 27 / 100%);
  border-color: var(--color-black-primary);
}
}
@media (hover: hover) and (pointer: fine){
.content-swiper__btn:hover .content-swiper__icon {
  color: rgb(21 22 27 / 100%);
  color: var(--color-black-primary);
}
}
.content-swiper__btn_next .content-swiper__icon {
  transform: scaleX(-1);
}

.content-swiper__icon {
  width: 24px;
  height: 24px;
  color: rgb(33 33 33 / 60%);
  color: var(--color-grey-primary-60);
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color var(--transition), border-color var(--transition);
}

.content-swiper__counter {
  margin-left: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: rgb(33 33 33 / 60%);
  color: var(--color-grey-primary-60);
  white-space: nowrap;
}

@media (max-width: 899px) {
  .content-swiper__controls {
    gap: 8px;
    align-self: flex-end;
  }
  .content-swiper__counter {
    order: -1;
    margin-right: 8px;
    margin-left: 0;
  }
}
@media (min-width: 2000px) {
  .content-swiper__controls {
    gap: min(100vw * 12 / 2000, 33.6px);
  }
  .content-swiper__btn {
    width: min(100vw * 48 / 2000, 134.4px);
    height: min(100vw * 48 / 2000, 134.4px);
  }
  .content-swiper__icon {
    width: min(100vw * 24 / 2000, 67.2px);
    height: min(100vw * 24 / 2000, 67.2px);
  }
  .content-swiper__counter {
    margin-left: min(100vw * 8 / 2000, 22.4px);
    font-size: min(100vw * 16 / 2000, 44.8px);
  }
}
.phone-check {
  position: relative;
}
.phone-check__row {
  display: flex;
  align-items: stretch;
  min-height: 64px;
  overflow: hidden;
  background-color: rgb(255 255 255 / 100%);
  background-color: var(--color-white-primary);
  border: 1px solid transparent;
  border-radius: 12px;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: border-color var(--transition), background-color var(--transition);
}
.phone-check__row:focus-within {
  border-color: rgb(0 0 0 / 12%);
  border-color: var(--color-border-dark-secondary-12);
}
.phone-check_error .phone-check__row {
  background-color: rgb(255 245 245 / 100%);
  background-color: var(--color-input-error-bg);
  border-color: rgb(231 76 60 / 100%);
  border-color: var(--color-input-error);
}
.phone-check__selector {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
  justify-content: center;
  padding: 12px 16px 12px 20px;
  cursor: pointer;
  background: transparent;
  border: none;
}
.phone-check__country {
  display: flex;
  gap: 8px;
  align-items: center;
  color: rgb(21 22 27 / 100%);
  color: var(--color-black-primary);
}
.phone-check__image {
  display: block;
  width: 20px;
  height: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.phone-check__number {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: rgb(21 22 27 / 100%);
  color: var(--color-black-primary);
}
.phone-check__caret {
  flex-shrink: 0;
  color: rgb(21 22 27 / 100%);
  color: var(--color-black-primary);
  opacity: 0.6;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform var(--transition);
}
.phone-check__selector[aria-expanded=true] .phone-check__caret {
  transform: rotate(180deg);
}
.phone-check__divider {
  align-self: stretch;
  width: 1px;
  margin: 12px 0;
  background-color: rgb(0 0 0 / 12%);
  background-color: var(--color-border-dark-secondary-12);
}
.phone-check__input-wrap {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 12px 20px;
}
.phone-check__field-label {
  margin-bottom: 2px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  color: rgb(33 33 33 / 60%);
  color: var(--color-input-placeholder);
  pointer-events: none;
}
.phone-check__input {
  width: 100%;
  padding: 0 !important;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: rgb(21 22 27 / 100%);
  color: var(--color-black-primary);
  outline: none;
  background: transparent;
  border: none;
}
.phone-check__input::-moz-placeholder {
  color: rgb(33 33 33 / 60%);
  color: var(--color-grey-primary-60);
  opacity: 1;
}
.phone-check__input::placeholder {
  color: rgb(33 33 33 / 60%);
  color: var(--color-grey-primary-60);
  opacity: 1;
}
.phone-check .iti {
  width: 100%;
}
.phone-check .iti__tel-input {
  width: 100%;
  padding: 0;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.2;
  color: rgb(21 22 27 / 100%);
  color: var(--color-black-primary);
  background: transparent;
  border: none;
}
.phone-check .iti__tel-input:focus {
  outline: none;
}
.phone-check .iti__selected-country {
  display: none;
}
.phone-check__iti-container {
  position: relative;
}
.phone-check__iti-container .iti__country-list {
  position: absolute;
  top: 8px;
  left: 0;
  z-index: 60;
  z-index: var(--z-index-content);
  width: 100%;
  max-height: 300px;
  padding: 8px 0;
  overflow-y: auto;
  background-color: rgb(255 255 255 / 100%);
  background-color: var(--color-white-primary);
  border: 1px solid rgb(0 0 0 / 12%);
  border: 1px solid var(--color-border-dark-secondary-12);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.phone-check__iti-container .iti__search-input {
  width: calc(100% - 16px);
  padding: 10px 14px;
  margin: 4px 8px 8px;
  font-family: inherit;
  font-size: 14px;
  color: rgb(21 22 27 / 100%);
  color: var(--color-black-primary);
  outline: none;
  background-color: rgb(239 240 241 / 100%);
  background-color: var(--color-bg-light);
  border: 1px solid transparent;
  border-radius: 8px;
}
.phone-check__iti-container .iti__search-input:focus {
  border-color: rgb(0 0 0 / 12%);
  border-color: var(--color-border-dark-secondary-12);
}
.phone-check__iti-container .iti__country {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 38px 10px 14px;
  cursor: pointer;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color var(--transition);
}
.phone-check__iti-container .iti__country.iti__highlight {
  background-color: rgb(239 240 241 / 100%);
  background-color: var(--color-bg-light);
}
@media (hover: hover) and (pointer: fine){
.phone-check__iti-container .iti__country:hover {
  background-color: rgb(239 240 241 / 100%);
  background-color: var(--color-bg-light);
}
}
.phone-check__iti-container .iti__country[aria-selected=true]::after {
  position: absolute;
  top: 50%;
  right: 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: rgb(21 22 27 / 100%);
  color: var(--color-black-primary);
  content: "✓";
  transform: translateY(-50%);
}
.phone-check__iti-container .iti__flag,
.phone-check__iti-container .iti__flag-box {
  display: none;
}
.phone-check__iti-container .custom-flag {
  flex-shrink: 0;
  order: 1;
  width: 20px;
  height: 20px;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
}
.phone-check__iti-container .iti__dial-code {
  order: 2;
  font-size: 14px;
  color: rgb(21 22 27 / 80%);
  color: var(--color-black-tertiary);
}
.phone-check__iti-container .iti__country-name {
  order: 3;
  font-size: 14px;
  color: rgb(21 22 27 / 100%);
  color: var(--color-black-primary);
}
.phone-check .phone-error-message {
  display: none;
  margin: 4px 0 0;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  color: rgb(231 76 60 / 100%);
  color: var(--color-input-error);
}
.phone-check .phone-error-message_show {
  display: block;
}
@media (max-width: 699px) {
  .phone-check__row {
    min-height: 56px;
    border-radius: 4px;
  }
  .phone-check__selector {
    padding: 10px 14px;
  }
  .phone-check__input-wrap {
    padding: 10px 14px;
  }
}
@media (min-width: 2000px) {
  .phone-check__row {
    min-height: min(100vw * 64 / 2000, 179.2px);
  }
  .phone-check__selector {
    gap: min(100vw * 2 / 2000, 5.6px);
    padding: min(100vw * 12 / 2000, 33.6px) min(100vw * 16 / 2000, 44.8px) min(100vw * 12 / 2000, 33.6px) min(100vw * 20 / 2000, 56px);
  }
  .phone-check__country {
    gap: min(100vw * 8 / 2000, 22.4px);
  }
  .phone-check__image {
    width: min(100vw * 20 / 2000, 56px);
    height: min(100vw * 20 / 2000, 56px);
  }
  .phone-check__number {
    font-size: min(100vw * 16 / 2000, 44.8px);
  }
  .phone-check__divider {
    margin: min(100vw * 12 / 2000, 33.6px) 0;
  }
  .phone-check__input-wrap {
    padding: min(100vw * 12 / 2000, 33.6px) min(100vw * 20 / 2000, 56px);
  }
  .phone-check__field-label {
    margin-bottom: min(100vw * 2 / 2000, 5.6px);
    font-size: min(100vw * 13 / 2000, 36.4px);
  }
  .phone-check__input {
    font-size: min(100vw * 16 / 2000, 44.8px);
  }
  .phone-check .iti__tel-input {
    font-size: min(100vw * 16 / 2000, 44.8px);
  }
}

.multi-select {
  position: relative;
  width: 100%;
}
.multi-select__control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 64px;
  padding: 12px 16px 12px 20px;
  cursor: pointer;
  background-color: rgb(255 255 255 / 100%);
  background-color: var(--color-white-primary);
  border: 1px solid transparent;
  border-radius: 12px;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: border-color var(--transition), background-color var(--transition);
}
.multi-select_open .multi-select__control {
  border-color: rgb(0 0 0 / 12%);
  border-color: var(--color-border-dark-secondary-12);
}
@media (hover: hover) and (pointer: fine){
.multi-select__control:hover {
  border-color: rgb(0 0 0 / 12%);
  border-color: var(--color-border-dark-secondary-12);
}
}
.multi-select__value {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: rgb(33 33 33 / 100%);
  color: var(--color-grey-primary);
  white-space: nowrap;
}
.multi-select__value_placeholder {
  color: rgb(33 33 33 / 60%);
  color: var(--color-grey-primary-60);
}
.multi-select__caret {
  flex-shrink: 0;
  margin-left: 8px;
  color: rgb(33 33 33 / 100%);
  color: var(--color-grey-primary);
  opacity: 0.6;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform var(--transition);
}
.multi-select_open .multi-select__caret {
  transform: rotate(180deg);
}
.multi-select__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 60;
  z-index: var(--z-index-content);
  display: flex;
  visibility: hidden;
  flex-direction: column;
  width: 100%;
  max-height: 300px;
  padding: 8px 0;
  overflow-y: auto;
  background-color: rgb(255 255 255 / 100%);
  background-color: var(--color-white-primary);
  border: 1px solid rgb(0 0 0 / 12%);
  border: 1px solid var(--color-border-dark-secondary-12);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity var(--transition), visibility var(--transition);
}
.multi-select_open .multi-select__dropdown {
  visibility: visible;
  opacity: 1;
}
.multi-select__option {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  cursor: pointer;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color var(--transition);
}
@media (hover: hover) and (pointer: fine){
.multi-select__option:hover {
  background-color: rgb(239 240 241 / 100%);
  background-color: var(--color-bg-light);
}
}
.multi-select__checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.multi-select__check {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  color: rgb(12 12 12 / 100%);
  color: var(--color-bg-checkbox);
}
.multi-select__check svg {
  width: 16px;
  height: 12px;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity var(--transition);
}
.multi-select__checkbox:checked ~ .multi-select__check svg {
  opacity: 1;
}
.multi-select__checkbox:focus-visible ~ .multi-select__option-label {
  outline: 2px solid rgb(70 124 229 / 100%);
  outline: 2px solid var(--color-blue-primary);
  outline-offset: 2px;
}
.multi-select__option-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: rgb(33 33 33 / 100%);
  color: var(--color-grey-primary);
}
@media (max-width: 699px) {
  .multi-select__control {
    min-height: 56px;
    border-radius: 4px;
  }
  .multi-select__dropdown {
    border-radius: 4px;
  }
}
@media (min-width: 2000px) {
  .multi-select__control {
    min-height: min(100vw * 64 / 2000, 179.2px);
    padding: min(100vw * 12 / 2000, 33.6px) min(100vw * 16 / 2000, 44.8px) min(100vw * 12 / 2000, 33.6px) min(100vw * 20 / 2000, 56px);
  }
  .multi-select__value {
    font-size: min(100vw * 16 / 2000, 44.8px);
  }
  .multi-select__caret {
    width: min(100vw * 24 / 2000, 67.2px);
    height: min(100vw * 24 / 2000, 67.2px);
    margin-left: min(100vw * 8 / 2000, 22.4px);
  }
  .multi-select__dropdown {
    top: calc(100% + min(100vw * 8 / 2000, 22.4px));
    max-height: min(100vw * 300 / 2000, 840px);
    padding: min(100vw * 8 / 2000, 22.4px) 0;
  }
  .multi-select__option {
    gap: min(100vw * 16 / 2000, 44.8px);
    padding: min(100vw * 12 / 2000, 33.6px) min(100vw * 20 / 2000, 56px);
  }
  .multi-select__check svg {
    width: min(100vw * 16 / 2000, 44.8px);
    height: min(100vw * 12 / 2000, 33.6px);
  }
  .multi-select__option-label {
    font-size: min(100vw * 16 / 2000, 44.8px);
  }
}

.file-upload {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.file-upload__dropzone {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  height: 112px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  background-color: rgb(255 255 255 / 100%);
  background-color: var(--color-white-primary);
  border-radius: 4px;
}
.file-upload__dropzone::before {
  position: absolute;
  inset: 4px;
  pointer-events: none;
  content: "";
  border: 1px dashed rgb(0 0 0 / 12%);
  border: 1px dashed var(--color-border-dark-secondary-12);
  border-radius: 4px;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: border-color var(--transition);
}
.file-upload__dropzone_dragover::before {
  border-color: rgba(33, 33, 33, 0.4);
}
@media (hover: hover) and (pointer: fine){
.file-upload__dropzone:hover::before {
  border-color: rgba(33, 33, 33, 0.4);
}
}
.file-upload__dropzone_error::before {
  border-color: rgb(252, 65, 8);
}
@media (hover: hover) and (pointer: fine){
.file-upload__dropzone_error:hover::before {
  border-color: rgb(252, 65, 8);
}
}
.file-upload__dropzone_dragover .file-upload__title, .file-upload__dropzone_dragover .file-upload__hint {
  display: none;
}
.file-upload__dropzone_dragover .file-upload__plus {
  display: flex;
}
.file-upload__plus {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: rgb(33, 33, 33);
  border: 1px solid rgb(0 0 0 / 12%);
  border: 1px solid var(--color-border-dark-secondary-12);
  border-radius: 100px;
}
.file-upload__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}
.file-upload__title {
  margin: 0;
  font-weight: 500;
  font-feature-settings: "zero";
  font-variant-numeric: slashed-zero;
  line-height: 1.1;
  color: rgb(33 33 33 / 60%);
  color: var(--color-grey-primary-60);
  letter-spacing: 0.02em;
}
.file-upload__link {
  color: inherit;
  text-decoration: none;
}
.file-upload__hint {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: rgb(33 33 33 / 40%);
  color: var(--color-grey-primary-40);
}
.file-upload__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.file-upload__item {
  display: flex;
  gap: 8px;
  align-items: center;
  height: 64px;
  padding: 0 16px;
  background-color: rgb(255 255 255 / 100%);
  background-color: var(--color-white-primary);
  border-radius: 4px;
}
.file-upload__item_loading {
  justify-content: center;
}
.file-upload__spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgb(0 0 0 / 12%);
  border: 3px solid var(--color-border-dark-secondary-12);
  border-top-color: rgb(33 33 33 / 100%);
  border-top-color: var(--color-grey-primary);
  border-radius: 50%;
  animation: file-upload-spin 0.7s linear infinite;
}
.file-upload__file-icon {
  display: flex;
  flex-shrink: 0;
  color: rgb(33 33 33 / 100%);
  color: var(--color-grey-primary);
}
.file-upload__file {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.file-upload__file-name {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: rgb(33 33 33 / 100%);
  color: var(--color-grey-primary);
  white-space: nowrap;
}
.file-upload__file-size {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: rgba(33, 33, 33, 0.4);
}
.file-upload__remove {
  display: flex;
  flex-shrink: 0;
  padding: 0;
  color: rgb(33 33 33 / 100%);
  color: var(--color-grey-primary);
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.6;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity var(--transition);
}
@media (hover: hover) and (pointer: fine){
.file-upload__remove:hover {
  opacity: 1;
}
}
.file-upload__error {
  display: none;
  margin: 0;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  color: rgb(252, 65, 8);
}
.file-upload__error_show {
  display: block;
}
@media (min-width: 2000px) {
  .file-upload {
    gap: min(100vw * 8 / 2000, 22.4px);
  }
  .file-upload__dropzone {
    gap: min(100vw * 8 / 2000, 22.4px);
    height: min(100vw * 112 / 2000, 313.6px);
    padding: min(100vw * 16 / 2000, 44.8px);
  }
  .file-upload__title {
    font-size: min(100vw * 16 / 2000, 44.8px);
  }
  .file-upload__hint {
    font-size: min(100vw * 14 / 2000, 39.2px);
  }
  .file-upload__plus {
    width: min(100vw * 48 / 2000, 134.4px);
    height: min(100vw * 48 / 2000, 134.4px);
  }
  .file-upload__plus svg {
    width: min(100vw * 12 / 2000, 33.6px);
    height: min(100vw * 12 / 2000, 33.6px);
  }
  .file-upload__list {
    gap: min(100vw * 8 / 2000, 22.4px);
  }
  .file-upload__item {
    gap: min(100vw * 8 / 2000, 22.4px);
    height: min(100vw * 64 / 2000, 179.2px);
    padding: 0 min(100vw * 16 / 2000, 44.8px);
  }
  .file-upload__spinner {
    width: min(100vw * 32 / 2000, 89.6px);
    height: min(100vw * 32 / 2000, 89.6px);
  }
  .file-upload__file-icon svg {
    width: min(100vw * 32 / 2000, 89.6px);
    height: min(100vw * 32 / 2000, 89.6px);
  }
  .file-upload__file-name {
    font-size: min(100vw * 16 / 2000, 44.8px);
  }
  .file-upload__file-size {
    font-size: min(100vw * 14 / 2000, 39.2px);
  }
  .file-upload__remove svg {
    width: min(100vw * 24 / 2000, 67.2px);
    height: min(100vw * 24 / 2000, 67.2px);
  }
}

@keyframes file-upload-spin {
  to {
    transform: rotate(360deg);
  }
}
.cases-section {
  padding: 115px 32px;
  background-color: #eff0f1;
}
.cases-section__title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 36px;
  font-size: 80px;
  font-weight: 500;
  line-height: 1;
  color: rgb(33 33 33 / 100%);
  color: var(--color-grey-primary);
  letter-spacing: 0.01em;
}
.cases-section__carousel {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.cases-section .swiper {
  flex: 0 0 auto;
  width: 79.8vw;
  border-radius: 8px;
}
.cases-section .swiper-slide {
  width: 100%;
}
@media (max-width: 1199px) {
  .cases-section {
    padding: 80px 32px;
  }
  .cases-section__title {
    font-size: 64px;
  }
  .cases-section__carousel {
    flex-direction: column;
    gap: 16px;
  }
  .cases-section .swiper {
    width: 100%;
  }
}
@media (max-width: 899px) {
  .cases-section {
    padding: 114px 32px 147px;
  }
  .cases-section__title {
    font-size: 48px;
  }
  .cases-section .swiper-wrapper {
    align-items: stretch;
  }
  .cases-section .swiper-slide {
    display: flex;
    height: auto;
  }
}
@media (min-width: 700px) and (max-width: 899px) {
  .cases-section__title {
    font-size: 80px;
  }
}
@media (max-width: 699px) {
  .cases-section {
    padding: 14px 16px 54px;
  }
  .cases-section__title {
    margin-bottom: 24px;
    font-size: 38px;
    letter-spacing: 0.02em;
  }
  .cases-section .swiper {
    border-radius: 4px;
  }
}
@media (min-width: 2000px) {
  .cases-section {
    padding: min(100vw * 115 / 2000, 322px) min(100vw * 32 / 2000, 89.6px);
  }
  .cases-section__title {
    margin-bottom: min(100vw * 36 / 2000, 100.8px);
    font-size: min(100vw * 80 / 2000, 224px);
  }
  .cases-section__carousel {
    gap: min(100vw * 40 / 2000, 112px);
  }
}

.cases-card {
  display: flex;
  width: 100%;
  height: 576px;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid rgb(21 22 27 / 20%);
  border: 1px solid var(--color-black-secondary);
  border-radius: 8px;
}
.cases-card__content {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: space-between;
  width: 512px;
  padding: 32px;
}
.cases-card__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cases-card__tag {
  display: flex;
  gap: 13px;
  align-items: center;
}
.cases-card__tag-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background-color: rgb(33 33 33 / 100%);
  background-color: var(--color-grey-primary);
  border-radius: 50%;
}
.cases-card__tag-name {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: rgb(33 33 33 / 100%);
  color: var(--color-grey-primary);
  letter-spacing: 0.02em;
}
.cases-card__title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  color: rgb(33 33 33 / 100%);
  color: var(--color-grey-primary);
}
.cases-card__link {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: rgb(33 33 33 / 60%);
  color: var(--color-grey-primary-60);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity var(--transition);
}
@media (hover: hover) and (pointer: fine){
.cases-card__link:hover {
  opacity: 0.6;
}
}
.cases-card__link-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgb(0 0 0 / 12%);
  border: 1px solid var(--color-link-icon);
  border-radius: 50%;
}
.cases-card__media {
  position: relative;
  flex: 1;
  background-color: #d0d1d2;
}
.cases-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
@media (hover: hover) and (pointer: fine){
.cases-card:hover .cases-card__img {
  transform: scale(1.03);
}
}
@media (max-width: 1199px) {
  .cases-card {
    height: 460px;
  }
  .cases-card__content {
    width: 400px;
  }
  .cases-card__title {
    font-size: 26px;
  }
}
@media (max-width: 899px) {
  .cases-card {
    flex-direction: column-reverse;
    height: auto;
  }
  .cases-card__content {
    flex: 1;
    width: 100%;
    padding: 31px;
  }
  .cases-card__title {
    max-width: 85%;
    font-size: 32px;
  }
  .cases-card__media {
    flex: none;
    height: 470px;
  }
  .cases-card__head {
    margin-bottom: 64px;
  }
}
@media (max-width: 699px) {
  .cases-card__content {
    padding: 18px 16px;
  }
  .cases-card__head {
    gap: 16px;
    margin-bottom: 40px;
  }
  .cases-card__title {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.02em;
  }
}
@media (min-width: 2000px) {
  .cases-card {
    height: min(100vw * 576 / 2000, 1612.8px);
  }
  .cases-card__content {
    width: min(100vw * 512 / 2000, 1433.6px);
    padding: min(100vw * 32 / 2000, 89.6px);
  }
  .cases-card__head {
    gap: min(100vw * 24 / 2000, 67.2px);
  }
  .cases-card__tag {
    gap: min(100vw * 13 / 2000, 36.4px);
  }
  .cases-card__tag-name {
    font-size: min(100vw * 14 / 2000, 39.2px);
  }
  .cases-card__title {
    font-size: min(100vw * 32 / 2000, 89.6px);
  }
  .cases-card__link {
    gap: min(100vw * 16 / 2000, 44.8px);
    font-size: min(100vw * 16 / 2000, 44.8px);
  }
  .cases-card__link-icon {
    width: min(100vw * 48 / 2000, 134.4px);
    height: min(100vw * 48 / 2000, 134.4px);
  }
}

.process-section {
  padding: 0 0 80px;
  color: rgb(21 22 27 / 100%);
  color: var(--color-black-primary);
  background-color: #eff0f1;
}
.process-section__visual-img {
  width: 370px;
  height: 370px;
}
.process-section__title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  padding-inline: 36px;
  margin: 0 0 62px;
  font-size: 80px;
  font-weight: 500;
  line-height: 1;
  color: rgb(21 22 27 / 100%);
  color: var(--color-black-primary);
}
.process-section__body {
  display: grid;
  grid-template-columns: 0.39fr 0.61fr;
  grid-column-gap: 46px;
  -moz-column-gap: 46px;
       column-gap: 46px;
  align-items: stretch;
  border-top: 1px solid rgb(0 0 0 / 12%);
  border-top: 1px solid var(--color-border-dark-secondary-12);
  border-bottom: 1px solid rgb(0 0 0 / 12%);
  border-bottom: 1px solid var(--color-border-dark-secondary-12);
}
.process-section__left, .process-section__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}
.process-section__right {
  gap: 12px;
  padding-right: 36px;
}
.process-section__left {
  border-right: 1px solid rgb(0 0 0 / 12%);
  border-right: 1px solid var(--color-border-dark-secondary-12);
}
.process-section__list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.process-section__item {
  position: relative;
  padding-inline: 36px;
  overflow: hidden;
  border-bottom: 1px solid rgb(105 105 105 / 40%);
  border-bottom: 1px solid var(--color-glass-grey);
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color var(--transition);
}
.process-section__item:last-child {
  border-bottom: none;
}
@media (hover: hover) and (pointer: fine){
.process-section__item:hover {
  background-color: rgba(21, 22, 27, 0.03);
}
}
.process-section__item-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: rgb(12 12 12 / 100%);
  background-color: var(--color-black-footer);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity var(--transition);
}
.process-section__item_active .process-section__item-bg {
  opacity: 1;
}
.process-section__item-fill {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-color: rgb(105 105 105 / 40%);
  background-color: var(--color-glass-grey);
  transform: scaleX(0);
  transform-origin: left center;
}
.process-section__item_active .process-section__item-num, .process-section__item_active .process-section__item-title {
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
}
.process-section__item-btn {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 24px;
  align-items: center;
  width: 100%;
  padding: 25px 0;
  font: inherit;
  color: inherit;
  text-align: left;
  letter-spacing: 0.03em;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.process-section__item-num {
  flex-shrink: 0;
  width: 48px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: rgb(33 33 33 / 100%);
  color: var(--color-grey-primary);
  letter-spacing: 0.02em;
}
.process-section__item-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: rgb(33 33 33 / 100%);
  color: var(--color-grey-primary);
  transition: font-weight 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: font-weight var(--transition);
}
.process-section__tagline {
  width: 90%;
  padding-inline: 36px;
  margin-bottom: 105px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: rgb(0 0 0 / 12%);
  color: var(--color-border-dark-secondary-12);
  letter-spacing: 0.01em;
}
.process-section__details {
  display: grid;
  grid-template-areas: "head body" "visual body";
  grid-template-columns: auto auto;
  grid-column-gap: 32px;
  -moz-column-gap: 32px;
       column-gap: 32px;
  width: 100%;
  padding-top: 32px;
}
.process-section__details-head {
  display: flex;
  flex-direction: column;
  grid-area: head;
  gap: 10px;
}
.process-section__duration {
  margin: 0;
  font-size: 52px;
  font-weight: 500;
  line-height: 1;
  color: rgb(21 22 27 / 100%);
  color: var(--color-black-primary);
  letter-spacing: 0.01em;
}
.process-section__duration-label {
  max-width: 200px;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(21, 22, 27, 0.6);
}
.process-section__details-body {
  display: flex;
  flex-direction: column;
  grid-area: body;
  gap: 24px;
  align-items: flex-start;
  max-width: 424px;
}
.process-section__description {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  color: rgb(21 22 27 / 100%);
  color: var(--color-black-primary);
  letter-spacing: 0.03em;
}
.process-section__visual {
  display: flex;
  grid-area: visual;
  justify-content: center;
  margin-top: 0;
  color: rgba(21, 22, 27, 0.5);
  pointer-events: none;
}
.process-section .btn {
  padding: 24px 36px;
}
.process-section .btn_glass {
  background-color: rgb(105, 105, 105);
  backdrop-filter: none;
}
@media (hover: hover) and (pointer: fine){
.process-section .btn_glass:hover {
  background-color: rgb(120, 120, 120);
}
}
.process-section__item-panel {
  display: none;
}
@media (max-width: 1199px) {
  .process-section__item:last-child {
    border-bottom: 1px solid rgb(105 105 105 / 40%);
    border-bottom: 1px solid var(--color-glass-grey);
  }
  .process-section__title {
    margin-bottom: 48px;
    font-size: 64px;
  }
  .process-section__item-title {
    font-size: 20px;
  }
  .process-section__right {
    gap: 64px;
  }
  .process-section__details {
    grid-template-areas: "head body" "visual visual";
  }
  .process-section__duration {
    font-size: 42px;
  }
  .process-section__description {
    font-size: 20px;
  }
}
@media (max-width: 899px) {
  .process-section__title {
    padding-inline: 32px;
    margin-bottom: 62px;
  }
  .process-section__body {
    display: flex;
    flex-direction: column;
    border-bottom: none;
  }
  .process-section__left {
    border-right: none;
    border-bottom: none;
  }
  .process-section__right {
    display: none;
    gap: 40px;
    padding-right: 32px;
    padding-left: 32px;
  }
  .process-section__item {
    padding-inline: 32px;
  }
  .process-section__item_active .process-section__item-num, .process-section__item_active .process-section__item-title {
    color: rgb(33 33 33 / 100%);
    color: var(--color-grey-primary);
  }
  .process-section__item-bg, .process-section__item-fill {
    display: none;
  }
  .process-section__item-btn {
    position: relative;
  }
  .process-section__item_active .process-section__item-btn::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: -32px;
    width: calc(100% + 63px);
    height: 1px;
    content: "";
    background-color: rgb(0 0 0 / 12%);
    background-color: var(--color-border-dark-secondary-12);
  }
  .process-section__item-num {
    width: -moz-fit-content;
    width: fit-content;
  }
  .process-section__item-title {
    font-size: 20px;
    letter-spacing: 0.01em;
  }
  .process-section__tagline {
    display: none;
    padding-inline: 32px;
    margin-bottom: 40px;
  }
  .process-section__visual {
    display: none;
  }
  .process-section .btn {
    align-self: stretch;
    justify-content: center;
  }
  .process-section__item-panel {
    display: block;
    margin-inline: -32px;
    overflow: hidden;
  }
  .process-section__item-panel-inner {
    padding: 32px 32px 13px;
  }
  .process-section__panel-meta, .process-section__panel-body {
    display: contents;
  }
  .process-section__panel-duration {
    margin: 0;
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
    color: rgb(21 22 27 / 100%);
    color: var(--color-black-primary);
    letter-spacing: 0.01em;
  }
  .process-section__panel-duration-label {
    max-width: 70%;
    margin: 12px 0 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    color: rgb(33 33 33 / 100%);
    color: var(--color-grey-primary);
    letter-spacing: 0.02em;
  }
  .process-section__panel-img {
    position: relative;
    left: 50%;
    display: block;
    width: 61vw;
    height: 61vw;
    margin-top: 35px;
    -o-object-fit: cover;
       object-fit: cover;
    transform: translateX(-50%);
  }
  .process-section__panel-desc {
    margin: 24px 0 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: rgb(21 22 27 / 100%);
    color: var(--color-black-primary);
    letter-spacing: 0.02em;
  }
  .process-section__item-panel .btn {
    align-self: stretch;
    justify-content: center;
    margin-top: 16px;
  }
}
@media (min-width: 700px) and (max-width: 899px) {
  .process-section {
    padding: 0 0 116px;
  }
  .process-section__title {
    font-size: 80px;
  }
  .process-section__item-panel-inner {
    display: grid;
    grid-template-areas: "meta body" "img  img";
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .process-section__panel-meta {
    display: flex;
    flex-direction: column;
    grid-area: meta;
    gap: 12px;
  }
  .process-section__panel-duration-label {
    max-width: 80%;
    margin: 0;
    text-wrap: balance;
  }
  .process-section__panel-body {
    display: flex;
    flex-direction: column;
    grid-area: body;
    gap: 16px;
    align-items: baseline;
  }
  .process-section__panel-desc {
    margin: 0;
    text-wrap: balance;
  }
  .process-section__item-panel .btn {
    align-self: auto;
    justify-content: center;
    margin-top: 0;
  }
  .process-section__panel-img {
    position: static;
    left: auto;
    grid-area: img;
    width: 296px;
    height: 296px;
    margin-top: 35px;
    transform: none;
  }
  .process-section__item-btn {
    gap: 62px;
  }
  .process-section__item-title {
    font-size: 24px;
  }
}
@media (max-width: 699px) {
  .process-section {
    padding: 0 0 15px;
  }
  .process-section__title {
    padding-inline: 16px;
    margin-bottom: 48px;
    font-size: 38px;
    letter-spacing: 0.015em;
  }
  .process-section__item {
    padding-inline: 16px;
  }
  .process-section__item-btn {
    justify-content: space-between;
  }
  .process-section__item-num {
    order: 1;
  }
  .process-section__item-title {
    font-size: 16px;
  }
  .process-section__item_active .process-section__item-btn::after {
    left: -16px;
    width: calc(100% + 32px);
  }
  .process-section__tagline {
    padding-inline: 16px;
    margin-bottom: 32px;
    font-size: 14px;
  }
  .process-section__duration {
    font-size: 32px;
  }
  .process-section__duration-label {
    max-width: none;
    font-size: 14px;
  }
  .process-section__description {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
  .process-section__item-panel {
    margin-inline: -16px;
  }
  .process-section__item-panel-inner {
    padding: 16px 16px 13px;
  }
}
@media (min-width: 2000px) {
  .process-section {
    padding: 0 0 min(100vw * 80 / 2000, 224px);
  }
  .process-section__title {
    padding-inline: min(100vw * 36 / 2000, 100.8px);
    margin-bottom: min(100vw * 62 / 2000, 173.6px);
    font-size: min(100vw * 80 / 2000, 224px);
  }
  .process-section__body {
    -moz-column-gap: min(100vw * 46 / 2000, 128.8px);
         column-gap: min(100vw * 46 / 2000, 128.8px);
  }
  .process-section__right {
    gap: min(100vw * 102 / 2000, 285.6px);
    padding-right: min(100vw * 36 / 2000, 100.8px);
  }
  .process-section__item {
    padding-inline: min(100vw * 36 / 2000, 100.8px);
  }
  .process-section__item-btn {
    gap: min(100vw * 24 / 2000, 67.2px);
    padding: min(100vw * 25 / 2000, 70px) 0;
  }
  .process-section__item-num {
    width: min(100vw * 48 / 2000, 134.4px);
    font-size: min(100vw * 16 / 2000, 44.8px);
  }
  .process-section__item-title {
    font-size: min(100vw * 24 / 2000, 67.2px);
  }
  .process-section__tagline {
    padding-inline: min(100vw * 36 / 2000, 100.8px);
    margin-bottom: min(100vw * 105 / 2000, 294px);
    font-size: min(100vw * 16 / 2000, 44.8px);
  }
  .process-section__details {
    -moz-column-gap: min(100vw * 32 / 2000, 89.6px);
         column-gap: min(100vw * 32 / 2000, 89.6px);
    padding-top: min(100vw * 32 / 2000, 89.6px);
  }
  .process-section__details-head {
    gap: min(100vw * 10 / 2000, 28px);
  }
  .process-section__visual {
    margin-top: min(100vw * 32 / 2000, 89.6px);
  }
  .process-section__duration {
    font-size: min(100vw * 52 / 2000, 145.6px);
  }
  .process-section__duration-label {
    max-width: min(100vw * 200 / 2000, 560px);
    font-size: min(100vw * 16 / 2000, 44.8px);
  }
  .process-section__details-body {
    gap: min(100vw * 24 / 2000, 67.2px);
    max-width: min(100vw * 424 / 2000, 1187.2px);
  }
  .process-section__description {
    font-size: min(100vw * 24 / 2000, 67.2px);
  }
  .process-section .btn {
    padding: min(100vw * 24 / 2000, 67.2px) min(100vw * 36 / 2000, 100.8px);
  }
}

.documents-section {
  padding: 35px 32px 80px;
  background-color: #eff0f1;
}
.documents-section__title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 35px;
  font-size: 80px;
  font-weight: 500;
  line-height: 1.1;
  color: rgb(33 33 33 / 100%);
  color: var(--color-grey-primary);
}
.documents-section__carousel {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.documents-section .swiper {
  flex: 0 0 auto;
  width: 79vw;
  border-radius: 8px;
}
.documents-section .swiper-slide {
  width: 100%;
}
@media (max-width: 1199px) {
  .documents-section {
    padding: 64px 32px;
  }
  .documents-section__title {
    font-size: 64px;
  }
  .documents-section__carousel {
    flex-direction: column;
    gap: 16px;
  }
  .documents-section .swiper {
    width: 100%;
  }
}
@media (max-width: 899px) {
  .documents-section {
    padding: 0 32px 28px;
  }
  .documents-section__title {
    font-size: 48px;
  }
}
@media (min-width: 700px) and (max-width: 899px) {
  .documents-section__title {
    font-size: 80px;
  }
}
@media (max-width: 699px) {
  .documents-section {
    padding: 0 16px 56px;
  }
  .documents-section__title {
    margin-bottom: 24px;
    font-size: 38px;
    letter-spacing: 0.015em;
  }
  .documents-section .swiper {
    border-radius: 4px;
  }
}
@media (min-width: 2000px) {
  .documents-section {
    padding: min(100vw * 35 / 2000, 98px) min(100vw * 32 / 2000, 89.6px) min(100vw * 80 / 2000, 224px);
  }
  .documents-section__title {
    margin-bottom: min(100vw * 35 / 2000, 98px);
    font-size: min(100vw * 80 / 2000, 224px);
  }
  .documents-section__carousel {
    gap: min(100vw * 40 / 2000, 112px);
  }
}

.document-card {
  display: flex;
  width: 100%;
  height: 576px;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid rgb(21 22 27 / 20%);
  border: 1px solid var(--color-black-secondary);
  border-radius: 8px;
}
.document-card__content {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: space-between;
  width: 512px;
  padding: 32px;
}
.document-card__title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-width: 100%;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.3;
  color: rgb(33 33 33 / 100%);
  color: var(--color-grey-primary);
  letter-spacing: 0.05em;
}
.document-card__link {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: rgb(33 33 33 / 60%);
  color: var(--color-grey-primary-60);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity var(--transition);
}
@media (hover: hover) and (pointer: fine){
.document-card__link:hover {
  opacity: 0.6;
}
}
.document-card__link-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgb(0 0 0 / 12%);
  border: 1px solid var(--color-link-icon);
  border-radius: 50%;
}
.document-card__preview {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgb(21 22 27 / 20%);
  border-left: 1px solid var(--color-black-secondary);
}
.document-card__corner {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: rgb(33 33 33 / 100%);
  background-color: var(--color-dot-black);
  border-radius: 50%;
}
.document-card__corner_tl {
  top: 38px;
  left: 38px;
}
.document-card__corner_tr {
  top: 38px;
  right: 38px;
}
.document-card__corner_bl {
  bottom: 38px;
  left: 38px;
}
.document-card__corner_br {
  right: 38px;
  bottom: 38px;
}
.document-card__preview-icon {
  width: auto;
  height: calc(100% - 128px);
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}
.document-card__preview-icon_default {
  width: 32px;
  height: 32px;
}
@media (max-width: 1199px) {
  .document-card {
    height: 460px;
  }
  .document-card__content {
    width: 400px;
  }
  .document-card__title {
    font-size: 26px;
  }
}
@media (max-width: 899px) {
  .document-card {
    flex-direction: column-reverse;
    height: 100%;
  }
  .document-card__content {
    flex: 1;
    gap: 0;
    justify-content: space-between;
    width: 100%;
    min-height: 348px;
    padding: 32px;
  }
  .document-card__title {
    font-size: 32px;
  }
  .document-card__preview {
    flex: none;
    height: 472px;
    border-bottom: 1px solid rgb(21 22 27 / 20%);
    border-bottom: 1px solid var(--color-black-secondary);
    border-left: none;
  }
  .document-card__corner {
    width: 6px;
    height: 6px;
  }
  .document-card__corner_tl {
    top: 32px;
    left: 32px;
  }
  .document-card__corner_tr {
    top: 32px;
    right: 32px;
  }
  .document-card__corner_bl {
    bottom: 32px;
    left: 32px;
  }
  .document-card__corner_br {
    right: 32px;
    bottom: 32px;
  }
}
@media (max-width: 699px) {
  .document-card__content {
    min-height: 246px;
    padding: 20px 16px 16px;
  }
  .document-card__title {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.02em;
  }
  .document-card__preview {
    height: 218px;
  }
  .document-card__preview-icon {
    height: calc(100% - 64px);
  }
  .document-card__corner {
    width: 4px;
    height: 4px;
  }
  .document-card__corner_tl {
    top: 16px;
    left: 16px;
  }
  .document-card__corner_tr {
    top: 16px;
    right: 16px;
  }
  .document-card__corner_bl {
    bottom: 16px;
    left: 16px;
  }
  .document-card__corner_br {
    right: 16px;
    bottom: 16px;
  }
}
@media (min-width: 2000px) {
  .document-card {
    height: min(100vw * 576 / 2000, 1612.8px);
  }
  .document-card__content {
    width: min(100vw * 512 / 2000, 1433.6px);
    padding: min(100vw * 32 / 2000, 89.6px);
  }
  .document-card__title {
    font-size: min(100vw * 30 / 2000, 84px);
  }
  .document-card__link {
    gap: min(100vw * 16 / 2000, 44.8px);
    font-size: min(100vw * 16 / 2000, 44.8px);
  }
  .document-card__link-icon {
    width: min(100vw * 48 / 2000, 134.4px);
    height: min(100vw * 48 / 2000, 134.4px);
  }
  .document-card__corner_tl {
    top: min(100vw * 38 / 2000, 106.4px);
    left: min(100vw * 38 / 2000, 106.4px);
  }
  .document-card__corner_tr {
    top: min(100vw * 38 / 2000, 106.4px);
    right: min(100vw * 38 / 2000, 106.4px);
  }
  .document-card__corner_bl {
    bottom: min(100vw * 38 / 2000, 106.4px);
    left: min(100vw * 38 / 2000, 106.4px);
  }
  .document-card__corner_br {
    right: min(100vw * 38 / 2000, 106.4px);
    bottom: min(100vw * 38 / 2000, 106.4px);
  }
}

.footer {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background-color: rgb(12 12 12 / 100%);
  background-color: var(--color-black-footer);
}
.footer__bg {
  position: absolute;
  inset: 0;
  top: 204px;
  left: 0;
  z-index: 0;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.footer__label {
  position: absolute;
  top: 156px;
  left: 32px;
  z-index: 2;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
  letter-spacing: 0.04em;
}
.footer__right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 64%;
  min-height: 780px;
  padding: 160px 32px 32px;
  margin-left: auto;
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
}
.footer__form {
  margin-bottom: 76px;
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 46px;
  padding-bottom: 64px;
}
.footer__info-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__email, .footer__phone {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color var(--transition);
}
@media (hover: hover) and (pointer: fine){
.footer__email:hover, .footer__phone:hover {
  color: rgb(255 255 255 / 80%);
  color: var(--color-white-secondary);
}
}
.footer__info-desc {
  margin: 0;
  font-size: 16px;
  font-weight: 5;
  line-height: 1.1;
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
  letter-spacing: 0.06em;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 42px 32px 32px;
  margin-top: auto;
}
.footer__copyright, .footer__credit, .footer__policy {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color: rgb(255 255 255 / 40%);
  color: var(--color-white-tertiary);
  letter-spacing: 0.015em;
}
@media (max-width: 1199px) {
  .footer__right {
    width: 72%;
  }
}
@media (max-width: 899px) {
  .footer {
    min-height: auto;
  }
  .footer__info {
    gap: 34px;
    padding-bottom: 18px;
  }
  .footer__bg {
    top: -150px;
    right: 0;
    transform: scaleX(-1);
  }
  .footer__label {
    top: 108px;
    font-size: 14px;
  }
  .footer__right {
    width: 100%;
    min-height: auto;
    padding: 184px 32px 0;
  }
  .footer__email, .footer__phone {
    font-size: 28px;
    letter-spacing: 0.03em;
  }
  .footer__bottom {
    flex-wrap: wrap;
    gap: 16px;
    padding: 32px;
  }
  .footer__copyright {
    flex-basis: 100%;
  }
}
@media (max-width: 699px) {
  .footer__form {
    margin-bottom: 32px;
  }
  .footer__right {
    padding: 180px 16px 0;
  }
  .footer__info-block {
    gap: 9px;
  }
  .footer__info {
    gap: 32px;
    padding-bottom: 40px;
  }
  .footer__info-desc {
    font-size: 16px;
  }
  .footer__bottom {
    flex-flow: column nowrap;
    gap: 8px;
    align-items: flex-start;
    padding: 6px 16px;
  }
  .footer__logo {
    align-self: flex-end;
  }
}
@media (min-width: 2000px) {
  .footer {
    min-height: min(100vw * 780 / 2000, 2184px);
  }
  .footer__bg {
    top: min(100vw * 204 / 2000, 571.2px);
  }
  .footer__label {
    top: min(100vw * 156 / 2000, 436.8px);
    left: min(100vw * 32 / 2000, 89.6px);
    font-size: min(100vw * 14 / 2000, 39.2px);
  }
  .footer__right {
    min-height: min(100vw * 780 / 2000, 2184px);
    padding: min(100vw * 160 / 2000, 448px) min(100vw * 32 / 2000, 89.6px) min(100vw * 32 / 2000, 89.6px);
  }
  .footer__form {
    margin-bottom: min(100vw * 76 / 2000, 212.8px);
  }
  .footer__info {
    gap: min(100vw * 46 / 2000, 128.8px);
    padding-bottom: min(100vw * 64 / 2000, 179.2px);
  }
  .footer__info-block {
    gap: min(100vw * 6 / 2000, 16.8px);
  }
  .footer__email, .footer__phone {
    font-size: min(100vw * 32 / 2000, 89.6px);
  }
  .footer__info-desc {
    font-size: min(100vw * 16 / 2000, 44.8px);
  }
  .footer__bottom {
    padding: min(100vw * 42 / 2000, 117.6px) min(100vw * 32 / 2000, 89.6px) min(100vw * 32 / 2000, 89.6px);
  }
  .footer__copyright, .footer__credit, .footer__policy {
    font-size: min(100vw * 14 / 2000, 39.2px);
  }
}

.footer-form {
  padding: 20px 32px 36px;
  background-color: rgb(245 245 245 / 100%);
  background-color: var(--color-light-grey-primary);
  border-radius: 4px;
}
.footer-form__head {
  margin-bottom: 36px;
}
.footer-form__heading {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 0 0 12px;
  font-size: 52px;
  font-weight: 500;
  color: rgb(33 33 33 / 100%);
  color: var(--color-grey-primary);
  letter-spacing: 0.02em;
}
.footer-form__subtitle {
  max-width: 60%;
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  color: rgb(33 33 33 / 100%);
  color: var(--color-grey-primary);
  letter-spacing: 0.02em;
}
.footer-form__divider {
  height: 1px;
  margin-bottom: 32px;
  background-color: rgb(0 0 0 / 12%);
  background-color: var(--color-border-dark-secondary-12);
}
.footer-form__body {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  grid-gap: 48px;
  gap: 48px;
  align-items: start;
}
.footer-form__contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-form__contacts-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-form__contacts-group .footer-form__subhead {
  margin: 0;
}
.footer-form__contacts-row {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.footer-form__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: rgb(255 255 255 / 100%);
  background-color: var(--color-white-primary);
  border-radius: 4px;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color var(--transition);
}
.footer-form__contact img {
  display: block;
  width: 40px;
  height: 40px;
  transition: filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: filter var(--transition);
}
@media (hover: hover) and (pointer: fine){
.footer-form__contact:hover {
  background-color: rgb(21 27 30 / 100%);
  background-color: var(--color-bg-hover);
}
}
@media (hover: hover) and (pointer: fine){
.footer-form__contact:hover img {
  filter: brightness(0) invert(1);
}
}
.footer-form__fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-form__field {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 64px;
  padding: 12px 20px;
  background-color: rgb(255 255 255 / 100%);
  background-color: var(--color-white-primary);
  border: 1px solid transparent;
  border-radius: 12px;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: border-color var(--transition), background-color var(--transition);
}
.footer-form__field:focus-within {
  border-color: rgb(0 0 0 / 12%);
  border-color: var(--color-border-dark-secondary-12);
}
.footer-form__field.input_error {
  background-color: rgb(255 245 245 / 100%);
  background-color: var(--color-input-error-bg);
  border-color: rgb(231 76 60 / 100%);
  border-color: var(--color-input-error);
}
.footer-form__field_phone {
  min-height: auto;
  padding: 0;
  background-color: transparent;
  border: none;
}
.footer-form__field_phone:focus-within {
  border-color: transparent;
}
.footer-form__field_textarea {
  display: block;
  align-items: stretch;
  min-height: 132px;
  padding: 23px 16px;
}
.footer-form__textarea {
  min-height: 78px;
  font-family: inherit;
  line-height: 1.4;
  resize: none;
}
.footer-form__label {
  z-index: 10;
  z-index: var(--z-index-ten);
  margin-bottom: 2px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  color: rgb(33 33 33 / 60%);
  color: var(--color-input-placeholder);
  pointer-events: none;
}
.footer-form__input {
  width: 100%;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: rgb(33 33 33 / 100%);
  color: var(--color-grey-primary);
  outline: none;
  background: transparent;
  border: none;
}
.footer-form__input::-moz-placeholder {
  color: rgb(33 33 33 / 60%);
  color: var(--color-grey-primary-60);
  opacity: 1;
}
.footer-form__input::placeholder {
  color: rgb(33 33 33 / 60%);
  color: var(--color-grey-primary-60);
  opacity: 1;
}
.footer-form__subhead {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  color: rgb(33 33 33 / 100%);
  color: var(--color-grey-primary);
  letter-spacing: 0.02em;
}
.footer-form__consent {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 17px;
  cursor: pointer;
}
.footer-form__checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.footer-form__consent-box {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-top: 1px;
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
  background-color: rgb(255 255 255 / 100%);
  background-color: var(--color-white-primary);
  border: 1px solid rgb(0 0 0 / 12%);
  border: 1px solid var(--color-border-dark-secondary-12);
  border-radius: 4px;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color var(--transition), border-color var(--transition);
}
.footer-form__consent-box svg {
  width: 18px;
  height: 18px;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity var(--transition);
}
.footer-form__checkbox:checked + .footer-form__consent-box {
  background-color: rgb(12 12 12 / 100%);
  background-color: var(--color-bg-checkbox);
  border-color: rgb(12 12 12 / 100%);
  border-color: var(--color-bg-checkbox);
}
.footer-form__checkbox:checked + .footer-form__consent-box svg {
  opacity: 1;
}
.footer-form__checkbox:focus-visible + .footer-form__consent-box {
  outline: 2px solid rgb(70 124 229 / 100%);
  outline: 2px solid var(--color-blue-primary);
  outline-offset: 2px;
}
.footer-form__consent-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: rgb(33 33 33 / 60%);
  color: var(--color-grey-primary-60);
}
.footer-form__consent-link {
  font-weight: 500;
  color: rgb(33 33 33 / 100%);
  color: var(--color-grey-primary);
  text-decoration: none;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: border-color var(--transition);
}
@media (hover: hover) and (pointer: fine){
.footer-form__consent-link:hover {
  border-color: rgb(21 22 27 / 100%);
  border-color: var(--color-black-primary);
}
}
.footer-form__submit {
  position: relative;
  display: block;
  grid-column: 2;
  width: 100%;
  height: 64px;
  padding: 0;
  margin-top: 131px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
  letter-spacing: 0.02em;
  cursor: pointer;
  background-color: rgb(21 22 27 / 100%);
  background-color: var(--color-black-primary);
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color var(--transition);
}
@media (hover: hover) and (pointer: fine){
.footer-form__submit:hover:not(:disabled) {
  background-color: rgb(33 33 33 / 100%);
  background-color: var(--color-grey-primary);
}
}
.footer-form__submit:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.footer-form__submit_loading .footer-form__submit-label {
  visibility: hidden;
}
.footer-form__submit_loading .footer-form__submit-spinner {
  display: block;
}
.footer-form__submit-label {
  display: block;
  text-align: center;
}
.footer-form__submit-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  display: none;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: rgb(255 255 255 / 100%);
  border-top-color: var(--color-white-primary);
  border-radius: 50%;
  animation: footer-form-spin 0.7s linear infinite;
}
.footer-form__submit-corner {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: rgb(255 255 255 / 100%);
  background-color: var(--color-white-primary);
  border-radius: 50%;
}
.footer-form__submit-corner_tl {
  top: 8px;
  left: 8px;
}
.footer-form__submit-corner_tr {
  top: 8px;
  right: 8px;
}
.footer-form__submit-corner_bl {
  bottom: 8px;
  left: 8px;
}
.footer-form__submit-corner_br {
  right: 8px;
  bottom: 8px;
}
.footer-form__info-message {
  margin-bottom: 12px;
  font-size: 14px;
  color: rgb(33 33 33 / 40%);
  color: var(--color-grey-primary-40);
}
.footer-form .input__error-message {
  margin: 4px 0 0;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  color: rgb(231 76 60 / 100%);
  color: var(--color-input-error);
}
@media (max-width: 1199px) {
  .footer-form__heading {
    font-size: 42px;
  }
  .footer-form__subtitle {
    max-width: 80%;
    font-size: 20px;
  }
  .footer-form__submit {
    margin-top: 80px;
  }
}
@media (max-width: 899px) {
  .footer-form {
    padding: 32px 32px 36px;
    margin-bottom: 47px;
  }
  .footer-form__heading {
    margin-bottom: 24px;
    font-size: 52px;
    line-height: 1;
  }
  .footer-form__head {
    margin-bottom: 38px;
  }
  .footer-form__fields {
    width: 100%;
  }
  .footer-form__field {
    min-height: 56px;
    padding-block: 8px;
  }
  .footer-form__field_textarea {
    align-items: stretch;
    min-height: 132px;
    padding: 23px 16px;
  }
  .footer-form__subtitle {
    max-width: 80%;
    font-size: 24px;
  }
  .footer-form__body {
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
  }
  .footer-form__contacts {
    align-items: flex-end;
    width: 100%;
    margin-top: 50px;
  }
  .footer-form__contact {
    width: 64px;
    height: 64px;
  }
  .footer-form__submit {
    grid-column: auto;
    max-width: 176px;
    margin-top: 15px;
  }
  .footer-form__consent {
    margin-top: 0;
  }
}
@media (max-width: 699px) {
  .footer-form {
    padding: 16px;
    margin-bottom: 40px;
  }
  .footer-form__head {
    margin-bottom: 38px;
  }
  .footer-form__divider {
    margin-bottom: 16px;
  }
  .footer-form__field {
    border-radius: 4px;
  }
  .footer-form__heading {
    margin-bottom: 16px;
    letter-spacing: 0.01em;
  }
  .footer-form__consent {
    gap: 14px;
    margin-top: 8px;
  }
  .footer-form__consent-text {
    font-size: 14px;
    line-height: 1.3;
  }
  .footer-form__subtitle {
    font-size: 16px;
    line-height: 1.4;
  }
  .footer-form__contacts {
    align-items: stretch;
  }
  .footer-form__contacts-row {
    width: 100%;
  }
  .footer-form__contact {
    flex: 1;
    width: 100%;
    height: 56px;
  }
  .footer-form__contact img {
    width: 40px;
    height: 40px;
  }
  .footer-form__fields {
    gap: 16px;
  }
  .footer-form__submit {
    max-width: 100%;
    height: 56px;
  }
}
@media (min-width: 2000px) {
  .footer-form {
    padding: min(100vw * 20 / 2000, 56px) min(100vw * 32 / 2000, 89.6px) min(100vw * 36 / 2000, 100.8px);
  }
  .footer-form__head {
    margin-bottom: min(100vw * 36 / 2000, 100.8px);
  }
  .footer-form__heading {
    margin: 0 0 min(100vw * 12 / 2000, 33.6px);
    font-size: min(100vw * 52 / 2000, 145.6px);
  }
  .footer-form__subtitle {
    font-size: min(100vw * 24 / 2000, 67.2px);
  }
  .footer-form__divider {
    margin-bottom: min(100vw * 32 / 2000, 89.6px);
  }
  .footer-form__body {
    gap: min(100vw * 48 / 2000, 134.4px);
  }
  .footer-form__contacts {
    gap: min(100vw * 20 / 2000, 56px);
  }
  .footer-form__contacts-group {
    gap: min(100vw * 10 / 2000, 28px);
  }
  .footer-form__contacts-row {
    gap: min(100vw * 12 / 2000, 33.6px);
  }
  .footer-form__contact {
    width: min(100vw * 64 / 2000, 179.2px);
    height: min(100vw * 64 / 2000, 179.2px);
  }
  .footer-form__contact img {
    width: min(100vw * 40 / 2000, 112px);
    height: min(100vw * 40 / 2000, 112px);
  }
  .footer-form__fields {
    gap: min(100vw * 12 / 2000, 33.6px);
  }
  .footer-form__field {
    min-height: min(100vw * 64 / 2000, 179.2px);
    padding: min(100vw * 12 / 2000, 33.6px) min(100vw * 20 / 2000, 56px);
  }
  .footer-form__field_phone {
    min-height: auto;
    padding: 0;
  }
  .footer-form__field_textarea {
    min-height: min(100vw * 96 / 2000, 268.8px);
  }
  .footer-form__textarea {
    min-height: min(100vw * 72 / 2000, 201.6px);
  }
  .footer-form__label {
    margin-bottom: min(100vw * 2 / 2000, 5.6px);
    font-size: min(100vw * 13 / 2000, 36.4px);
  }
  .footer-form__input {
    font-size: min(100vw * 16 / 2000, 44.8px);
  }
  .footer-form__subhead {
    margin-top: min(100vw * 4 / 2000, 11.2px);
    font-size: min(100vw * 16 / 2000, 44.8px);
  }
  .footer-form__consent {
    gap: min(100vw * 22 / 2000, 61.6px);
    margin-top: min(100vw * 17 / 2000, 47.6px);
  }
  .footer-form__consent-box {
    width: min(100vw * 32 / 2000, 89.6px);
    height: min(100vw * 32 / 2000, 89.6px);
  }
  .footer-form__consent-box svg {
    width: min(100vw * 18 / 2000, 50.4px);
    height: min(100vw * 18 / 2000, 50.4px);
  }
  .footer-form__consent-text {
    font-size: min(100vw * 13 / 2000, 36.4px);
  }
  .footer-form__submit {
    height: min(100vw * 64 / 2000, 179.2px);
    margin-top: min(100vw * 131 / 2000, 366.8px);
    font-size: min(100vw * 16 / 2000, 44.8px);
  }
  .footer-form__submit-spinner {
    width: min(100vw * 20 / 2000, 56px);
    height: min(100vw * 20 / 2000, 56px);
    margin: max(100vw * -10 / 2000, -28px) 0 0 max(100vw * -10 / 2000, -28px);
  }
  .footer-form__submit-corner_tl {
    top: min(100vw * 8 / 2000, 22.4px);
    left: min(100vw * 8 / 2000, 22.4px);
  }
  .footer-form__submit-corner_tr {
    top: min(100vw * 8 / 2000, 22.4px);
    right: min(100vw * 8 / 2000, 22.4px);
  }
  .footer-form__submit-corner_bl {
    bottom: min(100vw * 8 / 2000, 22.4px);
    left: min(100vw * 8 / 2000, 22.4px);
  }
  .footer-form__submit-corner_br {
    right: min(100vw * 8 / 2000, 22.4px);
    bottom: min(100vw * 8 / 2000, 22.4px);
  }
}

@keyframes footer-form-spin {
  to {
    transform: rotate(360deg);
  }
}
.popup {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 200;
  visibility: hidden;
  width: 380px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}
.popup_open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.popup__dialog {
  position: relative;
  padding: 24px;
  background-color: rgb(255 255 255 / 100%);
  background-color: var(--color-white-primary);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
}
.popup__icon {
  display: block;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}
.popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: rgba(33, 33, 33, 0.4);
  cursor: pointer;
  background: transparent;
  border: none;
  border-radius: 4px;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color var(--transition);
}
@media (hover: hover) and (pointer: fine){
.popup__close:hover {
  color: rgba(33, 33, 33, 0.8);
}
}
.popup__title {
  margin: 0 0 8px;
  font-family: 'Inter', system-ui, -apple-system, blinkmacsystemfont, sans-serif;
  font-family: var(--font-inter);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  color: rgb(21 22 27 / 100%);
  color: var(--color-black-primary);
}
.popup__text {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, blinkmacsystemfont, sans-serif;
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(33, 33, 33, 0.6);
}
@media (max-width: 899px) {
  .popup {
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
  }
  .popup__dialog {
    border-radius: 0;
  }
}
@media (min-width: 2000px) {
  .popup {
    bottom: min(100vw * 32 / 2000, 89.6px);
    left: min(100vw * 32 / 2000, 89.6px);
    width: min(100vw * 380 / 2000, 1064px);
  }
  .popup__dialog {
    padding: min(100vw * 24 / 2000, 67.2px);
  }
  .popup__icon {
    width: min(100vw * 40 / 2000, 112px);
    height: min(100vw * 40 / 2000, 112px);
    margin-bottom: min(100vw * 16 / 2000, 44.8px);
  }
  .popup__close {
    top: min(100vw * 16 / 2000, 44.8px);
    right: min(100vw * 16 / 2000, 44.8px);
    width: min(100vw * 32 / 2000, 89.6px);
    height: min(100vw * 32 / 2000, 89.6px);
  }
  .popup__title {
    margin: 0 0 min(100vw * 8 / 2000, 22.4px);
    font-size: min(100vw * 22 / 2000, 61.6px);
  }
  .popup__text {
    font-size: min(100vw * 16 / 2000, 44.8px);
  }
}

.cookie-banner {
  position: fixed;
  right: 235px;
  bottom: 32px;
  z-index: 150;
  display: flex;
  flex-direction: column;
  width: 320px;
  padding: 20px;
  pointer-events: none;
  background: rgb(105 105 105 / 40%);
  background: var(--color-glass-grey);
  border-radius: 4px;
  opacity: 0;
  backdrop-filter: blur(80px);
  transform: translateY(8px);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity var(--transition), transform var(--transition);
}
.cookie-banner.is-visible {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: rgb(255 255 255 / 100%);
  color: var(--color-white-primary);
}
.cookie-banner__text {
  flex: 1;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: rgb(255 255 255 / 60%);
  color: var(--color-white-secondary-60);
}
.cookie-banner__link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity var(--transition);
}
@media (hover: hover) and (pointer: fine){
.cookie-banner__link:hover {
  opacity: 0.7;
}
}
.cookie-banner__ok {
  position: relative;
  display: block;
  width: 112px;
  height: 56px;
  padding: 8px;
  margin-top: 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: rgb(21 22 27 / 100%);
  color: var(--color-black-primary);
  letter-spacing: 0.02em;
  cursor: pointer;
  background-color: rgb(239 240 241 / 100%);
  background-color: var(--color-bg-light);
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color var(--transition);
}
@media (hover: hover) and (pointer: fine){
.cookie-banner__ok:hover {
  background-color: rgb(245 245 245 / 100%);
  background-color: var(--color-light-grey-primary);
}
}
.cookie-banner__ok-label {
  display: block;
  text-align: center;
}
.cookie-banner__corner {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: rgb(21 22 27 / 20%);
  background-color: var(--color-black-secondary);
  border-radius: 50%;
}
.cookie-banner__corner_tl {
  top: 8px;
  left: 8px;
}
.cookie-banner__corner_tr {
  top: 8px;
  right: 8px;
}
.cookie-banner__corner_bl {
  bottom: 8px;
  left: 8px;
}
.cookie-banner__corner_br {
  right: 8px;
  bottom: 8px;
}
@media (max-width: 899px) {
  .cookie-banner {
    right: 8px;
    bottom: 8px;
    left: 8px;
    width: auto;
    height: 174px;
  }
}
@media (min-width: 2000px) {
  .cookie-banner {
    right: min(100vw * 235 / 2000, 658px);
    bottom: min(100vw * 32 / 2000, 89.6px);
    width: min(100vw * 320 / 2000, 896px);
    padding: min(100vw * 20 / 2000, 56px);
  }
  .cookie-banner__title {
    margin: 0 0 min(100vw * 8 / 2000, 22.4px);
    font-size: min(100vw * 18 / 2000, 50.4px);
  }
  .cookie-banner__text {
    font-size: min(100vw * 14 / 2000, 39.2px);
  }
  .cookie-banner__ok {
    width: min(100vw * 112 / 2000, 313.6px);
    height: min(100vw * 56 / 2000, 156.8px);
    padding: min(100vw * 8 / 2000, 22.4px);
    margin-top: min(100vw * 32 / 2000, 89.6px);
    font-size: min(100vw * 16 / 2000, 44.8px);
  }
  .cookie-banner__corner_tl {
    top: min(100vw * 8 / 2000, 22.4px);
    left: min(100vw * 8 / 2000, 22.4px);
  }
  .cookie-banner__corner_tr {
    top: min(100vw * 8 / 2000, 22.4px);
    right: min(100vw * 8 / 2000, 22.4px);
  }
  .cookie-banner__corner_bl {
    bottom: min(100vw * 8 / 2000, 22.4px);
    left: min(100vw * 8 / 2000, 22.4px);
  }
  .cookie-banner__corner_br {
    right: min(100vw * 8 / 2000, 22.4px);
    bottom: min(100vw * 8 / 2000, 22.4px);
  }
}