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

/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */
/* FONT_START */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: ease;
  transition-timing-function: initial;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid #007aff;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(44px / 44 * 27);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: 44px;
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - 44px / 2);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007aff;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: 44px;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-feature-settings: ;
  font-variant: normal;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

/* Navigation font end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 8px;
  bottom: var(--swiper-pagination-bottom, 8px);
  top: auto;
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: 8px;
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: #000;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: 0.2;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: #007aff;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 8px;
  right: var(--swiper-pagination-right, 8px);
  left: auto;
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: inherit;
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: 4px;
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

@font-face {
  font-family: Inter;
  src: url("./inter.ttf") format("truetype");
  font-display: swap;
}
:root {
  --color-white: rgb(255 255 255);
  --color-light: rgb(237 241 242);
  --color-dark: rgb(9 14 17);
  --color-dark-secondary: rgb(12 19 24);
  --color-dark-third: rgb(14 20 25);
  --color-text: rgb(13 16 21);
  --color-stoke-dark: rgb(204 234 255);
  --color-accent-yellow: rgb(253 204 8);
  --color-second-yellow: rgb(214 174 10);
  --color-accent-error: rgb(191 58 31);
  --color-spindle: rgb(195 201 240);
  --color-matisse: rgb(33 113 152);
  --color-ebony-clay: rgb(40 49 62);
  --color-stroke-dark-opacity-10: rgb(204 234 255 / 10%);
  --color-stroke-light-opacity-20: rgb(0 30 51 / 20%);
  --color-stroke-yellow: rgb(214 174 10);
  --color-dark-opacity-80: rgb(9 14 17 / 80%);
  --color-text-opacity-60: rgb(13 16 21 / 60%);
  --color-text-opacity-45: rgb(13 16 21 / 45%);
  --color-dark-opacity-40: rgb(9 14 17 / 40%);
  --color-text-opacity-35: rgb(13 16 21 / 35%);
  --color-dark-third-opacity-85: rgb(14 20 25 / 85%);
  --color-white-opacity-90: rgb(255 255 255 / 90%);
  --color-white-opacity-60: rgb(255 255 255 / 60%);
  --color-white-opacity-45: rgb(255 255 255 / 45%);
  --color-white-opacity-40: rgb(255 255 255 / 40%);
  --color-white-opacity-35: rgb(255 255 255 / 35%);
  --color-white-opacity-10: rgb(255 255 255 / 10%);
  --color-white-opacity-09: rgb(255 255 255 / 9%);
  --z-index-under-content: -1;
  --z-index-zero: 0;
  --z-index-default: 1;
  --z-index-two: 2;
  --z-index-ten: 10;
  --z-index-header: 90;
  --z-index-prewiew-desc: 91;
  --z-index-swiper-full: 95;
  --z-index-modal-default: 99;
  --z-index-sidebar: 100;
  --z-index-param-select: 110;
  --z-index-cookies: 120;
  --transition: 0.3s ease-in-out;
  --animation-func: cubic-bezier(0.4, 0, 0.2, 1);
  --career-border: rgb(0 30 51 / 20%);
  --color-white-light: rgb(237 241 242 / 100%);
  --color-stroke-arrow: rgb(0 30 51 / 20%);
  --color-sidebar-logo-wrapper: var(--color-accent-yellow);
  --color-sidebar-logo: var(--color-white);
  --color-icon-order: var(--color-white);
  --color-icon-plus: var(--color-text);
}

button {
  width: inherit;
  height: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  cursor: pointer;
  background-color: transparent;
  border: none;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1em;
}

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

.container-pc {
  padding-inline: 80px 0;
}
@media (max-width: 1023.98px) {
  .container-pc {
    padding-inline: 0;
  }
}

.container-mb {
  padding-inline: 32px;
}
@media (max-width: 1023.98px) {
  .container-mb {
    padding-inline: 24px;
  }
}

.container-block {
  padding-block: 120px;
}
@media (max-width: 1439.98px) {
  .container-block {
    padding-block: 60px;
  }
}
@media (max-width: 1023.98px) {
  .container-block {
    padding-block: 32px;
  }
}
@media (max-width: 1023.98px) {
  .container-block_large {
    padding-block: 64px;
  }
}

.tag {
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1em;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media (min-width: 2560.02px) {
  .tag {
    font-size: 0.6770833333vw;
  }
}
@media (max-width: 1023.98px) {
  .tag {
    letter-spacing: 0.08em;
  }
}
.tag_accent {
  color: rgb(253 204 8);
  color: var(--color-accent-yellow);
}
.tag_large {
  font-size: 16px;
}
.tag_normal {
  text-transform: none;
}
@media (max-width: 1023.98px) {
  .tag_small {
    font-size: 11px;
  }
}

.block_left {
  width: 100%;
  max-width: 33%;
}
@media (max-width: 1023.98px) {
  .block_left {
    width: -moz-max-content;
    width: max-content;
    max-width: none;
  }
}
.block__header-title {
  margin-bottom: 32px;
  font-size: 72px;
  font-weight: 500;
  line-height: 0.9em;
  letter-spacing: -0.03em;
}
@media (min-width: 2560.02px) {
  .block__header-title {
    margin-bottom: 1.6666666667vw;
    font-size: 3.75vw;
  }
}
@media (max-width: 1439.98px) {
  .block__header-title {
    font-size: 54px;
  }
}
@media (max-width: 1023.98px) {
  .block__header-title {
    margin-bottom: 16px;
    font-size: 32px;
  }
}
.block__header-desc {
  max-width: 650px;
  font-size: 24px;
  line-height: 1.2em;
}
@media (min-width: 2560.02px) {
  .block__header-desc {
    max-width: 33.8541666667vw;
    font-size: 1.25vw;
  }
}
@media (max-width: 1439.98px) {
  .block__header-desc {
    font-size: 20px;
  }
}
@media (max-width: 1023.98px) {
  .block__header-desc {
    font-size: 16px;
    line-height: 1.3em;
  }
}
@media (max-width: 1023.98px) {
  .block__tag_mb {
    position: absolute;
    top: 32px;
    z-index: 1;
    z-index: var(--z-index-default);
  }
}
.block__button-wrapper {
  display: none;
  margin-top: 24px;
  color: rgb(9 14 17);
  color: var(--color-dark);
}
@media (max-width: 1023.98px) {
  .block__button-wrapper {
    display: flex;
    justify-content: flex-end;
  }
}
.block__button-consultation {
  width: 154px;
}
@media (max-width: 1023.98px) {
  .block_blur {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    z-index: var(--z-index-default);
    width: 100%;
    padding: 94px 32px 48px;
    background: rgba(9, 14, 17, 0.01);
    -webkit-backdrop-filter: blur(15px);
            backdrop-filter: blur(15px);
  }
}

.hidden {
  overflow: hidden;
}

.hidden-x {
  overflow-x: clip;
}

.dark-bg {
  background-color: rgb(9 14 17);
  background-color: var(--color-dark);
}

.absolute-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  z-index: var(--z-index-under-content);
  width: 100%;
  height: 100%;
}

.animation-transform-left-mobile-top {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.6s var(--animation-func);
  animation: slide-in-x 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation: slide-in-x 0.6s var(--animation-func) forwards;
}
@media (max-width: 1023.98px) {
  .animation-transform-left-mobile-top {
    transform: translateY(-100%);
    animation: slide-in-y 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation: slide-in-y 0.6s var(--animation-func) forwards;
  }
}

.animation-transform-top {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.6s var(--animation-func);
  animation: slide-in-y 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation: slide-in-y 0.6s var(--animation-func) forwards;
}

.animation-fade {
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.6s var(--animation-func);
  animation: fade-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation: fade-in 0.6s var(--animation-func) forwards;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slide-in-y {
  from {
    transform: translateY(-120%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slide-in-x {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.sidebar__link_logo, .sidebar__order, .sidebar__more, .sidebar__block {
  display: flex;
  align-items: center;
  width: 80px;
  cursor: pointer;
  border-bottom: 1px solid rgb(204 234 255 / 10%);
  border-bottom: 1px solid var(--color-stroke-dark-opacity-10);
}

.sidebar__icon, .sidebar__link_logo, .sidebar__order, .sidebar__button_more {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar__submenu, .sidebar__order-content, .sidebar__menu, .sidebar__locale-choice {
  transform: translateX(-300%);
}
@media (max-width: 1023.98px) {
  .sidebar__submenu, .sidebar__order-content, .sidebar__menu, .sidebar__locale-choice {
    transform: translateY(-300%);
  }
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  z-index: var(--z-index-sidebar);
  display: flex;
  width: 80px;
  height: 100dvh;
  background-color: transparent;
  transition: background-color 0.3s ease-in-out;
  transition: background-color var(--transition);
  will-change: background-color;
}
.sidebar__icon_vk-rounded {
  display: none;
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgb(237 241 242);
  background-color: var(--color-light);
}
.sidebar__icon_vk-rounded svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1023.98px) {
  .sidebar__icon_vk-rounded {
    display: block;
  }
}
@media (max-width: 1023.98px) {
  .sidebar__link_vk-side {
    display: none;
  }
}
.sidebar__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: calc(1 - 1);
  z-index: calc(var(--z-index-default) - 1);
  visibility: hidden;
  width: 100vw;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity var(--transition), visibility var(--transition);
}
.sidebar__backdrop_active {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 1023.98px) {
  .sidebar {
    width: 100dvw;
    height: 71px;
  }
}
.sidebar_active {
  width: 100dvw;
  height: 100dvh;
  color: rgb(9 14 17);
  color: var(--color-dark);
  background-color: rgb(9 14 17 / 80%);
  background-color: var(--color-dark-opacity-80);
}
.sidebar_active .sidebar__line {
  background-color: rgb(9 14 17);
  background-color: var(--color-dark);
}
.sidebar_active .sidebar__icon_logo,
.sidebar_active .sidebar__icon_order {
  --color-sidebar-logo: var(--color-dark);
  color: rgb(9 14 17);
  color: var(--color-dark);
}
@media (max-width: 1023.98px) {
  .sidebar_active {
    width: 100%;
    height: auto;
  }
}
.sidebar__wrapper {
  display: flex;
  width: 100%;
}
.sidebar__main {
  position: relative;
  z-index: 100;
  z-index: var(--z-index-sidebar);
  display: flex;
  flex-direction: column;
  width: 80px;
  height: 100dvh;
  border-right: 1px solid rgb(204 234 255 / 10%);
  border-right: 1px solid var(--color-stroke-dark-opacity-10);
  -webkit-backdrop-filter: blur(80px);
          backdrop-filter: blur(80px);
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  transition: background-color var(--transition), border-color var(--transition);
}
@media (max-width: 1023.98px) {
  .sidebar__main {
    flex-direction: row;
    width: 100%;
    height: 71px;
    border-right: none;
    border-bottom: 1px solid rgb(204 234 255 / 10%);
    border-bottom: 1px solid var(--color-stroke-dark-opacity-10);
  }
}
.sidebar__main_active {
  background-color: rgb(255 255 255);
  background-color: var(--color-white);
  border-color: rgb(0 30 51 / 20%);
  border-color: var(--color-stroke-light-opacity-20);
}
.sidebar__main_active .sidebar__locale {
  color: rgb(9 14 17);
  color: var(--color-dark);
}
.sidebar__main_active .sidebar__block,
.sidebar__main_active .sidebar__more,
.sidebar__main_active .sidebar__link_logo {
  border-color: rgb(0 30 51 / 20%);
  border-color: var(--color-stroke-light-opacity-20);
}
.sidebar__main_light {
  border-color: rgb(0 30 51 / 20%);
  border-color: var(--color-stroke-light-opacity-20);
}
.sidebar__main_light .sidebar__icon_logo,
.sidebar__main_light .sidebar__icon_order {
  --color-sidebar-logo: var(--color-dark);
  --color-icon-order: var(--color-dark);
}
.sidebar__main_light .sidebar__line {
  background-color: rgb(9 14 17);
  background-color: var(--color-dark);
}
.sidebar__main_light .sidebar__locale,
.sidebar__main_light .sidebar__icon_vk {
  color: rgb(9 14 17);
  color: var(--color-dark);
}
.sidebar__main_light .sidebar__block,
.sidebar__main_light .sidebar__more,
.sidebar__main_light .sidebar__link_logo {
  border-color: rgb(0 30 51 / 20%);
  border-color: var(--color-stroke-light-opacity-20);
}
.sidebar__main_accent {
  border-color: rgb(0 30 51 / 20%);
  border-color: var(--color-stroke-light-opacity-20);
}
.sidebar__main_accent .sidebar__icon_logo,
.sidebar__main_accent .sidebar__icon_order {
  --color-sidebar-logo: var(--color-dark);
  --color-icon-order: var(--color-dark);
  --color-sidebar-logo-wrapper: var(--color-white);
}
.sidebar__main_accent .sidebar__line {
  background-color: rgb(9 14 17);
  background-color: var(--color-dark);
}
.sidebar__main_accent .sidebar__locale,
.sidebar__main_accent .sidebar__icon_vk {
  color: rgb(9 14 17);
  color: var(--color-dark);
}
.sidebar__main_accent .sidebar__block,
.sidebar__main_accent .sidebar__more,
.sidebar__main_accent .sidebar__link_logo {
  border-color: rgb(0 30 51 / 20%);
  border-color: var(--color-stroke-light-opacity-20);
}
.sidebar__block {
  height: 80px;
}
.sidebar__button_more {
  gap: 8px;
  height: 100%;
}
@media (max-width: 1023.98px) {
  .sidebar__button_more {
    flex-direction: column;
  }
}
.sidebar__button_more_active {
  gap: 0;
}
.sidebar__button_more_active .sidebar__line {
  background-color: rgb(9 14 17);
  background-color: var(--color-dark);
}
.sidebar__button_more_active .sidebar__line:first-child {
  transform: translateY(0) rotate(45deg);
}
.sidebar__button_more_active .sidebar__line:last-child {
  transform: translate(-2px, 0) rotate(-45deg);
}
@media (max-width: 1023.98px) {
  .sidebar__button_more_active .sidebar__line:last-child {
    transform: translate(0, -2px) rotate(-45deg);
  }
}
.sidebar__button_locale {
  padding-inline: 32px;
  text-align: left;
}
@media (max-width: 1023.98px) {
  .sidebar__button_locale {
    display: block;
    padding-inline: 0;
    margin-inline: auto;
  }
}
.sidebar__button_arrow {
  width: 46px;
  padding: 22px 22px 22px 0;
  color: rgb(0 30 51 / 20%);
  color: var(--color-stroke-arrow);
}
.sidebar__more {
  flex-grow: 1;
  justify-content: center;
  width: 100%;
}
@media (max-width: 1023.98px) {
  .sidebar__more {
    border-right: 1px solid rgb(204 234 255 / 10%);
    border-right: 1px solid var(--color-stroke-dark-opacity-10);
    border-bottom: none;
  }
}
@media (max-width: 1023.98px) {
  .sidebar__more_mobile-hr button {
    visibility: hidden;
    pointer-events: none;
  }
}
.sidebar__more_mobile-hr-active {
  display: none;
}
@media (max-width: 1023.98px) {
  .sidebar__more_mobile-hr-active {
    display: block;
    width: 72px;
  }
}
.sidebar__order {
  position: relative;
  border-bottom: none;
}
@media (max-width: 1023.98px) {
  .sidebar__order {
    width: 100%;
    max-width: 72px;
    height: 71px;
    border-right: none;
  }
}
.sidebar__order-count {
  position: absolute;
  top: 15px;
  right: 13px;
  display: flex;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 10px;
  font-weight: 500;
  background: rgb(253 204 8);
  background: var(--color-accent-yellow);
  border-radius: 50%;
  transition: visibility 0.3s ease-in-out;
  transition: visibility var(--transition);
}
.sidebar__order-count_visibility {
  visibility: visible;
}
.sidebar__line {
  display: block;
  width: 3px;
  height: 40px;
  background-color: rgb(255 255 255);
  background-color: var(--color-white);
  transition: transform 0.3s ease-in-out;
  transition: transform var(--transition);
}
@media (max-width: 1023.98px) {
  .sidebar__line {
    width: 24px;
    height: 2px;
  }
}
.sidebar__line_dark {
  background-color: rgb(9 14 17);
  background-color: var(--color-dark);
}
.sidebar__link_logo {
  width: 100%;
  height: 80px;
}
@media (max-width: 1023.98px) {
  .sidebar__link_logo {
    width: 100%;
    max-width: 71px;
    height: 71px;
    margin-inline: auto;
    border-right: 1px solid rgb(204 234 255 / 10%);
    border-right: 1px solid var(--color-stroke-dark-opacity-10);
    border-bottom: none;
  }
}
.sidebar__link_menu {
  display: block;
  width: 100%;
  height: 100%;
  padding: 26px 0 22px 32px;
  font-size: 24px;
  line-height: 1.2em;
  letter-spacing: 0.02em;
}
@media (max-width: 1023.98px) {
  .sidebar__link_menu {
    font-size: 20px;
    padding: 26px 0 22px 24px;
  }
}
.sidebar__link_contact {
  display: block;
  margin-bottom: 4px;
}
.sidebar__link_vk {
  justify-content: center;
  color: rgb(255 255 255);
  color: var(--color-white);
  border-bottom: none;
}
.sidebar__icon {
  transition: color 0.3s ease-in-out;
  transition: color var(--transition);
}
.sidebar__icon_order {
  width: 20px;
  height: 18px;
  color: rgb(255 255 255);
  color: var(--color-icon-order);
}
.sidebar__icon_logo {
  width: 34px;
  height: 40px;
}
.sidebar__icon_arrow {
  width: 20px;
  height: 20px;
}
@media (max-width: 1023.98px) {
  .sidebar__icon_arrow {
    width: 14px;
    height: 14px;
  }
}
.sidebar__icon_vk {
  width: 24px;
  height: 15px;
}
.sidebar__locale {
  position: relative;
  width: 100%;
  height: 100%;
  color: rgb(255 255 255);
  color: var(--color-icon-order);
  text-transform: uppercase;
}
@media (max-width: 1023.98px) {
  .sidebar__locale-wrapper {
    display: none;
  }
}
.sidebar__locale-choice {
  position: absolute;
  bottom: 0;
  transition: transform 0.3s ease-in-out;
  transition: transform var(--transition);
}
.sidebar__locale-choice_active {
  left: 80px;
  background-color: #fff;
  transform: translateX(0);
}
.sidebar__locale-list {
  border-right: 1px solid rgb(0 30 51 / 20%);
  border-right: 1px solid var(--color-stroke-light-opacity-20);
}
.sidebar__locale-list_mb {
  display: none;
}
@media (max-width: 1023.98px) {
  .sidebar__locale-list_mb {
    display: flex;
  }
}
.sidebar__locale-item {
  width: 227px;
  height: 80px;
  line-height: 1.1em;
  border-bottom: 1px solid rgb(0 30 51 / 20%);
  border-bottom: 1px solid var(--color-stroke-light-opacity-20);
}
@media (max-width: 1023.98px) {
  .sidebar__locale-item {
    flex: 1;
    width: auto;
    height: 76px;
    border-top: 1px solid rgb(0 30 51 / 20%);
    border-top: 1px solid var(--color-stroke-light-opacity-20);
    border-right: 1px solid rgb(0 30 51 / 20%);
    border-right: 1px solid var(--color-stroke-light-opacity-20);
  }
}
.sidebar__locale-item:last-child {
  border-bottom: none;
}
@media (max-width: 1023.98px) {
  .sidebar__locale-item:last-child {
    border-right: none;
  }
}
.sidebar__locale-item:first-child {
  border-top: 1px solid rgb(0 30 51 / 20%);
  border-top: 1px solid var(--color-stroke-light-opacity-20);
}
.sidebar__locale-item_active {
  background-color: rgb(237 241 242);
  background-color: var(--color-light);
}
.sidebar__locale-name {
  margin-right: 24px;
  text-transform: uppercase;
}
@media (max-width: 1023.98px) {
  .sidebar__locale-name {
    margin-right: 0;
  }
}
.sidebar__locale-desc {
  text-transform: capitalize;
}
@media (max-width: 1023.98px) {
  .sidebar__locale-desc {
    display: none;
  }
}
.sidebar__menu {
  position: absolute;
  z-index: 1;
  z-index: var(--z-index-default);
  min-width: 450px;
  height: auto;
  min-height: 100dvh;
  overflow: visible;
  color: transparent;
  transition: transform 0.3s ease-in-out;
  transition: transform var(--transition);
}
@media (max-width: 1023.98px) {
  .sidebar__menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-width: auto;
    height: auto;
    min-height: calc(100dvh - 72px);
  }
}
.sidebar__menu_active {
  left: 80px;
  color: rgb(9 14 17);
  color: var(--color-dark);
  background-color: rgb(255 255 255);
  background-color: var(--color-white);
  transform: translateX(0);
}
@media (max-width: 1023.98px) {
  .sidebar__menu_active {
    top: 71px;
    left: 0;
    max-height: calc(100dvh - 160px);
    transform: translateY(0);
  }
}
@media (max-width: 1023.98px) {
  .sidebar__menu-list {
    display: flex;
    flex-direction: column;
  }
}
.sidebar__menu-item {
  display: flex;
  align-items: center;
  width: 100%;
  height: 80px;
  border-bottom: 1px solid rgb(0 30 51 / 20%);
  border-bottom: 1px solid var(--color-stroke-light-opacity-20);
  transition: stroke-opacity 0.3s ease-in-out, background-color 0.3s ease-in-out, flex-direction 0.3s ease-in-out;
  transition: stroke-opacity var(--transition), background-color var(--transition), flex-direction var(--transition);
}
@media (max-width: 1023.98px) {
  .sidebar__menu-item {
    height: 76px;
  }
}
.sidebar__menu-item_active {
  background-color: rgb(237 241 242);
  background-color: var(--color-light);
}
@media (hover: hover) and (pointer: fine){
.sidebar__menu-item:hover {
  background-color: rgb(237 241 242);
  background-color: var(--color-light);
}
}
@media (max-width: 1023.98px) {
  .sidebar__menu-item_active {
    background-color: rgb(255 255 255);
    background-color: var(--color-white);
  }
  @media (hover: hover) and (pointer: fine){
  .sidebar__menu-item:hover {
    background-color: rgb(255 255 255);
    background-color: var(--color-white);
  }
  }
}
.sidebar__menu-item_active .sidebar__icon_arrow {
  color: rgb(9 14 17);
  color: var(--color-dark);
}
@media (hover: hover) and (pointer: fine){
.sidebar__menu-item:hover .sidebar__icon_arrow {
  color: rgb(9 14 17);
  color: var(--color-dark);
}
}
@media (max-width: 1023.98px) {
  .sidebar__menu-item_active {
    flex-direction: row-reverse;
    order: -1;
    background-color: rgb(255 255 255);
    background-color: var(--color-white);
  }
  .sidebar__menu-item_active .sidebar__button_arrow {
    padding-top: 20px;
    transform: rotate(-180deg);
  }
}
.sidebar__menu-contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 32px;
  position: absolute;
  bottom: 0;
}
@media (max-width: 1023.98px) {
  .sidebar__menu-contacts {
    padding: 32px 24px;
  }
}
.sidebar__menu-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sidebar__menu-info-content {
  font-size: 24px;
  line-height: 120%;
  color: rgb(13 16 21);
  color: var(--color-text);
}
.sidebar__menu-info-text {
  font-size: 16px;
  line-height: 110%;
  color: rgb(13 16 21 / 35%);
  color: var(--color-text-opacity-35);
}
.sidebar__order-content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  z-index: var(--z-index-default);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 760px;
  height: 100dvh;
  background-color: rgb(255 255 255);
  background-color: var(--color-white);
  transform: translateX(-300%);
  transition: transform 0.3s ease-in-out;
  transition: transform var(--transition);
}
@media (max-width: 1023.98px) {
  .sidebar__order-content {
    top: 71px;
    width: 100dvw;
    min-width: auto;
    height: calc(100dvh - 71px);
    transform: translateY(-120%);
  }
}
@media (max-width: 767.98px) {
  .sidebar__order-content {
    gap: 32px;
    overflow-y: auto;
  }
}
.sidebar__order-content_active {
  left: 80px;
  color: rgb(9 14 17);
  color: var(--color-dark);
  background-color: rgb(255 255 255);
  background-color: var(--color-white);
  transform: translateX(0);
}
@media (max-width: 1023.98px) {
  .sidebar__order-content_active {
    top: 71px;
    left: 0;
    transform: translateY(0);
  }
}
.sidebar__order-content-empty-placeholder {
  position: relative;
  height: 100%;
}
.sidebar__order-content-empty-placeholder-content {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 280px;
  text-align: center;
  transform: translate(-50%, -50%);
}
@media (max-width: 767.98px) {
  .sidebar__order-content-empty-placeholder-content {
    top: 45%;
  }
}
.sidebar__order-content-empty-placeholder__title {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -2%;
}
.sidebar__order-content-empty-placeholder__text {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 110%;
  color: rgb(13 16 21);
  color: var(--color-text);
}
@media (max-width: 767.98px) {
  .sidebar__order-content-empty-placeholder__text {
    width: 280px;
    position: relative;
  }
}
.sidebar__order-content-empty-placeholder__button {
  min-width: 120px;
  padding: 16px 32px;
  color: rgb(13 16 21);
  color: var(--color-text);
  background-color: rgb(253 204 8);
  background-color: var(--color-accent-yellow);
  border-radius: 100px;
  transition: opacity 0.3s ease-in-out;
  transition: opacity var(--transition);
}
@media (hover: hover) and (pointer: fine){
.sidebar__order-content-empty-placeholder__button:hover {
  opacity: 0.8;
}
}
.sidebar__order-content-empty-placeholder_hidden {
  display: none;
}
.sidebar__order-content-form-wrapper {
  display: none;
}
.sidebar__order-content-form-wrapper_active {
  display: flex;
  flex-direction: column;
  width: 78.5vw;
  gap: 24px;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 767.98px) {
  .sidebar__order-content-form-wrapper_active {
    padding: 0;
    width: 100%;
  }
}
.sidebar__order-content-form-wrapper-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar__order-content-form-wrapper-content-title {
  padding: 0 33px;
  font-size: 20px;
  font-weight: 500;
  line-height: 110%;
}
@media (max-width: 767.98px) {
  .sidebar__order-content-form-wrapper-content-title {
    font-size: 16px;
    padding: 0 24px;
  }
}
@media (max-width: 767.98px) {
  .sidebar__order-content-form-wrapper-content {
    gap: 17px;
  }
}
.sidebar__order-content-form-wrapper-footer {
  padding: 0 24px;
  font-size: 14px;
  line-height: 140%;
  color: rgb(13 16 21 / 35%);
  color: var(--color-text-opacity-35);
}
.sidebar__order-content-form-wrapper-footer-link {
  color: rgb(13 16 21 / 45%);
  color: var(--color-text-opacity-45);
}
.sidebar__order-content-main {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.sidebar__order-content-main .sidebar__order-content-header,
.sidebar__order-content-main .sidebar__order-content-content {
  display: none;
}
.sidebar__order-content-main_active {
  display: flex;
}
.sidebar__order-content-main_active .sidebar__order-content-header,
.sidebar__order-content-main_active .sidebar__order-content-content {
  display: flex;
}
.sidebar__order-content-header {
  flex-direction: column;
  gap: 24px;
  width: 53%;
  padding: 32px;
}
.sidebar__order-content-header_empty {
  width: 100%;
}
@media (max-width: 767.98px) {
  .sidebar__order-content-header {
    width: 60%;
  }
}
@media (max-width: 479.98px) {
  .sidebar__order-content-header {
    width: auto;
    padding: 24px;
    gap: 3px;
    margin-bottom: 34px;
  }
}
.sidebar__order-content-content {
  flex-direction: column;
  width: 100%;
}
.sidebar__order-content-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 0 30px;
}
.sidebar__order-content-form-item {
  display: flex;
  gap: 8px;
  width: 100%;
}
@media (max-width: 767.98px) {
  .sidebar__order-content-form-item {
    flex-direction: column;
  }
}
.sidebar__order-content-form-input.input {
  background: rgb(237 241 242);
  background: var(--color-light);
}
@media (max-width: 767.98px) {
  .sidebar__order-content-form {
    padding: 0 24px;
    gap: 10px;
  }
}
.sidebar__order-content-title {
  margin-bottom: 18px;
  font-size: 64px;
  font-weight: 500;
  line-height: 90%;
  letter-spacing: 0.025em;
}
@media (max-width: 767.98px) {
  .sidebar__order-content-title {
    font-size: 32px;
  }
}
.sidebar__order-content-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 0.005em;
}
@media (max-width: 767.98px) {
  .sidebar__order-content-text {
    font-size: 16px;
    letter-spacing: 0.01em;
    line-height: 130%;
    max-width: 90%;
  }
}
.sidebar__order-content-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 1;
  z-index: var(--z-index-default);
  width: 32px;
  height: 32px;
  color: rgb(9 14 17);
  color: var(--color-dark);
  border: 1px solid rgb(0 30 51 / 20%);
  border: 1px solid var(--color-stroke-light-opacity-20);
  border-radius: 50%;
  transition: background-color 0.3s ease-in-out;
  transition: background-color var(--transition);
}
@media (hover: hover) and (pointer: fine){
.sidebar__order-content-close:hover {
  background-color: rgb(237 241 242);
  background-color: var(--color-light);
}
}
.sidebar__order-content-close svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 767.98px) {
  .sidebar__order-content-close {
    border: none;
    top: 18px;
    right: 18px;
  }
  .sidebar__order-content-close svg {
    width: 24px;
    height: 24px;
    color: rgb(0 30 51 / 20%);
    color: var(--career-border);
  }
}
.sidebar__order-content-total {
  padding: 20px 32px;
  font-size: 20px;
  font-weight: 500;
  line-height: 110%;
  color: rgb(13 16 21);
  color: var(--color-text);
}
@media (max-width: 767.98px) {
  .sidebar__order-content-total {
    padding: 39px 24px 15px;
    font-size: 16px;
  }
}
.sidebar__order-content-item {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  grid-gap: 24px;
  gap: 24px;
  align-items: center;
  height: 79px;
  padding: 24px 32px;
  border-bottom: 1px solid rgb(0 30 51 / 20%);
  border-bottom: 1px solid var(--color-stroke-light-opacity-20);
}
@media (max-width: 767.98px) {
  .sidebar__order-content-item {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    height: auto;
    padding: 24px 26px;
  }
}
.sidebar__order-content-item .input-quantity__input {
  height: 34px;
}
.sidebar__order-content-item:last-child {
  border-bottom: none;
}
.sidebar__order-content-item:first-child {
  border-top: 1px solid rgb(0 30 51 / 20%);
  border-top: 1px solid var(--color-stroke-light-opacity-20);
}
.sidebar__order-content-item-name {
  font-size: 16px;
  line-height: 110%;
}
@media (max-width: 767.98px) {
  .sidebar__order-content-item-name {
    font-size: 20px;
  }
}
.sidebar__order-content-item-delete-wrapper {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
}
@media (max-width: 767.98px) {
  .sidebar__order-content-item-delete-wrapper {
    margin-top: 22px;
    width: 100%;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
.sidebar__order-content-item-article {
  display: flex;
  gap: 4px;
  font-size: 16px;
  color: rgb(13 16 21 / 35%);
  color: var(--color-text-opacity-35);
}
@media (max-width: 767.98px) {
  .sidebar__order-content-item-article {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }
}
.sidebar__order-content-item-article-value {
  color: rgb(13 16 21);
  color: var(--color-text);
}
.sidebar__order-content-item-delete {
  width: 32px;
  height: 32px;
  color: rgb(9 14 17);
  color: var(--color-dark);
  border: 1px solid rgb(0 30 51 / 20%);
  border: 1px solid var(--color-stroke-light-opacity-20);
  border-radius: 50%;
  transition: background-color 0.3s ease-in-out;
  transition: background-color var(--transition);
}
@media (hover: hover) and (pointer: fine){
.sidebar__order-content-item-delete:hover {
  background-color: rgb(237 241 242);
  background-color: var(--color-light);
}
}
.sidebar__order-content-item-delete svg {
  width: 16px;
  height: 16px;
}
.sidebar__order-content-button {
  width: 100%;
  height: 81px;
  padding: 20px 32px;
  font-size: 13px;
  font-weight: 700;
  color: rgb(13 16 21);
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background-color: rgb(253 204 8);
  background-color: var(--color-accent-yellow);
  transition: opacity 0.3s ease-in-out;
  transition: opacity var(--transition);
}
@media (hover: hover) and (pointer: fine){
.sidebar__order-content-button:hover {
  opacity: 0.8;
}
}
.sidebar__submenu {
  position: absolute;
  min-width: 450px;
  height: auto;
  max-height: 100dvh;
  padding: 27px 35px;
  overflow-y: auto;
  color: rgb(9 14 17);
  color: var(--color-dark);
  scrollbar-width: none;
  background-color: rgb(237 241 242);
  background-color: var(--color-light);
  transition: transform 0.3s ease-in-out;
  transition: transform var(--transition);
}
.sidebar__submenu::-webkit-scrollbar {
  display: none;
}
@media (max-width: 1023.98px) {
  .sidebar__submenu {
    width: 100%;
    max-height: calc(100dvh - 142px);
    transform: translateX(-300%);
  }
}
.sidebar__submenu_active {
  left: 530px;
  max-width: 450px;
  transform: translateX(0);
}
@media (max-width: 1023.98px) {
  .sidebar__submenu_active {
    top: 147px;
    left: -4px;
    z-index: 1;
    z-index: var(--z-index-default);
    width: 100%;
    min-width: 100%;
  }
}
.sidebar__submenu-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 100%;
}
.sidebar__submenu-list_products {
  gap: 8px;
}
.sidebar__submenu-item {
  font-size: 24px;
  line-height: 1.2em;
  letter-spacing: 0.025em;
}
@media (max-width: 1023.98px) {
  .sidebar__submenu-item {
    font-size: 24px;
  }
}
.sidebar__submenu-item_contact {
  margin-bottom: 12px;
}
.sidebar__submenu-item_contact:nth-last-child(2) {
  flex-shrink: 0;
  margin-top: auto;
}
.sidebar__submenu-item_contact:last-child {
  margin-bottom: 0;
}
.sidebar__submenu-item_contact-text {
  font-size: 16px;
  color: rgb(13 16 21 / 35%);
  color: var(--color-text-opacity-35);
}
.sidebar__submenu-item_products {
  margin-bottom: 53px;
}
.sidebar__submenu-item_products:last-child {
  margin-bottom: 0;
}
.sidebar__submenu-content {
  display: none;
}
.sidebar__submenu_products .sidebar__submenu-content_products {
  display: block;
  height: auto;
}
.sidebar__submenu_contacts .sidebar__submenu-content_contacts {
  display: flex;
  flex-direction: column;
  min-height: calc(100dvh - 64px);
}
@media (max-width: 1023.98px) {
  .sidebar__submenu_contacts .sidebar__submenu-content_contacts {
    min-height: calc(100dvh - 208px);
  }
}
.sidebar__submenu_about {
  min-height: 100%;
}
@media (max-width: 1023.98px) {
  .sidebar__submenu_about {
    min-height: 100dvh;
  }
}
.sidebar__submenu_about .sidebar__submenu-content_about {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar__submenu-title {
  margin: 0 0 20px;
  color: rgb(13 16 21 / 35%);
  color: var(--color-text-opacity-35);
}
@media (max-width: 1023.98px) {
  .sidebar__submenu-title {
    margin-bottom: 19px;
  }
}

.sidebar__order-content-button_submit:disabled {
  opacity: 0.5;
}

.header {
  position: relative;
  z-index: 90;
  z-index: var(--z-index-header);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 18px;
}
@media (min-width: 2560.02px) {
  .header {
    padding-top: 0.9375vw;
  }
}
@media (max-width: 1023.98px) {
  .header {
    padding-top: 112px;
  }
}
.header_absolute {
  position: absolute;
  width: calc(100% - 80px);
}
.header_white {
  color: rgb(255 255 255);
  color: var(--color-white);
}
@media (max-width: 1023.98px) {
  .header_white {
    background-color: rgb(12 19 24);
    background-color: var(--color-dark-secondary);
  }
}
@media (max-width: 1023.98px) {
  .header_small {
    padding-top: 0;
  }
}
.header__group {
  display: flex;
  width: 100%;
}
.header__group nav {
  margin-right: auto;
}
.header__group_small {
  justify-content: space-between;
}
.header__group_small nav {
  margin-right: 0;
}
.header__nav_center {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (max-width: 1023.98px) {
  .header__nav {
    display: none;
  }
}
.header__icon_logo {
  width: 368px;
  height: 133px;
  padding-top: 6px;
}
@media (min-width: 2560.02px) {
  .header__icon_logo {
    width: 19.1666666667vw;
    height: 6.9270833333vw;
    padding-top: 0.3125vw;
  }
}
@media (max-width: 1023.98px) {
  .header__icon_logo {
    width: 260px;
    height: 95px;
    padding-top: 0;
  }
}
.header__icon_logo-small {
  width: 126px;
  height: 46px;
  padding-top: 0;
}
@media (max-width: 1023.98px) {
  .header__icon_logo-small {
    display: none;
  }
}
.header__list {
  display: flex;
  gap: 24px;
  margin-left: 52px;
}
.header__list_small {
  margin-left: 150px;
}
@media (min-width: 2560.02px) {
  .header__list {
    gap: 1.25vw;
    margin-left: 2.7083333333vw;
    font-size: 0.8333333333vw;
  }
}
@media (max-width: 1349.98px) {
  .header__list {
    gap: 16px;
    font-size: 14px;
  }
}
.header__phone {
  min-width: -moz-fit-content;
  min-width: fit-content;
}
@media (max-width: 1023.98px) {
  .header__phone {
    display: none;
  }
}
.header__link_item {
  white-space: nowrap;
}
.header__link_phone {
  font-size: 24px;
  line-height: 1.2em;
}
@media (min-width: 2560.02px) {
  .header__link_phone {
    font-size: 1.25vw;
  }
}
@media (max-width: 1349.98px) {
  .header__link_phone {
    font-size: 16px;
  }
}

.header-preview {
  position: relative;
  display: block;
  align-content: end;
  width: 100%;
  max-height: calc(100vh - 157px);
}
@media (max-width: 1023.98px) {
  .header-preview {
    max-height: 100%;
    background-color: rgb(12 19 24);
    background-color: var(--color-dark-secondary);
  }
}
@media (min-width: 1024px) {
  .header-preview {
    height: 100vh;
    max-height: inherit;
    margin-top: -151px;
  }
}
@media (min-width: 2560.02px) {
  .header-preview {
    margin-top: -7.8645833333vw;
  }
}
.header-preview__mobile-logo {
  position: absolute;
  top: 104px;
  left: 10px;
  z-index: 2;
  z-index: var(--z-index-two);
  display: none;
  width: 295px;
  height: 95px;
  color: white;
}
@media (max-width: 1023.98px) {
  .header-preview__mobile-logo {
    display: block;
  }
}
@media (max-width: 767.98px) {
  .header-preview__mobile-logo {
    position: relative;
    top: 0;
    left: 0;
    margin-top: 104px;
  }
}
.header-preview__image-wrapper {
  width: 100%;
  height: 100%;
}
@media (max-width: 767.98px) {
  .header-preview__image-wrapper {
    display: none;
  }
}
.header-preview__image {
  position: relative;
  top: -157px;
  left: -112px;
  width: calc(100% + 144px);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header-preview__image_mb {
  display: none;
}
@media (max-width: 767.98px) {
  .header-preview__image {
    position: relative;
    top: 0;
    left: -228px;
    display: block;
    width: calc(100% + 70dvw);
    height: 530px;
    margin-bottom: 48px;
  }
}
@media (max-width: 559.98px) {
  .header-preview__image {
    height: 100dvw;
  }
}
@media (min-width: 768px) {
  .header-preview__image {
    top: 0;
  }
}
.header-preview__icon_plus {
  width: 24px;
  height: 24px;
}
.header-preview__desc {
  position: absolute;
  z-index: 91;
  z-index: var(--z-index-prewiew-desc);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
@media (max-width: 767.98px) {
  .header-preview__desc {
    display: none;
  }
}
.header-preview__desc-wrapper {
  position: absolute;
  visibility: hidden;
  width: 0;
  height: 0;
  padding: 12px 10px 12px 12px;
  color: rgb(255 255 255);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  opacity: 0;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  transform: scale(0);
  transform-origin: right bottom;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform var(--transition), opacity var(--transition);
}
@media (hover: hover) and (pointer: fine){
.header-preview__desc:hover .header-preview__desc-wrapper {
  visibility: visible;
  width: 220px;
  height: 112px;
  opacity: 1;
  transform: scale(1) translate(12px, 12px);
}
}
@media (min-width: 2560.02px) {
  @media (hover: hover) and (pointer: fine){
  .header-preview__desc:hover .header-preview__desc-wrapper {
    width: 11.4583333333vw;
    height: 5.8333333333vw;
  }
  }
}
.header-preview__desc_fences {
  top: 33%;
  left: calc(50% - 5px);
}
@media (min-width: 768px) {
  .header-preview__desc_fences {
    top: 57vh;
  }
}
.header-preview__desc_bridges {
  top: 23vh;
  left: 93%;
}
.header-preview__desc_supports {
  top: 20vh;
  left: 42%;
}
@media (max-width: 1023.98px) {
  .header-preview__desc_supports {
    top: 22vh;
    left: 39%;
  }
}
.header-preview__desc_barriers {
  top: calc(27vh - 10px);
  left: 26%;
}
@media (max-width: 1023.98px) {
  .header-preview__desc_barriers {
    top: calc(27vh + 10px);
    left: 150px;
  }
}
.header-preview__desc-content {
  display: flex;
}
.header-preview__desc-text {
  margin-right: 16px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  opacity: 0.7;
}
@media (min-width: 2560.02px) {
  .header-preview__desc-text {
    font-size: 0.6770833333vw;
  }
}
.header-preview__desc-title {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media (min-width: 2560.02px) {
  .header-preview__desc-title {
    font-size: 0.8333333333vw;
  }
}
.header-preview__desc-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: rgb(255 255 255);
  background-color: var(--color-white);
  border-radius: 50%;
  transition: all 0.3s ease-in-out 0s;
  outline: none;
}
.header-preview__desc-button::before {
  content: "";
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 3px solid rgb(253 204 8);
  border: 3px solid var(--color-accent-yellow);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
}
@media (min-width: 2560.02px) {
  .header-preview__desc-button::before {
    width: 1.6666666667vw;
    height: 1.6666666667vw;
  }
}
.header-preview__desc-button:focus .header-preview__icon_plus {
  color: rgb(253 204 8);
  color: var(--color-accent-yellow);
}
@media (hover: hover) and (pointer: fine){
.header-preview__desc-button:hover .header-preview__icon_plus {
  color: rgb(253 204 8);
  color: var(--color-accent-yellow);
}
}
.header-preview__desc-button:focus::before {
  opacity: 1;
}
@media (hover: hover) and (pointer: fine){
.header-preview__desc-button:hover::before {
  opacity: 1;
}
}
.header-preview__desc-button::after {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 3px solid rgb(253 204 8);
  border: 3px solid var(--color-accent-yellow);
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
}
@media (min-width: 2560.02px) {
  .header-preview__desc-button::after {
    width: 1.5625vw;
    height: 1.5625vw;
  }
}
.header-preview__desc-button:focus::after {
  animation: none;
  display: none;
}
@media (hover: hover) and (pointer: fine){
.header-preview__desc-button:hover::after {
  animation: none;
  display: none;
}
}
@media (min-width: 2560.02px) {
  .header-preview__desc-button {
    width: 1.25vw;
    height: 1.25vw;
  }
}
.header-preview__title {
  position: absolute;
  bottom: 10px;
  z-index: 1;
  z-index: var(--z-index-default);
  display: flex;
  flex-wrap: wrap;
  max-width: 920px;
  font-size: 64px;
  font-weight: 500;
  line-height: 0.9em;
  color: rgb(255 255 255);
  color: var(--color-white);
  letter-spacing: -0.01em;
  min-height: 116px;
}
@media (min-width: 2560.02px) {
  .header-preview__title {
    max-width: 54.6875vw;
    font-size: 3.3333333333vw;
  }
}
.header-preview__title-letter {
  display: inline-block;
  opacity: 0;
  animation: fade-in 0.5s ease forwards;
  animation-delay: var(--delay);
}
@media (max-width: 1023.98px) {
  .header-preview__title {
    max-width: 810px;
    font-size: 48px;
  }
}
@media (max-width: 1023.98px) {
  .header-preview__title {
    position: static;
  }
}
@media (max-width: 767.98px) {
  .header-preview__title {
    position: static;
    max-width: 100%;
    font-size: 32px;
    line-height: 1.1em;
  }
}

@keyframes ring {
  0% {
    width: 10px;
    height: 10px;
    opacity: 1;
  }
  100% {
    width: 3.3854166667vw;
    height: 3.3854166667vw;
    opacity: 0;
  }
}
.fences-container {
  background-color: rgb(9 14 17);
  background-color: var(--color-dark);
}

.fences-block {
  position: relative;
  z-index: 1;
  z-index: var(--z-index-default);
  height: 100vh;
  overflow: hidden;
  color: rgb(255 255 255);
  color: var(--color-white);
  background-color: rgb(12 19 24);
  background-color: var(--color-dark-secondary);
}
@media (max-width: 767.98px) {
  .fences-block {
    height: auto;
  }
}
.fences-block .fences-block__card-consultation {
  position: absolute;
  right: 55%;
  bottom: 32px;
  z-index: 1;
  z-index: var(--z-index-default);
}
.fences-block__wrapper-consultation {
  display: none;
}
@media (max-width: 767.98px) {
  .fences-block__wrapper-consultation {
    display: block;
  }
}
@media (max-width: 1599.98px) {
  .fences-block__content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 80%;
  }
}
@media (max-width: 767.98px) {
  .fences-block__content-wrapper {
    position: relative;
    display: block;
    height: auto;
    margin-bottom: 610px;
  }
}
.fences-block__wrapper {
  min-height: 960px;
  padding-bottom: 0;
  overflow-y: clip;
}
@media (max-width: 1023.98px) {
  .fences-block__wrapper {
    padding-top: 80px;
  }
}
@media (max-width: 767.98px) {
  .fences-block__wrapper {
    min-height: auto;
    padding-bottom: 24px;
  }
  .fences-block__wrapper:not(.block_blur, :has(.block_blur)) {
    position: relative;
  }
}
.fences-block__header {
  position: relative;
  z-index: 1;
  z-index: var(--z-index-default);
  display: flex;
  margin-bottom: 112px;
}
@media (min-width: 2560.02px) {
  .fences-block__header {
    margin-bottom: 5.8333333333vw;
  }
}
@media (max-width: 1599.98px) {
  .fences-block__header {
    margin-bottom: 0;
  }
}
@media (max-width: 767.98px) {
  .fences-block__header {
    position: static;
    flex-direction: column;
    margin-bottom: 48px;
  }
}
.fences-block__image {
  display: none;
}
@media (max-width: 767.98px) {
  .fences-block__image {
    position: relative;
    display: block;
    width: 100%;
    height: max(550px, 80dvw);
  }
}
.fences-block__image_mb {
  position: absolute;
  bottom: 0;
  left: -200px;
}
.fences-block__module-digit {
  position: relative;
  z-index: 2;
  z-index: var(--z-index-two);
  display: flex;
  flex-direction: column;
  gap: 122px;
}
@media (min-width: 2560.02px) {
  .fences-block__module-digit {
    gap: 6.3541666667vw;
  }
}
@media (max-width: 1023.98px) {
  .fences-block__module-digit {
    gap: 72px;
  }
}
@media (max-width: 767.98px) {
  .fences-block__module-digit {
    gap: 48px;
    width: 100%;
  }
}
.fences-block__content {
  display: flex;
}
.fences-block__content-preview {
  position: relative;
  width: 67%;
}
@media (max-width: 767.98px) {
  .fences-block__content-preview {
    display: none;
  }
}
.fences-block__content-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  z-index: var(--z-index-under-content);
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  backface-visibility: hidden;
}
.safari-old .fences-block__content-image {
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
@media (max-width: 767.98px) {
  .fences-block__content-image {
    display: none;
  }
}
.fences-block__content-image-desc {
  position: relative;
  z-index: 1;
  z-index: var(--z-index-default);
  margin-top: 30px;
}
@media (max-width: 1023.98px) {
  .fences-block__content-image-desc {
    margin-top: 15px;
  }
}
.fences-block__content-image-desc::after {
  position: absolute;
  bottom: -188px;
  display: block;
  width: 1px;
  height: 173px;
  content: "";
  background-color: rgb(204 234 255 / 10%);
  background-color: var(--color-stroke-dark-opacity-10);
}
@media (min-width: 2560.02px) {
  .fences-block__content-image-text {
    font-size: 0.6770833333vw;
    line-height: 100%;
  }
}
.fences-block__content-image-text:nth-child(2n) {
  margin-top: 7px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media (min-width: 2560.02px) {
  .fences-block__content-image-text:nth-child(2n) {
    font-size: 0.6770833333vw;
  }
}
.fences-block-bottom {
  color: rgb(255 255 255);
  color: var(--color-white);
  background-color: rgb(9 14 17);
  background-color: var(--color-dark);
}
@media (max-width: 767.98px) {
  .fences-block-bottom__wrapper {
    padding-top: 0;
  }
}
.fences-block-bottom__header {
  margin-bottom: 312px;
  margin-left: 32px;
}
@media (min-width: 2560.02px) {
  .fences-block-bottom__header {
    margin-bottom: 16.25vw;
  }
}
@media (max-width: 767.98px) {
  .fences-block-bottom__header {
    display: none;
  }
}
.fences-block-bottom__header-title {
  margin-top: 32px;
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
@media (min-width: 2560.02px) {
  .fences-block-bottom__header-title {
    margin-top: 1.6666666667vw;
    font-size: 2.9166666667vw;
  }
}
@media (max-width: 1023.98px) {
  .fences-block-bottom__header-title {
    font-size: 42px;
  }
}
.fences-block-bottom__image_w-profile.card-preview__content-image {
  left: -20%;
  width: auto;
  height: auto;
}
@media (min-width: 768.02px) {
  .fences-block-bottom__image_w-profile.card-preview__content-image {
    left: -10%;
  }
}

@media (max-width: 767.98px) {
  .block__button-wrapper {
    position: relative;
  }
}

.bridges-block {
  position: relative;
  z-index: 1;
  z-index: var(--z-index-default);
  height: 100vh;
  overflow: hidden;
  background-color: rgb(237 241 242);
  background-color: var(--color-light);
}
@media (max-width: 767.98px) {
  .bridges-block {
    height: auto;
  }
}
.bridges-block__wrapper-consultation {
  display: none;
}
@media (max-width: 767.98px) {
  .bridges-block__wrapper-consultation {
    display: block;
  }
}
.bridges-block .bridges-block__card-consultation {
  position: absolute;
  right: 55%;
  bottom: 32px;
  z-index: 1;
  z-index: var(--z-index-default);
}
.bridges-block__image {
  display: none;
}
@media (max-width: 767.98px) {
  .bridges-block__image {
    position: relative;
    display: block;
    width: 100%;
  }
}
.bridges-block__image_mb {
  position: relative;
  left: -30px;
  width: 768px;
}
.bridges-block__content-wrapper {
  position: relative;
}
@media (max-width: 767.98px) {
  .bridges-block__content-wrapper {
    margin-bottom: 610px;
  }
}
.bridges-block-bottom {
  background-color: rgb(255 255 255);
  background-color: var(--color-white);
}
@media (max-width: 767.98px) {
  .bridges-block-bottom__wrapper {
    padding-top: 0;
  }
}
.bridges-block-bottom__header {
  margin-bottom: 268px;
  margin-left: 32px;
}
@media (max-width: 767.98px) {
  .bridges-block-bottom__header {
    display: none;
  }
}
.bridges-block-bottom__header-title {
  max-width: 300px;
  margin-top: 32px;
  font-size: 56px;
  font-weight: 500;
  line-height: 0.9em;
  letter-spacing: -0.02em;
}
@media (min-width: 2560.02px) {
  .bridges-block-bottom__header-title {
    max-width: 15.625vw;
    margin-top: 1.6666666667vw;
    font-size: 2.9166666667vw;
  }
}
@media (max-width: 1023.98px) {
  .bridges-block-bottom__header-title {
    font-size: 42px;
  }
}
.bridges-block-bottom__image_bridge-module.card-preview__content-image {
  bottom: -120%;
  left: -1500px;
  width: 3395px;
  height: auto;
}
.bridges-block__wrapper {
  min-height: 1080px;
  padding-bottom: 0;
  overflow: clip;
}
@media (min-width: 768px) {
  .bridges-block__wrapper {
    height: 100%;
  }
}
@media (max-width: 1023.98px) {
  .bridges-block__wrapper {
    min-height: 900px;
  }
}
@media (max-width: 1023.98px) {
  .bridges-block__wrapper {
    padding-top: 80px;
  }
}
@media (max-width: 767.98px) {
  .bridges-block__wrapper {
    min-height: 680px;
    padding-bottom: 24px;
  }
  .bridges-block__wrapper:not(.block_blur, :has(.block_blur)) {
    position: relative;
  }
}
.bridges-block__header {
  position: relative;
  z-index: 1;
  z-index: var(--z-index-default);
  display: flex;
  margin-bottom: 112px;
}
@media (max-width: 1023.98px) {
  .bridges-block__header {
    margin-bottom: 60px;
  }
}
@media (max-height: 839.98px) {
  .bridges-block__header {
    margin-bottom: 10vh;
  }
}
@media (max-width: 767.98px) {
  .bridges-block__header {
    position: static;
    margin-block: -100px 48px;
  }
}
.bridges-block__header-desc {
  max-width: 750px;
}
@media (min-width: 2560.02px) {
  .bridges-block__header-desc {
    max-width: 39.0625vw;
  }
}
.bridges-block__content-preview {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  z-index: var(--z-index-under-content);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767.98px) {
  .bridges-block__content-preview {
    display: none;
  }
}
.bridges-block__content-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  backface-visibility: hidden;
}
.safari-old .bridges-block__content-image {
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
@media (min-width: 768.02px) {
  .bridges-block__content-image {
    left: 0;
  }
}
.bridges-block__module-digit {
  display: flex;
  flex-wrap: wrap;
  gap: 96px 160px;
  max-width: 780px;
}
@media (max-height: 839.98px) {
  .bridges-block__module-digit {
    gap: 46px 120px;
  }
}
@media (max-width: 1023.98px) {
  .bridges-block__module-digit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 60px 80px;
    gap: 60px 80px;
  }
}
@media (max-width: 767.98px) {
  .bridges-block__module-digit {
    gap: 48px;
    max-width: 100%;
  }
}
.bridges-block__module-digit_lifespan.module-digit__desc {
  max-width: -moz-max-content;
  max-width: max-content;
}
@media (max-width: 1023.98px) {
  .bridges-block__module-digit_lifespan.module-digit__desc {
    max-width: 320px;
    text-wrap: balance;
  }
}
@media (max-width: 767.98px) {
  .bridges-block__module-digit_lifespan.module-digit__desc {
    max-width: 280px;
  }
}
.bridges-block__module-digit_assembly.module-digit__desc {
  max-width: 140px;
}
@media (min-width: 2560.02px) {
  .bridges-block__module-digit_assembly.module-digit__desc {
    max-width: 7.2916666667vw;
  }
}

.metal-supports-container {
  background-color: rgb(9 14 17);
  background-color: var(--color-dark);
}

.metal-supports-block {
  position: relative;
  z-index: 1;
  z-index: var(--z-index-default);
  height: 100vh;
  color: rgb(255 255 255);
  color: var(--color-white);
  background-color: rgb(14 20 25);
  background-color: var(--color-dark-third);
}
@media (max-width: 767.98px) {
  .metal-supports-block {
    height: auto;
  }
}
.metal-supports-block__wrapper-consultation {
  display: none;
}
@media (max-width: 767.98px) {
  .metal-supports-block__wrapper-consultation {
    display: block;
  }
}
.metal-supports-block .card-preview__card-consultation {
  position: absolute;
  right: 32%;
  bottom: 32px;
  z-index: 10;
  z-index: var(--z-index-ten);
}
@media (max-width: 1023.98px) {
  .metal-supports-block .card-preview__card-consultation {
    right: 28%;
  }
}
.metal-supports-block__image {
  display: none;
}
@media (max-width: 767.98px) {
  .metal-supports-block__image {
    display: block;
  }
}
@media (max-width: 767.98px) {
  .metal-supports-block__image_mb {
    position: absolute;
    top: 0;
    right: 70%;
    left: auto;
    display: block;
    width: auto;
    height: 705px;
    transform: translateX(50%);
  }
}
.metal-supports-block-bottom {
  color: rgb(255 255 255);
  color: var(--color-white);
  background-color: rgb(9 14 17);
  background-color: var(--color-dark);
}
@media (max-width: 767.98px) {
  .metal-supports-block-bottom__wrapper {
    position: relative;
    z-index: 2;
    z-index: var(--z-index-two);
    padding-top: 0;
    background-color: rgb(9 14 17);
    background-color: var(--color-dark);
  }
}
.metal-supports-block-bottom__header {
  width: 100%;
  margin-bottom: 257px;
  margin-left: 32px;
}
@media (max-width: 767.98px) {
  .metal-supports-block-bottom__header {
    display: none;
  }
}
.metal-supports-block-bottom__header-title {
  max-width: 500px;
  margin-top: 32px;
  margin-left: calc(50% + 16px);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
@media (min-width: 2560.02px) {
  .metal-supports-block-bottom__header-title {
    max-width: 26.0416666667vw;
    margin-top: 1.6666666667vw;
    font-size: 2.9166666667vw;
  }
}
@media (max-width: 1023.98px) {
  .metal-supports-block-bottom__header-title {
    margin-left: calc(50% - 36px);
    font-size: 42px;
  }
}
.metal-supports-block-bottom__image_frame.card-preview__content-image {
  bottom: 0;
  left: -400px;
  width: 1600px;
}
.metal-supports-block__wrapper {
  position: relative;
  min-height: 960px;
}
@media (min-width: 2560.02px) {
  .metal-supports-block__wrapper {
    min-height: 50vw;
  }
}
@media (max-height: 839.98px) {
  .metal-supports-block__wrapper {
    height: 100vh;
    min-height: auto;
  }
}
@media (max-width: 1023.98px) {
  .metal-supports-block__wrapper {
    height: auto;
    min-height: 660px;
  }
}
@media (max-width: 1023.98px) {
  .metal-supports-block__wrapper {
    padding-top: 80px;
  }
}
@media (max-width: 767.98px) {
  .metal-supports-block__wrapper {
    min-height: 700px;
    padding-top: 0;
  }
}
.metal-supports-block__header {
  position: relative;
  z-index: 1;
  z-index: var(--z-index-default);
  display: flex;
}
.metal-supports-block__header-wrapper {
  position: relative;
  z-index: 1;
  z-index: var(--z-index-default);
}
.metal-supports-block__header-title {
  max-width: 500px;
  margin-bottom: 320px;
}
@media (min-width: 2560.02px) {
  .metal-supports-block__header-title {
    max-width: 26.0416666667vw;
    margin-bottom: 16.6666666667vw;
  }
}
@media (max-height: 839.98px) {
  .metal-supports-block__header-title {
    margin-bottom: 240px;
  }
}
@media (max-width: 1599.98px) {
  .metal-supports-block__header-title {
    margin-bottom: 27vh;
  }
}
@media (max-width: 1023.98px) {
  .metal-supports-block__header-title {
    margin-bottom: 60px;
  }
}
@media (max-width: 767.98px) {
  .metal-supports-block__header-title {
    max-width: 300px;
    margin: 440px 0 16px;
  }
}
.metal-supports-block__header-text {
  position: absolute;
  max-width: 500px;
}
@media (min-width: 2560.02px) {
  .metal-supports-block__header-text {
    max-width: 26.0416666667vw;
  }
}
@media (max-width: 1023.98px) {
  .metal-supports-block__header-text {
    left: 100%;
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .metal-supports-block__header-text {
    position: relative;
    left: 0;
    width: auto;
    max-width: 270px;
    margin-bottom: 48px;
  }
}
.metal-supports-block__content {
  display: flex;
}
@media (max-width: 767.98px) {
  .metal-supports-block__content {
    flex-flow: column-reverse wrap;
    margin-bottom: 610px;
  }
}
.metal-supports-block__content-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  z-index: var(--z-index-under-content);
  width: 100vw;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}
@media (max-width: 767.98px) {
  .metal-supports-block__content-image {
    display: none;
  }
}
.metal-supports-block__content-image-desc {
  position: absolute;
  bottom: 100px;
  left: 33%;
  z-index: 1;
  z-index: var(--z-index-default);
}
@media (min-width: 2560.02px) {
  .metal-supports-block__content-image-desc {
    bottom: 5.2083333333vw;
  }
}
@media (max-width: 1599.98px) {
  .metal-supports-block__content-image-desc {
    bottom: 5vh;
    left: 33.7%;
  }
}
@media (max-width: 767.98px) {
  .metal-supports-block__content-image-desc {
    display: none;
  }
}
.metal-supports-block__content-image-desc::after {
  position: absolute;
  bottom: 3px;
  left: 133px;
  width: 630px;
  height: 1px;
  content: "";
  background-color: rgb(204 234 255 / 10%);
  background-color: var(--color-stroke-dark-opacity-10);
}
.metal-supports-block__content-image-text {
  max-width: 200px;
}
@media (min-width: 2560.02px) {
  .metal-supports-block__content-image-text {
    max-width: 10.4166666667vw;
    font-size: 0.6770833333vw;
    line-height: 100%;
  }
}
.metal-supports-block__content-image-text:nth-child(2n) {
  margin-top: 7px;
  font-size: 13px;
  font-weight: 700;
  color: rgb(255 255 255 / 40%);
  color: var(--color-white-opacity-40);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media (min-width: 2560.02px) {
  .metal-supports-block__content-image-text:nth-child(2n) {
    font-size: 0.6770833333vw;
  }
}
.metal-supports-block__content-info {
  position: relative;
  z-index: 1;
  z-index: var(--z-index-default);
}

.barriers-block {
  position: relative;
  z-index: 1;
  z-index: var(--z-index-default);
  height: 100vh;
  overflow: hidden;
  color: rgb(9 14 17);
  color: var(--color-dark);
  background-color: rgb(237 241 242);
  background-color: var(--color-light);
}
@media (min-width: 1920.02px) {
  .barriers-block {
    margin-bottom: 180px;
  }
}
@media (max-width: 1023.98px) {
  .barriers-block {
    height: auto;
  }
}
.barriers-block .barriers-block__card-consultation {
  position: absolute;
  right: 34%;
  bottom: -150px;
  z-index: 10;
  z-index: var(--z-index-ten);
}
@media (max-width: 1023.98px) {
  .barriers-block .barriers-block__card-consultation {
    right: 28%;
  }
}
.barriers-block__button {
  display: none;
}
@media (max-width: 767.98px) {
  .barriers-block__button {
    display: flex;
    justify-content: flex-end;
  }
}
.barriers-block-bottom {
  background-color: rgb(255 255 255);
  background-color: var(--color-white);
}
@media (max-width: 767.98px) {
  .barriers-block-bottom__wrapper {
    padding-top: 0;
  }
}
.barriers-block-bottom__header {
  width: 100%;
  margin-bottom: 257px;
  margin-left: 32px;
}
@media (min-width: 2560.02px) {
  .barriers-block-bottom__header {
    margin-bottom: 13.3854166667vw;
    margin-left: 1.6666666667vw;
  }
}
@media (max-width: 767.98px) {
  .barriers-block-bottom__header {
    display: none;
  }
}
.barriers-block-bottom__header-title {
  max-width: 500px;
  margin-top: 32px;
  margin-left: calc(50% + 16px);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
@media (min-width: 2560.02px) {
  .barriers-block-bottom__header-title {
    max-width: 26.0416666667vw;
    margin-top: 1.6666666667vw;
    font-size: 2.9166666667vw;
  }
}
@media (max-width: 1023.98px) {
  .barriers-block-bottom__header-title {
    margin-left: calc(50% - 36px);
    font-size: 42px;
  }
}
.barriers-block__wrapper {
  position: relative;
  min-height: 768px;
  padding-bottom: 0;
  overflow: hidden clip;
}
@media (min-width: 1920.02px) {
  .barriers-block__wrapper {
    min-height: 100vh;
  }
}
@media (max-width: 1023.98px) {
  .barriers-block__wrapper {
    min-height: 660px;
  }
}
@media (max-width: 1023.98px) {
  .barriers-block__wrapper {
    padding-top: 80px;
  }
}
@media (max-width: 767.98px) {
  .barriers-block__wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: auto;
    padding-top: 0;
    padding-bottom: 32px;
  }
  .barriers-block__wrapper:has(.block_blur) {
    min-height: 1000px;
  }
  .barriers-block__wrapper:has(.block_blur) .barriers-block__content-preview_mb {
    display: none;
  }
  .barriers-block__wrapper:has(.block_blur) .barriers-block__content-preview {
    display: block;
  }
}
.barriers-block__header {
  position: relative;
  z-index: 1;
  z-index: var(--z-index-default);
  display: flex;
  margin-bottom: 112px;
}
@media (min-width: 2560.02px) {
  .barriers-block__header {
    margin-bottom: 5.8333333333vw;
  }
}
@media (max-height: 839.98px) {
  .barriers-block__header {
    margin-bottom: 60px;
  }
}
@media (max-width: 1023.98px) {
  .barriers-block__header {
    margin-bottom: 60px;
  }
}
@media (max-width: 767.98px) {
  .barriers-block__header {
    position: static;
    margin-bottom: 48px;
  }
}
@media (max-width: 767.98px) {
  .barriers-block__header-wrapper {
    margin-top: 78px;
  }
}
.barriers-block__header-title {
  max-width: 550px;
}
@media (min-width: 2560.02px) {
  .barriers-block__header-title {
    max-width: 28.6458333333vw;
  }
}
@media (max-width: 767.98px) {
  .barriers-block__header-title {
    max-width: 300px;
  }
}
.barriers-block__header-text {
  max-width: 700px;
}
@media (min-width: 2560.02px) {
  .barriers-block__header-text {
    max-width: 36.4583333333vw;
  }
}
@media (max-width: 767.98px) {
  .barriers-block__header-text {
    max-width: 300px;
  }
}
.barriers-block__header-desc {
  max-width: 750px;
}
@media (min-width: 2560.02px) {
  .barriers-block__header-desc {
    max-width: 39.0625vw;
  }
}
.barriers-block__content {
  position: relative;
}
@media (max-width: 767.98px) {
  .barriers-block__content {
    margin-bottom: 440px;
  }
}
.barriers-block__content-preview {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  z-index: var(--z-index-under-content);
  width: 100%;
  height: 100%;
}
@media (max-width: 767.98px) {
  .barriers-block__content-preview {
    display: none;
  }
}
.barriers-block__content-preview_mb {
  display: none;
}
@media (max-width: 767.98px) {
  .barriers-block__content-preview_mb {
    display: block;
    margin-top: -100px;
    margin-bottom: 48px;
  }
}
.barriers-block__content-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  z-index: var(--z-index-under-content);
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}
@media (max-width: 767.98px) {
  .barriers-block__content-image {
    position: absolute;
    top: -465px;
    left: -32px;
    height: 453px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.barriers-block__content-image_mb {
  position: relative;
  left: -32px;
  width: calc(100dvw + 64px);
  height: max(453px, 60dvw);
  -o-object-fit: cover;
     object-fit: cover;
}
.barriers-block__module-digit {
  display: flex;
  flex-wrap: wrap;
  gap: 96px 160px;
  max-width: 780px;
}
@media (max-height: 839.98px) {
  .barriers-block__module-digit {
    gap: 26px 110px;
  }
}
@media (max-width: 1023.98px) {
  .barriers-block__module-digit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 60px;
    gap: 60px;
  }
}
@media (max-width: 767.98px) {
  .barriers-block__module-digit {
    display: flex;
    gap: 48px;
    max-width: 100%;
  }
}

.about-block {
  position: relative;
  background-color: rgb(253 204 8);
  background-color: var(--color-accent-yellow);
}
.about-block__wrapper {
  padding-block: 64px;
}
@media (max-width: 1023.98px) {
  .about-block__wrapper {
    padding-block: 32px 64px;
  }
}
.about-block__title {
  max-width: 1300px;
  margin-bottom: 128px;
  font-size: 72px;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: -0.04em;
}
@media (max-width: 1023.98px) {
  .about-block__title {
    margin-bottom: 32px;
    font-size: 28px;
  }
}
.about-block_icon {
  transition: color 0.3s ease-in-out;
  transition: color var(--transition);
}
.about-block_icon_arrow {
  width: 24px;
  height: 24px;
  color: rgb(9 14 17);
  color: var(--color-dark);
}
@media (max-width: 1023.98px) {
  .about-block_icon_arrow {
    width: 16px;
    height: 16px;
  }
}
.about-block__info {
  display: flex;
}
.about-block__info-header {
  max-width: 680px;
  margin-bottom: 100px;
  font-size: 32px;
  line-height: 1.2em;
  letter-spacing: -0.02em;
}
@media (max-width: 1023.98px) {
  .about-block__info-header {
    margin-bottom: 56px;
    font-size: 16px;
  }
}
.about-block__info-statistic {
  display: flex;
  flex-wrap: wrap;
  gap: 66px 175px;
  max-width: 1000px;
}
@media (max-width: 1023.98px) {
  .about-block__info-statistic {
    gap: 32px;
  }
}
.about-block__info-statistic-block {
  max-width: 278px;
  padding-top: 12px;
}
@media (max-width: 1023.98px) {
  .about-block__info-statistic-block {
    width: 100%;
    max-width: 100%;
    border-top: 1px solid rgb(214 174 10);
    border-top: 1px solid var(--color-second-yellow);
  }
}
.about-block__info-statistic-text_s {
  max-width: 200px;
}
.about-block__info-statistic-text_xs {
  max-width: 150px;
}
.about-block__info-statistic-title {
  margin-top: 4px;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.3em;
  letter-spacing: -0.02em;
}
@media (max-width: 1023.98px) {
  .about-block__company {
    display: none;
  }
}
.about-block__company-text {
  display: block;
  margin-bottom: 169px;
}
.about-block__company-text_mb {
  display: none;
}
@media (max-width: 1023.98px) {
  .about-block__company-text_mb {
    display: block;
    margin-bottom: 40px;
  }
}
.about-block__company-button {
  width: 197px;
}
.about-block__company-button-wrapper {
  display: none;
}
@media (max-width: 1023.98px) {
  .about-block__company-button-wrapper {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-bottom: 88px;
  }
}
.about-block__company-button_mb {
  display: block;
  width: 154px;
}
.about-block__competencies {
  margin-top: 100px;
}
@media (max-width: 1023.98px) {
  .about-block__competencies {
    margin-top: 64px;
  }
}
.about-block__competencies-text {
  margin-bottom: 40px;
}
@media (max-width: 1023.98px) {
  .about-block__competencies-text {
    margin-bottom: 24px;
  }
}
.about-block__competencies-list-item {
  display: block;
  position: relative;
  border-top: 1px solid rgb(214 174 10);
  border-top: 1px solid var(--color-second-yellow);
  transition: opacity 0.3s ease-in-out;
  transition: opacity var(--transition);
}
@media (max-width: 1023.98px) {
  .about-block__competencies-list-item {
    width: calc(100% + 48px);
    padding-inline: 24px;
    margin-left: -24px;
  }
}
.about-block__competencies-list-item:last-child {
  border-bottom: 1px solid rgb(214 174 10);
  border-bottom: 1px solid var(--color-second-yellow);
}
@media (hover: hover) and (pointer: fine){
.about-block__competencies-list-item:hover .about-block__competencies-list-item-image {
  visibility: visible;
  height: 270px;
}
}
@media (hover: hover) and (pointer: fine){
.about-block__competencies-list-item:hover .about-block__competencies-list-item-title {
  color: rgb(9 14 17);
  color: var(--color-dark);
}
}
.about-block__competencies-list-item-title {
  font-size: 64px;
  font-weight: 500;
  line-height: 0.9em;
  color: rgb(214 174 10);
  color: var(--color-second-yellow);
  letter-spacing: -0.01em;
  transition: color 0.3s ease-in-out;
  transition: color var(--transition);
}
@media (max-width: 1023.98px) {
  .about-block__competencies-list-item-title {
    font-size: 32px;
    color: rgb(9 14 17);
    color: var(--color-dark);
  }
}
.about-block__competencies-list-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 24px 82px;
}
@media (max-width: 1023.98px) {
  .about-block__competencies-list-item-header {
    padding-block: 24px;
  }
}
.about-block__competencies-list-item-image {
  position: absolute;
  top: 50%;
  left: 70%;
  z-index: 1;
  z-index: var(--z-index-default);
  visibility: hidden;
  width: 360px;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  transform: translate(-70%, -50%);
  transition: height 0.3s ease-in-out;
  transition: height var(--transition);
}
.about-block__competencies-desc {
  max-width: 450px;
  margin-top: 24px;
}
@media (max-width: 1023.98px) {
  .about-block__competencies-desc {
    font-size: 14px;
  }
}

.footer {
  padding-top: 100px;
  color: rgb(255 255 255);
  color: var(--color-white);
  background-color: rgb(9 14 17);
  background-color: var(--color-dark);
}
@media (max-width: 1023.98px) {
  .footer {
    padding-top: 56px;
  }
}
.footer__wrapper {
  display: flex;
  border-bottom: 1px solid rgb(204 234 255 / 10%);
  border-bottom: 1px solid var(--color-stroke-dark-opacity-10);
}
@media (max-width: 1023.98px) {
  .footer__wrapper {
    flex-direction: column;
  }
}
.footer__icon_pik {
  width: 370px;
  height: 133px;
}
@media (max-width: 1023.98px) {
  .footer__icon_pik {
    width: 260px;
    height: 95px;
  }
}
.footer__desc {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 0 32px 32px;
}
@media (max-width: 1023.98px) {
  .footer__desc {
    width: 100%;
    padding: 0 24px 24px;
  }
}
.footer__desc-info {
  display: flex;
  flex: 0 1;
  justify-content: space-between;
}
.footer__desc-info-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: end;
}
@media (max-width: 1023.98px) {
  .footer__desc-info-wrapper {
    justify-content: start;
  }
}
@media (max-width: 1023.98px) {
  .footer__desc-info {
    flex: 1 1;
  }
}
.footer__desc-title {
  margin-bottom: 8px;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2em;
  letter-spacing: 0.025em;
}
@media (max-width: 1023.98px) {
  .footer__desc-title {
    margin-block: 8px 0;
    font-size: 20px;
  }
}
.footer__desc-company {
  margin-bottom: 32px;
}
@media (max-width: 1023.98px) {
  .footer__desc-company {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 0;
  }
}
.footer__desc-company--logo {
  margin-top: 32px;
  margin-bottom: 32px;
}
.footer__desc-icons {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
@media (max-width: 1023.98px) {
  .footer__desc-icons {
    display: none;
  }
}
.footer__desc-icons_mb {
  display: none;
}
@media (max-width: 1023.98px) {
  .footer__desc-icons_mb {
    display: flex;
    gap: 8px;
    padding-block: 40px;
  }
}
.footer__desc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: rgb(255 255 255 / 9%);
  background-color: var(--color-white-opacity-09);
  border-radius: 50%;
}
@media (max-width: 1023.98px) {
  .footer__desc-icon {
    width: 48px;
    height: 48px;
  }
}
.footer__desc-icon_viber {
  width: 26px;
  height: 27px;
}
@media (max-width: 1023.98px) {
  .footer__desc-icon_viber {
    width: 19px;
    height: 20px;
  }
}
.footer__desc-icon_tg {
  width: 25px;
  height: 21px;
  margin-top: 2px;
  margin-right: 4px;
}
@media (max-width: 1023.98px) {
  .footer__desc-icon_tg {
    width: 18px;
    height: 15px;
    margin-right: 2px;
  }
}
.footer__desc-icon_rutube {
  width: 28px;
  height: 25px;
  margin-left: 4px;
}
@media (max-width: 1023.98px) {
  .footer__desc-icon_rutube {
    width: 21px;
    height: 19px;
    margin-bottom: 2px;
    margin-left: 2px;
  }
}
.footer__desc-icon_vk {
  width: 30px;
  height: 19px;
}
@media (max-width: 1023.98px) {
  .footer__desc-icon_vk {
    width: 22px;
    height: 14px;
  }
}
.footer__desc-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.1em;
  color: rgb(255 255 255 / 40%);
  color: var(--color-white-opacity-40);
}
.footer__desc-button {
  width: 197px;
  color: rgb(9 14 17);
  color: var(--color-dark);
}
@media (max-width: 1023.98px) {
  .footer__desc-button {
    width: 156px;
  }
}
.footer__info {
  width: 50%;
}
@media (max-width: 1023.98px) {
  .footer__info {
    width: 100%;
  }
}
.footer__info-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 220px;
  padding: 32px;
  border: 1px solid rgb(204 234 255 / 10%);
  border: 1px solid var(--color-stroke-dark-opacity-10);
  border-right: 0;
  border-bottom: 0;
}
.footer__info-item--icons {
  flex-direction: row;
  height: auto;
}
@media (max-width: 1023.98px) {
  .footer__info-item {
    height: auto;
    padding: 24px;
  }
}
.footer__info-item-icon {
  width: 24px;
  height: 24px;
}
@media (max-width: 1023.98px) {
  .footer__info-item-icon {
    width: 14px;
    height: 14px;
  }
}
.footer__info-item-header {
  display: flex;
  flex: 1 1;
  justify-content: space-between;
}
.footer__info-item-header-tag {
  color: rgb(255 255 255 / 40%);
  color: var(--color-white-opacity-40);
}
@media (max-width: 1023.98px) {
  .footer__info-item-header-tag {
    font-size: 11px;
  }
}
.footer__info-item-link {
  flex: 0 1;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3em;
  letter-spacing: -0.02em;
}
@media (max-width: 1023.98px) {
  .footer__info-item-link {
    font-size: 18px;
  }
}
.footer__logo {
  flex: 1 1;
}
.footer__logo--ennera {
  flex: unset;
  margin-top: auto;
}
.footer__logo--ennera, .footer__logo--ennera img {
  max-width: 100%;
  margin-right: 24px;
}
.footer__policy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
}
@media (max-width: 1023.98px) {
  .footer__policy {
    align-items: flex-end;
    padding: 24px;
  }
}
.footer__policy-links {
  display: flex;
  gap: 24px;
}
@media (max-width: 1023.98px) {
  .footer__policy-links {
    flex-direction: column;
    gap: 8px;
  }
}
.footer__policy-link {
  font-size: 14px;
  color: rgb(255 255 255 / 35%);
  color: var(--color-white-opacity-35);
}
.footer__policy-icon {
  width: 64px;
  height: 24px;
}
.footer__policy-logo {
  display: flex;
  gap: 16px;
}
.footer__policy-img {
  width: 76px;
}

.documents__container {
  padding: 230px 32px 0;
}
@media (max-width: 767.98px) {
  .documents__container {
    padding: 161px 24px 0;
  }
}
.documents__body {
  display: flex;
  flex-direction: column;
  gap: 112px;
  margin-top: 48px;
  margin-bottom: 120px;
}
@media (max-width: 767.98px) {
  .documents__body {
    gap: 40px;
    margin: 24px 0 0;
  }
}
.documents__group {
  display: flex;
}
@media (max-width: 767.98px) {
  .documents__group {
    flex-direction: column;
  }
}

.group-documents:not(:first-child) {
  border-top: 1px solid rgba(0, 30, 51, 0.2);
}
@media (max-width: 767.98px) {
  .group-documents:not(:first-child) {
    border-top: none;
  }
}
.group-documents__title {
  flex: 0 1 421px;
  padding: 24px 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 1023.98px) {
  .group-documents__title {
    flex: 0 1 220px;
  }
}
@media (max-width: 767.98px) {
  .group-documents__title {
    flex: 0 1 100%;
    padding: 28px 0 24px;
    font-size: 24px;
  }
}
.group-documents__list {
  flex: 1;
}
.group-documents__item:not(:first-child) {
  border-top: 1px solid rgba(0, 30, 51, 0.2);
}
.group-documents__link {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px 0;
}
@media (max-width: 767.98px) {
  .group-documents__link {
    gap: 8px;
    padding: 24px 0;
  }
}
.group-documents__link-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 767.98px) {
  .group-documents__link-title {
    font-size: 16px;
    line-height: 110%;
  }
}
.group-documents__link-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
}
@media (max-width: 767.98px) {
  .group-documents__link-text {
    font-size: 14px;
    color: rgb(13 16 21 / 45%);
    color: var(--color-text-opacity-45);
  }
}

.catalog {
  background-color: rgb(9 14 17);
  background-color: var(--color-dark);
}
.catalog__header {
  height: 690px;
  background: url("./catalog.webp") no-repeat center/cover;
}
@media (max-width: 767.98px) {
  .catalog__header {
    height: 598px;
    background: url("./catalog-mobile.webp") no-repeat 0 184px/contain;
  }
}
.catalog__container {
  padding: 0 32px;
  margin-bottom: 120px;
}
@media (max-width: 767.98px) {
  .catalog__container {
    padding: 0 24px;
    margin-bottom: 64px;
  }
}
.catalog__body {
  display: flex;
  flex-direction: column;
  gap: 112px;
}
@media (max-width: 767.98px) {
  .catalog__body {
    gap: 64px;
  }
}
.catalog__group {
  display: flex;
}
@media (max-width: 767.98px) {
  .catalog__group {
    flex-direction: column;
  }
}

.header-catalog {
  position: relative;
  margin-bottom: 150px;
}
@media (max-width: 767.98px) {
  .header-catalog {
    margin-bottom: 92px;
  }
}
.header-catalog::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(360deg, rgb(9, 14, 17), rgba(9, 14, 17, 0) 100%);
}
.header-catalog__title {
  position: absolute;
  right: 18%;
  bottom: -80px;
  width: 100%;
  max-width: 650px;
  color: rgb(255 255 255);
  color: var(--color-white);
  letter-spacing: 0.02em;
}
@media (max-width: 767.98px) {
  .header-catalog__title {
    top: 104px;
    left: 24px;
  }
}
.header-catalog__title-text {
  margin-bottom: 32px;
  font-size: 112px;
  font-weight: 500;
  line-height: 90%;
  letter-spacing: 0.02em;
}
@media (max-width: 1023.98px) {
  .header-catalog__title-text {
    font-size: 80px;
  }
}
@media (max-width: 767.98px) {
  .header-catalog__title-text {
    margin-bottom: 24px;
    font-size: 48px;
    line-height: 100%;
  }
}
.header-catalog__title-description {
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 1023.98px) {
  .header-catalog__title-description {
    font-size: 16px;
    line-height: 130%;
    max-width: calc(100% - 48px);
  }
}

.group-catalog {
  border-top: 1px solid rgb(204 234 255 / 10%);
  border-top: 1px solid var(--color-stroke-dark-opacity-10);
}
@media (max-width: 767.98px) {
  .group-catalog {
    border-top: none;
  }
}
.group-catalog__title {
  flex: 0 1 421px;
  padding: 24px 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 120%;
  color: rgb(253 204 8);
  color: var(--color-accent-yellow);
  letter-spacing: 0.02em;
}
@media (max-width: 1023.98px) {
  .group-catalog__title {
    flex: 0 1 220px;
  }
}
@media (max-width: 767.98px) {
  .group-catalog__title {
    flex: 0 1 100%;
    padding: 28px 0 24px;
    font-size: 24px;
  }
}
.group-catalog__list {
  flex: 1 1 auto;
}
.group-catalog__item {
  position: relative;
}
.group-catalog__item:not(:first-child) {
  border-top: 1px solid rgb(204 234 255 / 10%);
  border-top: 1px solid var(--color-stroke-dark-opacity-10);
}
@media (hover: hover) and (pointer: fine){
.group-catalog__item:hover .group-catalog__item-image-wrapper {
  visibility: visible;
  height: 200px;
}
}
@media (max-width: 767.98px) {
  .group-catalog__item {
    border-top: 1px solid rgb(204 234 255 / 10%);
    border-top: 1px solid var(--color-stroke-dark-opacity-10);
  }
}
.group-catalog__item-image-wrapper {
  position: absolute;
  top: 50%;
  left: 70%;
  z-index: 1;
  z-index: var(--z-index-default);
  visibility: hidden;
  width: 300px;
  height: 0;
  background-color: rgb(12 19 24);
  background-color: var(--color-dark-secondary);
  border-radius: 8px;
  transform: translate(-70%, -50%);
  transition: height 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: height var(--transition), visibility var(--transition);
}
.group-catalog__item-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.group-catalog__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  color: rgb(255 255 255);
  color: var(--color-white);
}
@media (hover: hover) and (pointer: fine){
.group-catalog__link:hover .group-catalog__icon {
  color: rgb(255 255 255);
  color: var(--color-white);
}
}
@media (max-width: 767.98px) {
  .group-catalog__link {
    gap: 12px;
    padding: 29px 0;
  }
}
.group-catalog__link-title {
  font-size: 32px;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 767.98px) {
  .group-catalog__link-title {
    font-size: 16px;
    line-height: 110%;
  }
}
.group-catalog__icon {
  width: 24px;
  height: 24px;
  color: rgb(204 234 255 / 10%);
  color: var(--color-stroke-dark-opacity-10);
  transition: color 0.3s ease;
}
@media (max-width: 767.98px) {
  .group-catalog__icon {
    color: rgb(255 255 255);
    color: var(--color-white);
    width: 16px;
    height: 16px;
  }
}

.achievements-catalog {
  padding: 80px 32px;
  background-color: rgb(253 204 8);
  background-color: var(--color-accent-yellow);
}
@media (max-width: 767.98px) {
  .achievements-catalog {
    padding: 32px 24px;
  }
}
.achievements-catalog__header {
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  .achievements-catalog__header {
    margin-bottom: 24px;
  }
}
.achievements-catalog__title {
  margin-bottom: 64px;
  font-size: 64px;
  font-weight: 500;
  line-height: 90%;
}
@media (max-width: 1023.98px) {
  .achievements-catalog__title {
    font-size: 48px;
  }
}
@media (max-width: 767.98px) {
  .achievements-catalog__title {
    margin-bottom: 16px;
    font-size: 28px;
    line-height: 100%;
  }
}
.achievements-catalog__description-body {
  display: flex;
  gap: 150px;
  justify-content: flex-end;
}
@media (max-width: 1023.98px) {
  .achievements-catalog__description-body {
    gap: 40px;
  }
}
@media (max-width: 767.98px) {
  .achievements-catalog__description-body {
    flex-direction: column;
    gap: 56px;
  }
}
.achievements-catalog__description {
  max-width: 530px;
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 1023.98px) {
  .achievements-catalog__description {
    max-width: 300px;
    font-size: 16px;
    line-height: 130%;
  }
}
@media (max-width: 767.98px) {
  .achievements-catalog__description {
    max-width: 100%;
  }
}
@media (max-width: 767.98px) {
  .achievements-catalog__button-wrapper {
    align-self: flex-end;
    width: 154px;
    height: 180px;
  }
}

.award-achievements-catalog {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  padding: 32px;
  margin: 0 -32px;
  border-top: 1px solid rgb(214 174 10);
  border-top: 1px solid var(--color-second-yellow);
}
.award-achievements-catalog:not(:first-child) {
  justify-content: flex-end;
  padding-right: 283px;
}
@media (max-width: 1439.98px) {
  .award-achievements-catalog:not(:first-child) {
    padding-right: 230px;
  }
}
@media (max-width: 1023.98px) {
  .award-achievements-catalog:not(:first-child) {
    padding-right: 100px;
  }
}
@media (max-width: 767.98px) {
  .award-achievements-catalog:not(:first-child) {
    justify-content: flex-start;
    padding-right: 0;
  }
}
@media (max-width: 767.98px) {
  .award-achievements-catalog {
    flex-direction: column;
    gap: 80px;
    align-items: flex-start;
    padding: 24px;
    margin: 0 -24px;
  }
}
.award-achievements-catalog__value {
  font-size: 112px;
  font-weight: 500;
  line-height: 90%;
}
@media (max-width: 1023.98px) {
  .award-achievements-catalog__value {
    font-size: 60px;
    line-height: 100%;
  }
}
@media (max-width: 767.98px) {
  .award-achievements-catalog__value {
    font-size: 48px;
  }
}
.award-achievements-catalog__description {
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  white-space: pre-wrap;
}
@media (max-width: 1023.98px) {
  .award-achievements-catalog__description {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .award-achievements-catalog__description {
    font-size: 16px;
    line-height: 130%;
  }
}

.barrier-product {
  color: rgb(255 255 255);
  color: var(--color-white);
}
.barrier-product__header {
  background-color: rgb(12 19 24);
  background-color: var(--color-dark-secondary);
  border-bottom: 1px solid rgb(204 234 255 / 10%);
  border-bottom: 1px solid var(--color-stroke-dark-opacity-10);
}
.barrier-product__title {
  font-size: 64px;
  font-weight: 500;
  line-height: 0.9em;
  letter-spacing: 0.01em;
}
@media (max-width: 1023.98px) {
  .barrier-product__title {
    font-size: 28px;
    line-height: 1em;
    letter-spacing: -0.02em;
  }
}
.barrier-product__type-header {
  margin: 0 0 80px 33%;
}
@media (max-width: 1023.98px) {
  .barrier-product__type-header {
    margin: 32px 24px;
  }
}
.barrier-product__type-title {
  max-width: 665px;
}
@media (max-width: 1023.98px) {
  .barrier-product__foundation {
    overflow: hidden;
  }
}
.barrier-product__foundation-title {
  max-width: 1100px;
  margin-bottom: 64px;
}
@media (max-width: 1023.98px) {
  .barrier-product__foundation-title {
    margin-bottom: 16px;
  }
}
@media (max-width: 474.98px) {
  .barrier-product__foundation-title {
    max-width: 300px;
  }
}
.barrier-product__foundation-desc {
  max-width: 454px;
  margin: 0 0 32px 680px;
  font-size: 24px;
  line-height: 1.2em;
}
@media (max-width: 1023.98px) {
  .barrier-product__foundation-desc {
    margin: 0 0 32px;
    font-size: 16px;
  }
}
.barrier-product__foundation-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 1023.98px) {
  .barrier-product__foundation-cards {
    grid-template-columns: repeat(3, minmax(304px, 1fr));
    overflow-x: scroll;
    scrollbar-width: 0;
  }
  .barrier-product__foundation-cards::-webkit-scrollbar {
    display: none;
  }
}
.barrier-product__foundation-card {
  position: relative;
  height: 600px;
  padding: 32px;
  margin-right: -1px;
  overflow: hidden;
  background-color: rgb(12 19 24);
  background-color: var(--color-dark-secondary);
  border: 1px solid rgb(204 234 255 / 10%);
  border: 1px solid var(--color-stroke-dark-opacity-10);
}
@media (max-width: 1023.98px) {
  .barrier-product__foundation-card {
    height: 406px;
    padding: 24px;
  }
}
.barrier-product__foundation-card-blur {
  position: absolute;
  bottom: -190px;
  left: -130px;
  width: 402px;
  height: 407px;
  overflow: hidden;
  background: radial-gradient(140.17% 140.17% at 64.15% 0%, #902402 0%, #793023 26.76%, #ffde00 64.07%);
  border-radius: 50%;
  filter: blur(50px);
  rotate: 15deg;
}
@media (max-width: 1023.98px) {
  .barrier-product__foundation-card-blur {
    width: 320px;
    height: 320px;
  }
}
.barrier-product__foundation-card:nth-child(2) .barrier-product__foundation-card-blur {
  width: 200px;
  height: 200px;
  filter: blur(100px);
  rotate: -180deg;
}
@media (max-width: 1023.98px) {
  .barrier-product__foundation-card:nth-child(2) .barrier-product__foundation-card-blur {
    display: none;
  }
}
.barrier-product__foundation-card:nth-child(3) .barrier-product__foundation-card-blur {
  display: none;
}
.barrier-product__foundation-card:first-child {
  border-left: none;
}
.barrier-product__foundation-card:first-child .barrier-product__foundation-card-title {
  max-width: 270px;
}
.barrier-product__foundation-card-image {
  position: absolute;
  top: -314px;
  right: -170px;
  width: 591px;
  height: 844px;
}
@media (max-width: 1023.98px) {
  .barrier-product__foundation-card-image {
    top: -205px;
    left: 17px;
    width: 390px;
    height: 557px;
  }
}
.barrier-product__foundation-card-tag {
  position: absolute;
  top: 32px;
  left: 32px;
}
@media (max-width: 1023.98px) {
  .barrier-product__foundation-card-tag {
    top: 24px;
    left: 24px;
    font-size: 16px;
  }
}
.barrier-product__foundation-card-title {
  position: absolute;
  bottom: 32px;
  max-width: 200px;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2em;
  letter-spacing: -0.02em;
}
@media (max-width: 1023.98px) {
  .barrier-product__foundation-card-title {
    font-size: 24px;
    letter-spacing: normal;
  }
}
.barrier-product__services-header {
  margin-bottom: 128px;
}
@media (max-width: 1023.98px) {
  .barrier-product__services-header {
    margin-block: 96px 32px;
  }
}
.barrier-product__services-title {
  max-width: 800px;
}
.barrier-product__services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1023.98px) {
  .barrier-product__services-cards {
    grid-template-columns: 1fr;
  }
}

.contacts {
  color: rgb(13 16 21);
  color: var(--color-text);
}
.contacts .contacts__feedback-form-inputs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 16px;
  gap: 16px;
}
.contacts .contacts__feedback-form-inputs > :first-child {
  grid-column: 1/-1;
}
.contacts__title-container {
  padding: 55px 32px 0;
}
@media (max-width: 1023.98px) {
  .contacts__title-container {
    padding: 100px 32px 0;
  }
}
@media (max-width: 767.98px) {
  .contacts__title-container {
    padding: 100px 24px 0;
  }
}
.contacts__factoids {
  display: flex;
  gap: 50px;
  padding: 50px 32px;
  margin-bottom: 72px;
}
.contacts__factoids-item__title {
  margin-bottom: 8px;
}
.contacts__factoids-item__title-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  vertical-align: middle;
  letter-spacing: 0;
}
@media (max-width: 767.98px) {
  .contacts__factoids-item__title-text {
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  .contacts__factoids-item__title {
    font-size: 14px;
    margin-bottom: 4px;
  }
}
.contacts__factoids-item__value-text {
  font-size: 32px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: 0.02em;
}
@media (max-width: 767.98px) {
  .contacts__factoids-item__value-text {
    font-size: 28px;
  }
}
@media (max-width: 767.98px) {
  .contacts__factoids-item__value-text {
    font-size: 20px;
  }
}
@media (max-width: 767.98px) {
  .contacts__factoids {
    flex-direction: column;
    gap: 20px;
    padding: 0 24px 36px;
    margin-top: 98px;
    margin-bottom: 0;
  }
}
.contacts__content {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: 1fr 2fr;
  border-top: 1px solid rgb(0 30 51 / 20%);
  border-top: 1px solid var(--color-stroke-light-opacity-20);
}
@media (max-width: 767.98px) {
  .contacts__content {
    position: relative;
    display: block;
  }
  .contacts__content--details-open {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 90;
    z-index: var(--z-index-header);
    width: 100%;
    overflow: hidden;
  }
}
.contacts__content * {
  box-sizing: border-box;
}
.contacts__sidebar {
  grid-row: 1/2;
  grid-column: 1;
  margin-right: -1px;
  border-right: 1px solid rgb(0 30 51 / 20%);
  border-right: 1px solid var(--color-stroke-light-opacity-20);
}
@media (max-width: 767.98px) {
  .contacts__sidebar {
    position: relative;
    z-index: 2;
    z-index: var(--z-index-two);
    width: 100%;
    background: rgb(255 255 255);
    background: var(--color-white);
    border-right: none;
    transform: translateX(0);
    transition: transform 0.3s ease;
  }
  .contacts__sidebar--hidden {
    transform: translateX(-100%);
  }
}
.contacts__sidebar-item {
  padding: 25px 22px 25px 32px;
  cursor: pointer;
  border-bottom: 1px solid rgb(0 30 51 / 20%);
  border-bottom: 1px solid var(--color-stroke-light-opacity-20);
  transition: background-color 0.3s ease;
}
.contacts__sidebar-item__title {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.contacts__sidebar-item__title-text {
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.02em;
}
@media (max-width: 1023.98px) {
  .contacts__sidebar-item__title-text {
    font-size: 20px;
  }
}
@media (max-width: 767.98px) {
  .contacts__sidebar-item__title-text {
    font-size: 16px;
    line-height: 110%;
  }
}
.contacts__sidebar-item-icon {
  width: 20px;
  height: 20px;
  color: rgb(9 14 17);
  color: var(--color-dark);
  opacity: 0;
  fill: #333;
  transition: opacity 0.3s ease;
}
@media (max-width: 767.98px) {
  .contacts__sidebar-item-icon {
    width: 16px;
    height: 16px;
    opacity: 1;
  }
}
@media (max-width: 767.98px) {
  .contacts__sidebar-item-icon {
    width: 14px;
    height: 14px;
  }
}
@media (hover: hover) and (pointer: fine){
.contacts__sidebar-item:hover {
  background-color: rgb(237 241 242);
  background-color: var(--color-light);
}
}
@media (hover: hover) and (pointer: fine){
.contacts__sidebar-item:hover .contacts__sidebar-item-icon {
  opacity: 1;
}
}
.contacts__sidebar-item--active {
  background-color: rgb(237 241 242);
  background-color: var(--color-light);
}
.contacts__sidebar-item--active .contacts__sidebar-item-icon {
  opacity: 1;
}
@media (max-width: 767.98px) {
  .contacts__sidebar-item {
    padding: 27px 23px 30px 24px;
    border-bottom: 1px solid rgb(0 30 51 / 20%);
    border-bottom: 1px solid var(--color-stroke-light-opacity-20);
  }
  @media (hover: hover) and (pointer: fine){
  .contacts__sidebar-item:hover {
    background-color: transparent;
  }
  }
  .contacts__sidebar-item--active {
    background-color: transparent;
  }
}
.contacts__form-caption {
  grid-row: 3;
  grid-column: 1;
  padding-left: 32px;
}
@media (max-width: 767.98px) {
  .contacts__form-caption {
    display: none;
  }
}
.contacts__form-caption-text {
  width: 60%;
  margin-top: 80px;
  font-size: 16px;
  line-height: 110%;
  color: var(--color-text-secondary);
}
.contacts__feedback-form {
  grid-row: 3;
  grid-column: 2;
  padding: 0 32px;
}
@media (max-width: 767.98px) {
  .contacts__feedback-form {
    display: none;
  }
}
.contacts__back-button {
  display: none;
}
@media (max-width: 767.98px) {
  .contacts__back-button {
    z-index: 1;
    z-index: var(--z-index-default);
    display: flex;
    gap: 8px;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
    padding: 27px 16px;
    margin-bottom: 5px;
    font-size: 16px;
    color: rgb(13 16 21);
    color: var(--color-text);
    cursor: pointer;
    background: rgb(255 255 255);
    background: var(--color-white);
    letter-spacing: 0.04em;
  }
  .contacts__back-button-svg-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgb(0 30 51 / 20%);
    border: 1px solid var(--color-stroke-light-opacity-20);
    border-radius: 50%;
  }
  .contacts__back-button svg {
    width: 20px;
    height: 20px;
    transform: rotate(90deg);
  }
}

@media (max-width: 767.98px) {
  .details {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    z-index: var(--z-index-header);
    width: 100%;
    padding-top: 70px;
    overflow-y: auto;
    background: rgb(255 255 255);
    background: var(--color-white);
    transform: translateX(100%);
  }
  .details--visible {
    transform: translateX(0);
  }
  .details .details__item {
    min-height: 101%;
    padding-bottom: 40px;
  }
}

.map-container {
  display: flex;
  grid-row: 2;
  grid-column: 2;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 480px;
  background-color: rgba(255, 0, 0, 0.1);
  border-top: 1px solid rgb(0 30 51 / 20%);
  border-top: 1px solid var(--color-stroke-light-opacity-20);
}
@media (max-width: 767.98px) {
  .map-container {
    display: none;
  }
}

@media (max-width: 1023.98px) {
  .header {
    display: none;
  }
}

.footer--contacts {
  display: none;
}
@media (max-width: 767.98px) {
  .footer--contacts {
    display: block;
    width: 100%;
    margin-top: auto;
  }
}

.contacts-accordion {
  width: 100%;
  margin: 0 auto;
  color: rgb(13 16 21);
  color: var(--color-text);
}
.contacts-accordion-header {
  display: none;
}
.contacts-accordion-header__title {
  font-size: 32px;
  font-weight: 500;
  line-height: 110%;
  color: rgb(13 16 21);
  color: var(--color-text);
}
@media (max-width: 767.98px) {
  .contacts-accordion-header__title {
    letter-spacing: 0.02em;
  }
}
@media (max-width: 767.98px) {
  .contacts-accordion-header {
    display: block;
    padding: 32px 20px 24px 24px;
    margin-top: 75px;
    margin-bottom: 8px;
  }
}
.contacts-accordion__section--expanded .contacts-accordion__icon--plus {
  display: none;
}
.contacts-accordion__section--expanded .contacts-accordion__icon--minus {
  display: block;
}
.contacts-accordion__section--expanded .contacts-accordion__content {
  visibility: visible;
}
.contacts-accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px 40px 32px;
  font-size: 32px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -2%;
  cursor: pointer;
  border-bottom: 1px solid rgb(0 30 51 / 20%);
  border-bottom: 1px solid var(--color-stroke-light-opacity-20);
}
@media (max-width: 767.98px) {
  .contacts-accordion__header {
    padding: 16px 18px 16px 24px;
  }
}
.contacts-accordion__title {
  margin: 0;
  font-size: 32px;
  font-weight: 500;
  line-height: 110%;
  color: rgb(13 16 21);
  color: var(--color-text);
  letter-spacing: 0.02em;
}
@media (max-width: 767.98px) {
  .contacts-accordion__title {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.02em;
  }
}
.contacts-accordion__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.contacts-accordion__icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
@media (max-width: 767.98px) {
  .contacts-accordion__icon {
    width: 16px;
    height: 16px;
  }
}
.contacts-accordion__icon--minus {
  display: none;
}
.contacts-accordion__content {
  visibility: hidden;
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease;
}
.contacts-accordion__list {
  margin: 0;
  list-style: none;
}
.contacts-accordion__item {
  padding: 0;
  cursor: pointer;
  border-bottom: 1px solid rgb(0 30 51 / 20%);
  border-bottom: 1px solid var(--color-stroke-light-opacity-20);
  transition: background-color 0.2s ease;
}
@media (hover: hover) and (pointer: fine){
.contacts-accordion__item:hover {
  background-color: rgb(237 241 242);
  background-color: var(--color-light);
}
}
@media (hover: hover) and (pointer: fine){
.contacts-accordion__item:hover .contacts-accordion__arrow svg {
  opacity: 1;
}
}
.contacts-accordion__person {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 28px 20px 27px 32px;
}
@media (max-width: 767.98px) {
  .contacts-accordion__person {
    padding: 20px 20px 27px 25px;
  }
}
.contacts-accordion__person-info {
  display: flex;
  gap: 24px;
  align-items: center;
}
@media (max-width: 767.98px) {
  .contacts-accordion__person-info {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }
}
.contacts-accordion__photo {
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 50%;
}
.contacts-accordion__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 20%;
     object-position: 50% 20%;
}
.contacts-accordion__info {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 767.98px) {
  .contacts-accordion__info {
    gap: 10px;
  }
}
.contacts-accordion__name {
  display: block;
  font-size: 20px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 0.01em;
}
@media (max-width: 767.98px) {
  .contacts-accordion__name br {
    display: block;
    margin-bottom: 2px;
    content: "";
  }
}
@media (min-width: 900px) {
  .contacts-accordion__name br {
    display: none;
  }
}
.contacts-accordion__position {
  font-size: 16px;
  line-height: 110%;
  color: rgb(13 16 21 / 45%);
  color: var(--color-text-opacity-45);
}
@media (max-width: 767.98px) {
  .contacts-accordion__position {
    font-size: 14px;
  }
}
.contacts-accordion__main-photo {
  display: none;
  width: 64px;
  height: 64px;
}
.contacts-accordion__additional-info {
  display: none;
  height: 0;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  opacity: 0;
}
.contacts-accordion__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.contacts-accordion__arrow svg {
  width: 24px;
  height: 24px;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}
@media (max-width: 767.98px) {
  .contacts-accordion__arrow svg {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 767.98px) {
  .contacts-accordion__arrow {
    align-items: center;
    align-self: stretch;
    height: 100%;
    padding: 0;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

.details {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  grid-row: 1;
  grid-column: 2;
  height: -moz-fit-content;
  height: fit-content;
  height: 100%;
  min-height: 0;
}
.details__item.details__hidden {
  display: none;
}
.details__brief {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 767.98px) {
  .details__brief {
    margin: auto 24px;
  }
}
.details__item-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 32px 32px 32px 32px;
}
@media (max-width: 767.98px) {
  .details__item-info {
    padding: 0;
  }
}
.details__title {
  margin-bottom: 15px;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media (max-width: 767.98px) {
  .details__title {
    font-size: 32px;
    margin-bottom: 5px;
  }
}
.details__text {
  font-size: 16px;
  line-height: 130%;
}
@media (max-width: 767.98px) {
  .details__text {
    font-size: 14px;
  }
}
.details__address {
  margin-bottom: 12px;
}
.details__main {
  display: flex;
  gap: 64px;
  justify-content: space-between;
  padding: 0 137px 0 0;
}
@media (max-width: 1023.98px) {
  .details__main {
    padding: 0 10% 0 0;
  }
}
@media (max-width: 767.98px) {
  .details__main {
    flex-direction: row-reverse;
    gap: 0;
    padding: 0;
    margin: 88px 24px 0;
  }
}
.details__hours {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 160px;
  min-height: 100%;
}
.details__hours .details__text {
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .details__hours {
    min-height: auto;
    align-items: end;
    padding-right: 26px;
  }
}
.details__data {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: flex-end;
}
@media (max-width: 767.98px) {
  .details__data {
    gap: 16px;
  }
}
.details__contact-title {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.02em;
}
@media (max-width: 767.98px) {
  .details__contact-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.details__contact-text {
  margin-bottom: 4px;
  font-size: 16px;
}
@media (max-width: 767.98px) {
  .details__contact-text {
    font-size: 14px;
    letter-spacing: 0.02em;
    margin-bottom: 3px;
  }
}
.details__social {
  display: flex;
  gap: 7px;
  margin-top: -13px;
}
@media (max-width: 767.98px) {
  .details__social {
    margin-top: -6px;
  }
}
.details__social-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  cursor: pointer;
  border: 1px solid rgb(0 30 51 / 20%);
  border: 1px solid var(--color-stroke-light-opacity-20);
  border-radius: 50%;
  transition: background-color 0.2s;
}
@media (max-width: 767.98px) {
  .details__social-item {
    width: 48px;
    height: 48px;
  }
}
.details__social-icon {
  width: 24px;
  height: 24px;
}
.details__map {
  display: none;
}
@media (max-width: 767.98px) {
  .details__map {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 260px;
    margin-top: 32px;
    background: rgb(237 241 242);
    background: var(--color-light);
    border-radius: 8px;
  }
}
.details__form-inscription {
  display: none;
}
@media (max-width: 767.98px) {
  .details__form-inscription {
    display: block;
    padding: 64px 24px 32px;
  }
}

.feedback-form--mobile-shown {
  display: none;
}
@media (max-width: 767.98px) {
  .feedback-form--mobile-shown {
    display: block;
  }
}

.feedback {
  display: flex;
  gap: 36px;
}
@media (max-width: 1023.98px) {
  .feedback {
    flex-direction: column;
    gap: 0;
  }
}
.feedback__desc {
  width: 30%;
  padding-top: 35px;
}
@media (max-width: 767.98px) {
  .feedback__desc {
    width: 100%;
    padding-block: 64px 32px;
    padding-left: 24px;
  }
}
.feedback__desc p {
  max-width: 250px;
}
@media (max-width: 1023.98px) {
  .feedback__desc_vacancy {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .feedback__desc_contacts {
    display: none;
  }
}

.feedback-form {
  width: 67%;
  padding: 24px 21px;
  background: rgb(237 241 242);
  background: var(--color-light);
  border-radius: 12px;
}
@media (max-width: 1023.98px) {
  .feedback-form {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .feedback-form {
    padding: 32px 24px;
    border-radius: 0;
  }
}
.feedback-form__title-container {
  margin-bottom: 46px;
}
@media (max-width: 1023.98px) {
  .feedback-form__title-container {
    margin-bottom: 66px;
  }
}
.feedback-form__title {
  margin-bottom: 16px;
  font-size: 42px;
  font-weight: 500;
  line-height: 110%;
  color: rgb(13 16 21);
  color: var(--color-text);
}
@media (max-width: 767.98px) {
  .feedback-form__title {
    font-size: 32px;
  }
}
.feedback-form__inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
}
.feedback-form__inputs > input {
  width: calc(33% - 9px);
}
@media (max-width: 1023.98px) {
  .feedback-form__inputs > input {
    width: 100%;
  }
}
.feedback-form__inputs > input:first-child {
  width: 100%;
}
.feedback-form__inputs_vacancy > :first-child {
  width: 100%;
}
.feedback-form__inputs_vacancy > :nth-child(2),
.feedback-form__inputs_vacancy > :nth-child(3) {
  width: calc(50% - 8px);
}
.feedback-form__inputs_vacancy > input {
  width: calc(50% - 8px);
}
@media (max-width: 1023.98px) {
  .feedback-form__inputs_vacancy > input {
    width: 100%;
  }
}
@media (max-width: 1023.98px) {
  .feedback-form__inputs_vacancy > :nth-child(2),
  .feedback-form__inputs_vacancy > :nth-child(3) {
    width: 100%;
  }
}
@media (max-width: 1023.98px) {
  .feedback-form__inputs {
    gap: 9px;
  }
}
.feedback-form__subtitle {
  font-size: 16px;
  line-height: 110%;
  color: rgb(13 16 21 / 45%);
  color: var(--color-text-opacity-45);
}
.feedback-form__form {
  display: flex;
  flex-direction: column;
  gap: 41px;
}
@media (max-width: 1023.98px) {
  .feedback-form__form {
    gap: 24px;
  }
}
.feedback-form__field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 767.98px) {
  .feedback-form__field {
    gap: 14px;
  }
}
.feedback-form__label {
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  color: rgb(13 16 21);
  color: var(--color-text);
  letter-spacing: 0.005em;
}
@media (max-width: 767.98px) {
  .feedback-form__label {
    font-size: 16px;
    max-width: 90%;
  }
}
.feedback-form__main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 767.98px) {
  .feedback-form__main {
    gap: 12px;
  }
}
.feedback-form__input--full {
  width: 100%;
}
@media (max-width: 767.98px) {
  .feedback-form__textarea {
    margin-top: 0;
    font-size: 16px;
  }
}
.feedback-form__policy {
  margin-top: 8px;
  font-size: 14px;
  line-height: 110%;
  color: rgb(13 16 21 / 45%);
  color: var(--color-text-opacity-45);
}
@media (max-width: 1023.98px) {
  .feedback-form__policy {
    margin-bottom: 8px;
  }
}
.feedback-form__link {
  color: rgb(13 16 21);
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid rgb(13 16 21);
  border-bottom: 1px solid var(--color-text);
}
@media (hover: hover) and (pointer: fine){
.feedback-form__link:hover {
  border-bottom-color: transparent;
}
}
.feedback-form__button {
  align-self: flex-start;
  padding: 16px 27px;
  font-size: 16px;
  line-height: 110%;
  color: rgb(255 255 255);
  color: var(--color-white);
  cursor: pointer;
  background: rgb(9 14 17);
  background: var(--color-dark);
  border: none;
  border-radius: 100px;
  transition: background-color 0.3s ease;
}
@media (hover: hover) and (pointer: fine){
.feedback-form__button:hover {
  background: var(--color-dark-hover);
}
}
.feedback-form__button:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.feedback-form__upload {
  padding-top: 24px;
  color: rgb(13 16 21);
  color: var(--color-text);
}
@media (max-width: 1023.98px) {
  .feedback-form__upload {
    padding-top: 6px;
  }
}
.feedback-form__upload-title {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
@media (max-width: 1023.98px) {
  .feedback-form__upload-title {
    font-size: 16px;
    letter-spacing: 0;
  }
}
.feedback-form__upload-desc {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.2em;
  color: rgb(13 16 21 / 60%);
  color: var(--color-text-opacity-60);
}

.about {
  color: rgb(255 255 255);
  color: var(--color-white);
}
.about__header {
  height: 100vh;
  background: url("./bg.webp") no-repeat center/cover;
}
.about__key {
  background-color: rgb(253 204 8);
  background-color: var(--color-accent-yellow);
}
.about__founders {
  padding: 152px 32px 195px;
  margin: 0 -32px;
  color: rgb(13 16 21);
  color: var(--color-text);
  background-color: rgb(255 255 255);
  background-color: var(--color-white);
}
@media (max-width: 1023.98px) {
  .about__founders {
    padding: 64px 24px 56px;
  }
}
.about__founders-modules {
  position: relative;
  z-index: 2;
  z-index: var(--z-index-two);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 443px;
  min-height: 100%;
}
@media (max-width: 1023.98px) {
  .about__founders-modules {
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding-inline: 0 24px;
  }
}
.about__founders-modules-pagination {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
@media (max-width: 1023.98px) {
  .about__founders-modules-pagination {
    text-align: end;
    font-size: 16px;
    padding-right: 14px;
  }
}
.about__founders-modules-navigation {
  display: flex;
  gap: 8px;
}
@media (max-width: 1023.98px) {
  .about__founders-modules-navigation {
    width: 100%;
  }
}
.about__founders-modules-navigation-button {
  width: 64px;
  height: 64px;
  border: 1px solid rgb(0 30 51 / 20%);
  border: 1px solid var(--color-stroke-light-opacity-20);
  border-radius: 50%;
  transition: color 0.3s ease-in-out;
  transition: color var(--transition);
}
.about__founders-modules-navigation-button:disabled {
  color: rgb(0 30 51 / 20%);
  color: var(--color-stroke-light-opacity-20);
}
.about__founders-modules-navigation-icon {
  width: 16px;
  height: 16px;
}
.about__founders-modules-navigation-icon_prev {
  rotate: -180deg;
}
.about__founders-header {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-left: 451px;
  margin-bottom: 80px;
}
@media (max-width: 1023.98px) {
  .about__founders-header {
    gap: 16px;
    padding-inline: 24px;
    margin-bottom: 48px;
  }
}
.about__founders-title {
  font-size: 72px;
  font-weight: 500;
  line-height: 90%;
}
@media (max-width: 1023.98px) {
  .about__founders-title {
    font-size: 32px;
    line-height: 1.1em;
    letter-spacing: 0.02em;
  }
}
.about__founders-description {
  font-size: 24px;
  line-height: 120%;
}
@media (max-width: 1023.98px) {
  .about__founders-description {
    font-size: 16px;
    line-height: 1.3em;
  }
}
.about__founders-slider-container {
  display: flex;
  width: 100%;
}
@media (max-width: 1023.98px) {
  .about__founders-slider-container {
    flex-direction: column-reverse;
    padding: 0 0 0 24px;
  }
}
.about__founders-slider-wrapper {
  width: calc(100% - 451px);
}
@media (max-width: 1023.98px) {
  .about__founders-slider-wrapper {
    width: 100%;
    margin-bottom: 56px;
  }
}
.about__founders-slide {
  width: 226px !important;
  cursor: pointer;
}
@media (max-width: 1023.98px) {
  .about__founders-slide {
    width: 156px !important;
  }
}
.about__founders-slide.swiper-slide-active {
  width: 420px !important;
}
@media (max-width: 1023.98px) {
  .about__founders-slide.swiper-slide-active {
    width: 260px !important;
  }
}
.about__founders-slide.swiper-slide-active .about__founders-slide-text {
  opacity: 1;
}
.about__founders-slide-img {
  max-width: 422px;
  margin-bottom: 27px;
}
@media (max-width: 1023.98px) {
  .about__founders-slide-img {
    max-width: 260px;
  }
}
.about__founders-slide-img img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__founders-slide-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  transition: opacity var(--transition);
}
@media (max-width: 1023.98px) {
  .about__founders-slide-text {
    gap: 5px;
  }
}
.about__founders-slide-place {
  font-size: 16px;
}
@media (max-width: 1023.98px) {
  .about__founders-slide-place {
    font-size: 14px;
  }
}
.about__founders-slide-name {
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 1023.98px) {
  .about__founders-slide-name {
    font-size: 20px;
    letter-spacing: 0;
    line-height: 115%;
  }
}
.about__founders-slider {
  width: calc(100% - 483px);
  overflow-x: clip;
}
@media (max-width: 1023.98px) {
  .about__founders-slider {
    width: 100%;
  }
}

.header-about {
  padding: 128px 32px 42px;
}
@media (max-width: 1023.98px) {
  .header-about {
    padding: 104px 24px 40px;
  }
}
.header-about__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}
.header-about__title {
  max-width: 690px;
  font-size: 64px;
  font-weight: 500;
  line-height: 0.9em;
  letter-spacing: 0.025em;
}
@media (max-width: 1023.98px) {
  .header-about__title {
    max-width: 255px;
    font-size: 24px;
    line-height: 1.1em;
    letter-spacing: 0;
  }
}
.header-about__description-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 9px 0;
}
@media (max-width: 1023.98px) {
  .header-about__description-wrapper {
    padding: 0;
  }
}
.header-about__description-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1em;
  opacity: 0;
  animation: animation-desc-title 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation: animation-desc-title 0.6s var(--animation-func) forwards;
  animation-delay: 1.8s;
  letter-spacing: 0.015em;
}
.header-about__description-text {
  max-width: 220px;
  height: 35.2px;
  font-size: 16px;
  line-height: 1.1em;
}

@keyframes animation-desc-title {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.history-about {
  position: relative;
  display: flex;
  justify-content: space-between;
  min-height: 100vh;
}
@media (max-width: 1023.98px) {
  .history-about {
    flex-direction: column;
  }
}
.history-about__chronology {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 200px;
  height: calc(100vh - 48px);
  padding-top: 40px;
  transition: padding 0.3s ease-in-out;
  transition: padding var(--transition);
}
@media (max-width: 1023.98px) {
  .history-about__chronology {
    z-index: 10;
    z-index: var(--z-index-ten);
    flex-direction: row-reverse;
    width: 100%;
    height: auto;
    padding-bottom: 20px;
    padding-top: 15px;
    background-color: rgb(9 14 17);
    background-color: var(--color-dark);
  }
}
.history-about__years {
  display: flex;
  flex-direction: column;
}
.history-about__year {
  display: flex;
  font-size: 72px;
  font-weight: 500;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
@media (max-width: 1023.98px) {
  .history-about__year {
    font-size: 48px;
    letter-spacing: -0.08em;
  }
}
.history-about__year_current {
  color: rgb(255 255 255);
  color: var(--color-white);
}
.history-about__year_next {
  color: rgb(255 255 255 / 10%);
  color: var(--color-white-opacity-10);
}
.history-about__year .digit-container {
  display: inline-block;
  height: 72px;
  overflow: hidden;
  vertical-align: top;
}
@media (max-width: 1023.98px) {
  .history-about__year .digit-container {
    height: 48px;
  }
}
.history-about__year .digit-mover span {
  display: block;
  height: 72px;
  line-height: 1;
}
@media (max-width: 1023.98px) {
  .history-about__year .digit-mover span {
    height: 48px;
  }
}
.history-about__company {
  position: sticky;
  font-size: 13px;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
@media (max-width: 1023.98px) {
  .history-about__company {
    max-width: 130px;
    letter-spacing: 0.05em;
  }
}
.history-about__cards-container {
  width: calc(100% - 400px);
  overflow: hidden;
}
@media (max-width: 1023.98px) {
  .history-about__cards-container {
    width: 100%;
  }
}
.history-about__cards {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  left: -60px;
}
@media (max-width: 1023.98px) {
  .history-about__cards {
    left: 0;
    padding-top: 29px;
  }
}
.history-about__card {
  min-height: 83vh;
  transition: opacity 0.3s ease-in-out;
  transition: opacity var(--transition);
}
.history-about__card:last-child {
  min-height: -moz-fit-content;
  min-height: fit-content;
}
@media (max-width: 1023.98px) {
  .history-about__card {
    min-height: 60vh;
  }
}
.history-about__card-img-wrapper {
  max-width: 454px;
  height: 303px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 12px;
  transform: translateZ(0);
  backface-visibility: hidden;
}
@media (max-width: 1023.98px) {
  .history-about__card-img-wrapper {
    height: -moz-fit-content;
    height: fit-content;
    margin-bottom: 15px;
  }
}
.history-about__card-img-wrapper img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1023.98px) {
  .history-about__card-img-wrapper img {
    height: 69%;
  }
}
.history-about__card-description {
  max-width: 480px;
  font-size: 24px;
  line-height: 1.2em;
  letter-spacing: 0.02em;
}
@media (max-width: 1023.98px) {
  .history-about__card-description {
    font-size: 16px;
    line-height: 1.3em;
    letter-spacing: 0.01em;
    max-width: 90%;
  }
}
.history-about__actions {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  height: calc(100vh - 48px);
  padding-top: 40px;
}
.history-about__actions_fixed {
  position: fixed !important;
  top: auto !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  padding-bottom: 24px !important;
  background-color: rgb(9 14 17);
  background-color: var(--color-dark);
}
@media (max-width: 1023.98px) {
  .history-about__actions {
    position: relative;
    flex-direction: row;
    height: auto;
    padding: 24px 27px 0;
  }
}
.history-about__pagination {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 44px;
}
@media (max-width: 1023.98px) {
  .history-about__pagination {
    flex-direction: row;
    gap: 8px;
    align-items: flex-end;
    width: calc(100% - 48px);
  }
}
.history-about__pagination span {
  display: inline-flex;
  width: 100%;
  height: 3px;
  background-color: rgb(204 234 255 / 10%);
  background-color: var(--color-stroke-dark-opacity-10);
  transition: background-color 0.3s ease-in-out, height 0.3s ease-in-out;
  transition: background-color var(--transition), height var(--transition);
}
@media (max-width: 1023.98px) {
  .history-about__pagination span {
    display: block;
    width: 2px;
    height: 24px;
  }
}
.history-about__pagination span.active {
  background-color: rgb(255 255 255);
  background-color: var(--color-white);
}
@media (max-width: 1023.98px) {
  .history-about__pagination span.active {
    height: 30px;
  }
}
.history-about__down-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgb(204 234 255 / 10%);
  border: 1px solid var(--color-stroke-dark-opacity-10);
  border-radius: 50%;
}
@media (max-width: 1023.98px) {
  .history-about__down-button {
    width: 48px;
    height: 48px;
  }
}
.history-about__down-button-icon {
  width: 16px;
  height: 16px;
  rotate: 90deg;
}

.branches-about {
  padding: 120px 0;
  background-color: rgb(9 14 17);
  background-color: var(--color-dark);
}
@media (max-width: 1023.98px) {
  .branches-about {
    padding-block: 24px 64px;
  }
}
.branches-about__info {
  padding-top: 30px;
}
@media (max-width: 1023.98px) {
  .branches-about__info {
    padding-top: 0;
  }
}
.branches-about__info-title {
  margin-bottom: 48px;
  margin-left: 32px;
  font-size: 72px;
  font-weight: 500;
  line-height: 90%;
}
@media (max-width: 1023.98px) {
  .branches-about__info-title {
    margin-bottom: 96px;
    margin-left: 24px;
    font-size: 32px;
    line-height: 1.1em;
    letter-spacing: 0.015em;
  }
}
.branches-about__info-contacts {
  display: flex;
  gap: 48px;
  margin-bottom: 194px;
  margin-left: 32px;
}
@media (max-width: 1023.98px) {
  .branches-about__info-contacts {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
    margin-left: 24px;
  }
}
.branches-about__info-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 1023.98px) {
  .branches-about__info-contact {
    gap: 4px;
  }
}
.branches-about__info-contact-name {
  font-size: 16px;
}
@media (max-width: 1023.98px) {
  .branches-about__info-contact-name {
    font-size: 14px;
  }
}
.branches-about__info-contact-value {
  font-size: 32px;
  font-weight: 500;
}
@media (max-width: 1023.98px) {
  .branches-about__info-contact-value {
    font-size: 20px;
    letter-spacing: 0.01em;
  }
}
.branches-about__cards {
  position: relative;
}
.branches-about__card {
  display: flex;
}
@media (max-width: 1023.98px) {
  .branches-about__card {
    flex-direction: column-reverse;
  }
}
.branches-about__card:first-child .branches-about__card-header {
  border-top: 1px solid rgb(204 234 255 / 10%);
  border-top: 1px solid var(--color-stroke-dark-opacity-10);
}
.branches-about__card_active .branches-about__card-header {
  background-color: rgb(12 19 24);
  background-color: var(--color-dark-secondary);
}
.branches-about__card_active .branches-about__card-image-wrapper {
  display: block;
}
@media (max-width: 1023.98px) {
  .branches-about__card_active .branches-about__card-image-container {
    max-height: 1000px;
  }
}
.branches-about__card-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
  min-height: 220px;
  padding: 32px;
  cursor: pointer;
  border-right: 1px solid rgb(204 234 255 / 10%);
  border-right: 1px solid var(--color-stroke-dark-opacity-10);
  border-bottom: 1px solid rgb(204 234 255 / 10%);
  border-bottom: 1px solid var(--color-stroke-dark-opacity-10);
  transition: background-color 0.3s ease-in-out;
  transition: background-color var(--transition);
}
@media (max-width: 1023.98px) {
  .branches-about__card-header {
    width: 100%;
    min-height: 176px;
    padding: 24px 24px 20px;
  }
}
.branches-about__card-header-text {
  display: flex;
  place-content: center space-between;
  color: rgb(255 255 255 / 45%);
  color: var(--color-white-opacity-45);
}
.branches-about__card-header-text span {
  display: inline-block;
}
.branches-about__card-header-title {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2em;
  letter-spacing: -0.02em;
}
@media (max-width: 1023.98px) {
  .branches-about__card-header-title {
    font-size: 24px;
    letter-spacing: 0;
  }
}
.branches-about__card-header-icon {
  width: 24px;
  height: 24px;
  color: rgb(255 255 255);
  color: var(--color-white);
}
@media (max-width: 1023.98px) {
  .branches-about__card-header-icon {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 1023.98px) {
  .branches-about__card-image-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease-in-out;
  }
}
.branches-about__card-image-wrapper {
  position: absolute;
  top: -399px;
  right: 0;
  display: none;
  width: calc(50% + 1px);
  height: 840px;
  overflow: hidden;
  color: rgb(13 16 21);
  color: var(--color-text);
  background-color: rgb(12 19 24);
  background-color: var(--color-dark-secondary);
  border: 1px solid rgb(204 234 255 / 10%);
  border: 1px solid var(--color-stroke-dark-opacity-10);
  border-right: none;
}
@media (max-width: 1023.98px) {
  .branches-about__card-image-wrapper {
    position: relative;
    top: 0;
    width: 100%;
    height: calc(400px + 440 * (100vw - 360px) / 664);
    min-height: 0;
    border-bottom: 0;
    border-left: 0;
  }
}
.branches-about__card-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.branches-about__card-image-button {
  position: absolute;
  right: 32px;
  bottom: 32px;
}
@media (max-width: 1023.98px) {
  .branches-about__card-image-button {
    right: 24px;
    bottom: 24px;
    width: 156px;
    height: 165px;
  }
}

.form-about {
  padding: 24px 32px 144px;
  background-color: rgb(9 14 17);
  background-color: var(--color-dark);
}
@media (max-width: 1023.98px) {
  .form-about {
    padding: 0 0 60px;
  }
}
.form-about__inputs .input-wrapper {
  width: calc(50% - 8px);
}
@media (max-width: 1023.98px) {
  .form-about__inputs .input-wrapper {
    width: 100%;
  }
}
.form-about__inputs .input-wrapper:first-child {
  width: calc(50% - 8px);
}
@media (max-width: 1023.98px) {
  .form-about__inputs .input-wrapper:first-child {
    width: 100%;
  }
}
.form-about__inputs .input-wrapper:nth-child(2) {
  order: -1;
}

.other-section-about {
  padding: 32px 32px 80px;
}
@media (max-width: 1023.98px) {
  .other-section-about {
    padding: 44px 24px 60px;
  }
}
.other-section-about__title {
  margin-bottom: 40px;
  font-size: 13px;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}
@media (max-width: 1023.98px) {
  .other-section-about__title {
    letter-spacing: 0.02em;
    margin-bottom: 24px;
  }
}

.fence-product {
  color: rgb(255 255 255);
  color: var(--color-white);
}
.fence-product__header {
  padding-top: 100px;
  margin-top: -100px;
  background-color: rgb(9 14 17);
  background-color: var(--color-dark);
  border-bottom: 1px solid rgb(204 234 255 / 10%);
  border-bottom: 1px solid var(--color-stroke-dark-opacity-10);
  min-height: 100vh;
}
.fence-product__title {
  font-size: 64px;
  font-weight: 500;
  line-height: 0.9em;
  letter-spacing: 0.01em;
}
@media (max-width: 1023.98px) {
  .fence-product__title {
    font-size: 28px;
    line-height: 1em;
    letter-spacing: -0.02em;
  }
}
@media (max-width: 1023.98px) {
  .fence-product__type-wrapper {
    padding-bottom: 0;
  }
}
.fence-product__type-header {
  display: flex;
  margin: 0 0 80px 33%;
}
@media (max-width: 1023.98px) {
  .fence-product__type-header {
    margin: 32px 0;
  }
}
.fence-product__type-title {
  max-width: 665px;
}
@media (max-width: 1023.98px) {
  .fence-product__object-wrapper {
    color: rgb(13 16 21);
    color: var(--color-text);
    background-color: rgb(255 255 255);
    background-color: var(--color-white);
  }
}
@media (max-width: 1023.98px) {
  .fence-product__object-wrapper-padding {
    padding-bottom: 0;
    padding-top: 94px;
    letter-spacing: 0.02em;
  }
}
.fence-product__object-header {
  margin-bottom: 80px;
}
@media (max-width: 1023.98px) {
  .fence-product__object-header {
    margin-bottom: 32px;
  }
}
.fence-product__object-cards {
  min-height: 746px;
}
@media (max-width: 1023.98px) {
  .fence-product__object-cards {
    min-height: auto;
  }
}
.fence-product__advantages {
  background-color: rgb(253 204 8);
  background-color: var(--color-accent-yellow);
}
.fence-product__complex-swiper {
  margin-top: 80px;
}
@media (max-width: 1023.98px) {
  .fence-product__complex-swiper {
    margin-top: 32px;
  }
}

.order-block {
  overflow: hidden;
  color: rgb(13 16 21);
  color: var(--color-text);
  border-bottom: 1px solid rgb(0 30 51 / 20%);
  border-bottom: 1px solid var(--color-stroke-light-opacity-20);
}
@media (max-width: 1023.98px) {
  .order-block {
    overflow: visible;
    overflow: initial;
  }
}
.order-block__header {
  padding: 32px 32px 0;
  border-bottom: 1px solid rgb(0 30 51 / 20%);
  border-bottom: 1px solid var(--color-stroke-light-opacity-20);
}
@media (max-width: 1023.98px) {
  .order-block__header {
    padding: 60px 24px 0;
    border-bottom: none;
  }
}
.order-block__header-title {
  margin-bottom: 64px;
  font-size: 64px;
  font-weight: 500;
  line-height: 0.9em;
  letter-spacing: 0.03em;
}
@media (max-width: 1023.98px) {
  .order-block__header-title {
    margin-bottom: 40px;
    font-size: 28px;
    line-height: 1em;
    letter-spacing: 0.01em;
  }
}
@media (max-width: 1023.98px) {
  .order-block__header-tabs {
    border-top: 1px solid rgb(0 30 51 / 20%);
    border-top: 1px solid var(--color-stroke-light-opacity-20);
  }
}
.order-block__content {
  display: flex;
}
@media (max-width: 1023.98px) {
  .order-block__content {
    flex-direction: column;
  }
}
.order-block__content-filters {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 33%;
  min-height: 656px;
  padding: 32px;
  border-right: 1px solid rgb(0 30 51 / 20%);
  border-right: 1px solid var(--color-stroke-light-opacity-20);
}
@media (max-width: 1023.98px) {
  .order-block__content-filters {
    width: 100%;
    min-height: auto;
    padding: 19px 24px 38px;
    border-right: 0;
  }
}
.order-block__content-filters-top {
  flex: 1 1;
}
@media (max-width: 1023.98px) {
  .order-block__content-filters-top {
    padding-bottom: 36px;
  }
}
.order-block__content-filters-items {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
@media (max-width: 1023.98px) {
  .order-block__content-filters-items {
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    scrollbar-width: none;
  }
  .order-block__content-filters-items::-webkit-scrollbar {
    display: none;
  }
}
.order-block__content-filters-bottom {
  flex: 0 1;
}
.order-block__content-filters-clear {
  color: rgb(13 16 21 / 45%);
  color: var(--color-text-opacity-45);
  padding: 0;
}
.order-block__content-products {
  width: 67%;
  max-height: 656px;
  overflow-y: auto;
  scrollbar-width: none;
}
@media (max-width: 1023.98px) {
  .order-block__content-products {
    width: 100%;
    max-height: 100%;
    overflow-y: visible;
    overflow-y: initial;
  }
}
.order-block__content-products::-webkit-scrollbar {
  display: none;
}
.order-block__content-products-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid rgb(0 30 51 / 20%);
  border-bottom: 1px solid var(--color-stroke-light-opacity-20);
  transition: background-color 0.3s ease-in-out;
  transition: background-color var(--transition);
  font-size: 20px;
  letter-spacing: 0.01em;
}
@media (max-width: 1023.98px) {
  .order-block__content-products-item {
    gap: 20px;
    padding: 24px;
    font-size: 14px;
  }
  .order-block__content-products-item-text {
    letter-spacing: -0.01em;
  }
}
.order-block__content-products-item:nth-last-child(2) {
  border-bottom: none;
}
@media (hover: hover) and (pointer: fine){
.order-block__content-products-item:hover {
  background-color: rgb(237 241 242);
  background-color: var(--color-light);
}
}
@media (hover: hover) and (pointer: fine){
.order-block__content-products-item:hover .order-block__content-products-item-order {
  color: rgb(255 255 255);
  color: var(--color-white);
  background-color: rgb(9 14 17);
  background-color: var(--color-dark);
}
}
.order-block__content-products-item-order {
  padding: 16px 24px;
  white-space: nowrap;
  background-color: rgb(237 241 242);
  background-color: var(--color-light);
  border-radius: 100px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background-color var(--transition), color var(--transition);
  line-height: 110%;
  font-size: 16px;
}
@media (max-width: 1023.98px) {
  .order-block__content-products-item-order {
    padding: 11px 24px 13px;
  }
}
.order-block__content-products-item_hidden {
  display: none;
}
.order-block__content-products-button {
  width: 100%;
  padding-block: 33px;
}
.order-block__content-products-button_hidden {
  display: none;
}

.faq {
  padding-bottom: 211px;
}
@media (max-width: 1023.98px) {
  .faq {
    padding-top: 71px;
  }
}
@media (max-width: 1023.98px) {
  .faq {
    padding-bottom: 0;
  }
}
.faq__header {
  padding-block: 226px 64px;
  transition: padding 0.3s ease-in-out;
  transition: padding var(--transition);
}
@media (max-width: 1023.98px) {
  .faq__header {
    padding: 24px 32px 64px;
  }
}
@media (max-width: 767.98px) {
  .faq__header {
    padding: 24px 24px 64px;
    margin-bottom: 144px;
  }
}
@media (max-width: 1023.98px) {
  .faq__header-icon {
    width: 8px;
    height: 12px;
  }
}
.faq__header-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgb(0 30 51 / 20%);
  border: 1px solid var(--color-stroke-light-opacity-20);
  border-radius: 50%;
}
@media (max-width: 1023.98px) {
  .faq__header_active {
    display: flex;
    gap: 8px;
    align-items: center;
    padding-bottom: 106px;
  }
}
@media (max-width: 1023.98px) {
  .faq__header_active .faq__header-button {
    display: flex;
  }
}
@media (max-width: 1023.98px) {
  .faq__header_active .faq__header-title {
    font-size: 16px;
    font-weight: 400;
  }
}
.faq__header-title {
  font-size: 112px;
  font-weight: 500;
  line-height: 0.9em;
  letter-spacing: 0.02em;
  transition: font-size 0.3s ease-in-out;
  transition: font-size var(--transition);
}
@media (max-width: 1023.98px) {
  .faq__header-title {
    font-size: 32px;
    line-height: 1.1em;
  }
}

.contacts-swiper-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 95;
  z-index: var(--z-index-swiper-full);
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgb(255 255 255);
  background-color: var(--color-white);
}
.contacts-swiper-overlay.active {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
@media (max-width: 767.98px) {
  .contacts-swiper-overlay {
    padding-top: 70px;
  }
}
.contacts-swiper-overlay .details__form-inscription {
  width: 100%;
}

.contacts-swiper-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  padding: 32px 0;
  margin: 0 auto;
}
@media (max-width: 1023.98px) {
  .contacts-swiper-container {
    padding: 70px 0;
  }
}
@media (max-width: 767.98px) {
  .contacts-swiper-container {
    height: auto;
    padding: 20px 0 0;
  }
}
@media (max-width: 499.98px) {
  .contacts-swiper-container {
    padding: 68px 0 0;
  }
}

.contacts-swiper-close {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 2;
  z-index: var(--z-index-two);
  width: 48px;
  height: 48px;
  padding: 8px;
  color: rgb(13 16 21);
  color: var(--color-text);
  cursor: pointer;
  background: none;
  border: 1px solid rgb(0 30 51 / 20%);
  border: 1px solid var(--color-stroke-light-opacity-20);
  border-radius: 50%;
  transition: background-color 0.2s;
}
@media (max-width: 1439.98px) {
  .contacts-swiper-close {
    top: 90px;
    right: 40px;
  }
}
@media (max-width: 1099.98px) {
  .contacts-swiper-close {
    right: 20px;
  }
}
@media (max-width: 767.98px) {
  .contacts-swiper-close {
    top: 30px;
    right: 40px;
  }
}
@media (max-width: 499.98px) {
  .contacts-swiper-close {
    top: 10px;
    right: 14px;
    border: none;
  }
}
@media (hover: hover) and (pointer: fine){
.contacts-swiper-close:hover {
  background-color: var(--color-background-hover);
}
}

.contacts-swiper {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0 auto;
  overflow: hidden;
}
.contacts-swiper .swiper-wrapper {
  align-items: center;
  height: 100%;
}
.contacts-swiper__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media (max-width: 767.98px) {
  .contacts-swiper__slide {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.contacts-swiper__content {
  position: relative;
  display: flex;
  gap: 100px;
  width: 100%;
  max-width: 1215px;
  height: 100%;
  margin: 0 auto;
  overflow-y: auto;
}
@media (max-width: 1099.98px) {
  .contacts-swiper__content {
    gap: 40px;
    padding: 20px;
  }
}
@media (max-width: 767.98px) {
  .contacts-swiper__content {
    flex-direction: column;
    gap: 46px;
    height: auto;
    padding: 0 24px;
  }
}
.contacts-swiper__image {
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  width: 550px;
}
@media (max-width: 767.98px) {
  .contacts-swiper__image {
    width: 100%;
    height: 80vh;
  }
}
@media (max-width: 499.98px) {
  .contacts-swiper__image {
    width: 100%;
    height: 400px;
  }
}
.contacts-swiper__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 20%;
     object-position: 50% 20%;
}
.contacts-swiper__info {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 32px;
  max-width: 560px;
  padding-right: 20px;
  overflow-y: auto;
  scrollbar-width: none;
}
.contacts-swiper__info::-webkit-scrollbar {
  display: none;
}
@media (max-width: 1023.98px) {
  .contacts-swiper__info {
    max-width: 100%;
    padding-right: 48px;
  }
}
@media (max-width: 767.98px) {
  .contacts-swiper__info {
    max-width: 100%;
    padding-right: 0;
  }
}
.contacts-swiper__info p {
  order: 2;
  font-size: 16px;
  color: rgb(13 16 21);
  color: var(--color-text);
  line-height: 130%;
  letter-spacing: 0.005em;
}
@media (max-width: 767.98px) {
  .contacts-swiper__info p {
    order: 3;
  }
}
.contacts-swiper__header {
  order: 1;
}
.contacts-swiper__header h2 {
  font-size: 48px;
  font-weight: 500;
  color: rgb(13 16 21);
  color: var(--color-text);
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}
@media (max-width: 767.98px) {
  .contacts-swiper__header h2 {
    margin: 0 0 12px;
    font-size: 28px;
    letter-spacing: 0.01em;
  }
}
.contacts-swiper__header p {
  margin: 0 0 124px 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-text-secondary);
}
@media (max-width: 767.98px) {
  .contacts-swiper__header p {
    margin-bottom: 0;
  }
}
.contacts-swiper__contacts {
  order: 3;
  padding-top: 32px;
  margin-top: auto;
}
@media (max-width: 767.98px) {
  .contacts-swiper__contacts {
    order: 2;
    padding-top: 0;
    margin-top: 0;
  }
}
.contacts-swiper__phones a {
  display: block;
  font-size: 24px;
  line-height: 1.6;
  color: rgb(13 16 21);
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: 0.02em;
}
@media (max-width: 767.98px) {
  .contacts-swiper__phones a {
    font-size: 20px;
  }
}
.contacts-swiper__email a {
  font-size: 24px;
  line-height: 1.6;
  color: rgb(13 16 21);
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: 0.02em;
}
@media (max-width: 767.98px) {
  .contacts-swiper__email a {
    font-size: 20px;
  }
}

.contacts-swiper-buttons {
  position: absolute;
  right: 32px;
  bottom: 40px;
  z-index: 100;
  z-index: var(--z-index-sidebar);
  display: flex;
  gap: 8px;
}

.swiper-button-next,
.swiper-button-prev {
  width: 48px;
  height: 48px;
  padding: 12px;
  margin-top: 0;
  color: rgb(13 16 21);
  color: var(--color-text);
  background: var(--color-background);
  border: 1px solid rgb(13 16 21 / 45%);
  border: 1px solid var(--color-text-opacity-45);
  border-radius: 50%;
  transition: all 0.2s;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
}
@media (max-width: 767.98px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

.swiper-button-prev {
  position: relative;
  left: 0;
}

.swiper-button-next {
  position: relative;
  right: 0;
}

.swiper-pagination {
  position: absolute;
  bottom: 20px;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 6px;
  background: rgb(13 16 21);
  background: var(--color-text);
  opacity: 0.5;
}
.swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}

.mounting__description {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 23px 15% 120px 37%;
  color: rgb(255 255 255);
  color: var(--color-white);
}
.mounting__description__title {
  font-size: 64px;
  font-weight: 500;
  line-height: 90%;
  letter-spacing: 0.032em;
}
@media (max-width: 767.98px) {
  .mounting__description__title {
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0.015em;
  }
}
.mounting__description__text {
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.026em;
}
@media (max-width: 767.98px) {
  .mounting__description__text {
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0;
  }
}
@media (max-width: 1023.98px) {
  .mounting__description {
    padding: 32px 15% 120px 10%;
  }
}
@media (max-width: 767.98px) {
  .mounting__description {
    gap: 17px;
    padding: 32px 24px 71px;
  }
}
.mounting__factoids-grid-wrapper {
  padding-bottom: 120px;
}
.mounting__factoids-grid {
  position: relative;
  z-index: 1;
  z-index: var(--z-index-default);
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1px;
  gap: 1px;
  padding: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}
.mounting__factoids-grid__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  aspect-ratio: 1/1;
  padding: 32px;
  background-color: rgb(14 20 25);
  background-color: var(--color-dark-third);
}
.mounting__factoids-grid__item--empty {
  padding: 32px;
  font-size: 13px;
  font-weight: 700;
  line-height: 110%;
  color: rgb(255 255 255 / 45%);
  color: var(--color-white-opacity-45);
  text-transform: uppercase;
  letter-spacing: 4%;
  background-color: rgb(9 14 17);
  background-color: var(--color-dark);
}
@media (max-width: 719.98px) {
  .mounting__factoids-grid__item--empty {
    display: none;
  }
}
@media (max-width: 719.98px) {
  .mounting__factoids-grid__item--title {
    display: flex;
    flex-direction: column;
    height: auto;
    letter-spacing: 0.045em;
  }
}
.mounting__factoids-grid__item--image {
  grid-row: 2;
  grid-column: 3;
  padding: 0;
}
.mounting__factoids-grid__item--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 499.98px) {
  .mounting__factoids-grid__item--image {
    aspect-ratio: 1/1;
    padding: 0 !important;
  }
}
@media (max-width: 719.98px) {
  .mounting__factoids-grid__item {
    gap: 16px;
    min-height: auto;
    aspect-ratio: auto;
    padding: 24px;
    padding-bottom: 80px;
    border-top: 1px solid rgb(204 234 255 / 10%);
    border-top: 1px solid var(--color-stroke-dark-opacity-10);
  }
  .mounting__factoids-grid__item:nth-child(1) {
    padding: 32px 24px;
    border-top: none;
  }
  .mounting__factoids-grid__item:nth-child(8) {
    border-bottom: 1px solid rgb(204 234 255 / 10%);
    border-bottom: 1px solid var(--color-stroke-dark-opacity-10);
  }
}
.mounting__factoids-grid__indicator {
  font-size: 72px;
  font-weight: 500;
  line-height: 90%;
  color: rgb(253 204 8);
  color: var(--color-accent-yellow);
  letter-spacing: -2%;
}
@media (max-width: 1023.98px) {
  .mounting__factoids-grid__indicator {
    font-size: 64px;
  }
}
.mounting__factoids-grid__title {
  font-size: 20px;
  font-weight: 400;
  line-height: 110%;
  color: rgb(255 255 255);
  color: var(--color-white);
  letter-spacing: 0.02em;
}
@media (max-width: 1023.98px) {
  .mounting__factoids-grid__title {
    font-size: 16px;
  }
}
@media (max-width: 719.98px) {
  .mounting__factoids-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
    background: transparent;
  }
}
.mounting__advantages {
  background-color: rgb(253 204 8);
  background-color: var(--color-accent-yellow);
}
.mounting__turnkey {
  display: flex;
  gap: 0;
  padding-top: 120px;
  background-color: rgb(9 14 17);
  background-color: var(--color-dark);
}
.mounting__turnkey__content {
  display: flex;
  flex-direction: column;
  gap: 129px;
  max-width: 50%;
}
@media (max-width: 1299.98px) {
  .mounting__turnkey__content {
    gap: 64px;
  }
}
@media (max-width: 1023.98px) {
  .mounting__turnkey__content {
    gap: 0;
    max-width: 100%;
  }
}
.mounting__turnkey__title {
  width: 90%;
  padding: 32px;
  letter-spacing: 0.09em;
}
.mounting__turnkey__title__text {
  font-size: 64px;
  font-weight: 500;
  line-height: 90%;
  color: rgb(255 255 255);
  color: var(--color-white);
  letter-spacing: -1%;
}
@media (max-width: 1299.98px) {
  .mounting__turnkey__title__text {
    font-size: 48px;
  }
}
@media (max-width: 1023.98px) {
  .mounting__turnkey__title__text {
    font-size: 28px;
    max-width: 80%;
    letter-spacing: 0;
  }
}
@media (max-width: 1023.98px) {
  .mounting__turnkey__title {
    width: 100%;
    padding: 32px 24px;
  }
}
.mounting__turnkey__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mounting__turnkey__item {
  display: flex;
  flex-direction: column;
  gap: 98px;
  padding: 32px;
  cursor: pointer;
  background-color: rgb(9 14 17);
  background-color: var(--color-dark);
  border: 1px solid rgb(204 234 255 / 10%);
  border: 1px solid var(--color-stroke-dark-opacity-10);
  border-bottom: none;
  border-left: none;
  transition: background-color 0.3s ease-in-out;
  transition: background-color var(--transition);
}
.mounting__turnkey__item:last-child {
  border-bottom: 1px solid rgb(204 234 255 / 10%);
  border-bottom: 1px solid var(--color-stroke-dark-opacity-10);
}
.mounting__turnkey__item--active {
  background-color: rgb(14 20 25);
  background-color: var(--color-dark-third);
}
@media (hover: hover) and (pointer: fine){
.mounting__turnkey__item:hover {
  background-color: rgb(14 20 25);
  background-color: var(--color-dark-third);
}
}
@media (max-width: 1023.98px) {
  .mounting__turnkey__item--active {
    background-color: rgb(9 14 17);
    background-color: var(--color-dark);
  }
  @media (hover: hover) and (pointer: fine){
  .mounting__turnkey__item:hover {
    background-color: rgb(9 14 17);
    background-color: var(--color-dark);
  }
  }
}
.mounting__turnkey__item__title {
  width: 85%;
  font-size: 32px;
  font-weight: 400;
  line-height: 120%;
  color: rgb(255 255 255);
  color: var(--color-white);
  letter-spacing: 0.02em;
}
@media (max-width: 1299.98px) {
  .mounting__turnkey__item__title {
    font-size: 24px;
  }
}
@media (max-width: 1023.98px) {
  .mounting__turnkey__item__title {
    width: 70%;
    font-size: 20px;
  }
}
@media (max-width: 599.98px) {
  .mounting__turnkey__item__title {
    width: 100%;
  }
}
.mounting__turnkey__item__description {
  width: 85%;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  color: rgb(255 255 255 / 45%);
  color: var(--color-white-opacity-45);
  letter-spacing: 0%;
}
@media (max-width: 1299.98px) {
  .mounting__turnkey__item__description {
    width: 70%;
  }
}
@media (max-width: 599.98px) {
  .mounting__turnkey__item__description {
    width: 100%;
  }
}
@media (max-width: 1299.98px) {
  .mounting__turnkey__item {
    gap: 30px;
  }
}
@media (max-width: 1023.98px) {
  .mounting__turnkey__item {
    gap: 16px;
    padding: 24px;
    padding-bottom: 32px;
  }
}
.mounting__turnkey__image--desktop {
  position: relative;
  flex: 1;
  max-width: 50%;
  border-right: none;
}
.mounting__turnkey__image--desktop__container {
  position: relative;
  width: 100%;
}
.mounting__turnkey__image--desktop__img {
  width: 100%;
  aspect-ratio: 0.8;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 84%;
     object-position: 84%;
  border: 1px solid rgb(204 234 255 / 10%);
  border: 1px solid var(--color-stroke-dark-opacity-10);
}
.mounting__turnkey__image--desktop__consult {
  position: absolute;
  right: 32px;
  bottom: 32px;
}
@media (max-width: 1023.98px) {
  .mounting__turnkey__image--desktop {
    display: none;
  }
}
.mounting__turnkey__image--mobile {
  display: none;
}
.mounting__turnkey__image--mobile__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 599.98px) {
  .mounting__turnkey__image--mobile__img {
    -o-object-position: 85%;
       object-position: 85%;
  }
}
@media (max-width: 1023.98px) {
  .mounting__turnkey__image--mobile {
    display: block;
    width: 40%;
    aspect-ratio: 0.85;
  }
}
@media (max-width: 599.98px) {
  .mounting__turnkey__image--mobile {
    width: 66%;
  }
}
@media (max-width: 1299.98px) {
  .mounting__turnkey {
    padding-top: 64px;
  }
}
@media (max-width: 1023.98px) {
  .mounting__turnkey {
    flex-direction: column;
  }
}
.mounting__news {
  display: flex;
  flex-direction: column;
  gap: 98px;
  padding-top: 152px;
  padding-bottom: 112px;
  background-color: rgb(9 14 17);
  background-color: var(--color-dark);
}
@media (max-width: 1023.98px) {
  .mounting__news {
    gap: 40px;
    padding-top: 90px;
    padding-bottom: 0;
  }
}
@media (max-width: 599.98px) {
  .mounting__news {
    gap: 40px;
  }
}
.mounting__news__title {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 0 32px;
  color: rgb(255 255 255);
  color: var(--color-white);
}
@media (max-width: 1023.98px) {
  .mounting__news__title {
    gap: 32px;
  }
}
.mounting__news__title__text {
  font-size: 64px;
  font-weight: 500;
  line-height: 90%;
  letter-spacing: 0.02em;
}
@media (max-width: 1023.98px) {
  .mounting__news__title__text {
    font-size: 40px;
    line-height: 100%;
  }
}
@media (max-width: 599.98px) {
  .mounting__news__title__text {
    font-size: 28px;
  }
}
.mounting__news__title__indicator-container {
  display: flex;
  gap: 28px;
  align-items: flex-end;
}
@media (max-width: 599.98px) {
  .mounting__news__title__indicator-container {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}
.mounting__news__title__indicator {
  font-size: 112px;
  font-weight: 500;
  line-height: 90%;
}
@media (max-width: 1023.98px) {
  .mounting__news__title__indicator {
    font-size: 80px;
    line-height: 100%;
  }
}
@media (max-width: 599.98px) {
  .mounting__news__title__indicator {
    font-size: 64px;
  }
}
.mounting__news__title__indicator-text {
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.02em;
}
@media (max-width: 1023.98px) {
  .mounting__news__title__indicator-text {
    font-size: 20px;
  }
}
@media (max-width: 599.98px) {
  .mounting__news__title__indicator-text {
    font-size: 16px;
    line-height: 130%;
  }
}
.mounting__news__title__indicator--contrast {
  margin-left: 4px;
  color: rgb(253 204 8);
  color: var(--color-accent-yellow);
  position: relative;
  top: -10px;
}
.mounting__news__wrapper {
  margin: 0 32px;
  overflow: hidden;
}
.mounting__other-sections {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 32px;
  padding-bottom: 112px;
  background-color: rgb(9 14 17);
  background-color: var(--color-dark);
}
@media (max-width: 1023.98px) {
  .mounting__other-sections {
    gap: 36px;
    padding: 90px 24px 60px;
  }
}
.mounting__other-sections__title {
  font-size: 13px;
  font-weight: 700;
  line-height: 110%;
  vertical-align: bottom;
  color: rgb(255 255 255);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 4%;
}
@media (max-width: 1023.98px) {
  .mounting__other-sections__title {
    color: rgb(255 255 255 / 45%);
    color: var(--color-white-opacity-45);
  }
}
.mounting__objects {
  display: flex;
  flex-direction: column;
  padding-bottom: 112px;
  background-color: rgb(9 14 17);
  background-color: var(--color-dark);
}
.mounting__objects__title {
  padding: 152px 32px 72px;
}
.mounting__objects__title__text {
  font-size: 64px;
  font-weight: 500;
  line-height: 90%;
  color: rgb(255 255 255);
  color: var(--color-white);
  letter-spacing: 0.02em;
  text-wrap: balance;
}
@media (max-width: 1023.98px) {
  .mounting__objects__title__text {
    font-size: 28px;
    line-height: 100%;
  }
}
@media (max-width: 1023.98px) {
  .mounting__objects__title {
    padding: 98px 24px 32px;
  }
}
.mounting__objects__content {
  display: flex;
  width: 100%;
}
@media (max-width: 1023.98px) {
  .mounting__objects__content {
    flex-direction: column;
  }
}
.mounting__objects__items {
  width: 33%;
  min-width: 360px;
  border-right: 1px solid rgb(204 234 255 / 10%);
  border-right: 1px solid var(--color-stroke-dark-opacity-10);
}
@media (max-width: 1023.98px) {
  .mounting__objects__items {
    width: 100%;
    min-width: auto;
    border-right: none;
  }
}
.mounting__objects__item-accordion--mobile {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height transition 0.3s ease-in-out;
  transition: max-height transition var(--transition);
}
@media (max-width: 1023.98px) {
  .mounting__objects__item-accordion--mobile {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
  }
}
.mounting__objects__item {
  display: flex;
  flex-direction: column;
  gap: 112px;
  padding: 32px;
  cursor: pointer;
  background-color: rgb(9 14 17);
  background-color: var(--color-dark);
  border: 1px solid rgb(204 234 255 / 10%);
  border: 1px solid var(--color-stroke-dark-opacity-10);
  border-bottom: none;
  border-left: none;
  transition: background-color 0.3s ease-in-out;
  transition: background-color var(--transition);
}
.mounting__objects__item:last-child {
  border-bottom: 1px solid rgb(204 234 255 / 10%);
  border-bottom: 1px solid var(--color-stroke-dark-opacity-10);
}
.mounting__objects__item--active {
  background-color: rgb(14 20 25);
  background-color: var(--color-dark-third);
}
@media (hover: hover) and (pointer: fine){
.mounting__objects__item:hover {
  background-color: rgb(14 20 25);
  background-color: var(--color-dark-third);
}
}
.mounting__objects__item--mobile-active .mounting__objects__item__type, .mounting__objects__item--mobile-active .mounting__objects__item__place {
  margin-bottom: 24px;
}
@media (max-width: 1023.98px) {
  .mounting__objects__item--mobile-active .mounting__objects__item__type, .mounting__objects__item--mobile-active .mounting__objects__item__place {
    margin-bottom: 0;
  }
}
.mounting__objects__item--mobile-active .mounting__objects__item__place__svg--inactive {
  display: none;
}
.mounting__objects__item--mobile-active .mounting__objects__item__place__svg--active {
  display: block;
}
.mounting__objects__item__type {
  font-size: 13px;
  font-weight: 700;
  line-height: 110%;
  color: rgb(255 255 255 / 35%);
  color: var(--color-white-opacity-35);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: margin-bottom 0.3s ease-in-out;
  transition: margin-bottom var(--transition);
}
@media (max-width: 1023.98px) {
  .mounting__objects__item__type {
    display: none;
  }
}
.mounting__objects__item__place {
  display: flex;
  justify-content: space-between;
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  color: rgb(255 255 255);
  color: var(--color-white);
  transition: margin-bottom 0.3s ease-in-out;
  transition: margin-bottom var(--transition);
}
.mounting__objects__item__place__svg {
  display: none;
}
.mounting__objects__item__place__svg--inactive {
  display: block;
}
.mounting__objects__item__place__svg--active {
  display: none;
}
@media (max-width: 1023.98px) {
  .mounting__objects__item__place__svg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 1023.98px) {
  .mounting__objects__item__place {
    padding: 20px 24px;
    font-size: 16px;
    line-height: 130%;
  }
}
@media (max-width: 1023.98px) {
  .mounting__objects__item {
    gap: 0;
    padding: 0;
  }
  .mounting__objects__item--mobile-active {
    background-color: rgb(255 255 255);
    background-color: var(--color-white);
  }
  .mounting__objects__item--mobile-active .mounting__objects__item__place {
    color: rgb(14 20 25);
    color: var(--color-dark-third);
  }
}
.mounting__objects__item--active--desktop {
  flex: 1;
  width: 68%;
  min-height: 100%;
  border-left: none;
}
@media (max-width: 1023.98px) {
  .mounting__objects__item--active--desktop {
    display: none;
  }
}
@media (max-width: 1023.98px) {
  .mounting__objects {
    margin-bottom: 0;
  }
}
.mounting__factories {
  background-color: rgb(253 204 8);
  background-color: var(--color-accent-yellow);
}

.mounting-object {
  display: flex;
  flex-direction: column;
  gap: 64px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 32px 40px;
  color: rgb(13 16 21);
  color: var(--color-text);
  background-color: rgb(255 255 255);
  background-color: var(--color-white);
  border: 1px solid rgb(204 234 255 / 10%);
  border: 1px solid var(--color-stroke-dark-opacity-10);
  transition: background-color 0.3s ease-in-out;
  transition: background-color var(--transition);
}
.mounting-object__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1023.98px) {
  .mounting-object__header {
    flex-direction: column-reverse;
    padding: 34px 24px 0;
    gap: 10px;
  }
}
.mounting-object__type {
  font-size: 13px;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
  letter-spacing: 4%;
}
.mounting-object__client {
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 0%;
}
@media (max-width: 1023.98px) {
  .mounting-object__client {
    font-size: 14px;
    color: rgb(13 16 21 / 45%);
    color: var(--color-text-opacity-45);
  }
}
.mounting-object__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 32px;
  min-height: 0;
}
@media (max-width: 1023.98px) {
  .mounting-object__content {
    flex-direction: column-reverse;
    gap: 60px;
  }
}
.mounting-object__event {
  font-size: 32px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: 0.02em;
}
@media (max-width: 1023.98px) {
  .mounting-object__event {
    font-size: 24px;
    letter-spacing: 0;
  }
}
.mounting-object__factoids {
  display: flex;
  flex: 1;
  gap: 32px;
  min-height: 0;
}
@media (max-width: 1023.98px) {
  .mounting-object__factoids {
    padding: 0 24px;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 44px;
  }
}
.mounting-object__factoid {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
}
.mounting-object__factoid-fact {
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  vertical-align: middle;
  letter-spacing: 0%;
}
@media (max-width: 1023.98px) {
  .mounting-object__factoid-fact {
    font-size: 14px;
    color: rgb(13 16 21 / 45%);
    color: var(--color-text-opacity-45);
  }
}
.mounting-object__factoid-value {
  margin-top: auto;
  font-size: 24px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -2%;
}
@media (max-width: 1023.98px) {
  .mounting-object__factoid-value {
    padding-top: 0;
    margin-top: 0;
    margin-bottom: auto;
  }
}
@media (max-width: 1023.98px) {
  .mounting-object__factoid {
    flex-direction: column-reverse;
    gap: 8px;
    max-width: 35%;
  }
}
.mounting-object__swiper-wrapper {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.mounting-object__swiper {
  position: relative;
  width: 100%;
  max-width: 44vw;
}
.mounting-object__swiper-container {
  overflow: hidden;
  border-radius: 8px;
}
.mounting-object__swiper-image {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1023.98px) {
  .mounting-object__swiper-image {
    height: 420px;
  }
}
@media (max-width: 599.98px) {
  .mounting-object__swiper-image {
    height: 240px;
  }
}
.mounting-object__swiper-navigation {
  position: relative;
  z-index: 1;
  z-index: var(--z-index-default);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  pointer-events: none;
}
.mounting-object__swiper-navigation button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  pointer-events: auto;
  cursor: pointer;
  border: 1px solid rgb(0 30 51 / 20%);
  border: 1px solid var(--color-stroke-light-opacity-20);
  border-radius: 50%;
  transition: opacity 0.3s ease-in-out;
  transition: opacity var(--transition);
}
@media (hover: hover) and (pointer: fine){
.mounting-object__swiper-navigation button:hover {
  background-color: rgb(253 204 8);
  background-color: var(--color-accent-yellow);
}
}
@media (hover: hover) and (pointer: fine){
.mounting-object__swiper-navigation button:hover svg {
  color: rgb(9 14 17);
  color: var(--color-dark);
}
}
.mounting-object__swiper-navigation button.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.5;
}
.mounting-object__swiper-navigation button.swiper-button-disabled svg {
  opacity: 0.5;
}
.mounting-object__swiper-navigation button svg {
  width: 24px;
  height: 24px;
  transition: opacity 0.3s ease-in-out;
  transition: opacity var(--transition);
}
@media (max-width: 1023.98px) {
  .mounting-object__swiper-navigation {
    display: none;
  }
}
.mounting-object__swiper-prev svg {
  transform: rotate(180deg);
}
@media (max-width: 1023.98px) {
  .mounting-object__swiper {
    max-width: 75%;
    margin-left: 24px;
  }
}
@media (max-width: 599.98px) {
  .mounting-object__swiper {
    max-width: calc(100% - 48px);
  }
}
@media (max-width: 1023.98px) {
  .mounting-object {
    gap: 40px;
    padding: 0 0 40px;
  }
}

.media {
  margin-bottom: 125px;
}
.media .select__element {
  height: 64px;
}
.media__title {
  margin: 32px 40px 0 32px;
}
@media (max-width: 1440px) {
  .media__title {
    margin: 57px 34px 0;
  }
}
@media (max-width: 1023.98px) {
  .media__title {
    margin: 99px 24px 0;
  }
}
.media__swiper-container {
  position: relative;
  margin-top: 78px;
  border-top: 1px solid rgb(0 30 51 / 20%);
  border-top: 1px solid var(--color-stroke-light-opacity-20);
  border-bottom: 1px solid rgb(0 30 51 / 20%);
  border-bottom: 1px solid var(--color-stroke-light-opacity-20);
}
@media (max-width: 980px) {
  .media__swiper-container {
    margin-top: 40px;
  }
}
@media (max-width: 1023.98px) {
  .media__swiper-container {
    margin-top: 24px;
  }
}
.media__swiper {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  color: rgb(13 16 21);
  color: var(--color-text);
  background: #fff;
  border-radius: 0;
}
@media (max-width: 1023.98px) {
  .media__swiper {
    min-height: auto;
  }
}
.media__swiper-pagination.swiper-pagination-bullets {
  position: static;
  z-index: 2;
  z-index: var(--z-index-two);
  display: none;
  padding: 39px 0 24px;
}
@media (max-width: 1023.98px) {
  .media__swiper-pagination.swiper-pagination-bullets {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
  }
}
.media__swiper-pagination.swiper-pagination-bullets.swiper-pagination-bullets span {
  width: 4px;
  height: 4px;
  margin: 0;
  background: rgb(13 16 21 / 45%);
  background: var(--color-text-opacity-45);
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}
.media__swiper-pagination.swiper-pagination-bullets.swiper-pagination-bullets span.swiper-pagination-bullet-active {
  width: 24px;
  background: rgb(13 16 21);
  background: var(--color-text);
  border-radius: 4px;
}
.media__swiper-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}
.media__swiper-slide {
  display: flex;
  width: 100vw;
  min-height: 538px;
}
@media (max-width: 1023.98px) {
  .media__swiper-slide {
    flex-direction: column-reverse;
    min-height: 0;
  }
}
.media__swiper-slide__content {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  max-width: 50%;
  padding: 40px 40px 40px 32px;
}
@media (max-width: 1023.98px) {
  .media__swiper-slide__content {
    max-width: 100%;
    padding: 32px 24px;
  }
}
.media__swiper-slide__header {
  display: flex;
  gap: 22px;
  margin-bottom: 33px;
}
@media (max-width: 1023.98px) {
  .media__swiper-slide__header {
    margin-bottom: 17px;
  }
}
.media__swiper-slide__date, .media__swiper-slide__type {
  font-size: 13px;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media (max-width: 600px) {
  .media__swiper-slide__date, .media__swiper-slide__type {
    color: rgb(13 16 21 / 45%);
    color: var(--color-text-opacity-45);
  }
}
.media__swiper-slide__type {
  color: rgb(13 16 21 / 45%);
  color: var(--color-text-opacity-45);
}
@media (max-width: 600px) {
  .media__swiper-slide__type {
    display: none;
  }
}
.media__swiper-slide__title {
  margin-bottom: 48px;
  font-size: 48px;
  font-weight: 500;
  line-height: 100%;
  color: #222;
  letter-spacing: 0.02em;
}
@media (max-width: 1023.98px) {
  .media__swiper-slide__title {
    margin-bottom: 0;
    font-size: 24px;
    line-height: 105%;
    letter-spacing: 0.01em;
  }
}
.media__swiper-slide__image {
  display: flex;
  flex: 1 1 0;
  align-items: stretch;
  justify-content: flex-end;
  min-width: 0;
  min-height: 500px;
}
@media (max-width: 600px) {
  .media__swiper-slide__image {
    min-height: 250px;
  }
}
.media__swiper-slide__image img {
  width: 100%;
  height: 100%;
  max-height: 538px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
}
@media (max-width: 1023.98px) {
  .media__swiper-slide__image img {
    max-height: 100%;
  }
}
.media__swiper-navigation {
  position: absolute;
  bottom: 32px;
  left: 40%;
  z-index: 2;
  z-index: var(--z-index-two);
  display: flex;
  gap: 8px;
}
@media (max-width: 1023.98px) {
  .media__swiper-navigation {
    display: none;
  }
}
.media__swiper-navigation__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  cursor: pointer;
  background: rgb(255 255 255);
  background: var(--color-white);
  border: 1px solid rgb(0 30 51 / 20%);
  border: 1px solid var(--color-stroke-light-opacity-20);
  border-radius: 50%;
}
.media__swiper-navigation__button__icon {
  width: 24px;
  height: 24px;
  color: rgb(13 16 21);
  color: var(--color-text);
}
.media__swiper-navigation__button--prev {
  transform: rotate(90deg);
}
.media__swiper-navigation__button--next {
  transform: rotate(-90deg);
}
.media__content {
  display: flex;
}
@media (max-width: 1023.98px) {
  .media__content {
    flex-direction: column;
  }
}
.media__content__filters {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 33.3%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 32px;
  margin-bottom: 32px;
}
@media (max-width: 1023.98px) {
  .media__content__filters {
    position: static;
    min-width: 100%;
    padding: 32px 24px;
    margin-bottom: 0;
    border-bottom: 1px solid rgb(0 30 51 / 20%);
    border-bottom: 1px solid var(--color-stroke-light-opacity-20);
  }
}
.media__content__list {
  display: flex;
  flex-direction: column;
  padding-bottom: 48px;
  border-left: 1px solid rgb(0 30 51 / 20%);
  border-left: 1px solid var(--color-stroke-light-opacity-20);
}
@media (max-width: 1023.98px) {
  .media__content__list {
    border-left: none;
  }
}
.media__content__pagination {
  margin-top: 48px;
}
@media (max-width: 1023.98px) {
  .media {
    margin-bottom: 0;
  }
}

.detailed {
  padding: 40px 32px 32px;
}
.detailed .subscription-form__title-text {
  font-size: 48px;
  letter-spacing: 0.02em;
  line-height: 100%;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .detailed .subscription-form__title-text {
    font-size: 32px;
    line-height: 110%;
  }
}
.detailed .subscription-form__policy {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .detailed .subscription-form__policy {
    font-size: 13px;
    line-height: 130%;
    letter-spacing: -0.025em;
  }
}
.detailed .share ul {
  list-style: none;
  padding-left: 0;
}
@media (max-width: 1440px) {
  .detailed {
    padding: 52px 32px 32px;
  }
}
@media (max-width: 1023.98px) {
  .detailed {
    padding: 96px 0 24px;
  }
}
.detailed__container {
  display: flex;
  gap: 48px;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 1300px) {
  .detailed__container {
    gap: 32px;
  }
}
@media (max-width: 1023.98px) {
  .detailed__container {
    gap: 47px;
  }
}
@media (max-width: 1023.98px) {
  .detailed__container {
    flex-direction: column;
  }
}
.detailed__content {
  width: 67.4%;
}
.detailed__content h2 {
  margin: 40px 0 46px;
  font-size: 32px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: 0.02em;
}
@media (max-width: 1023.98px) {
  .detailed__content h2 {
    font-size: 20px;
    margin: 40px 0 55px;
    letter-spacing: 0;
  }
}
.detailed__content h3 {
  margin: 16px 0 24px;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.055em;
}
@media (max-width: 1023.98px) {
  .detailed__content h3 {
    margin: 16px 0 23px;
    font-size: 16px;
    letter-spacing: -0.01em;
    line-height: 120%;
  }
}
.detailed__content p {
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
@media (max-width: 1023.98px) {
  .detailed__content p {
    letter-spacing: -0.04em;
    line-height: 1.15;
  }
}
.detailed__content ul,
.detailed__content ol {
  padding-left: 16px;
  list-style: disc;
}
@media (max-width: 1023.98px) {
  .detailed__content ul,
  .detailed__content ol {
    padding-left: 48px;
  }
}
.detailed__content ul li,
.detailed__content ol li {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.5;
}
.detailed__content ul li:last-child,
.detailed__content ol li:last-child {
  margin-bottom: 0;
}
@media (max-width: 1023.98px) {
  .detailed__content ul li,
  .detailed__content ol li {
    line-height: 1.32;
    letter-spacing: 0.005em;
    margin-bottom: 16px;
  }
}
.detailed__content ol {
  list-style: decimal;
}
@media (max-width: 1300px) {
  .detailed__content {
    width: 70%;
  }
}
@media (max-width: 1023.98px) {
  .detailed__content {
    width: 80%;
  }
}
@media (max-width: 1023.98px) {
  .detailed__content {
    width: 100%;
  }
}
.detailed__content > * {
  padding-right: calc(26% - 32px);
}
@media (max-width: 1023.98px) {
  .detailed__content > * {
    padding-right: 24px;
    padding-left: 24px;
  }
}
.detailed-sticky {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background-color: rgb(255 255 255);
  background-color: var(--color-white);
}
@media (max-width: 1023.98px) {
  .detailed-sticky {
    align-items: flex-start;
    padding: 0 24px;
  }
}
.detailed-sticky__back-button-container {
  position: sticky;
  top: 24px;
  z-index: 10;
  z-index: var(--z-index-ten);
}
.detailed-sticky__back-button {
  display: flex;
  gap: 8px;
  align-items: center;
  cursor: pointer;
}
.detailed-sticky__back-button__icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgb(0 30 51 / 20%);
  border: 1px solid var(--color-stroke-light-opacity-20);
  border-radius: 50%;
}
.detailed-sticky__back-button__icon {
  width: 24px;
  height: 24px;
  transform: rotate(90deg);
}
.detailed-sticky__back-button__text {
  font-size: 16px;
  line-height: 1.5;
}
.detailed-sticky__share-button {
  position: sticky;
  bottom: 24px;
}
@media (max-width: 1023.98px) {
  .detailed-sticky__share-button--desktop {
    display: none;
  }
}
.detailed-sticky__share-button--mobile {
  display: none;
}
@media (max-width: 1023.98px) {
  .detailed-sticky__share-button--mobile {
    display: flex;
    width: 100%;
    border-bottom: 1px solid rgb(0 30 51 / 20%);
    border-bottom: 1px solid var(--color-stroke-light-opacity-20);
  }
  .detailed-sticky__share-button--mobile .share__button {
    padding: 0 0 24px;
    letter-spacing: 0.025em;
  }
}
.detailed__title {
  margin-bottom: 48px;
  font-size: 64px;
  font-weight: 500;
  line-height: 90%;
  letter-spacing: 0.026em;
}
@media (max-width: 1023.98px) {
  .detailed__title {
    margin-bottom: 32px;
    font-size: 48px;
  }
}
@media (max-width: 700px) {
  .detailed__title {
    margin-bottom: 28px;
    font-size: 24px;
    letter-spacing: 0.018em;
    line-height: 100%;
  }
}
.detailed__date {
  margin-bottom: 64px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-secondary);
}
@media (max-width: 1023.98px) {
  .detailed__date {
    margin-bottom: 44px;
    font-size: 13px;
    letter-spacing: 0.07em;
  }
}
.detailed__swiper-container {
  margin-bottom: 69px;
}
@media (max-width: 1023.98px) {
  .detailed__swiper-container {
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 55px;
  }
}
.detailed__accent-text {
  padding: 32px;
  margin: 32px calc(26% - 32px) 56px 0;
  font-size: 24px;
  line-height: 130%;
  background-color: rgb(237 241 242);
  background-color: var(--color-light);
  border-radius: 16px;
  letter-spacing: 0.022em;
}
@media (max-width: 1023.98px) {
  .detailed__accent-text {
    padding: 24px 32px 32px 16px;
    margin: 32px 24px 56px;
    font-size: 20px;
  }
}
.detailed__swiper-smaller {
  margin: 24px 0;
}
@media (max-width: 1023.98px) {
  .detailed__swiper-smaller {
    margin: 24px 0 48px;
  }
  .detailed__swiper-smaller .detailed-swiper__caption {
    padding: 12px 0 0;
  }
}
.detailed__quote {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 40px 0 64px;
}
.detailed__quote__icon {
  width: 40px;
  height: 31px;
  margin-bottom: 24px;
}
@media (max-width: 1023.98px) {
  .detailed__quote__icon {
    margin-bottom: 0;
  }
}
.detailed__quote__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-left: 32px;
  border-left: 2px solid rgb(14 20 25);
  border-left: 2px solid var(--color-dark-third);
}
@media (max-width: 1023.98px) {
  .detailed__quote__content {
    padding-left: 16px;
  }
}
.detailed__quote__content p {
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -2%;
}
@media (max-width: 1023.98px) {
  .detailed__quote__content p {
    font-size: 20px;
    letter-spacing: -0.01em;
  }
}
.detailed__quote__content-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.detailed__quote__content-author p {
  margin-bottom: 0;
}
.detailed__quote__content-author p:first-child {
  font-size: 20px;
  font-weight: 500;
  line-height: 110%;
}
@media (max-width: 1023.98px) {
  .detailed__quote__content-author p:first-child {
    font-size: 16px;
  }
}
.detailed__quote__content-author p:last-child {
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  color: rgb(13 16 21 / 45%);
  color: var(--color-text-opacity-45);
}
@media (max-width: 1023.98px) {
  .detailed__quote__content-author p:last-child {
    font-size: 14px;
  }
}
.detailed__quote__content-author-name {
  font-size: 20px;
  font-weight: 500;
  line-height: 110%;
}
@media (max-width: 1023.98px) {
  .detailed__quote__content-author-name {
    font-size: 16px;
  }
}
.detailed__quote__content-author-position {
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  color: rgb(13 16 21 / 45%);
  color: var(--color-text-opacity-45);
}
@media (max-width: 1023.98px) {
  .detailed__quote__content-author-position {
    font-size: 14px;
  }
}
.detailed__related-news {
  display: flex;
  margin: 120px 0;
  border-top: 1px solid rgb(0 30 51 / 20%);
  border-top: 1px solid var(--color-stroke-light-opacity-20);
}
@media (max-width: 1023.98px) {
  .detailed__related-news {
    flex-direction: column;
    margin: 48px 0 0;
    padding-bottom: 64px;
  }
}
.detailed__related-news-title {
  width: 41.3%;
  padding: 32px;
  font-size: 48px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.02em;
}
@media (max-width: 1023.98px) {
  .detailed__related-news-title {
    width: 100%;
    padding: 32px 24px;
    font-size: 24px;
    border-bottom: 1px solid rgb(0 30 51 / 20%);
    border-bottom: 1px solid var(--color-stroke-light-opacity-20);
    letter-spacing: 0.095em;
  }
}
.detailed__related-news-list {
  display: flex;
  flex-direction: column;
  border: 1px solid rgb(0 30 51 / 20%);
  border: 1px solid var(--color-stroke-light-opacity-20);
  border-top: none;
}
.detailed__padding-right-0 {
  padding-right: 0;
}
.detailed__form {
  margin: 48px 0 72px;
}
@media (max-width: 1023.98px) {
  .detailed__form {
    margin: 24px 24px 40px;
  }
}

.detailed-swiper {
  position: relative;
  margin-bottom: 27px;
}
@media (max-width: 1023.98px) {
  .detailed-swiper {
    margin-bottom: 0;
  }
}
.detailed-swiper-wrapper {
  width: 100%;
  height: 580px;
}
@media (max-width: 600px) {
  .detailed-swiper-wrapper {
    height: 245px;
  }
}
.detailed-swiper--smaller .detailed-swiper-wrapper {
  height: 450px;
}
@media (max-width: 600px) {
  .detailed-swiper--smaller .detailed-swiper-wrapper {
    height: 175px;
  }
}
.detailed-swiper--smaller .detailed-swiper-slide img {
  border-radius: 16px;
}
.detailed-swiper-slide img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}
@media (max-width: 1023.98px) {
  .detailed-swiper-slide img {
    border-radius: 0;
  }
}
.detailed-swiper-pagination.swiper-pagination-fraction {
  bottom: 50%;
  left: 50%;
  font-size: 14px;
  color: rgb(255 255 255);
  color: var(--color-white);
  pointer-events: none;
  transform: translate(-50%, 50%);
}
@media (max-width: 1023.98px) {
  .detailed-swiper-pagination.swiper-pagination-fraction.swiper-pagination {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .detailed-swiper-pagination.swiper-pagination-fraction .swiper-pagination-bullet {
    width: 4px;
    height: 4px;
    margin: 0 4px;
    background-color: rgb(255 255 255);
    background-color: var(--color-white);
    opacity: 0.5;
    transition: opacity 0.3s, width 0.3s;
  }
  .detailed-swiper-pagination.swiper-pagination-fraction .swiper-pagination-bullet-active {
    width: 16px;
    border-radius: 8px;
    opacity: 1;
  }
}
.detailed-swiper-nav {
  position: absolute;
  bottom: 24px;
  left: 50%;
  z-index: 2;
  z-index: var(--z-index-two);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 190px;
  height: 64px;
  padding: 8px;
  background: rgb(13 16 21 / 45%);
  background: var(--color-text-opacity-45);
  border-radius: 100px;
  transform: translateX(-50%);
}
@media (max-width: 1023.98px) {
  .detailed-swiper-nav {
    bottom: 16px;
    left: 0;
    justify-content: center;
    width: 100%;
    height: 40px;
    padding: 0;
    background: transparent;
    transform: translateX(0);
    transform: none;
  }
}
.detailed-swiper-nav__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  cursor: pointer;
  background-color: rgb(255 255 255 / 9%);
  background-color: var(--color-white-opacity-09);
  border-radius: 50%;
  transition: opacity 0.3s;
}
@media (max-width: 1023.98px) {
  .detailed-swiper-nav__button {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine){
.detailed-swiper-nav__button:hover {
  opacity: 0.8;
}
}
.detailed-swiper-nav__button__icon {
  width: 24px;
  height: 24px;
  color: rgb(255 255 255);
  color: var(--color-white);
}
.detailed-swiper-nav__button--prev {
  transform: rotate(90deg);
}
.detailed-swiper-nav__button--next {
  transform: rotate(-90deg);
}
.detailed-swiper__caption {
  padding-right: 10%;
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.5;
  color: rgb(13 16 21 / 45%);
  color: var(--color-text-opacity-45);
}
@media (max-width: 1023.98px) {
  .detailed-swiper__caption {
    padding: 12px 24px 0;
    font-size: 14px;
    margin-top: 0;
    line-height: 1.25;
  }
}
.detailed-swiper-swiper-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  z-index: var(--z-index-sidebar);
  display: none;
  width: 100%;
  height: 100%;
  padding: 0;
  background-color: rgb(9 14 17);
  background-color: var(--color-dark);
}
.detailed-swiper-swiper-overlay.active {
  display: flex;
}
@media (max-width: 1023.98px) {
  .detailed-swiper-swiper-overlay {
    align-items: center;
  }
}
@media (max-width: 600px) {
  .detailed-swiper-swiper-overlay {
    align-items: flex-end;
  }
}
.detailed-swiper-swiper-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 32px;
}
@media (max-width: 1023.98px) {
  .detailed-swiper-swiper-container {
    height: 50%;
    padding: 0;
  }
}
@media (max-width: 600px) {
  .detailed-swiper-swiper-container {
    gap: 25vh;
    height: 75%;
  }
}
.detailed-swiper-swiper-close {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 10;
  z-index: var(--z-index-ten);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 12px;
  color: rgb(255 255 255);
  color: var(--color-white);
  cursor: pointer;
  background: none;
  border: 1px solid rgb(255 255 255 / 9%);
  border: 1px solid var(--color-white-opacity-09);
  border-radius: 50%;
  transition: background-color 0.2s;
}
@media (hover: hover) and (pointer: fine){
.detailed-swiper-swiper-close:hover {
  background-color: var(--color-background-hover);
}
}
@media (max-width: 1023.98px) {
  .detailed-swiper-swiper-close {
    position: fixed;
    top: 24px;
    right: 24px;
  }
}
.detailed-swiper-fullscreen-container {
  position: relative;
  flex: 1;
  width: 80%;
  height: calc(100% - 120px);
  margin-bottom: 20px;
}
@media (max-width: 1023.98px) {
  .detailed-swiper-fullscreen-container {
    width: 100%;
  }
}
.detailed-swiper-fullscreen-swiper {
  width: 100%;
  height: 100%;
}
.detailed-swiper-fullscreen-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.detailed-swiper-fullscreen-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.detailed-swiper-fullscreen-prev {
  transform: rotate(90deg);
}
.detailed-swiper-fullscreen-next {
  transform: rotate(-90deg);
}
.detailed-swiper-fullscreen-pagination {
  position: fixed;
  right: 32px;
  bottom: 32px;
  left: auto;
  z-index: 2;
  z-index: var(--z-index-two);
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  color: rgb(255 255 255);
  color: var(--color-white);
}
@media (max-width: 1023.98px) {
  .detailed-swiper-fullscreen-pagination {
    display: none;
  }
}
.detailed-swiper-fullscreen-nav {
  position: fixed;
  right: 0;
  bottom: calc(50% + 60px);
  left: 0;
  z-index: 2;
  z-index: var(--z-index-two);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 32px;
  pointer-events: none;
  border-radius: 100px;
  transform: translateY(50%);
}
.detailed-swiper-fullscreen-nav__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  pointer-events: auto;
  cursor: pointer;
  background-color: rgb(255 255 255 / 9%);
  background-color: var(--color-white-opacity-09);
  border-radius: 50%;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine){
.detailed-swiper-fullscreen-nav__button:hover {
  opacity: 0.8;
}
}
@media (max-width: 600px) {
  .detailed-swiper-fullscreen-nav__button {
    display: none;
  }
}
.detailed-swiper-fullscreen-nav__icon {
  width: 24px;
  height: 24px;
  color: rgb(255 255 255);
  color: var(--color-white);
}
.detailed-swiper-thumbs-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100px;
  padding: 0 60px;
}
.detailed-swiper-thumbs-swiper {
  width: 100%;
  height: 76px;
}
.detailed-swiper-thumbs-swiper .swiper-slide {
  width: 120px;
  height: 100%;
  opacity: 0.2;
  transition: opacity 0.3s;
}
.detailed-swiper-thumbs-swiper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.detailed-swiper-thumbs-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.detailed-swiper-thumbs-nav {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  z-index: var(--z-index-two);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transform: translateY(-50%);
}
.detailed-swiper-thumbs-nav__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: rgb(13 16 21 / 45%);
  background-color: var(--color-text-opacity-45);
  border-radius: 50%;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine){
.detailed-swiper-thumbs-nav__button:hover {
  opacity: 0.8;
}
}
.detailed-swiper-thumbs-nav__button__icon {
  width: 20px;
  height: 20px;
  color: rgb(255 255 255);
  color: var(--color-white);
}

.news-item {
  display: flex;
  gap: 80px;
  justify-content: space-between;
  padding: 30px 32px;
  border-bottom: 1px solid rgb(0 30 51 / 20%);
  border-bottom: 1px solid var(--color-stroke-light-opacity-20);
}
@media (max-width: 1279.98px) {
  .news-item {
    gap: 40px;
  }
}
@media (max-width: 1023.98px) {
  .news-item {
    gap: 32px;
    padding: 24px 24px 22px;
  }
}
@media (max-width: 767.98px) {
  .news-item {
    flex-direction: column;
  }
}
.news-item-data-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.news-item-info {
  display: flex;
  gap: 124px;
}
@media (max-width: 1279.98px) {
  .news-item-info {
    gap: 40px;
  }
}
@media (max-width: 1023.98px) {
  .news-item-info {
    gap: 80px;
  }
}
.news-item-date {
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  color: rgb(13 16 21 / 45%);
  color: var(--color-text-opacity-45);
  letter-spacing: 0.035em;
  position: relative;
  top: 8px;
}
@media (max-width: 767.98px) {
  .news-item-date {
    display: none;
  }
}
.news-item-date--mobile {
  display: none;
}
@media (max-width: 767.98px) {
  .news-item-date--mobile {
    display: block;
    top: 0;
  }
}
.news-item-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 110%;
  color: rgb(13 16 21);
  color: var(--color-text);
}
@media (max-width: 767.98px) {
  .news-item-title {
    font-size: 20px;
  }
}
.news-item-image img {
  width: 195px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 767.98px) {
  .news-item-image img {
    height: 120px;
    width: 156px;
  }
}

.subscription-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  background: rgb(14 20 25);
  background: var(--color-dark-third);
}
.subscription-form--rounded {
  border-radius: 16px;
}
@media (max-width: 767.98px) {
  .subscription-form {
    padding: 24px 24px 32px;
  }
}
.subscription-form__title {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 83px;
}
@media (max-width: 767.98px) {
  .subscription-form__title {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 10px;
  }
}
.subscription-form__title-text {
  width: 50%;
  font-size: 48px;
  font-weight: 500;
  line-height: 100%;
  color: rgb(255 255 255);
  color: var(--color-white);
  letter-spacing: 0.02em;
}
@media (max-width: 767.98px) {
  .subscription-form__title-text {
    width: 100%;
    font-size: 32px;
  }
}
.subscription-form__icons {
  display: flex;
  gap: 9px;
  margin-bottom: 32px;
}
.subscription-form__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgb(255 255 255 / 9%);
  background: var(--color-white-opacity-09);
  border-radius: 50%;
}
@media (max-width: 767.98px) {
  .subscription-form__icon {
    width: 48px;
    height: 48px;
  }
}
.subscription-form__icon svg {
  width: 32px;
  height: 32px;
  color: rgb(255 255 255);
  color: var(--color-white);
}
@media (max-width: 767.98px) {
  .subscription-form__icon svg {
    width: 24px;
    height: 24px;
  }
}
.subscription-form__label {
  align-items: center;
  width: 100%;
  margin-bottom: 16px;
  color: rgb(255 255 255);
  color: var(--color-white);
  background: none;
}
.subscription-form__form {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 100%;
  margin-bottom: 16px;
}
.subscription-form__form .input-wrapper {
  width: 47.7%;
}
@media (max-width: 767.98px) {
  .subscription-form__form .input-wrapper {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .subscription-form__form {
    flex-direction: column;
    align-items: flex-start;
  }
}
.subscription-form__input.input {
  min-width: 0;
  max-width: 404px;
  height: 64px;
  padding: 0 24px;
  margin-right: 0;
  font-size: 16px;
  color: #222;
  outline: none;
  background: #fff;
  border: none;
  border-radius: 999px;
}
.subscription-form__input.input::-moz-placeholder {
  color: rgb(13 16 21 / 45%);
  color: var(--color-text-opacity-45);
  opacity: 1;
}
.subscription-form__input.input::placeholder {
  color: rgb(13 16 21 / 45%);
  color: var(--color-text-opacity-45);
  opacity: 1;
}
@media (max-width: 767.98px) {
  .subscription-form__input.input {
    max-width: 100%;
  }
}
.subscription-form__button {
  max-width: 150px;
  height: 56px;
  font-size: 16px;
  line-height: 110%;
  color: rgb(9 14 17);
  color: var(--color-dark);
  letter-spacing: 0;
  cursor: pointer;
  background: rgb(253 204 8);
  background: var(--color-accent-yellow);
  border: none;
  border-radius: 999px;
}
@media (max-width: 767.98px) {
  .subscription-form__button {
    max-width: 100%;
    height: 64px;
  }
}
.subscription-form__policy {
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  color: rgb(255 255 255 / 40%);
  color: var(--color-white-opacity-40);
}
@media (max-width: 767.98px) {
  .subscription-form__policy {
    font-size: 13px;
  }
}
.subscription-form__link {
  margin-left: 4px;
  color: rgb(255 255 255);
  color: var(--color-white);
}

.manufacture__header {
  position: relative;
  margin-top: -151px;
}
@media (max-width: 1023.98px) {
  .manufacture__header {
    margin-top: 0;
  }
}
.manufacture__header .cover-screen__cover-container {
  height: 100%;
}
.manufacture__statistic {
  background-color: rgb(253 204 8);
  background-color: var(--color-accent-yellow);
}
.manufacture__swiper {
  color: rgb(255 255 255);
  color: var(--color-white);
}
.manufacture__swiper-header {
  padding: 150px 32px 100px;
}
@media (max-width: 1023.98px) {
  .manufacture__swiper-header {
    padding: 33px 24px 40px 24px;
  }
}
.manufacture__swiper-header-title {
  margin-bottom: 48px;
  font-size: 64px;
  font-weight: 500;
  line-height: 0.9em;
  letter-spacing: 0.025em;
}
@media (max-width: 1023.98px) {
  .manufacture__swiper-header-title {
    margin-bottom: 32px;
    font-size: 28px;
    line-height: 1em;
    letter-spacing: 0.01em;
  }
}
.manufacture__swiper-header-desc {
  display: flex;
  gap: 27px;
  align-items: flex-end;
  letter-spacing: 0.04em;
}
@media (max-width: 1023.98px) {
  .manufacture__swiper-header-desc {
    flex-wrap: wrap;
    gap: 10px;
    letter-spacing: 0.01em;
  }
}
.manufacture__swiper-header-desc-number {
  font-size: 112px;
  font-weight: 500;
  line-height: 0.9em;
}
@media (max-width: 1023.98px) {
  .manufacture__swiper-header-desc-number {
    font-size: 64px;
    letter-spacing: -0.01em;
  }
}
.manufacture__swiper-header-desc-plus {
  position: relative;
  top: -10px;
  color: rgb(253 204 8);
  color: var(--color-accent-yellow);
}
@media (max-width: 1023.98px) {
  .manufacture__swiper-header-desc-plus {
    top: -5px;
  }
}
.manufacture__swiper-header-desc-text {
  font-size: 24px;
  line-height: 1.2em;
}
@media (max-width: 1023.98px) {
  .manufacture__swiper-header-desc-text {
    font-size: 16px;
    line-height: 1.1em;
  }
}
.manufacture__swiper-custom {
  /* stylelint-disable */
  /* stylelint-enable */
}
.manufacture__swiper-custom .indexed-swiper__item__title {
  max-width: 400px;
  font-size: 24px;
  line-height: 1.2em;
}
@media (max-width: 1023.98px) {
  .manufacture__swiper-custom .indexed-swiper__item__title {
    font-size: 14px;
  }
}
.manufacture__directions {
  color: rgb(255 255 255);
  color: var(--color-white);
}
.manufacture__directions-header {
  padding-block: 153px 82px;
}
@media (max-width: 1023.98px) {
  .manufacture__directions-header {
    padding: 64px 24px 32px;
  }
}
.manufacture__directions-header-title {
  font-size: 64px;
  font-weight: 500;
  line-height: 0.9em;
  letter-spacing: 0.025em;
}
@media (max-width: 1023.98px) {
  .manufacture__directions-header-title {
    font-size: 28px;
    line-height: 1em;
    letter-spacing: 0.01em;
  }
}
.manufacture__directions-cards {
  min-height: auto;
  transition: min-height 0.3s ease-in-out;
  transition: min-height var(--transition);
}
.manufacture__directions-cards:has(> .manufacture__directions-card_active) {
  min-height: 800px;
}
.manufacture__directions-cards_more-items .manufacture__directions-card:nth-last-child(1) .manufacture__directions-card-content {
  bottom: 0px;
}
.manufacture__directions-cards_more-items .manufacture__directions-card:nth-last-child(2) .manufacture__directions-card-content {
  bottom: -96px;
}
.manufacture__directions-cards_more-items .manufacture__directions-card:nth-last-child(3) .manufacture__directions-card-content {
  bottom: -192px;
}
.manufacture__directions-cards_more-items .manufacture__directions-card:nth-last-child(4) .manufacture__directions-card-content {
  bottom: -288px;
}
.manufacture__directions-cards_more-items .manufacture__directions-card:nth-last-child(5) .manufacture__directions-card-content {
  bottom: -384px;
}
.manufacture__directions-cards_more-items .manufacture__directions-card:nth-last-child(6) .manufacture__directions-card-content {
  bottom: -480px;
}
.manufacture__directions-cards_more-items .manufacture__directions-card:nth-last-child(7) .manufacture__directions-card-content {
  bottom: -576px;
}
.manufacture__directions-cards_few-items .manufacture__directions-card:nth-child(1) .manufacture__directions-card-content {
  top: 0px;
}
.manufacture__directions-cards_few-items .manufacture__directions-card:nth-child(2) .manufacture__directions-card-content {
  top: -96px;
}
.manufacture__directions-cards_few-items .manufacture__directions-card:nth-child(3) .manufacture__directions-card-content {
  top: -192px;
}
.manufacture__directions-cards_few-items .manufacture__directions-card:nth-child(4) .manufacture__directions-card-content {
  top: -288px;
}
.manufacture__directions-cards_few-items .manufacture__directions-card:nth-child(5) .manufacture__directions-card-content {
  top: -384px;
}
.manufacture__directions-cards_few-items .manufacture__directions-card:nth-child(6) .manufacture__directions-card-content {
  top: -480px;
}
.manufacture__directions-cards_few-items .manufacture__directions-card:nth-child(7) .manufacture__directions-card-content {
  top: -576px;
}
.manufacture__directions-card {
  position: relative;
  display: flex;
}
.manufacture__directions:has(.manufacture__directions-card_active) .manufacture__directions-card-header {
  width: 50%;
}
@media (max-width: 1023.98px) {
  .manufacture__directions:has(.manufacture__directions-card_active) .manufacture__directions-card-header {
    width: 100%;
  }
}
.manufacture__directions-card_active .manufacture__directions-card-header {
  width: 50%;
  background-color: rgb(12 19 24);
  background-color: var(--color-dark-secondary);
}
@media (max-width: 1023.98px) {
  .manufacture__directions-card_active .manufacture__directions-card-header {
    width: 100%;
  }
}
.manufacture__directions-card_active .manufacture__directions-card-header-button-line:last-child {
  transform: scale(0);
}
.manufacture__directions-card_active .manufacture__directions-card-header-desc {
  grid-template-rows: 1fr;
}
.manufacture__directions-card_active .manufacture__directions-card-header-desc-text {
  padding-top: 32px;
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1023.98px) {
  .manufacture__directions-card_active .manufacture__directions-card-header-desc-text {
    padding-top: 18px;
    padding-right: 24px;
  }
}
.manufacture__directions-card_active .manufacture__directions-card-content {
  right: 0;
}
.manufacture__directions-card:last-child .manufacture__directions-card-header {
  border-bottom: 1px solid rgb(204 234 255 / 10%);
  border-bottom: 1px solid var(--color-stroke-dark-opacity-10);
}
.manufacture__directions-card-header {
  position: relative;
  z-index: 1;
  z-index: var(--z-index-default);
  width: 100%;
  min-height: 96px;
  padding: 27px 21px 27px 32px;
  background-color: rgb(9 14 17);
  background-color: var(--color-dark);
  border-top: 1px solid rgb(204 234 255 / 10%);
  border-top: 1px solid var(--color-stroke-dark-opacity-10);
  border-right: 1px solid rgb(204 234 255 / 10%);
  border-right: 1px solid var(--color-stroke-dark-opacity-10);
  transition: background-color 0.3s ease-in-out, width 0.3s ease-in-out;
  transition: background-color var(--transition), width var(--transition);
}
@media (max-width: 1023.98px) {
  .manufacture__directions-card-header {
    min-height: 64px;
    padding: 16px 16px 0 24px;
    overflow: hidden;
  }
}
.manufacture__directions-card-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
@media (max-width: 1023.98px) {
  .manufacture__directions-card-header-top {
    padding-bottom: 14px;
  }
}
.manufacture__directions-card-header-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
@media (max-width: 1023.98px) {
  .manufacture__directions-card-header-button {
    width: 32px;
    height: 32px;
  }
}
.manufacture__directions-card-header-button-line {
  display: block;
  width: 20px;
  height: 2px;
  background-color: rgb(255 255 255);
  background-color: var(--color-white);
  transition: transform 0.3s ease-in-out;
  transition: transform var(--transition);
}
@media (max-width: 1023.98px) {
  .manufacture__directions-card-header-button-line {
    width: 18px;
  }
}
.manufacture__directions-card-header-button-line:last-child {
  margin-top: -2px;
  rotate: -90deg;
}
.manufacture__directions-card-header-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2em;
  letter-spacing: 0.025em;
}
@media (max-width: 1023.98px) {
  .manufacture__directions-card-header-title {
    font-size: 16px;
    line-height: 1.1em;
  }
}
.manufacture__directions-card-header-desc {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-in-out;
  transition: grid-template-rows var(--transition);
}
.manufacture__directions-card-header-desc-wrapper {
  min-height: 0;
}
.manufacture__directions-card-header-desc-text {
  max-width: 80%;
  min-height: 0;
  overflow: hidden;
  line-height: 1.3em;
  color: rgb(255 255 255 / 45%);
  color: var(--color-white-opacity-45);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, padding-top 0.3s ease-in-out;
  transition: opacity var(--transition), transform var(--transition), padding-top var(--transition);
}
@media (max-width: 1023.98px) {
  .manufacture__directions-card-header-desc-text {
    max-width: 100%;
    margin-bottom: 24px;
  }
}
.manufacture__directions-card-header-desc-image {
  display: none;
  min-height: 0;
}
@media (max-width: 1023.98px) {
  .manufacture__directions-card-header-desc-image {
    display: block;
    width: 100dvw;
    height: 100dvw;
    margin-left: -24px;
  }
  .manufacture__directions-card-header-desc-image > img {
    width: 100%;
    height: 100%;
  }
}
.manufacture__directions-card-header-desc-button {
  display: none;
  min-height: 0;
}
@media (max-width: 1023.98px) {
  .manufacture__directions-card-header-desc-button {
    display: block;
    padding: 15px 24px;
    margin-bottom: 32px;
    color: rgb(13 16 21);
    color: var(--color-text);
    background-color: rgb(253 204 8);
    background-color: var(--color-accent-yellow);
    border-radius: 100px;
    letter-spacing: 0.04em;
  }
}
.manufacture__directions-card-content {
  position: absolute;
  right: -100%;
  width: calc(50% + 1px);
  height: 840px;
  padding: 32px;
  color: rgb(13 16 21);
  color: var(--color-text);
  background-color: rgb(12 19 24);
  background-color: var(--color-dark-secondary);
  border: 1px solid rgb(204 234 255 / 10%);
  border: 1px solid var(--color-stroke-dark-opacity-10);
  border-right: none;
  transition: width 0.3s ease-in-out, right 0.3s ease-in-out;
  transition: width var(--transition), right var(--transition);
}
@media (max-width: 1023.98px) {
  .manufacture__directions-card-content {
    display: none;
  }
}
.manufacture__directions-card-content-image {
  width: calc(100% + 33px);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.manufacture__directions-card-content-button {
  position: absolute;
  right: 32px;
  bottom: 32px;
}
.manufacture__other {
  padding-top: 122px;
  color: rgb(255 255 255);
  color: var(--color-white);
  padding-bottom: 150px;
}
@media (max-width: 1023.98px) {
  .manufacture__other {
    padding-top: 10px;
    padding-bottom: 0;
  }
}
.manufacture__other-header {
  padding-block: 32px 40px;
}
@media (max-width: 1023.98px) {
  .manufacture__other-header {
    padding: 32px 0 24px;
  }
}
@media (max-width: 1023.98px) {
  .manufacture .cover-screen-text .title {
    font-size: 42px;
  }
}

.possibility__header {
  position: relative;
  width: 100dvw;
  height: 100dvh;
  margin-top: -65px;
  color: rgb(255 255 255);
  color: var(--color-white);
}
.possibility__header-image-wrapper {
  position: absolute;
  left: 0;
}
@media (max-width: 1023.98px) {
  .possibility__header-image-wrapper::before {
    position: absolute;
    top: 0;
    z-index: 1;
    z-index: var(--z-index-default);
    width: 100%;
    height: 252px;
    content: "";
    background: linear-gradient(180deg, rgb(9 14 17) 70%, transparent 100%);
    background: linear-gradient(180deg, var(--color-dark) 70%, transparent 100%);
  }
}
.possibility__header-image-wrapper::after {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 310px;
  content: "";
  background: linear-gradient(0deg, rgb(9 14 17) 0%, transparent 100%);
  background: linear-gradient(0deg, var(--color-dark) 0%, transparent 100%);
}
@media (max-width: 1023.98px) {
  .possibility__header-image-wrapper::after {
    height: 182px;
  }
}
.possibility__header-image {
  position: relative;
  display: block;
  width: 100dvw;
  height: 100dvh;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.3;
}
.possibility__header-info {
  position: relative;
  z-index: 1;
  z-index: var(--z-index-default);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  padding-block: 130px 99px;
}
@media (max-width: 1023.98px) {
  .possibility__header-info {
    padding-block: 159px 38px;
    height: 100dvh;
  }
}
.possibility__header-title {
  max-width: 900px;
  font-size: 72px;
  font-weight: 500;
  line-height: 0.9em;
  letter-spacing: 0.02em;
}
@media (max-width: 1023.98px) {
  .possibility__header-title {
    font-size: 42px;
    line-height: 1.1em;
    letter-spacing: 0.03em;
  }
}
.possibility__header-statistics {
  display: flex;
  gap: 30px;
  justify-content: flex-end;
  width: 100%;
  padding-right: 198px;
}
@media (max-width: 1023.98px) {
  .possibility__header-statistics {
    flex-direction: column;
    gap: 30px;
    justify-content: flex-start;
    padding-right: 0;
  }
}
.possibility__header-statistic {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 1023.98px) {
  .possibility__header-statistic {
    gap: 4px;
  }
}
.possibility__header-statistic-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: -0.02em;
}
@media (max-width: 1023.98px) {
  .possibility__header-statistic-title {
    font-size: 28px;
  }
}
.possibility__header-statistic-text {
  max-width: 220px;
}
.possibility__header-statistic-text_small {
  max-width: 200px;
}
.possibility__advantages {
  color: rgb(255 255 255);
  color: var(--color-white);
}
@media (max-width: 1023.98px) {
  .possibility__advantages {
    padding-block: 64px 24px;
  }
}
.possibility__advantages-header {
  padding-bottom: 189px;
}
@media (max-width: 1023.98px) {
  .possibility__advantages-header {
    padding-bottom: 0;
  }
}
.possibility__advantages-title {
  padding-block: 32px;
  font-size: 64px;
  font-weight: 500;
  line-height: 0.9em;
  letter-spacing: -0.01em;
}
@media (max-width: 1023.98px) {
  .possibility__advantages-title {
    font-size: 28px;
    line-height: 1em;
    letter-spacing: -0.02em;
  }
}
.possibility__advantages-cards {
  position: relative;
  min-height: 528px;
}
.possibility__advantages-card {
  display: flex;
}
@media (max-width: 1023.98px) {
  .possibility__advantages-card {
    flex-direction: column-reverse;
    gap: 24px;
    padding: 24px 24px 32px;
    border-top: 1px solid rgb(204 234 255 / 10%);
    border-top: 1px solid var(--color-stroke-dark-opacity-10);
  }
}
.possibility__advantages-card:last-child .possibility__advantages-card-header {
  border-bottom: 1px solid rgb(204 234 255 / 10%);
  border-bottom: 1px solid var(--color-stroke-dark-opacity-10);
}
@media (max-width: 1023.98px) {
  .possibility__advantages-card:last-child .possibility__advantages-card-header {
    border-bottom: none;
  }
}
.possibility__advantages-card_active .possibility__advantages-card-header {
  background-color: rgb(12 19 24);
  background-color: var(--color-dark-secondary);
}
@media (max-width: 1023.98px) {
  .possibility__advantages-card_active .possibility__advantages-card-header {
    background-color: inherit;
  }
}
.possibility__advantages-card_active .possibility__advantages-card-image-wrapper {
  visibility: visible;
  opacity: 1;
}
.possibility__advantages-card-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
  min-height: 264px;
  padding: 32px;
  cursor: pointer;
  border: 1px solid rgb(204 234 255 / 10%);
  border: 1px solid var(--color-stroke-dark-opacity-10);
  border-bottom: none;
  border-left: none;
  transition: background-color 0.3s ease-in-out;
  transition: background-color var(--transition);
}
@media (max-width: 1023.98px) {
  .possibility__advantages-card-header {
    gap: 12px;
    width: 100%;
    min-height: auto;
    padding: 0;
    border: none;
  }
}
.possibility__advantages-card-title {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2em;
  letter-spacing: -0.02em;
}
@media (max-width: 1023.98px) {
  .possibility__advantages-card-title {
    font-size: 20px;
    line-height: 1.1em;
    letter-spacing: 0;
  }
}
.possibility__advantages-card-text {
  max-width: 500px;
  line-height: 1.3em;
  color: rgb(255 255 255 / 45%);
  color: var(--color-white-opacity-45);
}
.possibility__advantages-card-image-wrapper {
  position: absolute;
  top: -311px;
  right: 0;
  z-index: 1;
  z-index: var(--z-index-default);
  visibility: hidden;
  width: calc(50% + 1px);
  height: 840px;
  background-color: rgb(12 19 24);
  background-color: var(--color-dark-secondary);
  border: 1px solid rgb(204 234 255 / 10%);
  border: 1px solid var(--color-stroke-dark-opacity-10);
  border-right: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity var(--transition), visibility var(--transition);
}
@media (max-width: 1023.98px) {
  .possibility__advantages-card-image-wrapper {
    position: static;
    visibility: visible;
    width: 66.67%;
    height: calc(240px + 400 * (100vw - 360px) / 664);
    overflow: hidden;
    border: none;
    border-radius: 8px;
    opacity: 1;
  }
}
.possibility__advantages-card-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.possibility__advantages-card-button {
  position: absolute;
  right: 32px;
  bottom: 32px;
  color: rgb(13 16 21);
  color: var(--color-text);
}
@media (max-width: 1023.98px) {
  .possibility__advantages-card-button {
    width: 165px;
  }
}
@media (max-width: 1023.98px) {
  .possibility__advantages-card-button {
    display: none;
  }
}
.possibility__quote {
  width: 100%;
  height: 100dvh;
  color: rgb(255 255 255);
  color: var(--color-white);
}
@media (max-width: 1023.98px) {
  .possibility__quote {
    padding-bottom: 0;
    height: 570px;
  }
}
.possibility__quote-wrapper {
  position: relative;
  height: 100%;
}
.possibility__quote-info {
  position: relative;
  z-index: 1;
  z-index: var(--z-index-default);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-block: 32px;
}
@media (max-width: 1023.98px) {
  .possibility__quote-info {
    padding-bottom: 24px;
  }
}
.possibility__quote-icon-quote {
  width: 40px;
  height: 31px;
  margin-bottom: 32px;
}
@media (max-width: 1023.98px) {
  .possibility__quote-icon-quote {
    width: 20px;
    height: 15px;
    margin-bottom: 24px;
  }
}
.possibility__quote-title {
  max-width: 1100px;
  font-size: 48px;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: 0.015em;
}
@media (max-width: 1023.98px) {
  .possibility__quote-title {
    font-size: 20px;
    line-height: 1.1em;
    letter-spacing: -0.01em;
  }
}
.possibility__quote-title_accent {
  color: rgb(253 204 8);
  color: var(--color-accent-yellow);
}
.possibility__quote-image-wrapper {
  position: absolute;
  top: 0;
  left: -80px;
  width: calc(100% + 80px);
  height: 100%;
}
.possibility__quote-image-wrapper::after, .possibility__quote-image-wrapper::before {
  position: absolute;
  width: 100%;
  height: 310px;
  content: "";
}
.possibility__quote-image-wrapper::after {
  bottom: 0;
  background: linear-gradient(0deg, rgb(9 14 17) 0, transparent 100%);
  background: linear-gradient(0deg, var(--color-dark) 0, transparent 100%);
}
@media (max-width: 1023.98px) {
  .possibility__quote-image-wrapper::after {
    height: 100px;
  }
}
.possibility__quote-image-wrapper::before {
  top: 0;
  background: linear-gradient(180deg, rgb(9 14 17) 0, transparent 100%);
  background: linear-gradient(180deg, var(--color-dark) 0, transparent 100%);
}
@media (max-width: 1023.98px) {
  .possibility__quote-image-wrapper::before {
    height: 192px;
    background: linear-gradient(180deg, rgb(9 14 17) 40%, transparent 100%);
    background: linear-gradient(180deg, var(--color-dark) 40%, transparent 100%);
  }
}
.possibility__quote-author-name {
  margin-bottom: 4px;
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 1023.98px) {
  .possibility__quote-author-name {
    font-size: 20px;
    letter-spacing: 0.01em;
  }
}
@media (max-width: 1023.98px) {
  .possibility__quote-author-job {
    font-size: 14px;
  }
}
.possibility__quote-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.possibility__interview {
  color: rgb(255 255 255);
  color: var(--color-white);
}
.possibility__interview-header {
  padding-block: 152px 64px;
}
@media (max-width: 1023.98px) {
  .possibility__interview-header {
    padding: 30px 24px 32px;
  }
}
.possibility__interview-title {
  font-size: 64px;
  font-weight: 500;
  line-height: 0.9em;
  letter-spacing: 0.02em;
}
@media (max-width: 1023.98px) {
  .possibility__interview-title {
    max-width: 300px;
    font-size: 28px;
    line-height: 1em;
    letter-spacing: -0.02em;
  }
}
.possibility__interview-cards {
  display: flex;
  width: 100%;
  height: auto;
  padding-inline: 32px;
}
@media (max-width: 1023.98px) {
  .possibility__interview-cards {
    padding: 24px;
  }
}
.possibility__interview-cards::-webkit-scrollbar {
  display: none;
}
.possibility__interview-card {
  position: relative;
  flex-shrink: 0;
  width: 346px;
  height: 614px;
}
@media (max-width: 1023.98px) {
  .possibility__interview-card {
    width: 259px;
    height: 460px;
  }
}
@media (max-width: 1023.98px) {
  .possibility__interview-card-author {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
}
.possibility__interview-card::after {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 300px;
  overflow: hidden;
  content: "";
  background: linear-gradient(0deg, rgb(14 20 25) 0%, rgba(14, 20, 25, 0) 100%);
  background: linear-gradient(0deg, var(--color-dark-third) 0%, rgba(14, 20, 25, 0) 100%);
  border-radius: 0 0 12px 12px;
}
.possibility__interview-card-image-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgb(9 14 17);
  border: 1px solid var(--color-dark);
  border-radius: 12px;
}
.possibility__interview-card-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.possibility__interview-card-info {
  position: relative;
  z-index: 1;
  z-index: var(--z-index-default);
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding: 24px;
}
.possibility__interview-card-info-wrapper {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}
.possibility__interview-card-button {
  position: relative;
  width: 48px;
  height: 48px;
  background-color: rgb(253 204 8);
  background-color: var(--color-accent-yellow);
  border-radius: 50%;
}
@media (max-width: 1023.98px) {
  .possibility__interview-card-button {
    position: absolute;
    top: 16px;
    right: 16px;
  }
}
.possibility__interview-card-button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: 2px;
  content: "";
  border-color: transparent transparent transparent rgb(9 14 17);
  border-color: transparent transparent transparent var(--color-dark);
  border-style: solid;
  border-width: 8px 0 8px 12px;
  transform: translate(-50%, -50%);
}
.possibility__interview-card-name {
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.possibility__interview-card-job {
  font-size: 14px;
  color: rgb(255 255 255 / 60%);
  color: var(--color-white-opacity-60);
}
.possibility__excellence {
  color: rgb(255 255 255);
  color: var(--color-white);
}
.possibility__excellence-header {
  padding: 107px 32px 29px;
}
@media (max-width: 1023.98px) {
  .possibility__excellence-header {
    padding: 32px 24px 32px;
  }
}
.possibility__excellence-title {
  max-width: 810px;
  padding-bottom: 92px;
  font-size: 72px;
  font-weight: 500;
  line-height: 0.9em;
  letter-spacing: 0.02em;
}
@media (max-width: 1023.98px) {
  .possibility__excellence-title {
    padding-bottom: 16px;
    font-size: 28px;
    line-height: 1em;
    letter-spacing: 0.01em;
  }
}
.possibility__excellence-desc {
  max-width: 600px;
  margin-left: 50%;
  font-size: 32px;
  line-height: 1.2em;
  letter-spacing: 0.02em;
}
@media (max-width: 1024.98px) {
  .possibility__excellence-desc {
    margin-left: 0;
    font-size: 16px;
    line-height: 1.3em;
    letter-spacing: 0;
  }
}
.possibility__excellence-cards {
  padding-bottom: 120px;
}
@media (max-width: 1023.98px) {
  .possibility__excellence-cards {
    display: flex;
    flex-direction: column;
    gap: 64px;
    padding-block: 24px 64px;
  }
  .possibility__excellence-cards .card-excellence__image-wrapper {
    height: 273px;
  }
  .possibility__excellence-cards .card-excellence__info {
    padding: 32px 24px;
  }
  .possibility__excellence-cards .card-excellence__title {
    letter-spacing: 0.015em;
  }
}
.possibility__excellence-cards-title {
  padding-block: 56px 32px;
  color: rgb(255 255 255 / 45%);
  color: var(--color-white-opacity-45);
}
@media (max-width: 1023.98px) {
  .possibility__excellence-cards-title {
    display: none;
  }
}
.possibility__employment {
  padding-top: 120px;
  background-color: rgb(253 204 8);
  background-color: var(--color-accent-yellow);
}
@media (max-width: 1023.98px) {
  .possibility__employment {
    padding-top: 0;
  }
}
.possibility__employment-header {
  padding-block: 32px;
}
.possibility__employment-title {
  max-width: 700px;
  padding-bottom: 64px;
  font-size: 64px;
  font-weight: 500;
  line-height: 0.9em;
  letter-spacing: 0.027em;
}
@media (max-width: 1023.98px) {
  .possibility__employment-title {
    padding-bottom: 16px;
    font-size: 28px;
    line-height: 1em;
    letter-spacing: -0.02em;
  }
}
.possibility__employment-desc {
  max-width: 700px;
  margin-left: 32.5%;
  font-size: 24px;
  line-height: 1.2em;
  letter-spacing: 0.02em;
}
@media (max-width: 1023.98px) {
  .possibility__employment-desc {
    margin-left: 0;
    font-size: 16px;
    line-height: 1.3em;
  }
}
.possibility__employment-cards-title {
  padding-block: 48px 32px;
}
@media (max-width: 1023.98px) {
  .possibility__employment-cards-title {
    padding-block: 80px 24px;
  }
}
.possibility__employment-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1023.98px) {
  .possibility__employment-cards {
    grid-template-columns: 1fr;
  }
}
.possibility__culture {
  color: rgb(255 255 255);
  color: var(--color-white);
}
.possibility__culture-cards .indexed-swiper__item__text-container {
  padding: 40px 32px;
}
@media (max-width: 1023.98px) {
  .possibility__culture-cards .indexed-swiper__item__text-container {
    padding: 20px 24px 0;
  }
}
.possibility__culture-cards .indexed-swiper__item__title {
  font-size: 16px;
  max-width: 450px;
}
@media (max-width: 1023.98px) {
  .possibility__culture-cards .indexed-swiper__item__title {
    font-size: 14px;
  }
}
@media (max-width: 1023.98px) {
  .possibility__culture-wrapper {
    padding-bottom: 0;
  }
}
.possibility__culture-header {
  padding-block: 32px 80px;
}
@media (max-width: 1023.98px) {
  .possibility__culture-header {
    padding: 32px 24px 16px;
  }
}
.possibility__culture-title {
  font-size: 64px;
  font-weight: 500;
  line-height: 0.9em;
  letter-spacing: 0.025em;
}
@media (max-width: 1023.98px) {
  .possibility__culture-title {
    padding-bottom: 16px;
    font-size: 28px;
    line-height: 1em;
    letter-spacing: 0.01em;
  }
}
@media (max-width: 1023.98px) {
  .possibility__vacancies-wrapper {
    padding-bottom: 0;
  }
}
.possibility__vacancies-header {
  padding-block: 32px 64px;
}
@media (max-width: 1023.98px) {
  .possibility__vacancies-header {
    padding: 24px 24px 16px;
  }
}
.possibility__vacancies-header-title {
  font-size: 64px;
  font-weight: 500;
  line-height: 0.9em;
  letter-spacing: -0.01em;
}
@media (max-width: 1023.98px) {
  .possibility__vacancies-header-title {
    font-size: 32px;
    line-height: 1.1em;
    letter-spacing: 0.015em;
  }
}
.possibility__form {
  color: rgb(255 255 255);
  color: var(--color-white);
}
@media (max-width: 1023.98px) {
  .possibility__form-wrapper {
    padding: 0;
  }
  .possibility__form-wrapper .select__element {
    height: 64px;
  }
}
.possibility__other {
  padding-bottom: 120px;
  color: rgb(255 255 255);
  color: var(--color-white);
}
@media (max-width: 1023.98px) {
  .possibility__other {
    padding-block: 60px;
  }
}
.possibility__other-header {
  padding-block: 32px 40px;
}
@media (max-width: 1023.98px) {
  .possibility__other-header {
    padding-block: 40px 24px;
  }
}

.vacancies-block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-top: 1px solid rgb(0 30 51 / 20%);
  border-top: 1px solid var(--color-stroke-light-opacity-20);
}
@media (max-width: 1023.98px) {
  .vacancies-block {
    grid-template-columns: 1fr;
    border: none;
  }
}
.vacancies-block__actions {
  padding: 32px;
}
@media (max-width: 1023.98px) {
  .vacancies-block__actions {
    padding-inline: 24px;
  }
}
@media (max-width: 1023.98px) {
  .vacancies-block__actions_text {
    padding-block: 0 96px;
  }
}
.vacancies-block__actions-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vacancies-block__actions-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.vacancies-block__filter {
  width: -moz-min-content;
  width: min-content;
}
.vacancies-block__cards {
  border-left: 1px solid rgb(0 30 51 / 20%);
  border-left: 1px solid var(--color-stroke-light-opacity-20);
}
@media (max-width: 1023.98px) {
  .vacancies-block__cards {
    border-top: 1px solid rgb(0 30 51 / 20%);
    border-top: 1px solid var(--color-stroke-light-opacity-20);
    border-left: none;
  }
}
.vacancies-block__card {
  border-bottom: 1px solid rgb(0 30 51 / 20%);
  border-bottom: 1px solid var(--color-stroke-light-opacity-20);
}
.vacancies-block__button-more {
  display: block;
  width: 100%;
  padding-block: 38px;
  text-align: center;
  border-bottom: 1px solid rgb(0 30 51 / 20%);
  border-bottom: 1px solid var(--color-stroke-light-opacity-20);
  border-left: 1px solid rgb(0 30 51 / 20%);
  border-left: 1px solid var(--color-stroke-light-opacity-20);
}
@media (max-width: 1023.98px) {
  .vacancies-block__button-more {
    border-bottom: none;
  }
}
.vacancies-block__list-pagination {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}
.vacancies-block__list-pagination-button {
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid rgb(0 30 51 / 20%);
  border: 1px solid var(--color-stroke-light-opacity-20);
  border-radius: 50%;
}
.vacancies-block__list-pagination-button:disabled {
  color: rgb(0 30 51 / 20%);
  color: var(--color-stroke-light-opacity-20);
  cursor: auto;
}
.vacancies-block__list-pagination-button_next {
  rotate: 180deg;
}
.vacancies-block__list-pagination-button-icon {
  width: 9px;
  height: 15px;
  margin-left: -1px;
}
.vacancies-block__list-pagination-numbers {
  display: flex;
  gap: 4px;
}
.vacancies-block__list-pagination-number {
  width: 32px;
  height: 32px;
  color: rgb(13 16 21 / 45%);
  color: var(--color-text-opacity-45);
}
.vacancies-block__list-pagination-number_active {
  color: rgb(13 16 21);
  color: var(--color-text);
}
.vacancies-block__list-pagination-number_skip {
  display: flex;
  align-items: center;
  justify-content: center;
}

.big-quote {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 1483px;
  padding: 88px 146px 88px 64px;
  margin: 0 -32px;
}
@media (max-width: 1023.98px) {
  .big-quote {
    min-height: 953px;
    padding: 32px 24px 92px;
    background-color: rgb(9 14 17);
    background-color: var(--color-dark);
  }
}
.big-quote__image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1483px;
}
@media (max-width: 1023.98px) {
  .big-quote__image-wrapper {
    top: 330px;
    left: 36px;
    width: calc(100% - 48px);
    height: 432px;
  }
  .big-quote__image-wrapper::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    z-index: var(--z-index-default);
    width: 100%;
    height: 100px;
    content: "";
    background: linear-gradient(180deg, rgb(9 14 17) 0%, transparent 100%);
    background: linear-gradient(180deg, var(--color-dark) 0%, transparent 100%);
  }
  .big-quote__image-wrapper::after {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    z-index: var(--z-index-default);
    width: 100%;
    height: 100px;
    content: "";
    background: linear-gradient(0deg, rgb(9 14 17) 0%, transparent 100%);
    background: linear-gradient(0deg, var(--color-dark) 0%, transparent 100%);
  }
}
.big-quote__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.big-quote__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(13 16 21 / 60%);
  background-color: var(--color-text-opacity-60);
}
@media (max-width: 1023.98px) {
  .big-quote__bg {
    display: none;
  }
}
.big-quote__container {
  position: relative;
  z-index: 1;
  z-index: var(--z-index-default);
  align-self: flex-end;
}
@media (max-width: 1023.98px) {
  .big-quote__container {
    padding-inline: 32px 24px;
  }
}
.big-quote__text-wrapper {
  display: flex;
  gap: 24px;
  margin-bottom: 526px;
}
@media (max-width: 1023.98px) {
  .big-quote__text-wrapper {
    flex-direction: column;
    margin-bottom: 330px;
  }
}
.big-quote__icon {
  display: inline-block;
  width: 40px;
  height: 32px;
  color: rgb(255 255 255);
  color: var(--color-white);
}
@media (max-width: 1023.98px) {
  .big-quote__icon {
    width: 20px;
    height: 15px;
  }
}
.big-quote__text {
  max-width: 800px;
  font-size: 48px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.017em;
}
@media (max-width: 1023.98px) {
  .big-quote__text {
    max-width: 100%;
    font-size: 24px;
    line-height: 1.1em;
    letter-spacing: -0.005em;
  }
}
.big-quote__life {
  max-width: 820px;
  padding-left: 64px;
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.017em;
}
@media (max-width: 1023.98px) {
  .big-quote__life {
    max-width: 320px;
    padding-left: 0;
    margin-bottom: 32px;
    font-size: 24px;
    line-height: 1.1em;
    letter-spacing: 0;
  }
}
.big-quote__life span {
  color: rgb(253 204 8);
  color: var(--color-accent-yellow);
}
.big-quote__sto {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 64px;
}
@media (max-width: 1023.98px) {
  .big-quote__sto {
    padding-left: 0;
  }
}
.big-quote__sto-name {
  font-size: 24px;
  font-weight: 500;
  line-height: 110%;
}
@media (max-width: 1023.98px) {
  .big-quote__sto-name {
    font-size: 20px;
    letter-spacing: -0.01em;
  }
}
.big-quote__sto-place {
  font-size: 16px;
}
@media (max-width: 1023.98px) {
  .big-quote__sto-place {
    font-size: 14px;
  }
}

.hr-main .advantages {
  gap: 57px;
}
@media (max-width: 1023.98px) {
  .hr-main .advantages {
    gap: 36px;
  }
  .hr-main .advantages__title__text {
    letter-spacing: 0.02em;
    text-wrap: balance;
    font-size: 32px;
  }
  .hr-main .advantages__inscription {
    display: none;
  }
  .hr-main .advantages__item {
    padding: 31px 35px;
    height: 358px;
  }
  .hr-main .advantages__item-wrapper {
    height: 100%;
  }
  .hr-main .advantages__item__content {
    height: 100%;
  }
  .hr-main .advantages__item__text {
    font-size: 24px;
  }
  .hr-main .advantages__item__index {
    margin-bottom: auto;
  }
}
.hr-main__cover {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hr-main__cover_image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
  transform: scale(1.5);
  transform-origin: center 0%;
}
.hr-main__cover_header {
  position: absolute;
  top: 128px;
  left: 112px;
  z-index: 2;
  z-index: var(--z-index-two);
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 80%;
  padding: 0;
  margin: 0 auto;
}
@media (max-width: 1023.98px) {
  .hr-main__cover_header {
    left: 32px;
    width: 90%;
  }
}
@media (max-width: 1023.98px) {
  .hr-main__cover_header {
    top: 100px;
    left: 29px;
    width: calc(100% - 24px);
  }
}
@media (max-width: 599.98px) {
  .hr-main__cover_header {
    justify-content: space-between;
    height: 65vh;
  }
}
@media (max-width: 599.98px) and (max-height: 699.98px) {
  .hr-main__cover_header {
    height: 58vh;
  }
}
.hr-main__cover_image-wrapper {
  position: relative;
  width: 100dvw;
  height: 100dvh;
  overflow: hidden;
}
.hr-main__cover_image-wrapper::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  z-index: var(--z-index-default);
  width: 100%;
  height: 310px;
  content: "";
  background: linear-gradient(0deg, rgb(9 14 17) 0%, transparent 100%);
  background: linear-gradient(0deg, var(--color-dark) 0%, transparent 100%);
}
.hr-main__cover_title {
  margin-bottom: 24px;
  font-size: 72px;
  font-weight: 500;
  line-height: 0.9em;
  color: rgb(255 255 255);
  color: var(--color-white);
  letter-spacing: 0.01em;
}
@media (max-width: 1023.98px) {
  .hr-main__cover_title {
    font-size: 64px;
  }
}
@media (max-width: 1023.98px) {
  .hr-main__cover_title {
    font-size: 48px;
  }
}
@media (max-width: 767.98px) {
  .hr-main__cover_title {
    font-size: 36px;
  }
}
@media (max-width: 499.98px) {
  .hr-main__cover_title {
    font-size: 24px;
    line-height: 1em;
    letter-spacing: 0;
  }
}
.hr-main__cover_input.input {
  width: 60%;
}
@media (max-width: 767.98px) {
  .hr-main__cover_input.input {
    width: 100%;
  }
}
.hr-main__cover_input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 850px;
}
.hr-main__cover_input-wrapper .input-search__wrapper {
  max-width: 650px;
}
@media (max-width: 1023.98px) {
  .hr-main__cover_input-wrapper .input-search__wrapper {
    max-width: 310px;
  }
}
.hr-main__cover_filters-list {
  display: flex;
  gap: 16px;
}
@media (max-width: 599.98px) {
  .hr-main__cover_filters-list {
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .hr-main__cover_filters-list::-webkit-scrollbar {
    display: none;
  }
}
.hr-main__cover_filters-item {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
  align-items: center;
  padding: 12px 16px;
  font-size: 16px;
  line-height: 110%;
  color: rgb(255 255 255);
  color: var(--color-white);
  background-color: rgb(255 255 255 / 9%);
  background-color: var(--color-white-opacity-09);
  border-radius: 8px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media (max-width: 599.98px) {
  .hr-main__cover_filters-item {
    flex-shrink: 0;
    padding: 6px 8px;
  }
}
.hr-main__cover_fields {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  z-index: var(--z-index-default);
  display: flex;
  max-height: 150px;
  overflow: hidden;
  background: rgb(9 14 17);
  background: var(--color-dark);
}
@media (max-width: 1023.98px) {
  .hr-main__cover_fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1px;
    gap: 1px;
    max-height: 100%;
    padding: 1px;
    background-color: rgb(204 234 255 / 10%);
    background-color: var(--color-stroke-dark-opacity-10);
  }
}
@media (max-width: 599.98px) {
  .hr-main__cover_fields {
    width: 100vw;
    max-width: 100%;
  }
}
.hr-main__cover_field {
  position: relative;
  width: 230px;
  height: 150px;
}
@media (max-width: 1023.98px) {
  .hr-main__cover_field {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    padding: 24px;
    background-color: rgb(9 14 17 / 80%);
    background-color: var(--color-dark-opacity-80);
    opacity: 0.5;
  }
  @media (hover: hover) and (pointer: fine){
  .hr-main__cover_field:hover {
    opacity: 1;
  }
  }
}
.hr-main__cover_field_image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.3s ease-in-out;
  transition: opacity var(--transition);
}
@media (max-width: 1023.98px) {
  .hr-main__cover_field_image {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine){
.hr-main__cover_field_image:hover {
  opacity: 1;
}
}
.hr-main__cover_field_title {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 100%;
  font-size: 13px;
  font-weight: 700;
  line-height: 110%;
  color: rgb(255 255 255);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media (max-width: 1023.98px) {
  .hr-main__cover_field_title {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .hr-main__advantages {
    margin-top: 64px;
  }
}
.hr-main__map {
  position: relative;
  margin-top: 86px;
}
.hr-main__map .container-block {
  padding: 25px 32px 114px;
}
@media (max-width: 1023.98px) {
  .hr-main__map .container-block {
    padding: 25px 14px 79px;
  }
}
@media (max-width: 767.98px) {
  .hr-main__map {
    padding: 0 16px;
    margin-top: 100px;
  }
}
.hr-main__map_title {
  position: absolute;
  top: 0;
  left: 112px;
  z-index: 2;
  z-index: var(--z-index-two);
  width: 50%;
}
@media (max-width: 1023.98px) {
  .hr-main__map_title {
    left: 32px;
    width: 60%;
  }
}
@media (max-width: 767.98px) {
  .hr-main__map_title {
    width: 50%;
  }
}
@media (max-width: 499.98px) {
  .hr-main__map_title {
    width: calc(100% - 64px);
    left: 30px;
  }
}
.hr-main__map_title_text {
  font-size: 72px;
  font-weight: 500;
  line-height: 90%;
  color: rgb(255 255 255);
  color: var(--color-white);
  letter-spacing: 0.02em;
}
@media (max-width: 1023.98px) {
  .hr-main__map_title_text {
    font-size: 50px;
  }
}
@media (max-width: 767.98px) {
  .hr-main__map_title_text {
    font-size: 32px;
    letter-spacing: 0.01em;
    line-height: 110%;
  }
}
.hr-main__map_image-container {
  position: relative;
  width: 100%;
}
@media (max-width: 767.98px) {
  .hr-main__map_image-container {
    width: 100vw;
    margin: 30px -30px 0;
    overflow: hidden;
  }
}
.hr-main__map_image {
  width: 100%;
  aspect-ratio: 1.5;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767.98px) {
  .hr-main__map_image {
    width: 123%;
    margin-left: -13%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.hr-main__map_list_item {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgb(255 255 255);
  color: var(--color-white);
}
@media (max-width: 767.98px) {
  .hr-main__map_list_item {
    flex-direction: row-reverse;
    gap: 4px;
    align-items: center;
  }
}
.hr-main__map_list_item-city {
  font-size: 20px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.01em;
}
@media (max-width: 767.98px) {
  .hr-main__map_list_item-city {
    max-width: 156px;
    margin-bottom: 10px;
    font-size: 14px;
  }
}
.hr-main__map_list_item-info {
  font-size: 16px;
  line-height: 110%;
}
@media (max-width: 1023.98px) {
  .hr-main__map_list_item-info {
    display: none;
  }
}
.hr-main__map_list_item-icon {
  width: 24px;
  height: 38px;
  color: rgb(253 204 8);
  color: var(--color-accent-yellow);
}
.hr-main__map_main-office {
  max-width: 300px;
  top: 41%;
  left: 19%;
}
@media (max-width: 767.98px) {
  .hr-main__map_main-office {
    top: 46%;
    left: 8%;
  }
}
.hr-main__map_storage {
  top: 53.5%;
  right: 13%;
  align-items: flex-end;
}
@media (max-width: 767.98px) {
  .hr-main__map_storage {
    top: 58%;
    right: 4%;
    flex-direction: row;
    align-items: center;
  }
}
@media (max-width: 539.98px) {
  .hr-main__map_storage {
    top: 55%;
    right: 3%;
  }
}
.hr-main__map_local-office {
  top: 80.5%;
  left: 30.5%;
}
@media (max-width: 767.98px) {
  .hr-main__map_local-office {
    top: 86%;
    left: 23%;
  }
}
@media (max-width: 539.98px) {
  .hr-main__map_local-office {
    top: 83%;
    left: 22%;
  }
}
.hr-main__vacancies {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgb(255 255 255);
  background: var(--color-white);
}
.hr-main__vacancies__header {
  display: flex;
  flex-direction: column;
  gap: 34px;
  width: 50%;
  padding: 112px 32px 0;
  margin-bottom: 77px;
  color: rgb(13 16 21);
  color: var(--color-text);
}
@media (max-width: 1023.98px) {
  .hr-main__vacancies__header {
    width: 60%;
  }
}
@media (max-width: 1023.98px) {
  .hr-main__vacancies__header {
    width: 80%;
    padding: 64px 32px 0;
  }
}
@media (max-width: 767.98px) {
  .hr-main__vacancies__header {
    width: 100%;
    padding: 34px 30px 0;
    margin-bottom: 16px;
    gap: 18px;
  }
}
.hr-main__vacancies_title {
  font-size: 64px;
  font-weight: 500;
  line-height: 90%;
  letter-spacing: 0.03em;
}
@media (max-width: 1023.98px) {
  .hr-main__vacancies_title {
    font-size: 50px;
  }
}
@media (max-width: 767.98px) {
  .hr-main__vacancies_title {
    font-size: 28px;
    letter-spacing: 0.01em;
  }
}
.hr-main__vacancies_desc {
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 1023.98px) {
  .hr-main__vacancies_desc {
    font-size: 20px;
  }
}
@media (max-width: 767.98px) {
  .hr-main__vacancies_desc {
    font-size: 16px;
  }
}
.hr-main__vacancies__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0;
  gap: 0;
}
@media (max-width: 1023.98px) {
  .hr-main__vacancies__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .hr-main__vacancies__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.hr-main__vacancies__item {
  aspect-ratio: 1/1;
  margin-right: -1px;
  margin-bottom: -1px;
  background-color: rgb(255 255 255);
  background-color: var(--color-white);
  border: 1px solid rgb(0 30 51 / 20%);
  border: 1px solid var(--color-stroke-light-opacity-20);
}
@media (max-width: 1023.98px) {
  .hr-main__vacancies__item {
    aspect-ratio: auto;
  }
}
.hr-main__vacancies__button {
  margin: 16px auto 34px;
  font-size: 13px;
  line-height: 120%;
  letter-spacing: 0.04em;
  font-weight: 800;
  color: rgb(13 16 21);
  color: var(--color-text);
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: none;
}
@media (hover: hover) and (pointer: fine){
.hr-main__vacancies__button:hover {
  color: var(--color-primary);
}
}
.hr-main__facts {
  background-color: rgb(253 204 8);
  background-color: var(--color-accent-yellow);
}
@media (max-width: 767.98px) {
  .hr-main__facts .factoids-screen {
    gap: 13px;
  }
  .hr-main__facts .factoids-screen__button-container {
    height: 180px;
  }
}
.hr-main__facts .factoids-screen__description-container--with-button {
  padding: 0 32px 0 33.3%;
  margin-bottom: -52px;
}
@media (max-width: 767.98px) {
  .hr-main__facts .factoids-screen__description-container--with-button {
    padding: 0 24px;
    margin-bottom: 0;
    gap: 59px;
  }
}
.hr-main__accordion {
  padding-bottom: 112px;
  background: rgb(255 255 255);
  background: var(--color-white);
}
@media (max-width: 767.98px) {
  .hr-main__accordion {
    padding-bottom: 0;
  }
  .hr-main__accordion .common-accordion__sidebar-title {
    display: none;
  }
}
.hr-main__accordion__header {
  padding: 112px 32px 64px;
}
@media (max-width: 767.98px) {
  .hr-main__accordion__header {
    padding: 100px 24px 32px;
  }
}
.hr-main__accordion__header--mobile {
  display: none;
}
@media (max-width: 767.98px) {
  .hr-main__accordion__header--mobile {
    display: block;
  }
}
.hr-main__accordion__header_title {
  font-size: 64px;
  font-weight: 500;
  line-height: 90%;
  color: rgb(13 16 21);
  color: var(--color-text);
  letter-spacing: -0.01em;
}
@media (max-width: 1023.98px) {
  .hr-main__accordion__header_title {
    font-size: 50px;
  }
}
@media (max-width: 699.98px) {
  .hr-main__accordion__header_title {
    font-size: 28px;
    letter-spacing: 0.01em;
  }
}
.hr-main__swiper {
  padding-top: 112px;
}
.hr-main__swiper .indexed-swiper__item__text-container {
  padding: 37px 32px;
}
@media (max-width: 1023.98px) {
  .hr-main__swiper .indexed-swiper__item__text-container {
    padding: 22px 28px;
  }
}
.hr-main__swiper .indexed-swiper__item__title {
  font-size: 20px;
  letter-spacing: 0.02em;
}
@media (max-width: 1023.98px) {
  .hr-main__swiper .indexed-swiper__item__title {
    font-size: 14px;
    letter-spacing: 0;
  }
}
@media (max-width: 1023.98px) {
  .hr-main__swiper {
    padding-top: 92px;
  }
}
.hr-main__swiper__title {
  padding-left: 32px;
  margin-bottom: 81px;
}
@media (max-width: 1023.98px) {
  .hr-main__swiper__title {
    padding-left: 24px;
    margin-bottom: 32px;
  }
}
.hr-main__swiper__title__text {
  font-size: 64px;
  font-weight: 500;
  line-height: 90%;
  color: rgb(255 255 255);
  color: var(--color-white);
  letter-spacing: 0.02em;
}
@media (max-width: 1023.98px) {
  .hr-main__swiper__title__text {
    font-size: 28px;
    line-height: 1em;
    letter-spacing: 0.01em;
  }
}
.hr-main__quote {
  color: rgb(255 255 255);
  color: var(--color-white);
}
@media (max-width: 1023.98px) {
  .hr-main__quote .big-quote {
    padding: 77px 24px 92px;
  }
}
.hr-main__form-wrapper .feedback__desc {
  color: rgb(255 255 255);
  color: var(--color-white);
}
@media (max-width: 1023.98px) {
  .hr-main__form-wrapper {
    padding: 0;
  }
  .hr-main__form-wrapper .select__element {
    height: 64px;
  }
}
.hr-main__other {
  color: rgb(255 255 255);
  color: var(--color-white);
}
@media (max-width: 1023.98px) {
  .hr-main__other {
    padding-bottom: 64px;
  }
}
.hr-main__other-header {
  padding-block: 32px 40px;
}
@media (max-width: 1023.98px) {
  .hr-main__other-header {
    padding-block: 100px 24px;
  }
}

.map-info {
  display: flex;
  justify-content: flex-end;
  margin-top: -100px;
  color: rgb(255 255 255);
  color: var(--color-white);
}
@media (max-width: 1023.98px) {
  .map-info {
    margin-top: -45px;
  }
}
.map-info__wrapper {
  padding-top: 78px;
  border-top: 1px solid rgb(204 234 255 / 10%);
  border-top: 1px solid var(--color-stroke-dark-opacity-10);
}
@media (max-width: 1023.98px) {
  .map-info__wrapper {
    border-top: none;
  }
}
.map-info__top-text {
  font-size: 24px;
  letter-spacing: -0.02em;
}
@media (max-width: 1023.98px) {
  .map-info__top-text {
    font-size: 16px;
    letter-spacing: 0;
  }
}
.map-info__top {
  margin-bottom: 47px;
}
@media (max-width: 1023.98px) {
  .map-info__top {
    margin-bottom: 32px;
  }
}
.map-info__top-title {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  margin-top: 20px;
  font-size: 112px;
  font-weight: 500;
  line-height: 0.9em;
  letter-spacing: -0.02em;
}
@media (max-width: 1023.98px) {
  .map-info__top-title {
    font-size: 64px;
    letter-spacing: -0.01em;
    margin-top: 8px;
  }
}
.map-info__top-icon {
  width: 86px;
  height: 48px;
}
@media (max-width: 1023.98px) {
  .map-info__top-icon {
    width: 54px;
    height: 30px;
  }
}
.map-info__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 77px;
  padding-right: 42px;
}
@media (max-width: 1023.98px) {
  .map-info__bottom {
    gap: 27px 39px;
    padding-right: 0;
  }
}
.map-info__bottom-item {
  max-width: 150px;
}
@media (max-width: 1023.98px) {
  .map-info__bottom-item {
    max-width: 115px;
  }
  .map-info__bottom-item:nth-child(2) {
    max-width: 140px;
  }
}
.map-info__bottom-item-title {
  margin-bottom: 8px;
  font-size: 64px;
  font-weight: 500;
  line-height: 0.9em;
  letter-spacing: -0.01em;
}
@media (max-width: 1023.98px) {
  .map-info__bottom-item-title {
    font-size: 32px;
    line-height: 1.1em;
    margin-bottom: 2px;
  }
}
.map-info__bottom-item-text {
  color: rgb(255 255 255 / 45%);
  color: var(--color-white-opacity-45);
}
@media (max-width: 1023.98px) {
  .map-info__bottom-item-text {
    font-size: 14px;
  }
}

.hr-contacts__header {
  padding-block: 57px 126px;
}
@media (max-width: 1023.98px) {
  .hr-contacts__header {
    padding-block: 94px 71px;
  }
}
.hr-contacts__header-title {
  padding-bottom: 48px;
  font-size: 112px;
  font-weight: 500;
  line-height: 0.9em;
  letter-spacing: 0.02em;
}
@media (max-width: 1023.98px) {
  .hr-contacts__header-title {
    padding-bottom: 24px;
    font-size: 32px;
    line-height: 1.1em;
  }
}
.hr-contacts__header-info {
  display: flex;
  gap: 48px;
}
@media (max-width: 1023.98px) {
  .hr-contacts__header-info {
    flex-direction: column;
    gap: 20px;
  }
}
.hr-contacts__header-info-desc {
  padding-bottom: 8px;
}
@media (max-width: 1023.98px) {
  .hr-contacts__header-info-desc {
    font-size: 14px;
    padding-bottom: 4px;
  }
}
.hr-contacts__header-info-title {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media (max-width: 1023.98px) {
  .hr-contacts__header-info-title {
    font-size: 20px;
    letter-spacing: -0.01em;
  }
}
.hr-contacts__info {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding-bottom: 120px;
  border-top: 1px solid rgb(0 30 51 / 20%);
  border-top: 1px solid var(--color-stroke-light-opacity-20);
}
@media (max-width: 1023.98px) {
  .hr-contacts__info {
    grid-template-columns: 1fr;
    padding-bottom: 0;
    border-top: none;
  }
}
@media (max-width: 1023.98px) {
  .hr-contacts__info-list {
    display: none;
  }
}
.hr-contacts__info-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding-inline: 32px 24px;
  font-size: 24px;
  line-height: 1.2em;
  cursor: pointer;
  border-bottom: 1px solid rgb(0 30 51 / 20%);
  border-bottom: 1px solid var(--color-stroke-light-opacity-20);
  transition: background-color 0.3s ease-in-out;
  transition: background-color var(--transition);
}
.hr-contacts__info-list-item_active {
  background-color: rgb(237 241 242);
  background-color: var(--color-light);
}
.hr-contacts__info-list-item_active .hr-contacts__info-list-item-icon {
  opacity: 1;
}
@media (hover: hover) and (pointer: fine){
.hr-contacts__info-list-item:hover {
  background-color: rgb(237 241 242);
  background-color: var(--color-light);
}
}
@media (hover: hover) and (pointer: fine){
.hr-contacts__info-list-item:hover .hr-contacts__info-list-item-icon {
  opacity: 1;
}
}
.hr-contacts__info-list-item-icon {
  width: 20px;
  height: 20px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  transition: opacity var(--transition);
}
.hr-contacts__info-cards {
  border-left: 1px solid rgb(0 30 51 / 20%);
  border-left: 1px solid var(--color-stroke-light-opacity-20);
}
@media (max-width: 1023.98px) {
  .hr-contacts__info-cards {
    display: flex;
    flex-direction: column;
    gap: 64px;
    border-left: none;
  }
}
.hr-contacts__info-cards-wrapper {
  display: none;
}
@media (max-width: 1023.98px) {
  .hr-contacts__info-cards-wrapper {
    display: block;
  }
}
.hr-contacts__info-cards-wrapper_active {
  display: block;
}
.hr-contacts__info-cards-title {
  display: none;
}
@media (max-width: 1023.98px) {
  .hr-contacts__info-cards-title {
    display: block;
    padding: 32px 24px 24px;
  }
}
.hr-contacts__info-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 288px;
  padding: 32px;
  border-bottom: 1px solid rgb(0 30 51 / 20%);
  border-bottom: 1px solid var(--color-stroke-light-opacity-20);
}
@media (max-width: 1023.98px) {
  .hr-contacts__info-card {
    min-height: 258px;
    padding: 24px 16px 24px 24px;
  }
  .hr-contacts__info-card:nth-child(2) {
    border-top: 1px solid rgb(0 30 51 / 20%);
    border-top: 1px solid var(--color-stroke-light-opacity-20);
  }
}
.hr-contacts__info-card-header {
  display: flex;
  gap: 24px;
  align-items: center;
}
.hr-contacts__info-card-header-image-wrapper {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 50%;
}
@media (max-width: 1023.98px) {
  .hr-contacts__info-card-header-image-wrapper {
    width: 64px;
    height: 64px;
  }
}
.hr-contacts__info-card-header-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hr-contacts__info-card-header-info {
  width: calc(100% - 104px);
}
@media (max-width: 1023.98px) {
  .hr-contacts__info-card-header-info {
    width: calc(100% - 96px);
  }
}
.hr-contacts__info-card-header-name {
  padding-bottom: 8px;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.015em;
}
@media (max-width: 1023.98px) {
  .hr-contacts__info-card-header-name {
    font-size: 20px;
    letter-spacing: 0.01em;
  }
}
.hr-contacts__info-card-header-job {
  color: rgb(13 16 21 / 45%);
  color: var(--color-text-opacity-45);
}
@media (max-width: 1023.98px) {
  .hr-contacts__info-card-header-job {
    font-size: 14px;
  }
}
.hr-contacts__info-card-bottom {
  display: flex;
  gap: 32px;
  align-items: center;
  padding-left: 104px;
}
@media (max-width: 1023.98px) {
  .hr-contacts__info-card-bottom {
    flex-direction: row-reverse;
    gap: 24px;
    justify-content: space-between;
    padding-left: 0;
  }
}
.hr-contacts__info-card-bottom-icons {
  display: flex;
  gap: 8px;
}
@media (max-width: 1023.98px) {
  .hr-contacts__info-card-bottom-icons {
    gap: 4;
  }
}
.hr-contacts__info-card-bottom-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  cursor: pointer;
  border: 1px solid rgb(0 30 51 / 20%);
  border: 1px solid var(--color-stroke-light-opacity-20);
  border-radius: 50%;
  transition: background-color 0.3s ease-in-out;
  transition: background-color var(--transition);
}
@media (max-width: 1023.98px) {
  .hr-contacts__info-card-bottom-icon {
    width: 48px;
    height: 48px;
  }
}
@media (hover: hover) and (pointer: fine){
.hr-contacts__info-card-bottom-icon:hover {
  background-color: rgb(237 241 242);
  background-color: var(--color-light);
}
}
.hr-contacts__info-card-icon {
  width: 25px;
  height: 20px;
  margin-right: 4px;
}
@media (max-width: 1023.98px) {
  .hr-contacts__info-card-icon {
    width: 19px;
    height: 15px;
    margin-right: 2px;
  }
}
.hr-contacts__info-card-bottom-info-text {
  display: block;
  font-size: 20px;
}
@media (max-width: 1023.98px) {
  .hr-contacts__info-card-bottom-info-text {
    font-size: 14px;
  }
}
.hr-contacts__info-card-bottom-info-text:first-child {
  padding-bottom: 8px;
}
@media (max-width: 1023.98px) {
  .hr-contacts__info-card-bottom-info-text:first-child {
    padding-bottom: 4px;
  }
}
.hr-contacts__form {
  color: rgb(255 255 255);
  color: var(--color-white);
}
@media (max-width: 1023.98px) {
  .hr-contacts__form-wrapper {
    padding: 0;
  }
}
.hr-contacts__other {
  padding-bottom: 120px;
  color: rgb(255 255 255);
  color: var(--color-white);
}
@media (max-width: 1023.98px) {
  .hr-contacts__other {
    padding-bottom: 64px;
  }
}
.hr-contacts__other-header {
  padding-block: 32px 40px;
}
@media (max-width: 1023.98px) {
  .hr-contacts__other-header {
    padding-block: 40px 24px;
  }
}

.career-form {
  padding: 55px 0 160px;
  margin-left: 80px;
  border-left: 1px solid rgb(0 30 51 / 20%);
  border-left: 1px solid var(--career-border);
}
.career-form .sidebar__link_logo {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.career-form::before {
  position: absolute;
  top: 0;
  left: 80px;
  display: block;
  width: 1px;
  height: 64px;
  content: "";
  background-color: rgb(0 30 51 / 20%);
  background-color: var(--career-border);
}
@media (max-width: 767.98px) {
  .career-form::before {
    height: 80px;
  }
}
.career-form::after {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: rgb(0 30 51 / 20%);
  background-color: var(--career-border);
}
.career-form__logo {
  --color-sidebar-logo: var(--color-dark);
  --color-icon-order: var(--color-dark);
  position: absolute;
  top: 20px;
  left: 20px;
}
@media (max-width: 767.98px) {
  .career-form__logo {
    top: 16px;
    left: 16px;
  }
}
.career-form__form {
  display: flex;
  flex-direction: column;
}
@media (max-width: 766.98px) {
  .career-form__form {
    gap: 24px;
  }
}
.career-form__bottom {
  position: relative;
  left: 43%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 50%;
  padding-top: 132px;
}
@media (max-width: 1023.98px) {
  .career-form__bottom {
    left: 0;
    max-width: 100%;
    padding: 64px 24px 0;
  }
}
.career-form__info {
  line-height: 130%;
  color: rgb(13 16 21 / 45%);
  color: var(--color-text-opacity-45);
}
.career-form__content-title {
  position: relative;
  padding: 0 32px;
}
.career-form__button {
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 32px;
  line-height: 110%;
  color: rgb(255 255 255);
  color: var(--color-white);
  background: rgb(9 14 17);
  background: var(--color-dark);
  border: none;
  border-radius: 100px;
}
.career-form__button[disabled=true] {
  color: var();
  cursor: default;
  background: rgb(13 16 21 / 45%);
  background: var(--color-text-opacity-45);
}
@media (max-width: 1023.98px) {
  .career-form {
    padding: 110px 0 160px;
  }
}
@media (max-width: 767.98px) {
  .career-form {
    padding: 96px 0 80px;
    margin-left: 0;
    border-left: none;
  }
}
.career-form .career-form__title {
  margin-bottom: 52px;
  font-size: 64px;
}
@media (min-width: 2560.02px) {
  .career-form .career-form__title {
    font-size: 3.3333333333vw;
  }
}
@media (max-width: 767.98px) {
  .career-form .career-form__title {
    font-size: 32px;
  }
}
.career-form__description-vacancy {
  font-size: 14px;
  line-height: 110%;
  color: rgb(13 16 21 / 45%);
  color: var(--color-text-opacity-45);
}
.career-form__description-title {
  margin-bottom: 128px;
  font-size: 32px;
  font-weight: 500;
  line-height: 110%;
  color: rgb(13 16 21);
  color: var(--color-text);
}
@media (max-width: 767.98px) {
  .career-form__description-title {
    margin-bottom: 52px;
    font-size: 20px;
  }
}

.hr-vacancies__header {
  padding-block: 56px 80px;
}
@media (max-width: 1023.98px) {
  .hr-vacancies__header {
    padding-block: 94px 24px;
  }
}
.hr-vacancies__header-title {
  font-size: 112px;
  font-weight: 500;
  line-height: 0.9em;
  letter-spacing: 0.02em;
}
@media (max-width: 1023.98px) {
  .hr-vacancies__header-title {
    font-size: 32px;
    line-height: 1.1em;
  }
}
.hr-vacancies__list {
  padding-bottom: 120px;
}
@media (max-width: 1023.98px) {
  .hr-vacancies__list {
    padding-bottom: 0;
  }
}
.hr-vacancies__form {
  color: rgb(255 255 255);
  color: var(--color-white);
}
@media (max-width: 1023.98px) {
  .hr-vacancies__form-wrapper {
    padding: 0;
  }
}
.hr-vacancies__other {
  color: rgb(255 255 255);
  color: var(--color-white);
}
.hr-vacancies__other-header {
  padding-block: 32px 40px;
}
@media (max-width: 1023.98px) {
  .hr-vacancies__other-header {
    padding-block: 40px 24px;
  }
}

.vacancy-detail__wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 226px;
}
@media (max-width: 1023.98px) {
  .vacancy-detail__wrapper {
    grid-template-columns: 1fr;
  }
}
.vacancy-detail__header {
  padding-block: 56px 65px;
}
@media (max-width: 1023.98px) {
  .vacancy-detail__header {
    padding-block: 72px 48px;
  }
}
.vacancy-detail__header-wrapper {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
}
@media (max-width: 1023.98px) {
  .vacancy-detail__header-wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1023.98px) {
  .vacancy-detail__header-back {
    padding-block: 22px;
  }
}
.vacancy-detail__back-button {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 0;
}
.vacancy-detail__back-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgb(0 30 51 / 20%);
  border: 1px solid var(--color-stroke-light-opacity-20);
  border-radius: 50%;
}
.vacancy-detail__back-icon {
  width: 14px;
  height: 14px;
}
.vacancy-detail__info-top {
  padding-bottom: 169px;
}
@media (max-width: 1023.98px) {
  .vacancy-detail__info-top {
    padding-bottom: 59px;
  }
}
.vacancy-detail__info-title {
  margin-bottom: 36px;
  font-size: 72px;
  font-weight: 500;
  line-height: 0.9em;
  letter-spacing: 0.02em;
}
@media (max-width: 1023.98px) {
  .vacancy-detail__info-title {
    margin-block: 24px;
    font-size: 32px;
    line-height: 1.1em;
  }
}
.vacancy-detail__info-meta {
  display: flex;
  gap: 16px;
  align-items: center;
}
@media (max-width: 1023.98px) {
  .vacancy-detail__info-meta {
    flex-wrap: wrap;
  }
}
@media (max-width: 1023.98px) {
  .vacancy-detail__meta-urgently-wrapper {
    width: 100%;
  }
}
.vacancy-detail__meta-urgently {
  display: flex;
  gap: 4px;
  align-content: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 24px;
  padding: 5px 8px 5px 6px;
  color: rgb(253 204 8);
  color: var(--color-accent-yellow);
  background-color: rgb(12 19 24);
  background-color: var(--color-dark-secondary);
  border-radius: 100px;
}
.vacancy-detail__urgently-icon {
  width: 10px;
  height: 13px;
}
.vacancy-detail__info-city, .vacancy-detail__info-type {
  color: rgb(13 16 21 / 45%);
  color: var(--color-text-opacity-45);
}
.vacancy-detail__info-specs {
  display: flex;
  gap: 33px;
  margin-bottom: 26px;
}
.vacancy-detail__specs-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vacancy-detail__specs-label {
  color: rgb(13 16 21 / 45%);
  color: var(--color-text-opacity-45);
}
@media (max-width: 1023.98px) {
  .vacancy-detail__specs-label {
    font-size: 14px;
  }
}
.vacancy-detail__specs-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: 0.02em;
}
@media (max-width: 1023.98px) {
  .vacancy-detail__specs-title {
    font-size: 20px;
    line-height: 1.1em;
    letter-spacing: -0.01em;
  }
}
.vacancy-detail__info-desc {
  max-width: 550px;
  font-size: 24px;
  line-height: 1.2em;
}
@media (max-width: 1023.98px) {
  .vacancy-detail__info-desc {
    font-size: 16px;
    line-height: 1.3em;
  }
}
.vacancy-detail__info-button {
  display: none;
}
@media (max-width: 1023.98px) {
  .vacancy-detail__info-button {
    display: block;
    width: 100%;
    max-width: 550px;
    padding: 16px 24px;
    margin-top: 24px;
    text-align: center;
    background-color: rgb(253 204 8);
    background-color: var(--color-accent-yellow);
    border-radius: 100px;
  }
}
.vacancy-detail__content {
  padding-block: 48px;
}
@media (max-width: 1023.98px) {
  .vacancy-detail__content {
    padding-block: 0;
  }
}
.vacancy-detail__content-item {
  display: grid;
  grid-template-columns: 1.36fr 2fr;
  padding-block: 24px 48px;
  border-top: 1px solid rgb(0 30 51 / 20%);
  border-top: 1px solid var(--color-stroke-light-opacity-20);
}
@media (max-width: 1023.98px) {
  .vacancy-detail__content-item {
    grid-template-columns: 1fr;
  }
}
.vacancy-detail__content-item-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: 0.02em;
}
@media (max-width: 1023.98px) {
  .vacancy-detail__content-item-title {
    font-size: 22px;
    line-height: 1.1em;
    letter-spacing: 0.05em;
  }
}
.vacancy-detail__content-item-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  padding-top: 11px;
  list-style-type: disc;
}
@media (max-width: 1023.98px) {
  .vacancy-detail__content-item-list {
    padding: 26px 0 0 13px;
    gap: 17px;
  }
}
.vacancy-detail__sticky-button {
  position: sticky;
  top: 40px;
  bottom: -40px;
  align-self: start;
  height: 100vh;
  padding-left: 32px;
}
@media (max-width: 1023.98px) {
  .vacancy-detail__sticky-button {
    display: none;
  }
}
.vacancy-detail__sticky-button-wrapper {
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: calc(100vh - 80px);
}
.vacancy-detail__desc {
  padding-top: 30px;
}
@media (max-width: 1023.98px) {
  .vacancy-detail__desc {
    padding-top: 0;
  }
}
.vacancy-detail__desc-header {
  padding-block: 32px;
}
@media (max-width: 1023.98px) {
  .vacancy-detail__desc-header {
    padding-block: 32px 24px;
  }
}
.vacancy-detail__desc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: rgb(237 241 242);
  background-color: var(--color-light);
}
@media (max-width: 1023.98px) {
  .vacancy-detail__desc-cards {
    grid-template-columns: 1fr;
  }
}
.vacancy-detail__form {
  color: rgb(255 255 255);
  color: var(--color-white);
}
@media (max-width: 1023.98px) {
  .vacancy-detail__form-wrapper {
    padding: 0;
  }
}

.error-page {
  padding: 160px 112px;
  position: relative;
  display: flex;
  gap: 290px;
  justify-content: flex-start;
  height: 100vh;
  width: 100vw;
  background-color: rgb(255 255 255);
  background-color: var(--color-white);
}
@media (max-width: 767.98px) {
  .error-page {
    padding: 104px 24px 24px;
    gap: 0;
    flex-direction: column-reverse;
    justify-content: space-between;
  }
}
.error-page__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767.98px) {
  .error-page__image {
    -o-object-position: 85% 100%;
       object-position: 85% 100%;
  }
}
.error-page__content {
  position: relative;
  display: flex;
  gap: 27px;
  flex-direction: column;
  color: rgb(255 255 255);
  color: var(--color-white);
  z-index: 2;
  z-index: var(--z-index-two);
}
@media (max-width: 767.98px) {
  .error-page__content {
    gap: 16px;
  }
}
.error-page__content h1 {
  font-size: 72px;
  font-weight: 500;
  line-height: 64px;
  letter-spacing: 0.02em;
}
@media (max-width: 767.98px) {
  .error-page__content h1 {
    font-size: 42px;
    line-height: 46px;
    letter-spacing: 0.01em;
    text-wrap: balance;
  }
}
.error-page__content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.01em;
}
@media (max-width: 767.98px) {
  .error-page__content p {
    line-height: 20px;
  }
}
.error-page__link {
  padding: 15px 24px;
  color: rgb(13 16 21);
  color: var(--color-text);
  font-size: 16px;
  line-height: 18px;
  border-radius: 100px;
  background-color: rgb(253 204 8);
  background-color: var(--color-accent-yellow);
  width: -moz-fit-content;
  width: fit-content;
}
.error-page__code {
  position: relative;
  z-index: 2;
  z-index: var(--z-index-two);
}
.error-page__code h2 {
  color: rgb(255 255 255);
  color: var(--color-white);
  font-size: 72px;
  font-weight: 500;
  line-height: 64px;
}
@media (max-width: 767.98px) {
  .error-page__code h2 {
    width: 100%;
    text-align: right;
  }
}

.cookies {
  position: fixed;
  bottom: 32px;
  right: 32px;
  padding: 24px;
  display: flex;
  opacity: 0;
  pointer-events: none;
  flex-direction: column;
  background-color: rgb(255 255 255 / 90%);
  background-color: var(--color-white-opacity-90);
  border-radius: 8px;
  z-index: 120;
  z-index: var(--z-index-cookies);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  width: 280px;
}
@media (max-width: 767.98px) {
  .cookies {
    bottom: 24px;
    right: 24px;
    padding: 16px;
    width: calc(100% - 48px);
  }
}
.cookies__title {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 110%;
  color: rgb(13 16 21);
  color: var(--color-text);
}
.cookies__text {
  font-size: 14px;
  line-height: 120%;
  color: rgb(13 16 21 / 45%);
  color: var(--color-text-opacity-45);
  margin-bottom: 52px;
}
@media (max-width: 767.98px) {
  .cookies__text {
    margin-bottom: 30px;
  }
}
.cookies__button {
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 38px;
  background-color: rgb(9 14 17);
  background-color: var(--color-dark);
  font-size: 16px;
  border-radius: 100px;
  color: rgb(255 255 255);
  color: var(--color-white);
}
.cookies_active {
  opacity: 1;
  pointer-events: auto;
}

.detailed-video-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
  padding: 0;
  margin-bottom: 64px;
}
@media (max-width: 1023.98px) {
  .detailed-video-container {
    padding: 0;
    margin-bottom: 32px;
  }
}
.detailed-video-container__image-preview {
  position: relative;
  width: 100%;
  height: 580px;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1023.98px) {
  .detailed-video-container__image-preview {
    height: 245px;
  }
}
.detailed-video-container__image-wrapper {
  width: 100%;
  position: relative;
}
.detailed-video-container__image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(9 14 17 / 40%);
  background: var(--color-dark-opacity-40);
  border-radius: 16px;
  z-index: 2;
  z-index: var(--z-index-two);
}
.detailed-video-container__caption {
  padding-right: 10%;
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.5;
  color: rgb(13 16 21 / 45%);
  color: var(--color-text-opacity-45);
}
@media (max-width: 1023.98px) {
  .detailed-video-container__caption {
    padding: 12px 24px 0;
  }
}
.detailed-video-container__button {
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: rgb(253 204 8);
  background-color: var(--color-accent-yellow);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  z-index: var(--z-index-ten);
}
.detailed-video-container__button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: 2px;
  content: "";
  border-color: transparent transparent transparent rgb(9 14 17);
  border-color: transparent transparent transparent var(--color-dark);
  border-style: solid;
  border-width: 16px 0 16px 22px;
  transform: translate(-50%, -50%);
}

.search__title {
  padding: 57px 32px 80px;
  border-bottom: 1px solid rgb(0 30 51 / 20%);
  border-bottom: 1px solid var(--color-stroke-light-opacity-20);
  color: rgb(13 16 21);
  color: var(--color-text);
  font-size: 64px;
  line-height: 90%;
  letter-spacing: 0.03em;
  font-weight: 500;
}
@media (max-width: 1023.98px) {
  .search__title {
    padding: 96px 24px 80px;
    font-size: 48px;
  }
}
@media (max-width: 767.98px) {
  .search__title {
    padding: 96px 24px 25px;
    font-size: 32px;
    line-height: 110%;
    border-bottom: none;
    letter-spacing: 0.02em;
  }
}
@media (max-width: 767.98px) {
  .search .select__element {
    height: 64px;
  }
}

.products__other {
  color: rgb(255 255 255);
  color: var(--color-white);
}
@media (max-width: 1023.98px) {
  .products__other {
    padding-bottom: 60px;
  }
}
.products__other-header {
  margin-bottom: 40px;
}
@media (max-width: 1023.98px) {
  .products__other-header {
    padding-block: 104px 24px;
    margin-bottom: 0;
  }
}

.module-digit {
  width: 100%;
  max-width: 310px;
  border-top: 1px solid rgb(204 234 255 / 10%);
  border-top: 1px solid var(--color-stroke-dark-opacity-10);
}
@media (min-width: 2560.02px) {
  .module-digit {
    max-width: 13.5416666667vw;
  }
}
@media (max-width: 1023.98px) {
  .module-digit {
    max-width: none;
  }
  .module-digit:last-child {
    margin-bottom: 420px;
  }
}
@media (max-width: 1023.98px) and (min-width: 2560.02px) {
  .module-digit:last-child {
    margin-bottom: 21.875vw;
  }
}
@media (max-width: 1023.98px) and (max-width: 1023.98px) {
  .module-digit:last-child {
    margin-bottom: 80px;
  }
}
.module-digit_light {
  border-top: 1px solid rgb(0 30 51 / 20%);
  border-top: 1px solid var(--color-stroke-light-opacity-20);
}
.module-digit__title {
  margin-block: 12px;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
@media (min-width: 2560.02px) {
  .module-digit__title {
    margin-block: 0.625vw;
    font-size: 2.5vw;
  }
}
@media (max-width: 1023.98px) {
  .module-digit__title {
    font-size: 24px;
  }
}
.module-digit__desc {
  max-width: 200px;
}
@media (min-width: 2560.02px) {
  .module-digit__desc {
    max-width: 10.4166666667vw;
    font-size: 0.8333333333vw;
    line-height: 100%;
  }
}

.card-preview {
  width: 100%;
  height: 220px;
}
@media (min-width: 2560.02px) {
  .card-preview {
    height: 11.4583333333vw;
  }
}
@media (max-width: 767.98px) {
  .card-preview {
    height: 116px;
  }
}
.card-preview:last-child .card-preview__content {
  bottom: 620px;
}
@media (min-width: 2560.02px) {
  .card-preview:last-child .card-preview__content {
    bottom: 32.2916666667vw;
  }
}
@media (max-width: 767.98px) {
  .card-preview:last-child .card-preview__content {
    bottom: 0;
  }
}
.card-preview:last-child .card-preview__header {
  border-bottom: 1px solid rgb(204 234 255 / 10%);
  border-bottom: 1px solid var(--color-stroke-dark-opacity-10);
}
@media (max-width: 767.98px) {
  .card-preview:last-child .card-preview__header {
    border-bottom: none;
  }
}
.card-preview:nth-last-child(2) .card-preview__content {
  bottom: 400px;
}
@media (min-width: 2560.02px) {
  .card-preview:nth-last-child(2) .card-preview__content {
    bottom: 20.8333333333vw;
  }
}
@media (max-width: 767.98px) {
  .card-preview:nth-last-child(2) .card-preview__content {
    bottom: 0;
  }
}
@media (max-width: 767.98px) {
  .card-preview_active:not(:first-child) .card-preview__content {
    border-top: 1px solid rgb(204 234 255 / 10%);
    border-top: 1px solid var(--color-stroke-dark-opacity-10);
  }
}
.card-preview_active .card-preview__header {
  background-color: rgb(12 19 24);
  background-color: var(--color-dark-secondary);
}
@media (max-width: 767.98px) {
  .card-preview_active .card-preview__header {
    background-color: inherit;
  }
}
.card-preview_active .card-preview__content {
  visibility: visible;
  width: 50%;
  height: 840px;
}
@media (min-width: 2560.02px) {
  .card-preview_active .card-preview__content {
    height: 43.75vw;
  }
}
@media (max-width: 767.98px) {
  .card-preview_active .card-preview__content {
    visibility: hidden;
    width: 0;
    height: 0;
  }
}
.card-preview_light .card-preview__header {
  border-color: rgb(0 30 51 / 20%);
  border-color: var(--color-stroke-light-opacity-20);
  border-left: 1px solid rgb(0 30 51 / 20%);
  border-left: 1px solid var(--color-stroke-light-opacity-20);
}
@media (max-width: 767.98px) {
  .card-preview_light .card-preview__header {
    border-left: none;
  }
}
.card-preview_light .card-preview__header-text {
  color: rgb(9 14 17 / 40%);
  color: var(--color-dark-opacity-40);
}
.card-preview_light .card-preview__content {
  border: 1px solid rgb(0 30 51 / 20%);
  border: 1px solid var(--color-stroke-light-opacity-20);
}
@media (max-width: 767.98px) {
  .card-preview_light .card-preview__content {
    border: none;
  }
}
.card-preview_light:last-child .card-preview__header {
  border-bottom: 1px solid rgb(0 30 51 / 20%);
  border-bottom: 1px solid var(--color-stroke-light-opacity-20);
}
@media (max-width: 767.98px) {
  .card-preview_light:last-child .card-preview__header {
    border-bottom: none;
  }
}
.card-preview_reverse .card-preview__wrapper {
  flex-direction: row-reverse;
}
@media (max-width: 767.98px) {
  .card-preview_reverse .card-preview__wrapper {
    flex-direction: column-reverse;
  }
}
.card-preview_reverse .card-preview__button {
  right: auto;
  left: 32px;
}
@media (max-width: 767.98px) {
  .card-preview_reverse .card-preview__button {
    right: 24px;
    left: auto;
  }
}
.card-preview_reverse .card-preview__content {
  right: -1px;
  border-right: 1px solid rgb(204 234 255 / 10%);
  border-right: 1px solid var(--color-stroke-dark-opacity-10);
  border-left: none;
}
@media (max-width: 767.98px) {
  .card-preview_reverse .card-preview__content {
    right: 0;
    border: none;
  }
}
.card-preview_reverse .card-preview__header {
  border-left: 1px solid rgb(204 234 255 / 10%);
  border-left: 1px solid var(--color-stroke-dark-opacity-10);
}
@media (max-width: 767.98px) {
  .card-preview_light.card-preview_active:not(:first-child) .card-preview__content {
    border-top: 1px solid rgb(0 30 51 / 20%);
    border-top: 1px solid var(--color-stroke-light-opacity-20);
  }
}
.card-preview_light.card-preview_active .card-preview__header {
  color: rgb(9 14 17);
  color: var(--color-dark);
  background-color: rgb(237 241 242);
  background-color: var(--color-light);
}
@media (max-width: 767.98px) {
  .card-preview_light.card-preview_active .card-preview__header {
    background-color: inherit;
  }
}
.card-preview_light.card-preview_active .card-preview__content {
  background-color: rgb(237 241 242);
  background-color: var(--color-light);
  border: 1px solid rgb(0 30 51 / 20%);
  border: 1px solid var(--color-stroke-light-opacity-20);
  border-right: none;
}
@media (max-width: 767.98px) {
  .card-preview_light.card-preview_active .card-preview__content {
    border: none;
  }
}
.card-preview_light.card-preview_reverse .card-preview__header {
  border-left: 1px solid rgb(0 30 51 / 20%);
  border-left: 1px solid var(--color-stroke-light-opacity-20);
}
@media (max-width: 767.98px) {
  .card-preview_light.card-preview_reverse .card-preview__header {
    border-left: none;
  }
}
.card-preview_light.card-preview_reverse .card-preview__content {
  background-color: rgb(237 241 242);
  background-color: var(--color-light);
  border: 1px solid rgb(0 30 51 / 20%);
  border: 1px solid var(--color-stroke-light-opacity-20);
  border-left: none;
}
@media (max-width: 767.98px) {
  .card-preview_light.card-preview_reverse .card-preview__content {
    border: none;
  }
}
.card-preview__wrapper {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
}
@media (max-width: 767.98px) {
  .card-preview__wrapper {
    flex-direction: column-reverse;
  }
}
.card-preview__header {
  display: flex;
  flex-direction: column;
  width: 49.5%;
  height: 100%;
  padding: 32px;
  cursor: pointer;
  border: 1px solid rgb(204 234 255 / 10%);
  border: 1px solid var(--color-stroke-dark-opacity-10);
  border-bottom: none;
  border-left: none;
  transition: background-color 0.3s ease-in-out;
}
@media (max-width: 1023.98px) {
  .card-preview__header {
    width: calc(50% + 35px);
  }
}
@media (max-width: 767.98px) {
  .card-preview__header {
    width: 100%;
    min-height: 116px;
    padding: 24px 20px 16px;
  }
}
.card-preview__header-block {
  display: flex;
  flex: 1 1;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .card-preview__header-block {
    display: none;
  }
}
.card-preview__header-text {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1em;
  color: rgb(255 255 255 / 40%);
  color: var(--color-white-opacity-40);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media (min-width: 2560.02px) {
  .card-preview__header-text {
    font-size: 0.6770833333vw;
  }
}
.card-preview__header-title {
  flex: 0 1;
  margin: 0;
  font-size: 44px;
  font-weight: 400;
  line-height: 1.3em;
  letter-spacing: -0.02em;
}
@media (min-width: 2560.02px) {
  .card-preview__header-title {
    font-size: 2.2916666667vw;
  }
}
@media (max-width: 1023.98px) {
  .card-preview__header-title {
    font-size: 36px;
  }
}
@media (max-width: 767.98px) {
  .card-preview__header-title {
    flex: 1 1;
    font-size: 20px;
  }
}
@media (max-width: 767.98px) {
  .card-preview__header-title-wrapper {
    display: flex;
    justify-content: space-between;
    height: 100%;
  }
}
.card-preview__header-title_small {
  max-width: 400px;
  font-size: 32px;
}
@media (min-width: 2560.02px) {
  .card-preview__header-title_small {
    max-width: 20.8333333333vw;
    font-size: 1.6666666667vw;
  }
}
@media (max-width: 767.98px) {
  .card-preview__header-title_small {
    height: 100%;
    padding-bottom: 16px;
    font-size: 20px;
  }
}
.card-preview__header-title_full {
  max-width: 100%;
}
.card-preview__icon_arrow {
  width: 24px;
  height: 24px;
  color: rgb(255 255 255);
  color: var(--color-white);
}
@media (max-width: 767.98px) {
  .card-preview__icon_arrow {
    width: 16px;
    height: 16px;
  }
}
.card-preview__icon_arrow_title {
  display: none;
}
@media (max-width: 767.98px) {
  .card-preview__icon_arrow_title {
    display: block;
  }
}
.card-preview__icon_arrow_light {
  color: rgb(9 14 17);
  color: var(--color-dark);
}
.card-preview__content {
  position: relative;
  right: 1px;
  bottom: 399px;
  z-index: 1;
  z-index: var(--z-index-default);
  visibility: hidden;
  width: 0;
  height: 0;
  overflow: hidden;
  background-color: rgb(12 19 24);
  background-color: var(--color-dark-secondary);
  border: 1px solid rgb(204 234 255 / 10%);
  border: 1px solid var(--color-stroke-dark-opacity-10);
  border-right: none;
}
@media (max-width: 767.98px) {
  .card-preview__content {
    right: 0;
    bottom: 0;
    border: none;
  }
}
.card-preview__content-image {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 840px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767.98px) {
  .card-preview__content-image {
    display: none;
  }
}
.card-preview__button {
  position: absolute;
  right: 60%;
  bottom: 62px;
  height: 0;
  color: rgb(9 14 17);
  color: var(--color-dark);
  opacity: 0;
}
.card-preview__button_left-side {
  right: 37%;
}
@media (max-width: 1599.98px) {
  .card-preview__button_left-side {
    right: 33%;
    bottom: 23%;
  }
}
@media (max-width: 1599.98px) {
  .card-preview__button_bridge {
    bottom: 280px;
  }
}
@media (max-width: 767.98px) {
  .card-preview__button {
    right: 24px;
    bottom: 24px;
    width: 154px;
  }
}

.consultation {
  display: block;
  max-height: 207px;
  padding: 12px 27px;
  background-color: rgb(255 255 255);
  background-color: var(--color-white);
  border-radius: 8px;
}
@media (min-width: 2560.02px) {
  .consultation {
    max-height: 10.78125vw;
    padding: 0.625vw 1.40625vw 3.75vw;
  }
}
@media (max-width: 1023.98px) {
  .consultation {
    padding: 12px 6px 0px;
  }
}
.consultation_accent {
  position: relative;
  background-color: rgb(253 204 8);
  background-color: var(--color-accent-yellow);
  z-index: 10;
  z-index: var(--z-index-ten);
}
.consultation__text {
  max-width: 140px;
  text-align: center;
}
@media (min-width: 2560.02px) {
  .consultation__text {
    max-width: 7.2916666667vw;
  }
}
@media (max-width: 1023.98px) {
  .consultation__text {
    max-width: 135px;
  }
}
.consultation__text-wrapper {
  display: flex;
  justify-content: center;
}
.consultation__wrapper {
  padding-block: 40px 68px;
}
@media (max-width: 1023.98px) {
  .consultation__wrapper {
    padding-block: 30px 54px;
  }
}
.consultation__plus-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border: 1px solid rgb(0 30 51 / 20%);
  border: 1px solid var(--color-stroke-light-opacity-20);
  border-radius: 50%;
}
@media (min-width: 2560.02px) {
  .consultation__plus-wrapper {
    width: 2.5vw;
    height: 2.5vw;
  }
}
.consultation__icon_plus {
  width: 12px;
  height: 12px;
}

.title {
  font-size: 112px;
  font-weight: 500;
  line-height: 90%;
  letter-spacing: 0.02em;
}
@media (max-width: 980px) {
  .title {
    font-size: 64px;
  }
}
@media (max-width: 720px) {
  .title {
    font-size: 32px;
  }
}

.header-product {
  position: relative;
  padding-top: 55px;
  color: rgb(255 255 255);
  color: var(--color-white);
}
@media (max-width: 1023.98px) {
  .header-product {
    padding-top: 104px;
  }
}
.header-product__header {
  position: relative;
  z-index: 1;
  z-index: var(--z-index-default);
}
.header-product__title {
  margin-bottom: 32px;
  font-size: 64px;
  font-weight: 500;
  line-height: 0.9em;
  letter-spacing: 0.03em;
}
@media (max-width: 1023.98px) {
  .header-product__title {
    margin-bottom: 20px;
    max-width: 300px;
    font-size: 32px;
    line-height: 1.1em;
    letter-spacing: 0.01em;
  }
}
.header-product__desc {
  max-width: 640px;
  font-size: 24px;
  line-height: 1.2em;
  letter-spacing: 0.02em;
}
@media (max-width: 1023.98px) {
  .header-product__desc {
    font-size: 16px;
    line-height: 1.3em;
    letter-spacing: 0.02em;
  }
}
.header-product__image {
  position: relative;
  bottom: 0;
  left: -32px;
  width: calc(100% + 58px);
  height: 100%;
}
@media (max-width: 1023.98px) {
  .header-product__image {
    position: static;
    width: 190%;
    margin-top: -100px;
    margin-left: -100px;
  }
}
@media (max-width: 767.98px) {
  .header-product__image {
    height: 455px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.header-product__image-wrapper {
  height: auto;
}
@media (max-width: 1023.98px) {
  .header-product__image-wrapper {
    height: auto;
  }
}
.header-product__info {
  position: absolute;
  right: -32px;
  bottom: 0;
  background-color: rgb(12 19 24);
  background-color: var(--color-dark-secondary);
  border-top: 1px solid rgb(204 234 255 / 10%);
  border-top: 1px solid var(--color-stroke-dark-opacity-10);
  border-left: 1px solid rgb(204 234 255 / 10%);
  border-left: 1px solid var(--color-stroke-dark-opacity-10);
}
@media (max-width: 1023.98px) {
  .header-product__info {
    position: static;
    width: calc(100% + 49px);
    margin-left: -24px;
  }
}
.header-product__info-wrapper {
  display: grid;
  grid-template-columns: 648px 259px;
}
@media (max-width: 1023.98px) {
  .header-product__info-wrapper {
    grid-template-columns: auto;
  }
}
.header-product__info-header {
  padding: 26px;
  border-bottom: 1px solid rgb(204 234 255 / 10%);
  border-bottom: 1px solid var(--color-stroke-dark-opacity-10);
}
@media (max-width: 1023.98px) {
  .header-product__info-header {
    padding: 20px 24px;
  }
}
@media (max-width: 1023.98px) {
  .header-product__info-header-title {
    max-width: 200px;
  }
}
.header-product__info-left {
  display: grid;
  grid-template-rows: 70px 200px;
  border-right: 1px solid rgb(204 234 255 / 10%);
  border-right: 1px solid var(--color-stroke-dark-opacity-10);
}
@media (max-width: 1399.98px) {
  .header-product__info-left {
    grid-template-rows: auto;
  }
}
.header-product__info-right {
  padding: 32px;
}
@media (max-width: 1023.98px) {
  .header-product__info-right {
    display: flex;
    min-height: 208px;
    padding: 24px;
  }
}
@media (max-width: 1023.98px) {
  .header-product__info-right-block {
    width: calc(100% - 132px);
    padding-right: 24px;
  }
}
.header-product__info-bottom {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: 453px 195px;
}
@media (max-width: 1023.98px) {
  .header-product__info-bottom {
    grid-template-rows: auto;
    grid-template-columns: auto;
  }
}
.header-product__info-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px;
  border-right: 1px solid rgb(204 234 255 / 10%);
  border-right: 1px solid var(--color-stroke-dark-opacity-10);
}
@media (max-width: 1023.98px) {
  .header-product__info-bottom-row {
    padding: 20px 24px;
    border-right: none;
  }
}
.header-product__info-bottom-row:nth-child(2) {
  order: 3;
  border-top: 1px solid rgb(204 234 255 / 10%);
  border-top: 1px solid var(--color-stroke-dark-opacity-10);
}
@media (max-width: 1023.98px) {
  .header-product__info-bottom-row:nth-child(2) {
    order: inherit;
    border-bottom: 1px solid rgb(204 234 255 / 10%);
    border-bottom: 1px solid var(--color-stroke-dark-opacity-10);
  }
}
.header-product__info-bottom-row-text {
  max-width: 140px;
}
.header-product__info-bottom-row-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: -0.02em;
}
@media (max-width: 1023.98px) {
  .header-product__info-bottom-row-title {
    font-size: 32px;
    line-height: 1.1em;
  }
}
.header-product__info-bottom-block {
  display: flex;
  flex-direction: column;
  grid-row: span 2;
  gap: 14px;
  padding: 26px;
}
@media (max-width: 1023.98px) {
  .header-product__info-bottom-block {
    display: none;
  }
}
.header-product__info-bottom-block_mb {
  display: none;
}
@media (max-width: 1023.98px) {
  .header-product__info-bottom-block_mb {
    display: flex;
    height: calc(100% + 48px);
    padding: 0;
    padding-top: 24px;
    margin-top: -24px;
    border-right: 1px solid rgb(204 234 255 / 10%);
    border-right: 1px solid var(--color-stroke-dark-opacity-10);
  }
}
.header-product__info-bottom-block-text {
  margin-top: 4px;
  color: rgb(255 255 255 / 45%);
  color: var(--color-white-opacity-45);
}
.header-product__info-download {
  height: 100%;
  padding: 12px 26px;
  color: rgb(9 14 17);
  color: var(--color-dark);
  background-color: rgb(253 204 8);
  background-color: var(--color-accent-yellow);
  border-radius: 8px;
}
@media (max-width: 1023.98px) {
  .header-product__info-download {
    width: 132px;
    padding-inline: 20px;
  }
}
.header-product__info-download-header {
  display: flex;
  justify-content: center;
}
.header-product__info-download-tag {
  display: block;
  max-width: 100px;
  text-align: center;
}
@media (max-width: 1023.98px) {
  .header-product__info-download-tag {
    max-width: 100%;
    font-size: 11px;
  }
}
.header-product__info-download-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgb(214 174 10);
  border: 1px solid var(--color-stroke-yellow);
  border-radius: 50%;
}
.header-product__info-download-link-wrapper {
  display: flex;
  justify-content: center;
  padding-top: 40px;
}
@media (max-width: 1023.98px) {
  .header-product__info-download-link-wrapper {
    padding-top: 20px;
  }
}
.header-product__info-download-icon {
  width: 24px;
  height: 24px;
}

.choice-color {
  display: flex;
}
.choice-color__item {
  position: relative;
  width: 48px;
  height: 48px;
  border: 2px solid rgb(9 14 17);
  border: 2px solid var(--color-dark);
  border-radius: 50%;
}
@media (max-width: 1023.98px) {
  .choice-color__item {
    width: 36px;
    height: 36px;
  }
}
.choice-color__item:nth-child(1) {
  z-index: 10;
}
.choice-color__item:nth-child(2) {
  z-index: 9;
}
.choice-color__item:nth-child(3) {
  z-index: 8;
}
.choice-color__item:nth-child(4) {
  z-index: 7;
}
.choice-color__item:nth-child(5) {
  z-index: 6;
}
.choice-color__item:nth-child(6) {
  z-index: 5;
}
.choice-color__item:nth-child(7) {
  z-index: 4;
}
.choice-color__item:nth-child(8) {
  z-index: 3;
}
.choice-color__item:nth-child(9) {
  z-index: 2;
}
.choice-color__item:not(:last-child) {
  margin-right: -16px;
}
@media (max-width: 1023.98px) {
  .choice-color__item:not(:last-child) {
    margin-right: -10px;
  }
}

.card-product {
  color: rgb(255 255 255);
  color: var(--color-white);
}
.card-product_active .card-product__image-wrapper {
  opacity: 1;
}
@media (max-width: 1023.98px) {
  .card-product_active .card-product__image-wrapper {
    height: 360px;
  }
}
.card-product_active .card-product__info-wrapper {
  background-color: rgb(12 19 24);
  background-color: var(--color-dark-secondary);
}
.card-product_active:not(:nth-last-child(-n+2)) .card-product__info-wrapper {
  height: 219px;
}
@media (max-width: 1023.98px) {
  .card-product_active:not(:nth-last-child(-n+2)) .card-product__info-wrapper {
    height: auto;
  }
}
.card-product:last-child .card-product__image-wrapper {
  top: -220px;
}
.card-product:last-child .card-product__info-wrapper {
  border-bottom: 1px solid rgb(204 234 255 / 10%);
  border-bottom: 1px solid var(--color-stroke-dark-opacity-10);
}
@media (max-width: 1023.98px) {
  .card-product:last-child .card-product__info-wrapper {
    border-bottom: none;
  }
}
.card-product__wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1023.98px) {
  .card-product__wrapper {
    display: block;
  }
}
.card-product__image {
  width: 100%;
  height: 100%;
}
.card-product__image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 33%;
  height: 440px;
  background-color: rgb(12 19 24);
  background-color: var(--color-dark-secondary);
  border-top: 1px solid rgb(204 234 255 / 10%);
  border-top: 1px solid var(--color-stroke-dark-opacity-10);
  border-bottom: 1px solid rgb(204 234 255 / 10%);
  border-bottom: 1px solid var(--color-stroke-dark-opacity-10);
  transition: opacity 0.3s ease-in-out;
  transition: opacity var(--transition);
}
@media (max-width: 1023.98px) {
  .card-product__image-wrapper {
    position: static;
    width: 100%;
    border-bottom: none;
    height: 0;
  }
}
.card-product__info-wrapper {
  width: 67%;
  height: 220px;
  border-top: 1px solid rgb(204 234 255 / 10%);
  border-top: 1px solid var(--color-stroke-dark-opacity-10);
  border-left: 1px solid rgb(204 234 255 / 10%);
  border-left: 1px solid var(--color-stroke-dark-opacity-10);
  transition: background-color 0.3s ease-in-out;
  transition: background-color var(--transition);
}
@media (max-width: 1023.98px) {
  .card-product__info-wrapper {
    width: 100%;
    height: auto;
  }
}
.card-product__info {
  display: grid;
  grid-template-columns: 40% auto;
  padding: 32px;
}
@media (max-width: 1023.98px) {
  .card-product__info {
    grid-template-columns: auto;
    padding: 32px 24px 48px;
    background-color: rgb(12 19 24);
    background-color: var(--color-dark-secondary);
    border-left: none;
  }
}
.card-product__info_order {
  grid-template-columns: 40% 45% 15%;
  height: 100%;
}
@media (max-width: 1023.98px) {
  .card-product__info_order {
    grid-template-columns: auto;
  }
}
.card-product__info_order .card-product__desc {
  order: -1;
  font-size: 16px;
}
@media (max-width: 1023.98px) {
  .card-product__info_order .card-product__desc {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.card-product__info_order .card-product__title,
.card-product__info_order .card-product__button-wrapper {
  align-self: self-end;
  max-width: 100%;
}
@media (max-width: 1023.98px) {
  .card-product__info_order .card-product__title,
  .card-product__info_order .card-product__button-wrapper {
    align-self: auto;
  }
}
@media (max-width: 1023.98px) {
  .card-product__info_order .card-product__title {
    font-size: 20px;
  }
}
.card-product__info_order .card-product__button-wrapper {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1023.98px) {
  .card-product__info_order .card-product__button-wrapper {
    justify-content: flex-start;
    margin-top: 12px;
  }
}
.card-product__title {
  max-width: 200px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2em;
}
@media (max-width: 1023.98px) {
  .card-product__title {
    max-width: 100%;
    margin-bottom: 8px;
  }
}
.card-product__desc {
  font-size: 24px;
  line-height: 1.2em;
  color: rgb(255 255 255 / 45%);
  color: var(--color-white-opacity-45);
}
@media (max-width: 1023.98px) {
  .card-product__desc {
    font-size: 16px;
  }
}
.card-product__button {
  padding: 15px 24px;
  color: rgb(9 14 17);
  color: var(--color-dark);
  background-color: rgb(253 204 8);
  background-color: var(--color-accent-yellow);
  border-radius: 100px;
}

.card-more-product {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 24px 82px;
  color: rgb(255 255 255 / 45%);
  color: var(--color-white-opacity-45);
  border-top: 1px solid rgb(204 234 255 / 10%);
  border-top: 1px solid var(--color-stroke-dark-opacity-10);
  transition: color 0.3s ease-in-out;
  transition: color var(--transition);
}
@media (max-width: 1023.98px) {
  .card-more-product {
    width: calc(100% + 48px);
    padding: 28px 24px 29px;
    margin-left: -24px;
    color: rgb(255 255 255);
    color: var(--color-white);
  }
}
.card-more-product:last-child {
  border-bottom: 1px solid rgb(204 234 255 / 10%);
  border-bottom: 1px solid var(--color-stroke-dark-opacity-10);
}
@media (hover: hover) and (pointer: fine){
.card-more-product:hover {
  color: rgb(255 255 255);
  color: var(--color-white);
}
}
@media (hover: hover) and (pointer: fine){
.card-more-product:hover .card-more-product__image-wrapper {
  visibility: visible;
  height: 270px;
}
}
.card-more-product__title {
  font-size: 64px;
  font-weight: 500;
  line-height: 0.9em;
  letter-spacing: 0.025em;
}
@media (max-width: 1023.98px) {
  .card-more-product__title {
    font-size: 20px;
    line-height: 1.1em;
    letter-spacing: -0.01em;
  }
}
.card-more-product__icon_arrow {
  width: 27px;
  height: 27px;
  color: rgb(255 255 255);
  color: var(--color-white);
}
@media (max-width: 1023.98px) {
  .card-more-product__icon_arrow {
    width: 16px;
    height: 16px;
  }
}
.card-more-product__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-more-product__image-wrapper {
  position: absolute;
  right: 100px;
  bottom: 22px;
  z-index: 1;
  z-index: var(--z-index-default);
  visibility: hidden;
  width: 360px;
  height: 0;
  overflow: hidden;
  background-color: rgb(12 19 24);
  background-color: var(--color-dark-secondary);
  border-radius: 12px;
  transition: height 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: height var(--transition), visibility var(--transition);
}
.card-more-product__image-wrapper_center {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

.card-service-product {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 564px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid rgb(204 234 255 / 10%);
  border: 1px solid var(--color-stroke-dark-opacity-10);
  border-left: none;
}
@media (max-width: 1023.98px) {
  .card-service-product {
    height: 420px;
    padding: 24px;
  }
}
.card-service-product:last-child {
  border-right: none;
}
.card-service-product:last-child .card-service-product__title {
  max-width: 300px;
}
@media (hover: hover) and (pointer: fine){
.card-service-product:hover .card-service-product__image-wrapper {
  visibility: visible;
  transform: translateY(0);
}
}
.card-service-product__image {
  width: 100%;
  height: 100%;
}
.card-service-product__image-substrate {
  position: absolute;
  z-index: 1;
  z-index: var(--z-index-default);
  width: 100%;
  height: 100%;
  background-color: rgb(14 20 25 / 85%);
  background-color: var(--color-dark-third-opacity-85);
}
.card-service-product__image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  transition: transform var(--transition);
}
@media (max-width: 1023.98px) {
  .card-service-product__image-wrapper {
    visibility: visible;
    transform: translateY(0);
  }
}
.card-service-product__header {
  position: relative;
  z-index: 2;
  z-index: var(--z-index-two);
  flex: 1 1;
}
@media (max-width: 1023.98px) {
  .card-service-product__header {
    flex: none;
    margin-bottom: 32px;
  }
}
.card-service-product__title {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2em;
  letter-spacing: -0.02em;
}
@media (max-width: 1023.98px) {
  .card-service-product__title {
    font-size: 24px;
    letter-spacing: normal;
  }
}
.card-service-product__tag {
  display: block;
  margin-bottom: 12px;
  font-size: 72px;
  font-weight: 500;
  line-height: 0.9em;
  color: rgb(253 204 8);
  color: var(--color-accent-yellow);
  letter-spacing: 0.02em;
}
@media (max-width: 1023.98px) {
  .card-service-product__tag {
    margin-bottom: 8px;
    font-size: 48px;
    line-height: 1em;
    letter-spacing: -0.02em;
  }
}
.card-service-product__bottom {
  position: relative;
  z-index: 2;
  z-index: var(--z-index-two);
  flex: 0 1;
}
@media (max-width: 1023.98px) {
  .card-service-product__bottom {
    flex: auto;
  }
}

.input-wrapper {
  position: relative;
  width: 100%;
}

.input {
  width: 100%;
  height: 64px;
  padding: 16px;
  font-size: 16px;
  line-height: 110%;
  color: rgb(13 16 21);
  color: var(--color-text);
  background: rgb(255 255 255);
  background: var(--color-white);
  border: 1px solid rgb(0 30 51 / 20%);
  border: 1px solid var(--color-stroke-light-opacity-20);
  border-radius: 8px;
  transition: border-color 0.3s ease;
}
.input::-moz-placeholder {
  color: var(--color-text-secondary);
}
.input::placeholder {
  color: var(--color-text-secondary);
}
.input:focus {
  outline: none;
  border-color: var(--color-stroke-light-opacity-40);
}
.input--textarea {
  min-height: 120px;
  resize: none;
}
@media (max-width: 1023.98px) {
  .input--textarea {
    min-height: 115px;
  }
}
.input[data-error=true] {
  border-color: rgb(191 58 31);
  border-color: var(--color-accent-error);
}
.input[data-error=true] + .input-error-message {
  display: block;
  opacity: 1;
}
.input[data-error-form=true] {
  border-color: rgb(191 58 31);
  border-color: var(--color-accent-error);
}
.input[data-error-form=true] + .input-error-message {
  display: block;
  opacity: 1;
}
@media (max-width: 1023.98px) {
  .input {
    height: 64px;
    letter-spacing: 0.06em;
    padding: 22px 16px;
  }
}

.input-error-message {
  display: none;
  font-size: 12px;
  color: rgb(191 58 31);
  color: var(--color-accent-error);
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.card-swiper-product {
  position: relative;
  display: flex;
}
@media (max-width: 1023.98px) {
  .card-swiper-product {
    flex-direction: column;
    border-top: 1px solid rgb(0 30 51 / 20%);
    border-top: 1px solid var(--color-stroke-light-opacity-20);
  }
}
.card-swiper-product:last-child .card-swiper-product__header {
  border-bottom: 1px solid rgb(204 234 255 / 10%);
  border-bottom: 1px solid var(--color-stroke-dark-opacity-10);
}
.card-swiper-product_active .card-swiper-product__header {
  background-color: rgb(12 19 24);
  background-color: var(--color-dark-secondary);
}
@media (max-width: 1023.98px) {
  .card-swiper-product_active .card-swiper-product__header {
    background-color: rgb(255 255 255);
    background-color: var(--color-white);
  }
}
.card-swiper-product_active .card-swiper-product__content {
  display: block;
}
@media (max-width: 1023.98px) {
  .card-swiper-product_active .card-swiper-product__content {
    display: flex;
    width: 100%;
    height: 100%;
    margin-top: 0;
  }
}
.card-swiper-product_active .card-swiper-product__header-icon-line:last-child {
  transform: scale(0);
  transition: transform 0.3s ease-in-out;
  transition: transform var(--transition);
}
.card-swiper-product_active:nth-child(1) .card-swiper-product__content {
  top: calc((220px * 1 - 220px) * -1);
}
.card-swiper-product_active:nth-child(2) .card-swiper-product__content {
  top: calc((220px * 2 - 220px) * -1);
}
.card-swiper-product_active:nth-child(3) .card-swiper-product__content {
  top: calc((220px * 3 - 220px) * -1);
}
.card-swiper-product_active:nth-child(n+4) .card-swiper-product__content {
  top: auto;
  bottom: 0;
}
.card-swiper-product__header {
  display: flex;
  flex-direction: column;
  width: 33%;
  height: 220px;
  padding: 20px 32px 32px;
  border: 1px solid rgb(204 234 255 / 10%);
  border: 1px solid var(--color-stroke-dark-opacity-10);
  border-bottom: none;
  border-left: none;
  cursor: pointer;
}
@media (max-width: 1023.98px) {
  .card-swiper-product__header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
    padding: 21px 24px;
  }
}
.card-swiper-product__header-title {
  flex: 1 1;
}
@media (max-width: 1023.98px) {
  .card-swiper-product__header-title {
    display: none;
  }
}
.card-swiper-product__header-desc {
  flex: 0 1;
  font-size: 32px;
  line-height: 1.2em;
  letter-spacing: -0.02em;
}
@media (max-width: 1023.98px) {
  .card-swiper-product__header-desc {
    flex: 1 1;
    font-size: 16px;
    line-height: 1.3em;
    letter-spacing: normal;
  }
}
.card-swiper-product__header-icon {
  display: none;
}
@media (max-width: 1023.98px) {
  .card-swiper-product__header-icon {
    display: block;
  }
}
.card-swiper-product__header-icon-line {
  display: block;
  width: 16px;
  height: 2px;
  background-color: rgb(13 16 21);
  background-color: var(--color-text);
  transition: transform 0.3s ease-in-out;
  transition: transform var(--transition);
}
.card-swiper-product__header-icon-line:last-child {
  margin-top: -2px;
  transform-origin: center;
  rotate: 90deg;
}
.card-swiper-product__content {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  width: 67%;
  padding: 32px 40px 40px;
  color: rgb(9 14 17);
  color: var(--color-dark);
  background-color: rgb(255 255 255);
  background-color: var(--color-white);
  transition: transform 0.3s ease-in-out;
  transition: transform var(--transition);
}
@media (max-width: 1023.98px) {
  .card-swiper-product__content {
    position: static;
    display: flex;
    flex-direction: column;
    width: 0;
    height: 0;
    padding: 24px 0 24px 24px;
    margin-top: -48px;
    overflow-x: clip;
  }
}
.card-swiper-product__content-header {
  margin-bottom: 64px;
}
@media (max-width: 1023.98px) {
  .card-swiper-product__content-header {
    display: flex;
    flex-direction: column-reverse;
    padding-right: 24px;
    margin-bottom: 40px;
  }
}
.card-swiper-product__content-header-title {
  margin-top: 16px;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media (max-width: 1023.98px) {
  .card-swiper-product__content-header-title {
    margin-block: 0 12px;
    font-size: 24px;
  }
}
@media (max-width: 1023.98px) {
  .card-swiper-product__content-header-desc {
    font-size: 14px;
    color: rgb(13 16 21 / 45%);
    color: var(--color-text-opacity-45);
  }
}
.card-swiper-product__content-statistic {
  display: flex;
  gap: 80px;
  margin-bottom: 32px;
}
@media (max-width: 1023.98px) {
  .card-swiper-product__content-statistic {
    gap: 24px;
    align-items: start;
    order: 3;
  }
}
@media (max-width: 1023.98px) {
  .card-swiper-product__content-statistic-wrapper {
    display: flex;
    flex-direction: column-reverse;
    max-width: 120px;
  }
}
@media (max-width: 1023.98px) {
  .card-swiper-product__content-statistic-text {
    font-size: 14px;
    color: rgb(13 16 21 / 45%);
    color: var(--color-text-opacity-45);
  }
}
.card-swiper-product__content-statistic-title {
  margin-top: 4px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media (max-width: 1023.98px) {
  .card-swiper-product__content-statistic-title {
    margin-top: 0;
    margin-bottom: 8px;
  }
}
.card-swiper-product__swiper {
  width: 821px;
}
@media (max-width: 1379.98px) {
  .card-swiper-product__swiper {
    width: 100%;
  }
}
@media (max-width: 1023.98px) {
  .card-swiper-product__swiper {
    width: 100%;
    margin-bottom: 64px;
  }
}
.card-swiper-product__swiper.swiper {
  display: flex;
  margin-right: 0;
  margin-left: 0;
}
@media (max-width: 1023.98px) {
  .card-swiper-product__swiper .swiper-slide {
    flex-shrink: initial;
    min-width: min(640px, 100% - 24px);
  }
}
.card-swiper-product__swiper-wrapper.swiper-wrapper {
  width: 640px;
  height: 426px;
}
@media (max-width: 1023.98px) {
  .card-swiper-product__swiper-wrapper.swiper-wrapper {
    gap: 8px;
    width: 100%;
    height: auto;
    padding-right: 24px;
    overflow-x: scroll;
    scrollbar-width: none;
  }
}
.card-swiper-product__swiper-image {
  width: 100%;
  height: 100%;
}
.card-swiper-product__swiper-image-wrapper {
  width: 640px;
  height: 426px;
  overflow: hidden;
  border-radius: 8px;
}
@media (max-width: 1023.98px) {
  .card-swiper-product__swiper-image-wrapper {
    width: 100%;
    height: auto;
  }
}
.card-swiper-product__swiper-button-prev, .card-swiper-product__swiper-button-next {
  width: 64px;
  height: 64px;
  color: rgb(9 14 17);
  color: var(--color-dark);
  border: 1px solid rgb(0 30 51 / 20%);
  border: 1px solid var(--color-stroke-light-opacity-20);
  border-radius: 50%;
  transition: color 0.3s ease-in-out;
  transition: color var(--transition);
}
@media (max-width: 1379.98px) {
  .card-swiper-product__swiper-button-prev, .card-swiper-product__swiper-button-next {
    background: rgb(255 255 255 / 40%);
    background: var(--color-white-opacity-40);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(5px);
  }
}
.card-swiper-product__swiper-button-prev:disabled, .card-swiper-product__swiper-button-next:disabled {
  color: rgb(0 30 51 / 20%);
  color: var(--color-stroke-light-opacity-20);
  cursor: auto;
}
.card-swiper-product__swiper-navigation {
  position: relative;
  z-index: 2;
  z-index: var(--z-index-two);
  display: flex;
  gap: 6px;
  justify-content: flex-end;
  width: 181px;
  background-color: #fff;
}
@media (max-width: 1379.98px) {
  .card-swiper-product__swiper-navigation {
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    right: 190px;
    height: -moz-fit-content;
    height: fit-content;
    background: none;
    top: 340px;
  }
}
@media (max-width: 1023.98px) {
  .card-swiper-product__swiper-navigation {
    display: none;
  }
}
.card-swiper-product__swiper-icon {
  width: 16px;
  height: 16px;
}
.card-swiper-product__swiper-icon_prev {
  rotate: -180deg;
}

.tabs {
  display: flex;
  gap: 24px;
  overflow-x: auto;
}
.tabs__item {
  padding: 16px 0;
  font-size: 24px;
  font-weight: 500;
  color: rgb(13 16 21 / 45%);
  color: var(--color-text-opacity-45);
  letter-spacing: 0.03em;
}
@media (max-width: 1023.98px) {
  .tabs__item {
    font-size: 16px;
  }
}
.tabs__item_active {
  color: rgb(13 16 21);
  color: var(--color-text);
  border-bottom: 3px solid rgb(13 16 21);
  border-bottom: 3px solid var(--color-text);
}
@media (max-width: 1023.98px) {
  .tabs__item_active {
    padding-top: 15px;
    margin-top: -1px;
    border-top: 3px solid rgb(13 16 21);
    border-top: 3px solid var(--color-text);
    border-bottom: none;
  }
}

.tabs-content {
  display: none;
}
.tabs-content_active {
  display: flex;
}

.param-select {
  position: relative;
}
@media (max-width: 767.98px) {
  .param-select_active {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 110;
    z-index: var(--z-index-param-select);
    width: 100dvw;
    height: 100dvh;
    background-color: rgb(255 255 255);
    background-color: var(--color-white);
  }
  .param-select_active .param-select__wrapper {
    min-height: 68px;
    background-color: rgb(255 255 255);
    background-color: var(--color-white);
  }
  .param-select_active .param-select__button-main {
    width: calc(100% - 51px);
    height: 100%;
    padding: 20px 24px;
    font-size: 28px;
    font-weight: 500;
    line-height: 1em;
    text-align: left;
    letter-spacing: -0.02em;
  }
  .param-select_active .param-select__button-actions {
    position: static;
    z-index: 0;
    z-index: var(--z-index-zero);
    visibility: visible;
    width: 72px;
    height: 68px;
    opacity: 1;
  }
  .param-select_active .param-select__button-actions-count {
    display: none;
    opacity: 0;
    transition-delay: 0;
  }
  .param-select_active .param-select__button-actions-close {
    position: static;
    margin-right: 20px;
    opacity: 1;
  }
  .param-select_active .param-select__button-actions-close-line {
    width: 21.64px;
    background-color: rgb(0 30 51 / 20%);
    background-color: var(--color-stroke-light-opacity-20);
  }
  .param-select_active .param-select__modal {
    width: 100%;
    height: calc(100% - 68px);
  }
  .param-select_active .param-select__modal-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    margin-top: 0;
    border-radius: 0;
  }
  .param-select_active .param-select__list-item {
    padding: 24px;
  }
  .param-select_active .param-select__modal-button-wrapper {
    padding: 24px 24px 32px;
  }
  .param-select_active .param-select__modal-button {
    width: 100%;
  }
}
.param-select__wrapper {
  position: relative;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  max-height: 48px;
  color: rgb(13 16 21);
  color: var(--color-text);
  white-space: nowrap;
  background-color: rgb(237 241 242);
  background-color: var(--color-light);
  border-radius: 100px;
  transition: width 0.3s ease-in-out;
  transition: width var(--transition);
}
.param-select__button-main {
  width: 100%;
  padding: 15px 24px;
  transition: width 0.3s ease-in-out;
  transition: width var(--transition);
}
.param-select__button-main:has(+ .param-select__button-actions_active) {
  width: calc(100% - 51px);
  padding-right: 0;
}
@media (max-width: 767.98px) {
  .param-select__button-main {
    letter-spacing: 0.01em;
  }
}
.param-select__button-actions {
  position: absolute;
  z-index: -1;
  z-index: var(--z-index-under-content);
  visibility: hidden;
  width: 38px;
  height: 38px;
  margin-right: 5px;
  background-color: rgb(255 255 255);
  background-color: var(--color-white);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity var(--transition), visibility var(--transition);
}
@media (hover: hover) and (pointer: fine){
.param-select__button-actions:hover .param-select__button-actions-close {
  opacity: 1;
  transition-delay: 0.1s;
}
}
@media (hover: hover) and (pointer: fine){
.param-select__button-actions:hover .param-select__button-actions-count {
  opacity: 0;
  transition-delay: 0s;
}
}
.param-select__button-actions_active {
  position: relative;
  z-index: 0;
  z-index: var(--z-index-zero);
  visibility: visible;
  opacity: 1;
}
.param-select__button-actions-count {
  font-size: 14px;
  line-height: 1.4em;
  opacity: 1;
  transition: opacity 0.3s ease-in-out 0.1s;
  transition: opacity var(--transition) 0.1s;
}
.param-select__button-actions-close {
  position: absolute;
  top: 0;
  left: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease-in-out 0s;
  transition: opacity var(--transition) 0s;
}
.param-select__button-actions-close-line {
  position: absolute;
  display: block;
  width: 13.15px;
  height: 1px;
  background-color: rgb(13 16 21);
  background-color: var(--color-text);
  rotate: -45deg;
}
.param-select__button-actions-close-line:first-child {
  rotate: 45deg;
}
.param-select__modal {
  position: relative;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-in-out, width 0.3s ease-in-out;
  transition: grid-template-rows var(--transition), width var(--transition);
}
.param-select__modal_active {
  grid-template-rows: 1fr;
  width: -moz-max-content;
  width: max-content;
}
.param-select__modal-wrapper {
  min-height: 0;
  overflow: hidden;
}
.param-select__modal-content {
  margin-top: 4px;
  border: 1px solid rgb(0 30 51 / 20%);
  border: 1px solid var(--color-stroke-light-opacity-20);
  border-radius: 8px;
}
.param-select__list-item {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 202px;
  min-height: 56px;
  padding: 16px;
  border-bottom: 1px solid rgb(0 30 51 / 20%);
  border-bottom: 1px solid var(--color-stroke-light-opacity-20);
}
.param-select__list-item:last-child {
  border-bottom: none;
}
.param-select__modal-button-wrapper {
  padding: 16px;
}
.param-select__modal-button {
  padding: 15px 41px;
  color: rgb(255 255 255);
  color: var(--color-white);
  background-color: rgb(9 14 17);
  background-color: var(--color-dark);
  border-radius: 100px;
}

.advantages {
  display: flex;
  flex-direction: column;
  gap: 96px;
  justify-content: space-between;
  min-height: 100vh;
  padding: 112px 0 0 32px;
  background-color: rgb(253 204 8);
  background-color: var(--color-accent-yellow);
}
.advantages__title {
  width: 80%;
  margin-bottom: 64px;
}
.advantages__title__text {
  font-size: 64px;
  font-weight: 500;
  line-height: 90%;
  color: rgb(9 14 17);
  color: var(--color-dark);
  letter-spacing: 0.03em;
}
@media (max-width: 1023.98px) {
  .advantages__title__text {
    line-height: 100%;
  }
}
@media (max-width: 767.98px) {
  .advantages__title__text {
    font-size: 28px;
    letter-spacing: 0.015em;
  }
}
@media (max-width: 767.98px) {
  .advantages__title {
    width: 100%;
    padding: 0 0 0 24px;
    margin-bottom: 0;
  }
}
.advantages__content {
  display: flex;
  gap: 64px;
}
@media (max-width: 767.98px) {
  .advantages__content {
    flex-direction: column;
    justify-content: space-between;
    gap: 21px;
  }
}
.advantages__inscription {
  padding-top: 44px;
  font-size: 13px;
  font-weight: 700;
  line-height: 110%;
  vertical-align: bottom;
  color: rgb(13 16 21);
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-right: auto;
}
@media (max-width: 767.98px) {
  .advantages__inscription {
    padding-left: 24px;
  }
}
.advantages__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1px;
  gap: 1px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1px;
  background-color: rgb(0 30 51 / 20%);
  background-color: var(--color-stroke-light-opacity-20);
}
@media (max-width: 767.98px) {
  .advantages__items {
    display: flex;
    flex-direction: column;
    max-width: none;
    width: 100%;
  }
}
.advantages__item-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1px;
  width: 100%;
  height: 100%;
  padding: 1px;
}
@media (max-width: 767.98px) {
  .advantages__item-wrapper {
    flex-direction: row-reverse;
    justify-content: start;
    gap: 24px;
  }
}
.advantages__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  min-height: 260px;
  max-width: 454px;
  padding: 32px;
  background-color: rgb(253 204 8);
  background-color: var(--color-accent-yellow);
}
.advantages__item__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 767.98px) {
  .advantages__item__content {
    gap: 16px;
  }
}
.advantages__item__index {
  margin-bottom: 32px;
  font-size: 13px;
  font-weight: 700;
  line-height: 110%;
  color: rgb(13 16 21);
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 4%;
}
@media (max-width: 767.98px) {
  .advantages__item__index {
    margin-bottom: 64px;
  }
}
.advantages__item__description {
  margin-top: 32px;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  color: rgb(9 14 17);
  color: var(--color-dark);
  letter-spacing: -2%;
}
@media (max-width: 767.98px) {
  .advantages__item__description {
    margin-top: 0;
  }
}
.advantages__item__text {
  font-size: 32px;
  font-weight: 400;
  line-height: 120%;
  color: rgb(9 14 17);
  color: var(--color-dark);
  letter-spacing: 0.02em;
}
@media (max-width: 767.98px) {
  .advantages__item__text {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .advantages__item__text {
    width: 90%;
    letter-spacing: 0;
  }
}
.advantages__item__svg-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
@media (max-width: 767.98px) {
  .advantages__item__svg-container {
    justify-content: flex-start;
    width: -moz-max-content;
    width: max-content;
  }
}
@media (max-width: 767.98px) {
  .advantages__item__svg-container .advantages__item__svg_mounting svg {
    width: 40px;
    height: 40px;
    transform: scale(0.7);
  }
}
.advantages__item__svg svg {
  width: 40px;
  height: 40px;
  color: rgb(9 14 17);
  color: var(--color-dark);
}
@media (max-width: 767.98px) {
  .advantages__item__svg svg {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 1023.98px) {
  .advantages__item {
    min-height: auto;
  }
}
@media (max-width: 767.98px) {
  .advantages__item {
    display: flex;
    flex-direction: row-reverse;
    gap: 16px;
    justify-content: flex-end;
    padding: 38px 20px;
    max-width: inherit;
    width: 100%;
  }
}
@media (max-width: 1023.98px) {
  .advantages {
    gap: 100px;
    justify-content: flex-start;
    min-height: auto;
    padding-top: 72px;
  }
}
@media (max-width: 767.98px) {
  .advantages {
    gap: 36px;
    padding: 32px 0 0;
  }
}

.advantages-dark.advantages {
  background-color: rgb(9 14 17);
  background-color: var(--color-dark);
}
.advantages-dark .advantages {
  background-color: rgb(9 14 17);
  background-color: var(--color-dark);
}
.advantages-dark .advantages__title__text {
  color: rgb(255 255 255);
  color: var(--color-white);
}
.advantages-dark .advantages__inscription {
  color: rgb(237 241 242);
  color: var(--color-light);
}
.advantages-dark .advantages__items {
  background-color: rgb(204 234 255 / 10%);
  background-color: var(--color-stroke-dark-opacity-10);
}
.advantages-dark .advantages__item {
  background-color: rgb(14 20 25);
  background-color: var(--color-dark-third);
}
.advantages-dark .advantages__item__index {
  color: rgb(253 204 8);
  color: var(--color-accent-yellow);
}
.advantages-dark .advantages__item__text {
  color: rgb(255 255 255);
  color: var(--color-white);
}
.advantages-dark .advantages__item__description {
  color: rgb(255 255 255 / 40%);
  color: var(--color-white-opacity-40);
}
.advantages-dark .advantages__item__svg svg {
  color: rgb(255 255 255);
  color: var(--color-white);
}

.factoids-screen {
  display: flex;
  flex-direction: column;
  gap: 70px;
  justify-content: space-between;
  min-height: 100vh;
  padding: 83px 0 133px;
  color: rgb(9 14 17);
  color: var(--color-dark);
  background-color: rgb(253 204 8);
  background-color: var(--color-accent-yellow);
}
.factoids-screen__title {
  padding: 32px 32px 0;
}
@media (max-width: 1023.98px) {
  .factoids-screen__title {
    padding: 0 24px 0;
  }
}
.factoids-screen__title__text {
  font-size: 64px;
  font-weight: 500;
  line-height: 90%;
  letter-spacing: 0.025em;
}
@media (max-width: 1023.98px) {
  .factoids-screen__title__text {
    font-size: 40px;
    line-height: 100%;
  }
}
@media (max-width: 649.98px) {
  .factoids-screen__title__text {
    font-size: 28px;
    letter-spacing: 0.01em;
  }
}
.factoids-screen__description-container {
  display: flex;
  gap: 128px;
  padding: 0 18% 0 33%;
}
.factoids-screen__description-container--with-button {
  padding: 0 32px 0 41%;
}
@media (max-width: 1023.98px) {
  .factoids-screen__description-container {
    flex-direction: column;
    gap: 32px;
    padding: 0 24px;
  }
}
.factoids-screen__description {
  font-size: 24px;
  line-height: 120%;
}
@media (max-width: 1023.98px) {
  .factoids-screen__description {
    font-size: 16px;
    line-height: 130%;
  }
}
@media (max-width: 649.98px) {
  .factoids-screen__description {
    padding: 0;
    max-width: 97%;
  }
}
.factoids-screen__button-container-wrapper {
  display: flex;
  justify-content: flex-end;
}
.factoids-screen__button-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: 207px;
  padding: 8px 16px;
  background-color: rgb(255 255 255);
  background-color: var(--color-white);
  border-radius: 6px;
}
.factoids-screen__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: space-between;
}
@media (max-width: 1023.98px) {
  .factoids-screen__content {
    gap: 32px;
  }
}
.factoids-screen__inscription {
  padding-left: 32px;
  font-size: 13px;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
  letter-spacing: 0.045em;
}
.factoids-screen__items {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
@media (max-width: 1023.98px) {
  .factoids-screen__items {
    padding-top: 24px;
  }
}
.factoids-screen__item.factoids-screen__item--reverse {
  flex-direction: row-reverse;
  gap: 32px;
  align-items: flex-end;
  justify-content: flex-end;
  padding-left: 34%;
  /* stylelint-disable-next-line */
}
.factoids-screen__item.factoids-screen__item--reverse:first-child {
  padding-left: 32px;
}
@media (max-width: 1023.98px) {
  .factoids-screen__item.factoids-screen__item--reverse:first-child {
    padding-left: 24px;
  }
}
.factoids-screen__item.factoids-screen__item--reverse .factoids-screen__item__title {
  margin-bottom: 26px;
}
@media (max-width: 1023.98px) {
  .factoids-screen__item.factoids-screen__item--reverse .factoids-screen__item__title {
    margin-bottom: 16px;
    text-wrap: balance;
    max-width: 200px;
  }
}
@media (max-width: 1023.98px) {
  .factoids-screen__item.factoids-screen__item--reverse {
    padding-left: 15%;
  }
}
@media (max-width: 1023.98px) {
  .factoids-screen__item.factoids-screen__item--reverse {
    padding-left: 20%;
    /* stylelint-disable-next-line */
  }
  .factoids-screen__item.factoids-screen__item--reverse .factoids-screen__item__title {
    width: 25%;
    margin-bottom: 36px;
  }
}
@media (max-width: 767.98px) {
  .factoids-screen__item.factoids-screen__item--reverse {
    flex-direction: column-reverse;
    gap: 84px;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 32px;
    /* stylelint-disable-next-line */
    /* stylelint-disable-next-line */
  }
  .factoids-screen__item.factoids-screen__item--reverse .factoids-screen__item__title {
    width: 80%;
    margin-bottom: 16px;
  }
  .factoids-screen__item.factoids-screen__item--reverse .factoids-screen__item__value {
    margin-bottom: 0;
  }
}
.factoids-screen__item {
  display: flex;
  gap: 160px;
  padding-left: 32px;
  border-bottom: 1px solid rgb(0 30 51 / 20%);
  border-bottom: 1px solid var(--color-stroke-light-opacity-20);
}
.factoids-screen__item:last-child {
  border-bottom: none;
}
.factoids-screen__item:first-child {
  padding-top: 32px;
  border-top: 1px solid rgb(0 30 51 / 20%);
  border-top: 1px solid var(--color-stroke-light-opacity-20);
}
.factoids-screen__item__title {
  width: 20%;
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 1023.98px) {
  .factoids-screen__item__title {
    font-size: 16px;
  }
}
@media (max-width: 649.98px) {
  .factoids-screen__item__title {
    width: 100%;
  }
}
.factoids-screen__item__value {
  margin-bottom: 32px;
}
.factoids-screen__item__value__text {
  font-size: 112px;
  font-weight: 500;
  line-height: 90%;
}
@media (max-width: 1023.98px) {
  .factoids-screen__item__value__text {
    font-size: 48px;
  }
}
.factoids-screen__item__value__text-container {
  display: flex;
  gap: 16px;
}
.factoids-screen__item__value__svg svg {
  width: 86px;
  height: 54px;
}
@media (max-width: 1023.98px) {
  .factoids-screen__item__value__svg svg {
    width: 54px;
    height: 30px;
  }
}
.factoids-screen__item__subfacts {
  display: flex;
  gap: 47px;
  margin-top: 45px;
}
@media (max-width: 1023.98px) {
  .factoids-screen__item__subfacts {
    gap: 16px;
  }
}
@media (max-width: 649.98px) {
  .factoids-screen__item__subfacts {
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 16px;
  }
}
.factoids-screen__item__subfact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.factoids-screen__item__subfact__value {
  font-size: 48px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -2%;
}
@media (max-width: 1023.98px) {
  .factoids-screen__item__subfact__value {
    font-size: 32px;
  }
}
.factoids-screen__item__subfact__title {
  width: 70%;
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 0%;
}
@media (max-width: 1023.98px) {
  .factoids-screen__item__subfact__title {
    width: 100%;
    font-size: 14px;
  }
}
@media (max-width: 1023.98px) {
  .factoids-screen__item__subfact {
    width: 42%;
  }
}
@media (max-width: 1023.98px) {
  .factoids-screen__item {
    gap: 100px;
  }
}
@media (max-width: 649.98px) {
  .factoids-screen__item {
    flex-direction: column;
    gap: 8px;
    padding: 0 24px;
  }
}
@media (max-width: 1023.98px) {
  .factoids-screen {
    gap: 31px;
    min-height: auto;
    padding: 32px 0;
  }
}

.cover-screen {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.cover-screen__cover-container {
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 130%;
  background-color: rgb(9 14 17);
  background-color: var(--color-dark);
}
.cover-screen__cover-container__img {
  z-index: 0;
  z-index: var(--z-index-zero);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.6;
}
.cover-screen__cover-container__img_mobile {
  display: none;
}
@media (max-width: 1023.98px) {
  .cover-screen__cover-container__img_mobile {
    display: block;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 1023.98px) {
  .cover-screen__cover-container_mobile-hidden {
    display: none;
  }
}
.cover-screen__shadow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(9 14 17) 80%, rgb(9 14 17) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, var(--color-dark) 80%, var(--color-dark) 100%);
}

.cover-screen-text {
  position: absolute;
  bottom: 12%;
  left: 37%;
  z-index: 1;
  z-index: var(--z-index-default);
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: -moz-min-content;
  width: min-content;
  color: #fff;
}
.cover-screen-text .title {
  text-wrap: nowrap;
}
.cover-screen-text__description {
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.02em;
}
@media (max-width: 979.98px) {
  .cover-screen-text__description {
    font-size: 16px;
    line-height: 130%;
  }
}
@media (max-width: 1299.98px) {
  .cover-screen-text .title.cover-screen-title--mobile-smaller {
    font-size: 80px;
  }
}
@media (max-width: 1023.98px) {
  .cover-screen-text {
    left: 30%;
    width: 45%;
  }
}
@media (max-width: 767.98px) {
  .cover-screen-text {
    top: 102px;
    bottom: auto;
    left: 24px;
    gap: 24px;
  }
  .cover-screen-text .title {
    font-size: 48px;
  }
  .cover-screen-text .title.cover-screen-title--mobile-smaller {
    font-size: 42px;
  }
}
@media (max-width: 549.98px) {
  .cover-screen-text {
    width: 80%;
  }
}

.indexed-swiper {
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.indexed-swiper__items {
  display: flex;
  height: -moz-fit-content;
  height: fit-content;
}
.indexed-swiper__item {
  width: calc(50% - 16px);
  min-height: 670px;
  max-height: 670px;
  background-color: rgb(12 19 24);
  background-color: var(--color-dark-secondary);
  border: 1px solid rgb(204 234 255 / 10%);
  border: 1px solid var(--color-stroke-dark-opacity-10);
  border-left: none;
}
@media (max-width: 1023.98px) {
  .indexed-swiper__item {
    min-height: 570px;
    max-height: 570px;
  }
}
@media (max-width: 1023.98px) {
  .indexed-swiper__item {
    min-height: 520px;
    max-height: 520px;
  }
}
@media (max-width: 767.98px) {
  .indexed-swiper__item {
    max-width: 100%;
    min-height: auto;
  }
}
.indexed-swiper__item.swiper-slide {
  height: -moz-fit-content;
  height: fit-content;
}
.indexed-swiper__item__image {
  width: 100%;
  height: calc(260px + 190 * (100vw - 360px) / 1080);
  min-height: 260px;
  max-height: 450px;
  overflow: hidden;
}
@media (max-width: 360px) {
  .indexed-swiper__item__image {
    height: 260px;
  }
}
@media (min-width: 1440px) {
  .indexed-swiper__item__image {
    height: 450px;
  }
}
.indexed-swiper__item__image__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.indexed-swiper__item__text-container {
  display: flex;
  gap: 115px;
  padding: 32px 40px;
}
@media (max-width: 767.98px) {
  .indexed-swiper__item__text-container {
    gap: 64px;
  }
}
@media (max-width: 599.98px) {
  .indexed-swiper__item__text-container {
    flex-direction: column;
    gap: 16px;
    padding: 20px 24px 32px;
  }
}
.indexed-swiper__item__number {
  font-size: 13px;
  font-weight: 700;
  line-height: 110%;
  color: rgb(255 255 255 / 35%);
  color: var(--color-white-opacity-35);
  text-transform: uppercase;
  letter-spacing: 4%;
}
.indexed-swiper__item__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 130%;
  color: rgb(255 255 255);
  color: var(--color-white);
}
@media (max-width: 599.98px) {
  .indexed-swiper__item__title {
    font-size: 14px;
  }
}

.select__wrapper {
  position: relative;
}
.select__element {
  width: 100%;
  height: 64px;
  padding: 16px;
  padding-right: 48px;
  font-size: 16px;
  line-height: 110%;
  color: rgb(13 16 21);
  color: var(--color-text);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background: rgb(255 255 255);
  background: var(--color-white);
  border: 1px solid rgb(0 30 51 / 20%);
  border: 1px solid var(--color-stroke-light-opacity-20);
  border-radius: 8px;
}
.select__element:focus {
  outline: none;
  border-color: var(--color-stroke-light-opacity-40);
}
@media (max-width: 767.98px) {
  .select__element {
    height: 50px;
  }
}
.select__icon {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 24px;
  height: 24px;
  color: rgb(13 16 21);
  color: var(--color-text);
  pointer-events: none;
  fill: none;
  transform: translateY(-50%);
}

.pagination-element {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.pagination-element__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  cursor: pointer;
  background: rgb(255 255 255);
  background: var(--color-white);
  border: 1px solid rgb(0 30 51 / 20%);
  border: 1px solid var(--color-stroke-light-opacity-20);
  border-radius: 50%;
}
.pagination-element__button:first-child {
  transform: rotate(90deg);
}
.pagination-element__button:last-child {
  transform: rotate(-90deg);
}
.pagination-element__button__icon {
  width: 24px;
  height: 24px;
  color: rgb(13 16 21);
  color: var(--color-text);
}
.pagination-element__layout {
  display: flex;
  gap: 16px;
}
.pagination-element__item__number {
  font-size: 20px;
  font-weight: 500;
  line-height: 110%;
  color: rgb(13 16 21 / 45%);
  color: var(--color-text-opacity-45);
  cursor: pointer;
  transition: color 0.2s;
}
@media (hover: hover) and (pointer: fine){
.pagination-element__item__number:hover {
  color: rgb(13 16 21);
  color: var(--color-text);
}
}
.pagination-element__item__number--active {
  color: rgb(13 16 21);
  color: var(--color-text);
}
@media (hover: hover) and (pointer: fine){
.pagination-element__item__number--ellipsis:hover {
  color: rgb(13 16 21);
  color: var(--color-text);
}
}

.input-quantity {
  display: flex;
  gap: 8px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
.input-quantity__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: transparent;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  transition: all 0.2s ease;
}
@media (hover: hover) and (pointer: fine){
.input-quantity__button:hover {
  background: #f3f4f6;
}
}
.input-quantity__button:disabled {
  cursor: not-allowed;
  background: transparent;
  opacity: 0.5;
}
.input-quantity__icon {
  width: 16px;
  height: 16px;
  color: #374151;
}
.input-quantity__input {
  width: 95px;
  padding: 4px 8px;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
}
.input-quantity__input::-webkit-outer-spin-button, .input-quantity__input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
          appearance: none;
}
.input-quantity__input[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}
.input-quantity__input:focus {
  outline: none;
  border-color: #6b7280;
}
@media (max-width: 767.98px) {
  .input-quantity__input {
    width: 101px;
  }
}

.letter {
  display: inline-block;
  /* stylelint-disable */
  word-break: break-word;
  white-space: normal;
  opacity: 0;
  animation: fade-in 0.5s ease forwards;
  animation-delay: var(--delay);
}

.word {
  display: inline-block;
  white-space: normal;
}

.card-vacancy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 281px;
  padding: 32px;
  transition: background-color 0.3s ease-in-out;
  transition: background-color var(--transition);
}
.card-vacancy_grid.card-vacancy {
  height: 100%;
  min-height: auto;
}
.card-vacancy_grid.card-vacancy .card-vacancy__header {
  padding-bottom: 0;
}
@media (max-width: 1023.98px) {
  .card-vacancy {
    min-height: 264px;
    padding: 24px 24px 32px;
  }
}
@media (hover: hover) and (pointer: fine){
.card-vacancy:hover {
  background-color: rgb(237 241 242);
  background-color: var(--color-light);
}
}
@media (hover: hover) and (pointer: fine){
.card-vacancy:hover .card-vacancy__button-arrow-icon {
  color: rgb(13 16 21);
  color: var(--color-text);
}
}
.card-vacancy__header-wrapper {
  display: flex;
  gap: 16px;
  justify-content: space-between;
}
.card-vacancy__header-wrapper_grid {
  flex-direction: column;
}
@media (max-width: 1023.98px) {
  .card-vacancy__header-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 1023.98px) {
  .card-vacancy__header {
    padding-bottom: 9px;
  }
}
.card-vacancy__header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
}
@media (max-width: 1023.98px) {
  .card-vacancy__header-top {
    align-items: flex-start;
  }
}
.card-vacancy__header-address {
  display: flex;
  gap: 16px;
  color: rgb(13 16 21 / 45%);
  color: var(--color-text-opacity-45);
}
.card-vacancy__header-title {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media (max-width: 1023.98px) {
  .card-vacancy__header-title {
    font-size: 24px;
    letter-spacing: 0.01em;
  }
}
.card-vacancy__urgently {
  display: flex;
  gap: 4px;
  width: -moz-fit-content;
  width: fit-content;
  height: 24px;
  padding: 5px 8px 5px 6px;
  color: rgb(253 204 8);
  color: var(--color-accent-yellow);
  background-color: rgb(12 19 24);
  background-color: var(--color-dark-secondary);
  border-radius: 100px;
}
@media (max-width: 1023.98px) {
  .card-vacancy__urgently {
    display: flex;
    width: 95px;
    margin-bottom: 41px;
  }
}
.card-vacancy__urgently-icon {
  width: 10px;
  height: 13px;
}
.card-vacancy__bottom {
  display: flex;
  justify-content: space-between;
}
.card-vacancy__bottom-margin {
  margin-top: 90px;
}
.card-vacancy__bottom-items {
  display: flex;
  gap: 52px;
  align-items: center;
}
@media (max-width: 1023.98px) {
  .card-vacancy__bottom-items {
    gap: 32px;
  }
}
.card-vacancy__bottom-item-text {
  padding-bottom: 8px;
  color: rgb(13 16 21 / 45%);
  color: var(--color-text-opacity-45);
}
@media (max-width: 1023.98px) {
  .card-vacancy__bottom-item-text {
    font-size: 14px;
  }
}
.card-vacancy__bottom-item-title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
@media (max-width: 1023.98px) {
  .card-vacancy__bottom-item-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    letter-spacing: 0;
  }
}
.card-vacancy__button-arrow {
  width: 48px;
  height: 48px;
}
@media (max-width: 1023.98px) {
  .card-vacancy__button-arrow {
    display: none;
  }
}
.card-vacancy__button-arrow_mb {
  display: none;
}
@media (max-width: 1023.98px) {
  .card-vacancy__button-arrow_mb {
    display: block;
    width: 32px;
    height: 32px;
  }
}
.card-vacancy__button-arrow-icon {
  width: 24px;
  height: 24px;
  color: rgb(0 30 51 / 20%);
  color: var(--color-stroke-light-opacity-20);
  transition: color 0.3s ease-in-out;
  transition: color var(--transition);
}

.input-upload {
  position: absolute;
  z-index: -1;
  z-index: var(--z-index-under-content);
  visibility: hidden;
  width: 0;
  height: 0;
  opacity: 0;
}
.input-upload__container {
  position: relative;
}
.input-upload__label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 112px;
  color: rgb(13 16 21 / 45%);
  color: var(--color-text-opacity-45);
  cursor: pointer;
  background-color: rgb(255 255 255);
  background-color: var(--color-white);
  border-radius: 8px;
  transition: background-color 0.3s ease-in-out;
  transition: background-color var(--transition);
}
.input-upload__label_dragover {
  background-color: rgb(255 255 255 / 60%);
  background-color: var(--color-white-opacity-60);
}
.input-upload__label_error .input-upload__wrapper {
  border-color: rgb(191 58 31);
  border-color: var(--color-accent-error);
}
.input-upload__label_error + .input-upload__error-text {
  max-height: 100px;
  padding-top: 8px;
  opacity: 1;
  transform: translateY(0);
}
.input-upload__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc(100% - 8px);
  min-height: 104px;
  padding: 4px;
  border: 1px dashed rgb(0 30 51 / 20%);
  border: 1px dashed var(--color-stroke-light-opacity-20);
  border-radius: 6px;
  transition: border-color 0.3s ease-in-out;
  transition: border-color var(--transition);
}
@media (max-width: 1023.98px) {
  .input-upload__drag {
    display: none;
  }
}
.input-upload__drag-special {
  color: rgb(13 16 21 / 60%);
  color: var(--color-text-opacity-60);
}
.input-upload__mobile {
  display: none;
}
@media (max-width: 1023.98px) {
  .input-upload__mobile {
    display: block;
    color: rgb(13 16 21 / 60%);
    color: var(--color-text-opacity-60);
  }
}
.input-upload__size {
  padding-top: 8px;
  font-size: 14px;
  color: rgb(13 16 21 / 35%);
  color: var(--color-text-opacity-35);
}
.input-upload__error-text {
  max-height: 0;
  padding-top: 0;
  font-size: 14px;
  color: rgb(191 58 31);
  color: var(--color-accent-error);
  opacity: 0;
  transform: translateY(-20px);
  transition: transform 0.3s ease-in-out, max-height 0.3s ease-in-out, padding 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform var(--transition), max-height var(--transition), padding var(--transition), opacity var(--transition);
  will-change: transform, opacity, max-height, padding;
}
.input-upload__files {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-in-out, padding 0.3s ease-in-out;
  transition: grid-template-rows var(--transition), padding var(--transition);
}
.input-upload__files_show {
  grid-template-rows: 1fr;
}
.input-upload__files-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}
.input-upload__file {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-height: 70px;
  padding: 16px;
  margin-top: 16px;
  overflow: hidden;
  background-color: rgb(255 255 255);
  background-color: var(--color-white);
  border-radius: 8px;
  transition: margin-top 0.3s ease-in-out, transform 0.3s ease-in-out, padding 0.3s ease-in-out 0.1s, opacity 0.3s ease-in-out, max-height 0.3s ease-in-out;
  transition: margin-top var(--transition), transform var(--transition), padding var(--transition) 0.1s, opacity var(--transition), max-height var(--transition);
}
.input-upload__file:nth-child(1) {
  z-index: 9;
}
.input-upload__file:nth-child(2) {
  z-index: 8;
}
.input-upload__file:nth-child(3) {
  z-index: 7;
}
.input-upload__file:nth-child(4) {
  z-index: 6;
}
.input-upload__file:nth-child(5) {
  z-index: 5;
}
.input-upload__file:nth-child(6) {
  z-index: 4;
}
.input-upload__file:nth-child(7) {
  z-index: 3;
}
.input-upload__file:nth-child(8) {
  z-index: 2;
}
.input-upload__file:nth-child(9) {
  z-index: 1;
}
.input-upload__file:nth-child(10) {
  z-index: 0;
}
@media (max-width: 1023.98px) {
  .input-upload__file {
    max-height: 100%;
  }
}
.input-upload__file_removing {
  max-height: 0;
  padding: 0;
  margin-top: 0;
  opacity: 0;
  transform: translateY(-20px);
}
.input-upload__file-info {
  display: flex;
  gap: 8px;
  align-items: center;
}
.input-upload__file-icon {
  width: 32px;
  height: 32px;
}
.input-upload__file-name {
  padding-bottom: 2px;
  line-height: 1.3em;
}
.input-upload__file-size {
  font-size: 14px;
  color: rgb(13 16 21 / 45%);
  color: var(--color-text-opacity-45);
}
.input-upload__file-remove {
  width: 24px;
  height: 24px;
}
.input-upload__file-remove-line {
  display: block;
  width: 12px;
  height: 2px;
  background-color: #aaabad;
  rotate: -45deg;
}
.input-upload__file-remove-line:last-child {
  margin-top: -2px;
  rotate: 45deg;
}

.card-indexed {
  --color-border: var(--color-stroke-yellow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 453px;
  padding: 32px;
  border-top: 1px solid rgb(214 174 10);
  border-top: 1px solid var(--color-border);
  border-right: 1px solid rgb(214 174 10);
  border-right: 1px solid var(--color-border);
}
.card-indexed_dark {
  --color-border: var(--color-stroke-dark-opacity-10);
}
.card-indexed_light {
  --color-border: var(--color-stroke-light-opacity-20);
}
@media (max-width: 1023.98px) {
  .card-indexed {
    min-height: 375px;
    border-right: none;
    padding: 32px 24px;
  }
}
.card-indexed:nth-child(3n+3) {
  border-right: none;
}
.card-indexed__count {
  padding-bottom: 16px;
  font-size: 64px;
  line-height: 0.9em;
  letter-spacing: -0.01em;
}
.card-indexed__title {
  max-width: 300px;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
@media (max-width: 1023.98px) {
  .card-indexed__title {
    font-size: 28px;
    line-height: 1em;
  }
}
.card-indexed__desc {
  max-width: 350px;
  line-height: 1.3em;
  padding-bottom: 34px;
}

.card-excellence {
  display: flex;
  min-height: 453px;
  border-top: 1px solid rgb(204 234 255 / 10%);
  border-top: 1px solid var(--color-stroke-dark-opacity-10);
}
@media (max-width: 1023.98px) {
  .card-excellence {
    flex-direction: column;
    min-height: auto;
    border: none;
  }
}
.card-excellence:last-child {
  border-bottom: 1px solid rgb(204 234 255 / 10%);
  border-bottom: 1px solid var(--color-stroke-dark-opacity-10);
}
@media (max-width: 1023.98px) {
  .card-excellence:last-child {
    border: none;
  }
}
.card-excellence__image-wrapper {
  width: 453px;
  border-right: 1px solid rgb(204 234 255 / 10%);
  border-right: 1px solid var(--color-stroke-dark-opacity-10);
}
@media (max-width: 1023.98px) {
  .card-excellence__image-wrapper {
    width: 100%;
    border: none;
  }
}
.card-excellence__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-excellence__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 512px;
  padding: 32px 32px 48px;
  margin-inline: auto;
}
@media (max-width: 1023.98px) {
  .card-excellence__info {
    padding: 32px 20px;
  }
}
.card-excellence__title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: -0.02em;
}
@media (max-width: 1023.98px) {
  .card-excellence__title {
    max-width: 250px;
    margin-bottom: 24px;
    font-size: 24px;
    line-height: 1.2em;
  }
}
.card-excellence__list-wrpapper ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-excellence__list-wrpapper ul li {
  position: relative;
  max-width: 400px;
  line-height: 1.3em;
}
@media (max-width: 1023.98px) {
  .card-excellence__list-wrpapper ul li {
    max-width: 280px;
    margin-left: 26px;
    color: rgb(255 255 255 / 45%);
    color: var(--color-white-opacity-45);
  }
}
.card-excellence__list-wrpapper ul li::before {
  position: absolute;
  top: 8px;
  left: -26px;
  display: inline-block;
  width: 11px;
  height: 9px;
  content: "";
  background-color: rgb(255 255 255 / 45%);
  background-color: var(--color-white-opacity-45);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 9"><path d="M4.5 8.0605L0.75 4.30975L1.80975 3.25L4.5 5.9395L10.1887 0.25L11.25 1.31125L4.5 8.0605Z"/></svg>') no-repeat center;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 9"><path d="M4.5 8.0605L0.75 4.30975L1.80975 3.25L4.5 5.9395L10.1887 0.25L11.25 1.31125L4.5 8.0605Z"/></svg>') no-repeat center;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.form-section {
  display: grid;
  grid-template-columns: 0.48fr 1fr;
  padding: 24px 32px;
  border-top: 1px solid rgb(0 30 51 / 20%);
  border-top: 1px solid var(--career-border);
}
@media (max-width: 1023.98px) {
  .form-section {
    grid-template-columns: 0.45fr 1fr;
  }
}
@media (max-width: 767.98px) {
  .form-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}
.form-section__name {
  font-size: 24px;
  font-weight: 500;
  line-height: 110%;
  color: rgb(13 16 21);
  color: var(--color-text);
}
.form-section__block-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.form-section__block {
  margin-bottom: 16px;
}
.form-section__description {
  padding-top: 8px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  color: rgb(13 16 21);
  color: var(--color-text);
}
.form-section__elements {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 16px;
  gap: 16px;
}
@media (max-width: 699.98px) {
  .form-section__elements {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}
.form-section__button {
  position: relative;
  left: 100%;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 24px;
  line-height: 110%;
  color: rgb(13 16 21);
  color: var(--color-text);
  background-color: rgb(237 241 242 / 100%);
  background-color: var(--color-white-light);
  border: none;
  border-radius: 100px;
  transition: background-color 0.3s ease-in-out;
  transition: background-color var(--transition);
}
@media (max-width: 766.98px) {
  .form-section__button {
    left: 0;
  }
}
@media (hover: hover) and (pointer: fine){
.form-section__button:hover {
  outline: 1px solid rgb(237 241 242 / 100%);
  outline: 1px solid var(--color-white-light);
  background-color: rgb(255 255 255);
  background-color: var(--color-white);
}
}
.form-section .form-section__input {
  background: rgb(237 241 242 / 100%);
  background: var(--color-white-light);
  border: none;
}
.form-section .form-section__full {
  grid-column: 1/-1;
  width: 100%;
}
.form-section .form-section__select {
  grid-column: 1/-3;
  width: 100%;
}
.form-section .form-section__select select {
  background-color: rgb(237 241 242 / 100%);
  background-color: var(--color-white-light);
}
.form-section .form-section__second-column {
  grid-column: 2/-1;
  width: 100%;
}
.form-section .form-section__flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.form-section .form-section__flex-wrapper .input-wrapper {
  box-sizing: border-box;
  background: #eef2f3;
  border: none;
  border-radius: 8px;
}
.form-section .form-section__flex-wrapper .input-wrapper:nth-child(1),
.form-section .form-section__flex-wrapper .input-wrapper:nth-child(2) {
  width: calc((100% - 32px) / 6);
}
@media (max-width: 699.98px) {
  .form-section .form-section__flex-wrapper .input-wrapper:nth-child(1),
  .form-section .form-section__flex-wrapper .input-wrapper:nth-child(2) {
    width: 100%;
  }
}
.form-section .form-section__flex-wrapper .input-wrapper:nth-child(3) {
  width: calc((100% - 32px) * 4 / 6);
}
@media (max-width: 699.98px) {
  .form-section .form-section__flex-wrapper .input-wrapper:nth-child(3) {
    width: 100%;
  }
}
.form-section .form-section__flex-wrapper .input-wrapper:nth-child(4) {
  width: calc((100% + 16px) / 3);
}
@media (max-width: 699.98px) {
  .form-section .form-section__flex-wrapper .input-wrapper:nth-child(4) {
    width: 100%;
  }
}
.form-section .form-section__flex-wrapper .input-wrapper:nth-child(5) {
  width: calc((100% - 32px) * 2 / 3);
}
@media (max-width: 699.98px) {
  .form-section .form-section__flex-wrapper .input-wrapper:nth-child(5) {
    width: 100%;
  }
}
.form-section__description-wrapper {
  display: flex;
  gap: 4px;
  align-items: baseline;
}
.form-section__delete-button {
  line-height: 110%;
  color: rgb(13 16 21 / 45%);
  color: var(--color-text-opacity-45);
  background: none;
  border: none;
}
.form-section__description-element {
  width: 100%;
  font-size: 14px;
  line-height: 110%;
  color: rgb(13 16 21 / 60%);
  color: var(--color-text-opacity-60);
}
.form-section__description-section {
  font-size: 16px;
  line-height: 130%;
  color: rgb(13 16 21);
  color: var(--color-text);
  font-weight: 400;
  max-width: 70%;
  text-wrap: balance;
  padding-top: 8px;
}
@media (max-width: 1023.98px) {
  .form-section__description-section {
    max-width: 100%;
    padding-top: 16px;
  }
}

.input-search {
  width: 100%;
  height: 100%;
  padding: 16px 64px 16px 16px;
  font-size: 16px;
  line-height: 1.1em;
  color: rgb(13 16 21);
  color: var(--color-text);
  background: rgb(255 255 255);
  background: var(--color-white);
  border: 1px solid rgb(0 30 51 / 20%);
  border: 1px solid var(--color-stroke-light-opacity-20);
  border-radius: 8px;
  transition: border-color 0.3s ease-in-out;
  transition: border-color var(--transition);
}
.input-search:focus {
  outline: none;
  border-color: var(--color-stroke-light-opacity-40);
}
.input-search__wrapper {
  position: relative;
  height: 64px;
}
@media (hover: hover) and (pointer: fine){
.input-search__wrapper:hover:not(:focus-within) .input-search__label {
  color: rgb(13 16 21 / 60%);
  color: var(--color-text-opacity-60);
}
}
.input-search__wrapper:has(.input-search:not(:-moz-placeholder)) .input-search__label {
  top: 0;
  border-radius: 8px;
}
.input-search__wrapper:has(.input-search:not(:placeholder-shown)) .input-search__label, .input-search__wrapper:focus-within .input-search__label {
  top: 0;
  border-radius: 8px;
}
.input-search__label {
  position: absolute;
  top: 50%;
  left: 16px;
  z-index: 10;
  z-index: var(--z-index-ten);
  padding-inline: 4px;
  margin-right: -4px;
  pointer-events: none;
  background-color: var(--label-color);
  transform: translate(0, -50%);
  transition: top 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: top var(--transition), color var(--transition);
}
.input-search__button {
  position: absolute;
  right: 0;
  width: 64px;
  border-left: 1px solid rgb(0 30 51 / 20%);
  border-left: 1px solid var(--color-stroke-light-opacity-20);
}
.input-search__icon {
  width: 21px;
  height: 21px;
}
.input-search__cross {
  display: none;
  position: absolute;
  top: 50%;
  right: 80px;
  transform: translate(0, -50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgb(237 241 242);
  background-color: var(--color-light);
}
.input-search__cross_active {
  display: block;
}
.input-search__cross::before, .input-search__cross::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background-color: rgb(13 16 21);
  background-color: var(--color-text);
  transform: translate(-50%, -50%) rotate(45deg);
}
.input-search__cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.checkbox {
  display: flex;
  align-items: center;
}
.checkbox__input {
  visibility: hidden;
  width: 0;
  height: 0;
  opacity: 0;
}
.checkbox__input:checked + .checkbox__custom {
  background-color: rgb(12 19 24);
  background-color: var(--color-dark-secondary);
}
.checkbox__input:checked + .checkbox__custom .checkbox__custom-icon {
  opacity: 1;
}
.checkbox__custom {
  position: relative;
  width: 24px;
  height: 24px;
  margin-right: 16px;
  cursor: pointer;
  background-color: rgb(237 241 242);
  background-color: var(--color-light);
  border-radius: 4px;
  transition: background-color 0.3s ease-in-out;
  transition: background-color var(--transition);
}
.checkbox__custom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 9px;
  color: rgb(237 241 242);
  color: var(--color-light);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: color 0.3s ease-in-out;
  transition: color var(--transition);
}
.checkbox__text {
  color: #000;
  cursor: pointer;
}

.common-accordion {
  display: flex;
  border-top: 1px solid rgb(0 30 51 / 20%);
  border-top: 1px solid var(--color-stroke-light-opacity-20);
}
@media (max-width: 1023.98px) {
  .common-accordion {
    flex-direction: column;
    border-top: none;
  }
  .common-accordion--content-visible {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    z-index: var(--z-index-header);
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    background: rgb(255 255 255);
    background: var(--color-white);
  }
}
.common-accordion__sidebar {
  flex-shrink: 0;
  width: 33.5%;
  min-width: 360px;
  background: rgb(255 255 255);
  background: var(--color-white);
}
@media (max-width: 1023.98px) {
  .common-accordion__sidebar {
    position: relative;
    z-index: 2;
    z-index: var(--z-index-two);
    width: 100%;
    min-width: 0;
    min-width: initial;
    transform: translateX(0);
    transition: transform 0.3s ease;
  }
  .common-accordion--content-visible .common-accordion__sidebar {
    transform: translateX(-100%);
  }
}
.common-accordion__sidebar-title {
  padding: 32px;
  font-size: 48px;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: 0.02em;
}
@media (max-width: 1023.98px) {
  .common-accordion__sidebar-title {
    font-size: 24px;
    padding: 24px;
  }
}
.common-accordion__categories {
  display: flex;
  flex-direction: column;
}
.common-accordion__category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 28px 22px 28px 32px;
  margin: 0;
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 1px solid rgb(0 30 51 / 20%);
  border-bottom: 1px solid var(--color-stroke-light-opacity-20);
  transition: background-color 0.3s ease;
}
.common-accordion__category:first-child {
  border-top: 1px solid rgb(0 30 51 / 20%);
  border-top: 1px solid var(--color-stroke-light-opacity-20);
}
.common-accordion__category--active {
  background-color: rgb(237 241 242);
  background-color: var(--color-light);
}
@media (max-width: 1023.98px) {
  .common-accordion__category--active {
    background-color: transparent;
  }
}
.common-accordion__category--active .common-accordion__category-icon {
  opacity: 1;
}
@media (max-width: 1023.98px) {
  .common-accordion__category {
    padding: 30px 20px 29px 24px;
  }
}
.common-accordion__category-text {
  font-size: 24px;
  line-height: 1em;
  text-align: left;
  letter-spacing: 0.04em;
}
@media (max-width: 1023.98px) {
  .common-accordion__category-text {
    font-size: 16px;
    letter-spacing: 0.03em;
  }
}
.common-accordion__category-icon {
  width: 24px;
  height: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (max-width: 1023.98px) {
  .common-accordion__category-icon {
    width: 14px;
    height: 14px;
    opacity: 1;
  }
}
.common-accordion__mobile-header {
  top: 0;
  left: 0;
  z-index: 2;
  z-index: var(--z-index-two);
  display: none;
  width: 100%;
  padding: 21px 16px 24px 24px;
  background: rgb(255 255 255);
  background: var(--color-white);
  border-bottom: 1px solid rgb(0 30 51 / 20%);
  border-bottom: 1px solid var(--color-stroke-light-opacity-20);
}
@media (max-width: 1023.98px) {
  .common-accordion__mobile-header {
    display: flex;
    flex-direction: column;
    gap: 105px;
    justify-content: space-between;
  }
  .common-accordion__mobile-header--reverse {
    flex-direction: column-reverse;
  }
  .common-accordion--content-visible .common-accordion__mobile-header {
    display: flex;
  }
}
.common-accordion__back-button {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 0;
  cursor: pointer;
  background: none;
  border: none;
}
.common-accordion__back-button svg {
  width: 24px;
  height: 24px;
  transform: rotate(90deg);
}
@media (max-width: 1023.98px) {
  .common-accordion__back-button {
    position: relative;
    left: -8px;
  }
}
.common-accordion__back-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgb(0 30 51 / 20%);
  border: 1px solid var(--color-stroke-light-opacity-20);
  border-radius: 100px;
}
.common-accordion__back-text {
  font-size: 16px;
  color: rgb(13 16 21);
  color: var(--color-text);
}
@media (max-width: 1023.98px) {
  .common-accordion__back-text {
    letter-spacing: 0.035em;
  }
}
.common-accordion__mobile-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.02em;
}
@media (max-width: 1023.98px) {
  .common-accordion__mobile-title {
    letter-spacing: 0.02em;
  }
}
.common-accordion__content {
  flex-grow: 1;
}
@media (max-width: 1023.98px) {
  .common-accordion__content {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    z-index: var(--z-index-default);
    width: 100%;
    height: 100vh;
    padding-top: 70px;
    overflow-y: auto;
    background: rgb(255 255 255);
    background: var(--color-white);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .common-accordion--content-visible .common-accordion__content {
    transform: translateX(0);
  }
}
.common-accordion__items {
  display: none;
  height: 0;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.common-accordion__items--active {
  display: block;
  height: auto !important;
  opacity: 1;
}
.common-accordion__items-header {
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 32px 22px 32px 32px;
}
@media (max-width: 1023.98px) {
  .common-accordion__items-header {
    display: flex;
  }
}
.common-accordion__items-back-button svg {
  width: 24px;
  height: 24px;
  transform: rotate(-90deg);
}
.common-accordion__items-list {
  display: flex;
  flex-direction: column;
}
.common-accordion__item {
  overflow: hidden;
  border-bottom: 1px solid rgb(0 30 51 / 20%);
  border-bottom: 1px solid var(--color-stroke-light-opacity-20);
  border-left: 1px solid rgb(0 30 51 / 20%);
  border-left: 1px solid var(--color-stroke-light-opacity-20);
}
@media (max-width: 1023.98px) {
  .common-accordion__item {
    border-left: none;
  }
  .common-accordion__item:last-child .common-accordion__item-content-inner {
    padding: 0 24px 60px;
  }
}
.common-accordion__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 22px 34px 32px;
  cursor: pointer;
}
@media (max-width: 1023.98px) {
  .common-accordion__item-header {
    padding: 20px 24px;
    margin-bottom: 37px;
  }
}
.common-accordion__item-title {
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0.02em;
}
@media (max-width: 1023.98px) {
  .common-accordion__item-title {
    font-size: 16px;
    letter-spacing: 0.01em;
  }
}
.common-accordion__item-icons {
  display: flex;
  align-items: center;
  justify-content: center;
}
.common-accordion__item-icon {
  display: none;
  width: 24px;
  height: 24px;
}
@media (max-width: 1023.98px) {
  .common-accordion__item-icon {
    width: 20px;
    height: 20px;
  }
}
.common-accordion__item-icon--plus {
  display: block;
}
.common-accordion__item.active .common-accordion__item-icon--plus {
  display: none;
}
.common-accordion__item.active .common-accordion__item-icon--minus {
  display: block;
}
.common-accordion__item-content {
  visibility: hidden;
  height: 0;
  opacity: 0;
  transition: height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  will-change: height;
}
.common-accordion__item.active .common-accordion__item-content {
  visibility: visible;
  opacity: 1;
}
.common-accordion__item-content-inner {
  padding: 0 32px 34px;
  max-width: 690px;
}
@media (max-width: 1023.98px) {
  .common-accordion__item-content-inner {
    padding: 0 24px 24px;
  }
}
.common-accordion__item-text {
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0.01em;
}
@media (max-width: 1023.98px) {
  .common-accordion__item-text {
    font-size: 14px;
    letter-spacing: 0;
    line-height: 140%;
  }
}
.common-accordion__item-links {
  display: flex;
  gap: 8px;
  margin-top: 32px;
}
@media (max-width: 1023.98px) {
  .common-accordion__item-links {
    flex-direction: column;
    margin-top: 24px;
  }
}
.common-accordion__item-link {
  display: flex;
  flex-direction: column;
  width: 120px;
  padding: 12px;
  background-color: rgb(237 241 242);
  background-color: var(--color-light);
  border-radius: 8px;
}
@media (max-width: 1023.98px) {
  .common-accordion__item-link {
    flex-direction: row;
    gap: 14px;
    align-items: center;
    width: 100%;
    padding: 20px 24px;
    line-height: 120%;
  }
}
.common-accordion__item-link-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 24px;
}
@media (max-width: 1023.98px) {
  .common-accordion__item-link-icon {
    margin-bottom: 0;
  }
}
.common-accordion__item-link-text {
  font-size: 14px;
  color: rgb(13 16 21);
  color: var(--color-text);
}
.common-accordion__mobile-footer {
  display: none;
}
@media (max-width: 1023.98px) {
  .common-accordion__mobile-footer {
    display: block;
  }
}

.switch {
  display: flex;
  width: 128px;
  height: 64px;
  overflow: hidden;
  background: rgb(255 255 255);
  background: var(--color-white);
  border: 1px solid rgb(0 30 51 / 20%);
  border: 1px solid var(--career-border);
  border-radius: 4px;
}
.switch__option {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  color: rgb(13 16 21 / 45%);
  color: var(--color-text-opacity-45);
  cursor: pointer;
  background: rgb(237 241 242 / 100%);
  background: var(--color-white-light);
  transition: background 0.2s;
}
.switch__option input[type=radio] {
  display: none;
}
.switch__option_selected {
  color: rgb(13 16 21);
  color: var(--color-text);
  background: rgb(255 255 255);
  background: var(--color-white);
}

.consultation-modal {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  z-index: var(--z-index-modal-default);
  display: flex;
  visibility: hidden;
  justify-content: flex-end;
  width: 100dvw;
  height: 100dvh;
  pointer-events: none;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0s 0.3s ease-in-out;
  transition: transform var(--transition), opacity var(--transition), visibility 0s var(--transition);
}
@media (max-width: 767.98px) {
  .consultation-modal {
    max-width: 100dvw;
    padding-top: 70px;
  }
}
.consultation-modal_open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform var(--transition), opacity var(--transition);
}
.consultation-modal__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 905px;
  height: 100%;
  padding: 32px;
  background-color: rgb(255 255 255);
  background-color: var(--color-white);
}
@media (max-width: 767.98px) {
  .consultation-modal__wrapper {
    padding: 20px 24px 32px;
    overflow-y: auto;
  }
}
.consultation-modal__header-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  .consultation-modal__header-wrapper {
    margin-bottom: 16px;
  }
}
.consultation-modal__header-title {
  font-size: 64px;
  font-weight: 500;
  line-height: 0.9em;
  letter-spacing: -0.01em;
}
@media (max-width: 767.98px) {
  .consultation-modal__header-title {
    font-size: 32px;
    line-height: 1.1em;
    letter-spacing: -0.02em;
  }
}
.consultation-modal__header-close {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid rgb(0 30 51 / 20%);
  border: 1px solid var(--color-stroke-light-opacity-20);
  border-radius: 50%;
  rotate: -45deg;
}
@media (max-width: 767.98px) {
  .consultation-modal__header-close {
    border: none;
  }
}
.consultation-modal__header-close-icon {
  width: 8px;
  height: 8px;
  margin-right: 1px;
  margin-bottom: 1px;
  color: rgb(13 16 21);
  color: var(--color-text);
}
@media (max-width: 767.98px) {
  .consultation-modal__header-close-icon {
    width: 16px;
    height: 16px;
    color: rgb(0 30 51 / 20%);
    color: var(--color-stroke-light-opacity-20);
  }
}
@media (max-width: 767.98px) {
  .consultation-modal__header-desc {
    line-height: 1.3em;
  }
}
.consultation-modal__form-title {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1em;
  letter-spacing: -0.01em;
}
.consultation-modal__form-inputs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .consultation-modal__form-inputs {
    gap: 8px;
  }
}
.consultation-modal__form-inputs-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 767.98px) {
  .consultation-modal__form-inputs-wrapper {
    gap: 8px;
  }
}
.consultation-modal__form-inputs-wrapper .input-wrapper {
  width: calc(33% - 8px);
}
@media (max-width: 767.98px) {
  .consultation-modal__form-inputs-wrapper .input-wrapper {
    width: 100%;
  }
}
.consultation-modal__form-inputs-wrapper .input-wrapper:first-child {
  width: 100%;
}
.consultation-modal__form-input {
  background-color: rgb(237 241 242);
  background-color: var(--color-light);
  border: none;
}
.consultation-modal__form-policy {
  margin-bottom: 44px;
  line-height: 1.4em;
  color: rgb(13 16 21 / 45%);
  color: var(--color-text-opacity-45);
}
@media (max-width: 767.98px) {
  .consultation-modal__form-policy {
    margin-bottom: 32px;
    font-size: 13px;
    line-height: 1.3em;
  }
}
.consultation-modal__form-policy-link {
  color: rgb(13 16 21 / 60%);
  color: var(--color-text-opacity-60);
}
.consultation-modal__form-submit {
  padding: 15px 24px;
  color: rgb(255 255 255);
  color: var(--color-white);
  background-color: rgb(9 14 17);
  background-color: var(--color-dark);
  border-radius: 100px;
}
.consultation-modal__form-submit:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.order-modal {
  position: fixed;
  right: 32px;
  bottom: -99999px;
  left: 112px;
  z-index: 99;
  z-index: var(--z-index-modal-default);
  display: flex;
  flex-direction: column;
  width: 389px;
  height: 200px;
  padding: 24px;
  background-color: rgb(255 255 255);
  background-color: var(--color-white);
  border: 1px solid rgb(0 30 51 / 20%);
  border: 1px solid var(--color-stroke-light-opacity-20);
  border-radius: 12px;
  transition: bottom 0.3s ease-in-out;
  transition: bottom var(--transition);
}
@media (max-width: 1023.98px) {
  .order-modal {
    display: none;
  }
}
.order-modal_active {
  bottom: 32px;
}
.order-modal__header {
  flex: 1 1;
}
.order-modal__bottom {
  flex: 0 1;
}
.order-modal__icon {
  width: 28px;
  height: 28px;
}
.order-modal__title {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.order-modal__text {
  line-height: 1.3em;
  color: rgb(13 16 21 / 45%);
  color: var(--color-text-opacity-45);
}

.share {
  position: relative;
}
.share__button {
  z-index: 10;
  z-index: var(--z-index-ten);
  display: flex;
  gap: 8px;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 1023.98px) {
  .share__button {
    gap: 8px;
    align-items: center;
    padding: 0 24px 24px;
    cursor: pointer;
  }
}
.share__button-icon {
  width: 24px;
  height: 24px;
}
.share__button-text {
  font-size: 16px;
  line-height: 1.5;
}
.share__popup {
  transform: translateX(-100%);
  opacity: 0;
  position: absolute;
  top: -200px;
  left: 0;
  z-index: 10;
  z-index: var(--z-index-ten);
  background-color: rgb(255 255 255);
  background-color: var(--color-white);
  border-radius: 16px;
  border: 1px solid rgb(0 30 51 / 20%);
  border: 1px solid var(--color-stroke-light-opacity-20);
  overflow: hidden;
  transition: 0.3s ease-in-out;
  transition: var(--transition);
}
.share__popup_active {
  opacity: 1;
  transform: translateX(0);
}
.share__list {
  display: flex;
  flex-direction: column;
}
.share__item:not(:first-child) {
  border-top: 1px solid rgb(0 30 51 / 20%);
  border-top: 1px solid var(--color-stroke-light-opacity-20);
}
.share__item-icon {
  width: 24px;
  height: 24px;
}
.share__item-button {
  padding: 16px 20px;
  display: flex;
  gap: 8px;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  line-height: 110%;
  color: rgb(13 16 21);
  color: var(--color-text);
  width: 100%;
  height: 100%;
  transition: 0.3s ease-in-out;
  transition: var(--transition);
}
@media (hover: hover) and (pointer: fine){
.share__item-button:hover {
  color: rgb(13 16 21 / 45%);
  color: var(--color-text-opacity-45);
}
}
.share__item-text {
  white-space: nowrap;
}

.video-popup__content {
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.video-popup__overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  z-index: var(--z-index-sidebar);
  display: none;
  width: 100%;
  height: 100%;
  padding: 32px 0 132px;
  background-color: rgb(9 14 17);
  background-color: var(--color-dark);
  justify-content: center;
  align-items: center;
}
@media (max-width: 1023.98px) {
  .video-popup__overlay {
    align-items: center;
  }
}
.video-popup__overlay_active {
  display: flex;
}
.video-popup__close {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 10;
  z-index: var(--z-index-ten);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 12px;
  color: rgb(255 255 255);
  color: var(--color-white);
  cursor: pointer;
  background: none;
  border: 1px solid rgb(255 255 255 / 9%);
  border: 1px solid var(--color-white-opacity-09);
  border-radius: 50%;
  transition: background-color 0.2s;
}
@media (hover: hover) and (pointer: fine){
.video-popup__close:hover {
  background-color: var(--color-background-hover);
}
}
@media (max-width: 1023.98px) {
  .video-popup__close {
    position: fixed;
    top: 24px;
    right: 24px;
  }
}
.video-popup__video {
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1023.98px) {
  .video-popup__video {
    width: 80%;
    height: auto;
  }
}

.js-video-popup-trigger {
  cursor: pointer;
}

.form-modal {
  position: fixed;
  right: 32px;
  bottom: -99999px;
  left: 112px;
  z-index: 120;
  z-index: var(--z-index-cookies);
  display: flex;
  flex-direction: column;
  width: 389px;
  height: 200px;
  padding: 24px;
  background-color: rgb(255 255 255);
  background-color: var(--color-white);
  border: 1px solid rgb(0 30 51 / 20%);
  border: 1px solid var(--color-stroke-light-opacity-20);
  border-radius: 12px;
  transition: bottom 0.3s ease-in-out;
  transition: bottom var(--transition);
}
@media (max-width: 1023.98px) {
  .form-modal {
    width: calc(100% - 48px);
  }
}
.form-modal_active {
  bottom: 32px;
}
.form-modal_active .form-modal__overlay {
  display: block;
  pointer-events: auto;
}
@media (max-width: 1023.98px) {
  .form-modal_active {
    bottom: 24px;
    left: 24px;
  }
}
.form-modal__overlay {
  position: fixed;
  display: none;
  inset: 0;
  pointer-events: none;
}
.form-modal__header {
  flex: 1 1;
}
.form-modal__bottom {
  flex: 0 1;
}
.form-modal__icon {
  width: 28px;
  height: 28px;
}
.form-modal__title {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.form-modal__text {
  line-height: 1.3em;
  color: rgb(13 16 21 / 45%);
  color: var(--color-text-opacity-45);
}

.custom-select {
  position: relative;
  display: inline-block;
  width: 100%;
}
.custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 16px;
  border: 1px solid rgb(0 30 51 / 20%);
  border: 1px solid var(--color-stroke-light-opacity-20);
  border-radius: 8px;
  background: rgb(255 255 255);
  background: var(--color-white);
  cursor: pointer;
  font-size: 16px;
  color: rgb(13 16 21);
  color: var(--color-text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.custom-select__icon {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
  fill: none;
}
.custom-select.open .custom-select__icon {
  transform: rotate(180deg);
}
.custom-select__dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  background: rgb(255 255 255);
  background: var(--color-white);
  border: 1px solid rgb(0 30 51 / 20%);
  border: 1px solid var(--color-stroke-light-opacity-20);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transition: all 0.2s ease;
  z-index: 10;
}
.custom-select.open .custom-select__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.custom-select__option {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  font-size: 16px;
  gap: 8px;
  color: rgb(13 16 21);
  color: var(--color-text);
  cursor: pointer;
  transition: background 0.15s ease;
}
@media (hover: hover) and (pointer: fine){
.custom-select__option:hover {
  background: rgb(237 241 242);
  background: var(--color-light);
}
}
.custom-select__check {
  width: 18px;
  height: 18px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.15s ease;
  stroke: rgb(13 16 21);
  stroke: var(--color-text);
  stroke-width: 0.05;
  fill: none;
}
.custom-select__option.selected .custom-select__check {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 767.98px) {
  .custom-select__trigger {
    height: 64px;
  }
}

html {
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.1em;
  color: rgb(13 16 21);
  color: var(--color-text);
}

body {
  overflow-x: hidden;
}