@charset "UTF-8";
@font-face {
  font-family: "JetBrains Mono";
  src: url("fonts/JetBrainsMono-Regular.woff2") format("woff2"), url("fonts/JetBrainsMono-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("fonts/JetBrainsMono-Light.woff2") format("woff2"), url("fonts/JetBrainsMono-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("fonts/JetBrainsMono-Medium.woff2") format("woff2"), url("fonts/JetBrainsMono-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("fonts/JetBrainsMono-Bold.woff2") format("woff2"), url("fonts/JetBrainsMono-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --colp: 8.333%;
  --colw: 130px;
  --gap: 60px;
  --cont: 2220px;
  --colwgap: calc(var(--colw) + var(--gap));
}
@media (max-width: 2000px) {
  :root {
    --colw: 100px;
    --gap: 40px;
    --cont: 1640px;
  }
}
@media (max-width: 1700px) {
  :root {
    --colw: 85px;
    --gap: 30px;
    --cont: 1500px;
  }
}
@media (max-width: 1570px) {
  :root {
    --colw: 80px;
    --gap: 30px;
    --cont: 1290px;
  }
}
@media (max-width: 1350px) {
  :root {
    --colw: 75px;
    --gap: 25px;
    --cont: 1175px;
  }
}
@media (max-width: 1200px) {
  :root {
    --cont: 996px;
  }
}
@media (max-width: 1100px) {
  :root {
    --colw: 75px;
    --gap: 24px;
    --cont: 966px;
    --colp: 10%;
  }
}
@media (max-width: 992px) {
  :root {
    --colw: 80px;
    --gap: 40px;
    --cont: 680px;
    --colp: 16.66%;
  }
}
@media (max-width: 690px) {
  :root {
    --gap: 25px;
    --cont: calc(100vw - 25px * 2);
    --colw: calc((var(--cont) - 7 * var(--gap)) / 8);
  }
}
@media (max-width: 576px) {
  :root {
    --cont: calc(100vw - 24px * 2);
    --gap: 24px;
    --colw: calc((var(--cont) - 5 * var(--gap)) / 6);
    --colp: 16.6666666667%;
  }
}
@media (max-width: 340px) {
  :root {
    --cont: calc(100vw - 15px * 2);
  }
}

.grid-overlay {
  pointer-events: none;
  display: grid;
  grid-template-columns: repeat(12, var(--colw));
  gap: var(--gap);
  width: var(--cont);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100vh;
  position: relative;
  z-index: 121210;
  position: fixed;
}
@media (max-width: 1100px) {
  .grid-overlay {
    grid-template-columns: repeat(10, var(--colw));
  }
}
@media (max-width: 992px) {
  .grid-overlay {
    grid-template-columns: repeat(6, var(--colw));
  }
}
@media (max-width: 650px) {
  .grid-overlay {
    grid-template-columns: repeat(8, var(--colw));
  }
}
@media (max-width: 576px) {
  .grid-overlay {
    grid-template-columns: repeat(6, var(--colw));
    left: 25px;
    transform: none;
  }
}
.grid-overlay .column {
  opacity: 0.12;
  height: 100%;
  box-shadow: inset 0 0 0 1px red;
}
@media (min-width: 1900px) {
  .grid-overlay .column {
    box-shadow: inset 0 0 0 1px red;
  }
}
@media (max-width: 1100px) {
  .grid-overlay .column:nth-child(11), .grid-overlay .column:nth-child(12) {
    display: none;
  }
}
@media (max-width: 992px) {
  .grid-overlay .column:nth-child(9), .grid-overlay .column:nth-child(10) {
    display: none;
  }
}
@media (max-width: 576px) {
  .grid-overlay .column:nth-child(7), .grid-overlay .column:nth-child(8) {
    display: none;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*[class$=__container] {
  margin: 0 auto;
  width: 100%;
  max-width: var(--cont);
}

ul, ol {
  list-style: none;
}

body {
  font: 1em "JetBrains Mono", -apple-system, Roboto, Helvetica, sans-serif, sans-serif;
  color: #35353E;
}

a {
  color: #35353E;
  text-decoration: none;
}

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

.header {
  border-bottom: 1px solid #858795;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 777;
  background: #fff;
  transition-duration: 0.7s;
  transition-timing-function: ease-in-out;
}
.header.visible {
  transform: translateY(0);
  opacity: 1;
}
.header.hide {
  transform: translateY(-200%) !important;
}
@media (max-width: 650px) {
  .header {
    padding-bottom: 5px;
  }
}
.header__container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .header__container {
    justify-content: space-between;
    align-items: center;
  }
}
.header__logo {
  width: 155px;
  flex-shrink: 0;
  max-width: 100%;
  margin: auto 0;
}
.header__logo__wrap {
  padding: 20px 0;
  box-sizing: content-box;
  width: calc(var(--colw) * 3 + var(--gap) * 2);
  border-right: 1px solid #858795;
}
@media (min-width: 2200px) {
  .header__logo__wrap {
    padding: 25px 0;
  }
}
@media (max-width: 992px) {
  .header__logo__wrap {
    width: calc(var(--colw) * 2 + var(--gap) * 1);
  }
}
@media (min-width: 2200px) {
  .header__logo {
    height: 50px;
    width: auto;
  }
}
@media (max-width: 992px) {
  .header__logo {
    height: 28px;
    width: auto;
  }
  .header__logo__wrap {
    border-right: 0;
  }
}
@media (max-width: 650px) {
  .header__logo {
    height: 24px;
  }
  .header__logo__wrap {
    padding: 12px 0;
  }
}
@media (max-width: 476px) {
  .header__logo {
    height: 20px;
  }
}
.header__nav {
  display: flex;
  align-items: stretch;
  gap: var(--gap);
  flex-wrap: wrap;
  flex-grow: 1;
}
@media (max-width: 992px) {
  .header__nav {
    max-width: 100%;
    gap: 0;
    flex-grow: 0;
  }
}
.header__contacts {
  margin: auto 0;
  width: calc(var(--colw) * 2 + var(--gap));
}
@media (max-width: 992px) {
  .header__contacts {
    padding-left: 28px;
  }
}
@media (max-width: 650px) {
  .header__contacts {
    width: calc(var(--colw) * 3 + var(--gap) * 2);
    padding-left: 0;
  }
}
.header__contacts a:hover {
  color: #ff671f;
}

.nav__list {
  justify-content: center;
  align-items: center;
  border-right: 1px solid #858795;
  display: flex;
  min-height: 80px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32px;
  flex-wrap: wrap;
  list-style: none;
  flex-grow: 1;
  justify-content: space-evenly;
}
@media (max-width: 992px) {
  .nav__list {
    justify-content: center;
    border-right: 0;
    position: fixed;
    left: 0;
    background: #fff;
    flex-direction: column;
    width: 100vw;
    z-index: 333;
    font-size: 20px;
    letter-spacing: 0.02em;
    gap: 15px;
    border-bottom: 1px solid #fff;
    top: 68px;
    padding: 25px 0 25px calc(var(--colw) * 3 + var(--gap) * 3);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100px);
    transition-duration: 0.3s;
  }
  .nav__list.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@media (max-width: 650px) {
  .nav__list {
    top: 53px;
  }
}
@media (max-width: 576px) {
  .nav__list {
    aspect-ratio: 360/241;
    padding: 25px 0 25px calc(var(--colw) * 2 + var(--gap) * 2 + 24px);
  }
}
@media (max-width: 476px) {
  .nav__list {
    top: 49px;
  }
}
.nav__item {
  align-self: stretch;
  margin: auto 0;
  cursor: pointer;
}
@media (max-width: 650px) {
  .nav__item {
    margin: 0;
  }
}
.nav__item a:hover {
  color: #ff671f;
}

.contact__phone {
  font-size: 22px;
  font-weight: 700;
}
@media (max-width: 1539px) {
  .contact__phone {
    margin-right: calc(var(--gap) * -1);
  }
}
@media (max-width: 1100px) {
  .contact__phone {
    font-size: 18px;
  }
}
@media (max-width: 476px) {
  .contact__phone {
    font-size: 16px;
  }
}
.contact__email {
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 1100px) {
  .contact__email {
    font-size: 14px;
  }
}
@media (max-width: 476px) {
  .contact__email {
    font-size: 12px;
  }
}
.contact__email a {
  color: inherit;
  text-decoration: underline;
}
.contact__email a:hover {
  color: #ff671f;
  text-decoration: none;
}

.hero {
  overflow: hidden;
}
.hero__container {
  display: flex;
  height: calc(100vh - 80px);
}
@media (min-width: 2200px) {
  .hero__container {
    height: calc(100vh - 100px);
  }
}
@media (max-width: 991px) {
  .hero__container {
    height: 526px;
  }
}
@media (max-width: 650px) {
  .hero__container {
    height: auto;
    margin: 0;
    flex-direction: column;
    max-width: 100vw;
  }
}
.hero__banner {
  display: flex;
  flex-direction: column;
  position: relative;
  flex-grow: 1;
  color: #fff;
  margin-right: calc((100vw - var(--cont)) / 2 * -1);
}
@media (max-width: 992px) {
  .hero__banner {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 650px) {
  .hero__banner {
    margin-left: 0;
    margin-right: 0;
    max-width: 100vw;
    width: 100vw;
    order: -1;
  }
}
.hero__banner::before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  bottom: 15px;
  width: 320px;
  height: 5px;
  background: #ff671f;
  z-index: 22;
}
@media (max-width: 2000px) {
  .hero__banner::before {
    width: 200px;
    bottom: 10px;
  }
}
@media (max-width: 992px) {
  .hero__banner::before {
    width: 100px;
    height: 3px;
    bottom: 8px;
  }
}
@media (max-width: 576px) {
  .hero__banner::before {
    display: none;
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 650px) {
  .hero__bg {
    position: static;
    aspect-ratio: 360/240;
  }
}
.hero__content {
  display: flex;
  align-items: end;
  gap: 40px 100px;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .hero__content {
    max-width: 100%;
    margin-top: 40px;
  }
}
@media (max-width: 650px) {
  .hero__content {
    position: absolute;
    margin: 0;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}
.hero__title {
  flex-grow: 1;
  flex-shrink: 1;
  font-weight: 500;
  font-size: 42px;
  line-height: 119%;
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0 0 96px 123px;
}
@media (min-width: 2000px) {
  .hero__title {
    width: calc(var(--colw) * 6 + var(--gap) * 6);
    font-size: 50px;
    line-height: 120%;
    margin: 0 0 125px 150px;
  }
}
@media (max-width: 1600px) {
  .hero__title {
    margin-left: 110px;
  }
}
@media (max-width: 1350px) {
  .hero__title {
    font-size: 38px;
  }
}
@media (max-width: 1100px) {
  .hero__title {
    font-size: 34px;
    line-height: 114%;
  }
}
@media (max-width: 991px) {
  .hero__title {
    width: auto;
    font-size: 28px;
    line-height: 114%;
    margin: 0 0 55px 40px;
  }
}
@media (max-width: 576px) {
  .hero__title {
    font-size: 20px;
    line-height: 125%;
    margin: 0 0 25px 24px;
  }
}

.download {
  color: #fff;
  background: #ff671f url("data:image/svg+xml,%3Csvg width='16' height='18' viewBox='0 0 16 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.70702 0V12.25M7.70702 12.25L0.707031 5.25M7.70702 12.25L14.707 5.25' stroke='white' stroke-width='2' /%3E%3Cpath d='M0.707031 16.537H14.707' stroke='white' stroke-width='2' /%3E%3C/svg%3E") 30px 50% no-repeat;
  padding-left: 60px !important;
}
.download:hover {
  color: #35353e !important;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='18' viewBox='0 0 16 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.70702 0V12.25M7.70702 12.25L0.707031 5.25M7.70702 12.25L14.707 5.25' stroke='%2335353e' stroke-width='2' /%3E%3Cpath d='M0.707031 16.537H14.707' stroke='%2335353e' stroke-width='2' /%3E%3C/svg%3E") !important;
}
@media (max-width: 1400px) {
  .download {
    padding-left: 40px !important;
    padding-right: 20px !important;
    background-position: 15px 50%;
  }
}
.download[disabled] {
  background-color: #858795;
  pointer-events: none;
}

.theMenu {
  display: flex;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  border-left: 1px solid #858795;
  bottom: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 156%;
  color: #35353e;
  z-index: 33;
  overflow: hidden;
}
.theMenu:has(.theMenu__item--active) {
  background: #fff;
}
.theMenu__item {
  background: #fff;
}
@media (min-width: 650px) {
  .theMenu__item {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(0px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s linear 0.5s;
  }
  .theMenu__item.theMenu__item--active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s;
  }
}
@media (max-width: 650px) {
  .theMenu__item {
    transition: height 0.25s ease;
    height: 0;
    overflow: hidden;
    z-index: 2;
  }
}
.theMenu__img {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 350px;
  height: auto;
}
@media (min-width: 2000px) {
  .theMenu__img {
    width: 525px;
  }
}
@media (max-width: 1400px) {
  .theMenu__img {
    width: calc(var(--colw) * 3 + var(--gap) * 2);
  }
}
@media (max-width: 1100px) {
  .theMenu__img {
    display: none;
  }
}
.theMenu__nav {
  background: #f5f6f8;
  min-width: calc(var(--colw) * 2 + var(--gap) * 3);
  border-right: 1px solid #858795;
}
@media (max-width: 1100px) {
  .theMenu__nav .download {
    display: none !important;
  }
}
.theMenu__nav ul {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #35353e;
  background: #f5f6f8;
  position: relative;
  z-index: 3;
}
@media (min-width: 1100px) {
  .theMenu__nav ul li:not(:has(.download)):not(:has(.active)) {
    border-bottom: 1px solid #858795;
  }
}
.theMenu__nav ul li a {
  display: block;
  padding: 10px 30px;
}
.theMenu__nav ul li a.active {
  background: #35353e;
  color: #fff;
}
.theMenu__nav ul li a:not(.active):hover {
  color: #ff671f;
}
@media (max-width: 992px) {
  .theMenu__nav ul li a {
    padding: 6px 13px;
  }
}
@media (min-width: 2000px) {
  .theMenu__nav ul {
    font-size: 20px;
    line-height: 150%;
  }
}
@media (max-width: 1600px) {
  .theMenu__nav ul {
    font-size: 16px;
  }
}
@media (max-width: 1100px) {
  .theMenu__nav ul {
    font-size: 14px;
    line-height: 18px;
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    padding-left: 15px;
  }
}
.theMenu__content {
  flex-grow: 1;
  margin: 0 calc((100vw - var(--cont)) / 2) 0 calc(var(--colw) + var(--gap));
  padding-top: 90px;
  font-weight: 400;
  font-size: 16px;
  line-height: 156%;
  color: #35353e;
  display: flex;
  flex-direction: column;
  position: relative;
}
.theMenu__content::after {
  position: absolute;
  content: "";
  display: block;
  left: calc((var(--colw) + var(--gap)) * -1);
  bottom: 15px;
  width: 320px;
  height: 5px;
  background: #ff671f;
  z-index: 22;
}
@media (max-width: 2000px) {
  .theMenu__content::after {
    width: 200px;
    bottom: 10px;
  }
}
@media (max-width: 1100px) {
  .theMenu__content::after {
    display: none;
  }
}
.theMenu__content::before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  bottom: 0;
  width: calc(100% - 10px);
  height: 60px;
  background: linear-gradient(180deg, #fff 23.56%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(180deg);
  z-index: 11;
}
@media (min-width: 2000px) {
  .theMenu__content {
    padding-top: 110px;
    font-size: 22px;
    line-height: 159%;
  }
}
@media (max-width: 1400px) {
  .theMenu__content {
    padding-top: 40px;
    font-size: 15px;
    line-height: 150%;
  }
}
@media (max-width: 992px) {
  .theMenu__content {
    margin: 0;
    padding: 40px 44px 0px 40px;
    max-height: calc(100% - 30px);
    font-size: 14px;
    line-height: 143%;
  }
}
@media (max-width: 650px) {
  .theMenu__content {
    margin: 0;
    flex-grow: 0;
    padding: 30px 24px 0 24px;
    max-height: none;
  }
  .theMenu__content h2 {
    display: none !important;
  }
}
.theMenu__content__scroll {
  flex-grow: 1;
  overflow-y: auto;
  padding-bottom: 60px;
}
.theMenu__content p:not(:last-child) {
  margin-bottom: 10px;
}
.theMenu__content ul, .theMenu__content ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.theMenu__content ul:not(:last-child), .theMenu__content ol:not(:last-child) {
  margin-bottom: 15px;
}
.theMenu__content ul li, .theMenu__content ol li {
  position: relative;
  padding-left: 30px;
}
.theMenu__content ul li::before, .theMenu__content ol li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 13px;
  width: 15px;
  height: 1px;
  background: #35353e;
}
@media (min-width: 2000px) {
  .theMenu__content ul, .theMenu__content ol {
    gap: 15px;
  }
  .theMenu__content ul li, .theMenu__content ol li {
    padding-left: 40px;
  }
  .theMenu__content ul li::before, .theMenu__content ol li::before {
    top: 15px;
    width: 20px;
  }
}
@media (max-width: 1400px) {
  .theMenu__content ul li::before, .theMenu__content ol li::before {
    top: 10px;
  }
}
@media (max-width: 1100px) {
  .theMenu__content ul, .theMenu__content ol {
    gap: 5px;
  }
}
.theMenu__content ul ul, .theMenu__content ol ul {
  margin-top: 20px;
  margin-bottom: 10px;
}
@media (max-width: 1400px) {
  .theMenu__content ul ul, .theMenu__content ol ul {
    margin-top: 15px;
    margin-bottom: 10px;
  }
}
.theMenu__content ol {
  list-style: none;
  counter-reset: idx;
}
.theMenu__content ol ol {
  margin-top: 20px;
  margin-bottom: 10px;
}
@media (max-width: 1400px) {
  .theMenu__content ol ol {
    margin-top: 15px;
    margin-bottom: 10px;
  }
}
.theMenu__content ol li {
  position: relative;
  left: 0;
  top: 0;
  height: auto;
}
.theMenu__content ol li::before {
  width: auto;
  height: auto;
  background: transparent;
  top: 1px;
  font-size: 90%;
  left: 0;
  position: absolute;
  display: inline-block;
  counter-increment: idx;
  content: counter(idx, decimal-leading-zero) ". ";
  color: #bec3c7;
}
.theMenu__content__item {
  display: none;
}
.theMenu__content__item.active {
  display: block;
}
.theMenu h2 {
  font-weight: 500;
  font-size: 35px;
  line-height: 129%;
  text-transform: uppercase;
  color: #35353e;
  margin-bottom: 25px;
}
@media (min-width: 2000px) {
  .theMenu h2 {
    margin-bottom: 30px;
    line-height: 157%;
  }
}
@media (max-width: 1400px) {
  .theMenu h2 {
    font-size: 28px;
    line-height: 135%;
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .theMenu h2 {
    font-size: 24px;
    line-height: 125%;
    margin-bottom: 15px;
  }
}
.theMenu__item {
  display: flex;
  max-width: 100%;
}
@media (max-width: 1100px) {
  .theMenu__item {
    flex-direction: column;
  }
}

@media (min-width: 650px) {
  .theMenu__content__scroll {
    scrollbar-width: thin;
    scrollbar-color: #999 #fff;
  }
  .theMenu__content__scroll::-webkit-scrollbar {
    width: 6px;
  }
  .theMenu__content__scroll::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 3px;
  }
  .theMenu__content__scroll::-webkit-scrollbar-thumb {
    background: #b3b3b3;
    border-radius: 3px;
  }
  .theMenu__content__scroll::-webkit-scrollbar-thumb:hover {
    background: #888;
  }
}
.burger {
  width: 16px;
  height: 12px;
  position: relative;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 992px) {
  .onlyTab {
    display: none;
  }
}

/* Линии бургера */
.burger span {
  display: block;
  width: 16px;
  height: 2px;
  background-color: #ff671f;
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
}

/* Расположение линий */
.burger span:nth-child(1) {
  top: 0;
}

.burger span:nth-child(2) {
  top: calc(50% - 1px);
  /* Центр минус половина высоты линии */
}

.burger span:nth-child(3) {
  bottom: 0;
}

/* Анимация в крестик при активном состоянии */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 4px);
  width: 16px;
}

.burger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -4px);
  width: 16px;
}

.catalog {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: normal;
  flex: 0 0 calc(var(--colw) * 3 + var(--gap) * 2);
  margin-left: 0;
  position: relative;
}
@media (min-width: 650px) {
  .catalog {
    padding-top: 36px;
    justify-content: flex-start;
  }
}
@media (min-width: 1300px) {
  .catalog {
    padding-top: 56px;
  }
}
@media (min-width: 2000px) {
  .catalog {
    padding-top: 74px;
  }
}
.catalog .download {
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% + 29px);
  margin-left: -29px;
  padding: 8px 20px 8px 60px !important;
  background-position-x: 32px;
  text-transform: uppercase !important;
}
@media (max-width: 992px) {
  .catalog .download {
    margin-left: -44px;
    width: calc(100% + 44px);
  }
}
@media (min-width: 1100px) {
  .catalog .download {
    display: none !important;
  }
}
@media (max-width: 650px) {
  .catalog .download {
    order: -1;
    position: static;
    margin-left: 0;
    text-align: center;
    padding-left: 15PX !important;
    background-position-x: calc(50% - 78px - 20Px);
    letter-spacing: 0.03em;
  }
}
@media (max-width: 992px) {
  .catalog {
    flex: 0 0 calc(var(--colw) * 2 + var(--gap) * 1);
    padding-bottom: 35px;
  }
}
@media (max-width: 650px) {
  .catalog {
    background: white;
    padding-bottom: 0;
    width: 100%;
    flex-grow: 1;
  }
}
.catalog__nav {
  width: 100%;
}
@media (max-width: 650px) {
  .catalog__nav {
    max-width: 100vw;
  }
}
.catalog__item {
  display: flex;
  width: 100%;
  align-items: start;
  gap: 20px;
  justify-content: start;
  margin-top: 30px;
  padding-right: 30px;
  color: #35353e;
}
@media (min-width: 2200px) {
  .catalog__item {
    margin-top: 55px;
  }
}
@media (max-width: 1439px) {
  .catalog__item {
    margin-top: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1300px) {
  .catalog__item {
    margin-top: 15px;
    gap: 10px;
  }
}
@media (max-width: 650px) {
  .catalog__item {
    margin-top: 0;
    padding: 20px 28px 20px 24px;
    border-top: 1px solid #858795;
    gap: 25px;
    position: relative;
  }
  .catalog__item:first-child {
    border-top: 0;
  }
  .catalog__item::before {
    position: absolute;
    content: "";
    right: 9px;
    top: 50%;
    width: 9px;
    height: 6px;
    background: url("data:image/svg+xml,%3Csvg width='9' height='6' viewBox='0 0 9 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.353516 0.353546L4.35352 4.35355L8.35352 0.353546' stroke='%23858795' /%3E%3C/svg%3E") 0 0 no-repeat;
  }
}
.catalog__item:first-child {
  margin-top: 0;
}
@media (any-hover: hover) and (min-width: 650px) {
  .catalog__item:hover {
    color: #ff671f;
  }
  .catalog__item:hover img, .catalog__item:hover svg {
    filter: none;
  }
}
.catalog__item.active {
  color: #ff671f;
}
@media (max-width: 650px) {
  .catalog__item.active::before {
    transform: rotate(180deg);
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='6' viewBox='0 0 9 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.353516 0.353546L4.35352 4.35355L8.35352 0.353546' stroke='%23ff671f' /%3E%3C/svg%3E");
  }
}
.catalog__item.active img, .catalog__item.active svg {
  filter: none;
}
.catalog__icon {
  display: flex;
  min-height: 22px;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  min-width: 22px;
  width: 22px;
}
@media (min-width: 2000px) {
  .catalog__icon {
    min-width: 30px;
    width: 30px;
  }
}
@media (max-width: 992px) and (min-width: 650px) {
  .catalog__icon {
    min-width: 18px;
    min-height: 18px;
    width: 18px;
  }
}
.catalog__icon img, .catalog__icon svg {
  max-width: 100%;
  height: auto;
  filter: brightness(0);
  width: 100%;
}
.catalog__text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  flex-grow: 1;
  font: 400 16px/20px "JetBrains Mono", -apple-system, Roboto, Helvetica, sans-serif;
}
@media (min-width: 2200px) {
  .catalog__text {
    font-size: 20px;
    line-height: 25px;
  }
}
@media (max-width: 1800px) {
  .catalog__text {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 1439px) {
  .catalog__text {
    font-size: 14px;
    line-height: 18px;
  }
}
@media (max-width: 992px) {
  .catalog__text {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (max-width: 650px) {
  .catalog__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
  }
}

.whiteHeader {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #fff;
  height: 170px;
  padding-bottom: 15px;
  display: flex;
  align-items: flex-end;
  box-sizing: border-box;
  width: calc(var(--colw) * 5 + var(--gap) * 4);
  padding-left: var(--colw);
  padding-right: var(--gap);
  text-transform: uppercase;
}
@media (min-width: 2200px) {
  .whiteHeader {
    padding-bottom: 20px;
    height: 200px;
  }
}
@media (max-width: 1100px) {
  .whiteHeader {
    height: 150px;
    padding-bottom: 15px;
    width: calc(var(--colw) * 4 + var(--gap) * 3);
  }
}
@media (max-width: 992px) {
  .whiteHeader {
    height: 115px;
    padding-left: 40px;
    padding-bottom: 10px;
    width: calc(var(--colw) * 3 + var(--gap) * 3);
  }
}
@media (max-width: 650px) {
  .whiteHeader {
    height: 76px;
    width: calc(var(--colw) * 3 + var(--gap) * 4);
    padding-left: 25px;
  }
}

h2 {
  font-weight: 700;
  font-size: 35px;
  line-height: 114%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #35353e;
}
@media (min-width: 2200px) {
  h2 {
    font-size: 42px;
    line-height: 119%;
  }
}
@media (max-width: 1800px) {
  h2 {
    font-size: 35px;
    line-height: 114%;
  }
}
@media (max-width: 1439px) {
  h2 {
    font-size: 28px;
  }
}
@media (max-width: 992px) {
  h2 {
    font-size: 24px;
    line-height: 111%;
  }
}
@media (max-width: 650px) {
  h2 {
    font-size: 20px;
    line-height: 125%;
  }
}
@media (max-width: 374px) {
  h2 {
    font-size: 18px;
    line-height: 133%;
  }
}

h3 {
  font-weight: 700;
  font-size: 27px;
  line-height: 130%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ff671f;
  margin-bottom: 25px;
}
@media (max-width: 2000px) {
  h3 {
    font-size: 22px;
    line-height: 114%;
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  h3 {
    font-size: 18px;
    line-height: 139%;
    margin-bottom: 18px;
  }
}
@media (max-width: 576px) {
  h3 {
    margin-bottom: 16px;
  }
}

.section {
  padding-bottom: 180px;
}
@media (max-width: 1100px) {
  .section {
    padding-bottom: 140px;
  }
}
@media (max-width: 992px) {
  .section {
    padding-bottom: 120px;
  }
}
@media (max-width: 650px) {
  .section {
    padding-bottom: 100px;
  }
}
@media (max-width: 576px) {
  .section {
    padding-bottom: 90px;
  }
}
.section__container {
  position: relative;
  display: flex;
}
@media (max-width: 576px) {
  .section__container {
    position: static;
  }
}
.section__bg {
  position: relative;
}
.section__bg .section__container {
  margin-top: 0 !important;
}
@media (max-width: 2000px) {
  .section__bg-img {
    height: 500px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 1439px) {
  .section__bg-img {
    height: 400px;
  }
}
@media (max-width: 1100px) {
  .section__bg-img {
    height: 300px;
  }
}
@media (max-width: 650px) {
  .section__bg-img {
    height: 250px;
  }
}
.section__content {
  padding-top: 115px;
  width: calc(var(--colw) * 7 + var(--gap) * 6);
  margin-left: auto;
  font-weight: 400;
  font-size: 18px;
  line-height: 139%;
  color: #35353e;
}
@media (min-width: 2200px) {
  .section__content {
    width: calc(var(--colw) * 6 + var(--gap) * 5);
    margin-right: calc(var(--colw) + var(--gap));
  }
}
@media (max-width: 1100px) {
  .section__content {
    width: calc(var(--colw) * 6 + var(--gap) * 5);
    padding-top: 96px;
  }
}
@media (max-width: 992px) {
  .section__content {
    width: calc(var(--colw) * 5 + var(--gap) * 4);
    padding-top: 80px;
  }
}
@media (max-width: 650px) {
  .section__content {
    width: calc(var(--colw) * 6 + var(--gap) * 5);
    padding-top: 60px;
  }
}
@media (max-width: 576px) {
  .section__content {
    margin-left: auto;
    width: auto;
    padding-top: 50px;
  }
}
.section__content p:not(:last-child) {
  margin-bottom: 25px;
}
@media (min-width: 2200px) {
  .section__content {
    font-size: 22px;
    line-height: 159%;
  }
  .section__content p:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .section__content {
    font-size: 16px;
    line-height: 150%;
  }
  .section__content p:not(:last-child) {
    margin-bottom: 20px;
  }
}
.section__content blockquote {
  position: relative;
  font-weight: 400;
  font-size: 35px;
  line-height: 129%;
  color: #ff671f;
  padding: 40px 0;
  margin: 60px 0;
  margin-left: calc((var(--colw) + var(--gap)) * -1);
}
.section__content blockquote:first-child {
  margin-top: 0 !important;
}
@media (max-width: 2200px) {
  .section__content blockquote {
    padding: 30px 0;
    margin: 50px 0;
    font-size: 28px;
    line-height: 125%;
    margin-left: calc((var(--colw) + var(--gap)) * -1);
  }
}
@media (max-width: 992px) {
  .section__content blockquote {
    margin-left: calc(var(--gap) * -1);
    font-size: 22px;
    line-height: 136%;
  }
}
@media (max-width: 576px) {
  .section__content blockquote {
    margin-left: 0;
    padding: 20px 0;
    margin: 30px 0;
    font-size: 20px;
    line-height: 125%;
  }
}
.section__content blockquote::before, .section__content blockquote::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: url("data:image/svg+xml,%3Csvg width='1270' height='4' viewBox='0 0 1270 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.5' d='M0 1.80005L1270 1.80015' stroke='%2335353E' stroke-width='3.6' stroke-dasharray='6 18' /%3E%3C/svg%3E") 0 0 repeat-x;
}
@media (max-width: 2000px) {
  .section__content blockquote::before, .section__content blockquote::after {
    background-image: url("data:image/svg+xml,%3Csvg width='1080' height='3' viewBox='0 0 1080 3' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.5' d='M0 1.5L1080 1.50009' stroke='%2335353E' stroke-width='3' stroke-dasharray='5 15' /%3E%3C/svg%3E");
  }
}
@media (max-width: 650px) {
  .section__content blockquote::before, .section__content blockquote::after {
    background-image: url("data:image/svg+xml,%3Csvg width='827' height='4' viewBox='0 0 827 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.5' d='M0.00146484 2.69763L827.002 0.700047' stroke='%2335353E' stroke-width='1.4' stroke-dasharray='2.8 8.4' /%3E%3C/svg%3E");
  }
}
.section__content blockquote::after {
  bottom: 0;
  top: auto;
}
.section__content ol {
  list-style: none;
  counter-reset: idx;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 35px;
}
.section__content ol:first-child {
  margin-top: 0 !important;
}
@media (max-width: 2000px) {
  .section__content ol {
    gap: 15px;
  }
}
@media (max-width: 1550px) {
  .section__content ol {
    margin-top: 30px;
  }
}
@media (max-width: 992px) {
  .section__content ol {
    margin-top: 25px;
  }
}
@media (max-width: 576px) {
  .section__content ol {
    margin-top: 20px;
  }
}
.section__content ol li {
  padding-left: 68px;
  position: relative;
}
@media (max-width: 2000px) {
  .section__content ol li {
    padding-left: 65px;
  }
}
@media (max-width: 1100px) {
  .section__content ol li {
    padding-left: 49px;
  }
}
@media (max-width: 576px) {
  .section__content ol li {
    padding-left: 39px;
  }
}
.section__content ol li::before {
  left: 0;
  position: absolute;
  display: inline-block;
  counter-increment: idx;
  content: counter(idx, decimal-leading-zero) ". ";
  color: #bec3c7;
}
.section__container:has(.section__slider) {
  margin-top: 35px !important;
}
@media (max-width: 1550px) {
  .section__container:has(.section__slider) {
    margin-top: 30px !important;
  }
}
@media (max-width: 992px) {
  .section__container:has(.section__slider) {
    margin-top: 25px !important;
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .section__container:has(.section__slider) {
    margin-top: 20px !important;
  }
}
.section:has(.section__slider) .section__content {
  width: calc(var(--colw) * 6 + var(--gap) * 5);
  font-size: 22px;
  line-height: 159%;
  padding-top: 0 !important;
}
@media (max-width: 2200px) {
  .section:has(.section__slider) .section__content {
    font-size: 16px;
    line-height: 156%;
  }
}
@media (max-width: 992px) {
  .section:has(.section__slider) .section__content {
    font-size: 16px;
    line-height: 150%;
  }
}
@media (max-width: 576px) {
  .section:has(.section__slider) .section__content {
    font-size: 14px;
    line-height: 143%;
  }
}
.section:has(.section__slider) .section__content blockquote {
  margin-left: 0;
}
.section__slider {
  width: calc(var(--colw) * 4 + var(--gap) * 3 + (100vw - var(--cont)) / 2);
  margin-left: calc((100vw - var(--cont)) / 2 * -1);
}
@media (max-width: 992px) {
  .section__slider {
    margin-left: 0;
    width: auto;
    order: 2;
    margin-top: 80px;
  }
}
@media (max-width: 650px) {
  .section__slider {
    margin-top: 50px;
  }
}
.section__slider img {
  max-width: 100%;
}
.section__slider__nav {
  position: absolute;
  right: 0;
  bottom: 8px;
  z-index: 22;
  display: flex;
}
@media (max-width: 2000px) {
  .section__slider__nav {
    bottom: 0;
  }
}
.section__slider-prev, .section__slider-next {
  cursor: pointer;
  border: 1.2px solid #bec3c7;
  width: 60px;
  height: 60px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19.31 36.93'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;stroke:%2335353e;stroke-width:1.2px;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3EРесурс 1%3C/title%3E%3Cg id='Слой_2' data-name='Слой 2'%3E%3Cg id='Слой_1-2' data-name='Слой 1'%3E%3Cpolyline class='cls-1' points='0.42 36.5 18.46 18.46 0.42 0.42'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") 50% 50% no-repeat;
  background-size: 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1550px) {
  .section__slider-prev, .section__slider-next {
    border: 1px solid #bec3c7;
    width: 50px;
    height: 50px;
    background-size: 17px auto;
  }
}
@media (max-width: 576px) {
  .section__slider-prev, .section__slider-next {
    width: 30px;
    height: 30px;
    background-size: 9px auto;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19.31 36.93'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;stroke:%2335353e;stroke-width:2.2px;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3EРесурс 1%3C/title%3E%3Cg id='Слой_2' data-name='Слой 2'%3E%3Cg id='Слой_1-2' data-name='Слой 1'%3E%3Cpolyline class='cls-1' points='0.42 36.5 18.46 18.46 0.42 0.42'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
}
.section__slider-prev {
  transform: rotate(180deg);
}

.uslugi__container, .uslugi .section__container, .services__container, .services .section__container, .projects__container, .projects .section__container {
  margin-top: 130px;
}
@media (max-width: 2000px) {
  .uslugi__container, .uslugi .section__container, .services__container, .services .section__container, .projects__container, .projects .section__container {
    margin-top: 110px;
  }
}
@media (max-width: 1100px) {
  .uslugi__container, .uslugi .section__container, .services__container, .services .section__container, .projects__container, .projects .section__container {
    margin-top: 70px;
  }
}
@media (max-width: 576px) {
  .uslugi__container, .uslugi .section__container, .services__container, .services .section__container, .projects__container, .projects .section__container {
    margin-top: 70px;
  }
}

.features__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px var(--gap);
  padding: 10px 0;
  border-top: 1px solid #858795;
  border-bottom: 1px solid #858795;
  position: relative;
}
@media (max-width: 992px) {
  .features__grid {
    gap: 20px 0;
  }
}
@media (max-width: 576px) {
  .features__grid {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
}
.features__grid + .features__grid {
  border-top: 0;
}
.features__item {
  width: calc(33.33% - var(--gap) * 2 / 3);
  border-left: 1px solid #858795;
  padding: 10px 20px 10px 15px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-weight: 400;
  font-size: 22px;
  line-height: 136%;
  color: #35353e;
}
.features__item.width50 {
  width: calc(50% - var(--gap) * 1 / 2);
}
@media (min-width: 620px) {
  .features__item:last-child {
    border-right: 1px solid #858795;
  }
}
@media (min-width: 1360px) {
  .features__item br {
    display: none;
  }
}
@media (max-width: 2000px) {
  .features__item {
    padding-left: 10px;
    font-size: 18px;
    line-height: 139%;
    min-height: 165px;
  }
}
@media (max-width: 1100px) {
  .features__item {
    font-size: 15px;
    line-height: 133%;
    min-height: 205px;
  }
}
@media (max-width: 992px) {
  .features__item {
    padding-left: 5px;
    padding-right: 10px;
    width: 33.33%;
  }
  .features__item.width50 {
    width: 50%;
  }
}
@media (max-width: 620px) {
  .features__item {
    width: 100% !important;
    border-left: 0 !important;
    border-bottom: 1px solid #858795;
    min-height: 125px;
    padding: 15px 0 20px;
    gap: 35px;
  }
  .features__item:last-child {
    border-bottom: 0;
  }
}
.features__header {
  display: flex;
  justify-content: space-between;
}
.features__number {
  font-weight: 300;
  font-size: 51px;
  line-height: 100%;
  letter-spacing: -0.05em;
  color: #bec3c7;
}
@media (max-width: 2000px) {
  .features__number {
    font-size: 42px;
  }
}
@media (max-width: 1300px) {
  .features__number {
    font-size: 36px;
  }
}
@media (max-width: 992px) {
  .features__number {
    font-size: 28px;
  }
}
.features__icon img {
  width: 75px;
  height: auto;
}
@media (max-width: 1300px) {
  .features__icon img {
    width: 64px;
  }
}
@media (max-width: 992px) {
  .features__icon img {
    width: 50px;
  }
}
.features__content {
  margin-top: auto;
  padding-left: 60px;
}
@media (max-width: 2000px) {
  .features__content {
    padding-left: 50px;
  }
}
@media (max-width: 992px) {
  .features__content {
    padding-left: 20px;
  }
}
@media (max-width: 690px) {
  .features__content {
    padding-left: 10px;
  }
}
@media (max-width: 576px) {
  .features__content {
    padding-left: 0;
  }
}

.services__container h3:not(:first-child) {
  margin-top: 90px;
}
@media (max-width: 2000px) {
  .services__container h3:not(:first-child) {
    margin-top: 75px;
  }
}
@media (max-width: 1100px) {
  .services__container h3:not(:first-child) {
    margin-top: 50px;
  }
}
@media (max-width: 576px) {
  .services__container h3:not(:first-child) {
    margin-top: 60px;
  }
}

.contacts h2 {
  margin-bottom: 70px;
}
@media (min-width: 2200px) {
  .contacts h2 {
    margin-bottom: 86px;
  }
}
@media (max-width: 1439px) {
  .contacts h2 {
    margin-bottom: 50px;
  }
}
@media (max-width: 992px) {
  .contacts h2 {
    margin-bottom: 40px;
  }
}
@media (max-width: 650px) {
  .contacts h2 {
    display: none;
  }
}
.contacts a:hover {
  color: #ff671f;
}

.footer__container {
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
  padding-top: 105px;
  font-size: 20px;
  line-height: 150%;
}
@media (max-width: 2000px) {
  .footer__container {
    padding-top: 120px;
    padding-bottom: 25px;
    font-size: 16px;
    line-height: 156%;
  }
}
@media (max-width: 1100px) {
  .footer__container {
    padding-top: 80px;
    padding-bottom: 14px;
    font-size: 14px;
    line-height: 143%;
  }
}
@media (max-width: 650px) {
  .footer__container {
    padding-top: 90px;
    padding-bottom: 22px;
  }
}
@media (max-width: 590px) {
  .footer__container {
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 476px) {
  .contacts {
    margin-top: 54px;
  }
}
.contacts .features__item {
  padding: 15px 25px 25px 110px;
  min-height: 230px;
}
@media (max-width: 2200px) {
  .contacts .features__item {
    padding: 10px 25px 20px 75px;
    min-height: 190px;
  }
}
@media (max-width: 1600px) {
  .contacts .features__item {
    padding: 10px 20px 20px 60px;
  }
}
@media (max-width: 992px) {
  .contacts .features__item {
    min-height: 164px;
    padding: 7px 20px 12px 20px;
  }
}
@media (max-width: 620px) {
  .contacts .features__item {
    min-height: 0;
    padding: 15px 0 20px;
    gap: 30px;
  }
}
@media (min-width: 1360px) {
  .contacts .features__item br {
    display: block;
  }
}
.contacts__container:has(#map) {
  max-width: 100%;
}

.contact__label {
  font-weight: 400;
  font-size: 22px;
  line-height: 136%;
  margin-bottom: 0;
}
@media (max-width: 2000px) {
  .contact__label {
    font-size: 18px;
    line-height: 139%;
  }
}
@media (max-width: 1100px) {
  .contact__label {
    font-size: 14px;
    line-height: 143%;
  }
}
.contact__details {
  font-weight: 500;
  font-size: 27px;
  line-height: 130%;
  color: #35353e;
  margin-top: auto;
}
@media (max-width: 2000px) {
  .contact__details {
    font-size: 22px;
    line-height: 136%;
  }
}
@media (max-width: 1100px) {
  .contact__details {
    font-size: 16px;
    line-height: 156%;
  }
}

#map {
  margin-top: 50px;
  width: 100%;
  height: 500px;
}
@media (max-width: 2000px) {
  #map {
    height: 400px;
    margin-top: 40px;
  }
}
@media (max-width: 1100px) {
  #map {
    height: 300px;
    margin-top: 30px;
  }
}

.hero:not(:has(.theMenu__nav .download)) .catalog .download {
  display: none !important;
}/*# sourceMappingURL=style.css.map */