:root {
  --main-bg-color: #fff;
  --primary-color: #1d1d1d;
  --black: #262525;
  --white: #fff;
  --blue: #60d7ff;
  --orange: #ff9000;
  --gray: #3b3939;
  --red: #ff2626;
  --gray-element: #afaeae;
  --bg: #f3f3f3;
  --stroke-in-white: #e3e3e3;
  --dark-gray-element: #8d8c8c;
  --stroke-in-bg: #dad9d9;
  --body-font-size: 22px;
  --font-family: "Involve", sans-serif;
  --second-family: "TT Firs Neue", sans-serif;
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary, address {
  display: block;
}

audio, canvas {
  display: inline-block;
}

video { 
  display: block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

address {
  font-style: normal;
}

ul, ol, li, form, fieldset, a, img, div, figure, address {
  margin: 0;
  padding: 0;
  border: 0;
}

ul {
  list-style: inside;
}

ol {
  list-style: inside;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal inside;
}

ol {
  padding: 10px 0;
}

ol li {
  margin: 0 0 20px 0;
}

body {
  height: 100%;
  position: relative;
  background: var(--main-bg-color);
}

body, td, input, textarea, button {
  margin: 0px;
  padding: 0px;
}

body * {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.15s;
}

a:hover {
  text-decoration: none;
}

a, a:active, a:focus {
  outline: none;
}

b,
strong {
  font-weight: 600;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.main {
  position: relative;
}

.cbc {
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

input::-moz-placeholder {
  opacity: 0.7;
  color: var(--primary-color);
}

input::placeholder {
  opacity: 0.7;
  color: var(--primary-color);
}

textarea::-moz-placeholder {
  opacity: 0.7;
  color: var(--primary-color);
}

textarea::placeholder {
  opacity: 0.7;
  color: var(--primary-color);
}

input[type=submit] {
  cursor: pointer;
}

textarea,
button,
input[type=text],
input[type=password] {
  -webkit-appearance: none;
  outline: none;
}

body, td, input, textarea, button {
  color: var(--primary-color);
  font-family: var(--font-family);
}

h1, h2, h3, h4 {
  font-weight: normal;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: -16px;
}
@media (max-width: 1200px) {
  .row {
    margin: -8px;
  }
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding: 16px;
}
@media (max-width: 1200px) {
  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
  .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
  .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
  .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
  .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
  .col-xl-auto {
    padding: 8px;
  }
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
}
/* elements */
.title-h1,
.title-h2,
.title-h3 {
  padding: 0;
  margin: 0;
  font-family: var(--second-family);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 35px;
}
@media (max-width: 1200px) {
  .title-h1,
  .title-h2,
  .title-h3 {
    margin-bottom: 30px;
  }
}
@media (max-width: 568px) {
  .title-h1,
  .title-h2,
  .title-h3 {
    margin-bottom: 20px;
  }
}

.title-h1 {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 64px;
  line-height: 105%;
  text-transform: uppercase;
  color: var(--black);
}
@media (max-width: 1200px) {
  .title-h1 {
    font-size: 54px;
  }
}
@media (max-width: 568px) {
  .title-h1 {
    font-size: 48px;
    margin: 0 0 30px;
  }
}

.title-h2 {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 55px;
  line-height: 105%;
  color: var(--black);
}
@media (max-width: 568px) {
  .title-h2 {
    font-size: 32px;
    margin: 0 0 30px;
  }
}
@media (max-width: 390px) {
  .title-h2 {
    font-size: 28px;
  }
}

.title-h3 {
  font-weight: 400;
  font-size: 36px;
  line-height: 120%;
}
@media (max-width: 992px) {
  .title-h3 {
    font-size: 30px;
  }
}
@media (max-width: 568px) {
  .title-h3 {
    font-size: 26px;
  }
}

.cms_submit,
.button {
  cursor: pointer;
  transition: 0.15s;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  height: 56px;
  justify-content: center;
  border-radius: 8px;
  padding: 0 25px;
  text-decoration: none;
  min-width: 160px;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: var(--white);
  background: var(--orange);
}
.cms_submit:hover,
.button:hover {
  background: var(--black);
}
.cms_submit::before,
.button::before {
  transition: 0.15s;
  filter: brightness(0) invert(1);
}
.cms_submit._white,
.button._white {
  color: var(--white);
  background: transparent;
  border: 1px solid var(--white);
}
.cms_submit._white:hover,
.button._white:hover {
  color: var(--black);
  background: var(--white);
}
.cms_submit._gray,
.button._gray {
  height: 62px;
  padding: 0 28px;
  color: var(--white);
  background: var(--gray);
}
.cms_submit._gray:hover,
.button._gray:hover {
  color: var(--white);
  background-color: var(--blue);
}
.cms_submit._lgray,
.button._lgray {
  height: 62px;
  padding: 0 28px;
  color: var(--black);
  background: var(--bg);
}
.cms_submit._lgray:hover,
.button._lgray:hover {
  color: var(--white);
  background-color: var(--blue);
}
.cms_submit._download,
.button._download {
  height: 62px;
  padding: 0 28px;
}
.cms_submit._download::before,
.button._download::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../../images/icon-download.svg) center no-repeat;
}
@media (max-width: 390px) {
  .cms_submit._download,
  .button._download {
    font-size: 14px;
    padding: 0 20px;
  }
}
.cms_submit._feedback::after,
.button._feedback::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../../images/arrow-next-white.svg) center no-repeat;
}

.typography {
  font-size: 16px;
  line-height: 150%;
  color: var(--text-gray);
}
.typography h1, .typography h2, .typography h3, .typography h4 {
  font-family: var(--second-family);
  font-weight: 500;
  color: var(--black);
  line-height: 140%;
}
.typography h2 {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 42px;
  line-height: 130%;
  color: var(--black);
  margin-bottom: 35px;margin-top:55px;
}
@media (max-width: 768px) {
  .typography h2 {
    font-size: 24px;margin-bottom: 25px;margin-top:45px;
  }
}
.typography h2:first-child {
  margin-top: 0;
}
.typography h2:last-child {
  margin-bottom: 0;
}
.typography h3 {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 29px;
  line-height: 110%;
  color: var(--black);margin-top:40px;
}
@media (max-width: 568px) {
  .typography h3 {
    font-size: 18px;
  }
}
.typography h3:first-child {
  margin-top: 0;
}
.typography h3:last-child {
  margin-bottom: 0;
}
.typography p {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 22px;
  line-height: 125%;
  color: var(--black);
}
@media (max-width: 1200px) {
  .typography p {
    font-size: 16px;
    line-height: 150%;
  }
}
.typography p:first-child {
  margin-top: 0;
}
.typography p:last-child {
  margin-bottom: 0;
}
.typography ul li {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 22px;
  line-height: 125%;
  color: var(--black);
  padding-left: 16px;
  margin-bottom: 20px;
  position: relative;
}
@media (max-width: 1200px) {
  .typography ul li {
    font-size: 16px;
    line-height: 150%;
  }
}
.typography ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: var(--orange);
  border-radius: 1px;
}
.typography ul li:last-child {
  margin-bottom: 0;
}
.typography ol {
  margin-bottom: 20px;
  padding-left: 20px;
  counter-reset: custom-counter;
  list-style: none;
}
.typography ol:last-child {
  margin-bottom: 0;
}
.typography ol li {
  font-size: 16px;
  line-height: 150%;
  padding-left: 15px;
  margin-bottom: 10px;
  position: relative;
  list-style: none;
}
@media (max-width: 568px) {
  .typography ol li {
    font-size: 14px;
    line-height: 1.5;
  }
}
.typography ol li::before {
  content: counter(custom-counter) ".";
  counter-increment: custom-counter;
  position: absolute;
  left: 0;
  top: 0;
}
.typography a {
  text-decoration: underline;text-decoration-color: #ccc;
}
.typography a:hover {
  text-decoration: none;
}

.typography a.button {
  color: var(--white);
  text-decoration: none;
}

.table-scroll {
  overflow: auto;
  margin: 0 -15px;
  padding: 0 15px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.table-scroll::-webkit-scrollbar {
  display: none;
}

.animated,
.anmtli {
  opacity: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 140%;
  color: var(--gray-light);
  scrollbar-width: none;
}
@media (max-width: 568px) {
  .breadcrumb {
    overflow: auto;
    margin: 14px -15px 20px;
    padding: 0 15px;
    font-size: 14px;
  }
}
.breadcrumb::-webkit-scrollbar {
  display: none;
}
.breadcrumb a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-light);
  white-space: nowrap;
}
.breadcrumb a::after {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--gray-light);
  border-radius: 50%;
}
@media (min-width: 992px) {
  .breadcrumb a:hover {
    color: var(--orange-brand);
  }
}
.breadcrumb span {
  color: var(--orange-brand);
  white-space: nowrap;
}

.forms {
    display: flex;
    flex-direction: column;
    gap: 10px;
}



.forms label:not([class]) {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}
.forms__label {
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .forms__label {
    margin-bottom: 5px;
  }
}
.forms__label span {
  color: var(--blue-brand);
}
.forms__row {
  display: flex;
  margin: 0 -4px 15px;
}
.forms__row:last-child {
  margin-bottom: 0;
}
.forms__field {
  padding: 0 4px;
  width: 100%;
}
.forms__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
@media (max-width: 767px) {
  .forms__footer {
    flex-direction: column;
  }
}
.forms select,
.forms textarea,
.forms input[type=text],
.forms input[type=password],
.forms input[type=email],
.forms input[type=tel] {
  width: 100%;
  height: 62px;
  padding: 0 20px;
  font-size: 16px;
  text-align: left;
  border: solid 1px var(--orange);
  border-radius: 8px;
  background: var(--white);
  caret-color: var(--orange);
}
.forms textarea {
  padding: 18px;
  resize: none;
  height: 260px;
}
@media (max-width: 568px) {
  .forms textarea {
    height: 200px;
  }
}
.forms select {
  width: 100%;
  -webkit-appearance: none;
  outline: none;
  background: url(../../images/select-arrow.svg) var(--white) right 20px center / 14px no-repeat;
}
.forms select option:disabled {
  display: none;
}
.forms .jq-selectbox {
  width: 100%;
}

.checkbox {
  display: inline-flex;
  cursor: pointer;
  font-size: 16px;
  line-height: 150%;
  color: var(--black);
  transition: 0.3s;
  position: relative;
}
.checkbox input[type=checkbox] {
  width: 24px;
  height: 24px;
  background: var(--white);
  border: 1px solid var(--orange-brand);
}
.checkbox.stylization input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.checkbox sup {
  position: relative;
  display: block;
  width: 24px;
  min-width: 24px;
  height: 24px;
  background: url(../../images/checkbox.svg) center no-repeat;
  margin-right: 10px;
}
.checkbox input:checked ~ sup {
  background: url(../../images/checkbox-active.svg) center no-repeat;
}
.checkbox input:checked ~ sup ~ span {
  color: var(--orange-brand);
}
.checkbox._white sup {
  background-image: url(../../images/checkbox-white.svg);
}
.checkbox._white input:checked ~ sup {
  background: url(../../images/checkbox-white-active.svg) center no-repeat;
}

.form-field__note {
  font-size: 16px;
  line-height: 140%;
  color: var(--gray-dark);
  margin-top: 10px;
}

.burger-btn {
  width: 30px;
  height: 21px;
  cursor: pointer;
  transition: 0.3s;
  overflow: hidden;
  background: none;
  border: none;
  position: relative;
  outline: none;
}
.burger-btn span {
  position: absolute;
  left: 0;
  top: 9px;
  width: 30px;
  height: 3px;
  background-color: var(--black);
  transition: 0.3s;
}
.burger-btn::before, .burger-btn::after {
  content: "";
  position: absolute;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: var(--black);
  transition: 0.3s;
}
.burger-btn::before {
  top: 0;
}
.burger-btn::after {
  bottom: 0;
}
.burger-btn.open {
  height: 30px;
}
.burger-btn.open span {
  opacity: 0;
}
.burger-btn.open::before, .burger-btn.open::after {
  width: 28px;
  background: var(--black);
}
.burger-btn.open::before {
  top: 50%;
  margin-top: -1px;
  transform: rotate(-45deg);
}
.burger-btn.open::after {
  bottom: 50%;
  margin-bottom: -2px;
  transform: rotate(45deg);
}

.more-link {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  font-family: var(--second-family);
  transition: 0.3s;
}
.more-link::after {
  content: "";
  width: 41px;
  height: 12px;
  background: url(../../images/more-arrow.svg) right center no-repeat;
  margin-left: 40px;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .more-link::after {
    margin-left: 20px;
  }
}
.more-link:hover {
  color: var(--blue-brand);
}

.tabs__header {
  display: flex;
  align-items: center;
}

.tabs__item {
  cursor: pointer;
}

.tabs__item:first-child {
  margin-left: 0;
}

.tabs__item:hover,
.tabs__item.active {
  opacity: 1;
}

.tabs__box {
  display: none;
}

.tabs__box.visible {
  display: block;
}

/* plugins */
.swiper-button {
  top: auto;
  margin-top: 0;
  width: 100px;
  height: 62px;
  border-radius: 8px;
  border: none;
  background: var(--orange);
  transform: scale(1.0000001);
  transition: 0.5s;
}
.swiper-button:hover {
  transform: scale(1.05);
}
.swiper-button:after {
  content: "";
  width: 34px;
  height: 34px;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0) invert(1);
}
.swiper-button-prev {
  background: var(--bg);
}
.swiper-button-prev::after {
  filter: none;
}
.swiper-button-prev::after {
  background-image: url(../../images/arrow-prev.svg);
}
.swiper-button-next::after {
  background-image: url(../../images/arrow-next.svg);
}
.swiper-button-disabled {
  opacity: 0.5 !important;
}
.swiper-button-disabled::after {
  filter: none;
}
.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.swiper-pagination-bullet {
  width: 60px;
  height: 3px;
  border: none;
  background-color: var(--bg);
  border-radius: 5px;
  transition: 0.2s;
  opacity: 1;
  position: relative;
}
@media (max-width: 767px) {
  .swiper-pagination-bullet {
    width: 100%;
  }
}
.swiper-pagination-bullet-active {
  background: var(--orange);
}

.swiper-horizontal > .swiper-scrollbar {
  width: 100%;
  left: 0;
  bottom: 0;
}
.swiper-horizontal > .swiper-scrollbar .swiper-scrollbar-drag {
  background: var(--blue-brand);
}

.fancybox__content > .carousel__button.is-close {
  width: 30px;
  height: 30px;
  right: 50px;
  top: 50px;
  opacity: 0.5;
  background: url(../../images/close-button-black.svg) center no-repeat;
}
.fancybox__content > .carousel__button.is-close:hover {
  opacity: 1;
}
.fancybox__content > .carousel__button.is-close > * {
  display: none;
}

/* support class style */
.full-bg {
  margin-left: calc((100vw - 1720px) / -2);
  margin-right: calc((100vw - 1720px) / -2);
  padding-left: calc((100vw - 1720px) / 2);
  padding-right: calc((100vw - 1720px) / 2);
}
@media (max-width: 1920px) {
  .full-bg {
    margin-left: -100px;
    margin-right: -100px;
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media (max-width: 1380px) {
  .full-bg {
    margin-left: -40px;
    margin-right: -40px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 1200px) {
  .full-bg {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 992px) {
  .full-bg {
    border-radius: 24px;
  }
}

.mt-100 {
  margin-top: -100px;
}

.mb-160 {
  margin-bottom: -160px;
}

.dark-bg {
  background-color: var(--black);
}

.cbc {
  overflow: hidden;
}

body.open-filter {
  overflow: hidden;
}
body.open-filter .cbc {
  overflow: hidden;
}

body.open-nav {
  overflow: hidden;
}
body.open-nav .cbc {
  overflow: hidden;
}
body.open-nav .header {
  background: var(--white);
}
@media (max-width: 767px) {
  body.open-nav .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
  }
  body.open-nav .header__top {
    z-index: 999;
  }
  body.open-nav .header__action {
    z-index: 999;
  }
}

.container {
  margin: 0 auto;
  position: relative;
  padding-left: 100px;
  padding-right: 100px;
  max-width: 1920px;
  width: 100%;
}
@media (max-width: 1600px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 1200px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 568px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.header {
  position: relative;
  z-index: 10;
}
.header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  gap: 20px;
}
@media (max-width: 1780px) {
  .header__wrap {
    justify-content: space-between;
  }
}
@media (max-width: 1200px) {
  .header__wrap {
    justify-content: flex-start;
  }
}
.header__left {
  display: flex;
  align-items: center;
  margin-right: 60px;
}
@media (max-width: 1780px) {
  .header__left {
    margin-right: 0;
  }
}
@media (max-width: 1200px) {
  .header__left {
    flex: 1;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1200px) {
  .header__nav {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 40px;
  }
}
@media (max-width: 992px) {
  .header__nav {
    top: 65px;
  }
}
@media (max-width: 568px) {
  .header__nav {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.header__contacts {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}
@media (min-width: 1781px) {
  .header__contacts {
    flex: 1;
  }
}
@media (max-width: 1600px) {
  .header__contacts {
    gap: 20px;
  }
}
@media (max-width: 992px) {
  .header__contacts .button {
    display: none;
  }
}
.header__mobile {
  display: none;
}
@media (max-width: 1200px) {
  .header__mobile {
    display: flex;
    align-items: center;
    gap: 40px;
  }
}
@media (max-width: 568px) {
  .header__mobile {
    gap: 20px;
  }
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 25px;
}
.header-logo img {
  display: block;
}
.header-logo span {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 125%;
  color: var(--black);
  white-space: nowrap;
}
@media (max-width: 1480px) {
  .header-logo span {
    display: none;
  }
}
@media (max-width: 1200px) {
  .header-logo span {
    display: block;
  }
}
@media (max-width: 992px) {
  .header-logo span {
    display: none;
  }
}

.main-nav {
  display: flex;
  gap: 31px;
}
@media (max-width: 1600px) {
  .main-nav {
    gap: 20px;
  }
}
@media (max-width: 1200px) {
  .main-nav {
    flex-direction: column;
  }
}
.main-nav__item {
  position: relative;
}
@media (min-width: 1201px) {
  .main-nav__item:hover .main-nav__link._drop {
    color: var(--orange);
  }
  .main-nav__item:hover .main-nav__link._drop::after {
    filter: none;
  }
  .main-nav__item:hover .drop-nav {
    display: block;
  }
}
.main-nav__link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: var(--black);
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .main-nav__link {
    font-size: 20px;
  }
}
@media (min-width: 1201px) {
  .main-nav__link:hover {
    color: var(--orange);
  }
}
.main-nav__link._drop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.main-nav__link._drop::after {
  content: "";
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(0.1);
  background: url(../../images/chevron-down.svg) center no-repeat;
  transition: 0.2s;
}
.main-nav__link._drop.open::after {
  transform: rotate(180deg);
}

.drop-nav {
  padding-left: 20px;
  padding-top: 10px;
  display: none;
  min-width: calc(100% + 40px);
}
@media (min-width: 1201px) {
  .drop-nav {
    position: absolute;
    top: 100%;
    left: -20px;
    background: var(--bg);
    border-radius: 5px;
    padding: 10px 20px;
    margin-top: 10px;
  }
  .drop-nav::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 100%;
    width: 100%;
    height: 10px;
  }
}
.drop-nav__link {
  display: block;
  padding: 8px 0;
}
@media (min-width: 1201px) {
  .drop-nav__link {
    white-space: nowrap;
    color: var(--black);
    padding: 10px 0;
  }
  .drop-nav__link:hover {
    color: var(--orange);
  }
}
.header-phone {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: var(--black);
  padding-left: 31px;
  white-space: nowrap;
}
.header-phone::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: 3px;
  left: 0;
  background-image: url(../../images/icon-phone.svg);
}
@media (max-width: 568px) {
  .header-phone::before {
    display: none;
  }
}
.header-phone:hover {
  color: var(--orange);
}
@media (max-width: 568px) {
  .header-phone {
    font-size: 0;
    text-indent: -1000px;
    overflow: hidden;
    padding: 0;
    width: 32px;
    height: 32px;
    background: url(../../images/icon-call.svg) center/contain no-repeat;
  }
}

.section {
  margin-top: 160px;
  margin-bottom: 160px;
}
@media (max-width: 1600px) {
  .section {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .section {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

.section-inner {
  padding-top: 160px;
  padding-bottom: 160px;
}
.section-inner form input {border:none !important;}
@media (max-width: 1600px) {
  .section-inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .section-inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 70px;
  margin-bottom: 70px;
}
@media (max-width: 1200px) {
  .section-header {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .section-header {
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
  }
}
.section-header__part {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
  color: var(--dark-gray-element);
  padding: 0 12px;
  height: 32px;
  border: 1px solid var(--dark-gray-element);
  border-radius: 500px;
}
.section-header__title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}
.section-header__title h2._white {
  color: var(--white);
}
@media (max-width: 992px) {
  .section-header__title .more-button {
    display: none;
  }
}
.section-header .title-h2,
.section-header .title-h3 {
  margin: 0;
}

.section-footer {
  display: none;
}
@media (max-width: 992px) {
  .section-footer {
    display: block;
    margin-top: 40px;
  }
}
.section-footer .more-button {
  width: 100%;
}

.section-more {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.page-title {
  margin-top: 60px;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .page-title {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.close-button {
  border: none;
  width: 24px;
  height: 24px;
  background: url(../../images/icon-cross.svg) center no-repeat;
  background-size: contain;
  cursor: pointer;
}

.promo-box {
  position: relative;
  margin-top: -76px;
  z-index: 1;
}
@media (max-width: 1200px) {
  .promo-box {
    flex-wrap: wrap;
  }
}
@media (max-width: 992px) {
  .promo-box {
    margin-bottom: 40px;
    margin-top: -65px;
  }
}
.promo-box__slider {
  width: 100%;
  position: relative;
}
@media (max-width: 1200px) {
  .promo-box__slider {
    width: 100%;
  }
}

.promo-slider {
  position: relative;
  overflow: hidden;
}
.promo-slider .swiper-pagination {
  display: none;
  bottom: 40px;
  left: 0;
  width: 100%;
  justify-content: center;
  gap: 5px;
  padding: 0 10px;
}
@media (max-width: 568px) {
  .promo-slider .swiper-pagination {
    display: flex;
  }
}
.promo-slider .swiper-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  position: absolute;
  right: 100px;
  bottom: 70px;
}
@media (max-width: 1600px) {
  .promo-slider .swiper-buttons {
    right: 40px;
  }
}
@media (max-width: 1200px) {
  .promo-slider .swiper-buttons {
    right: 20px;
  }
}
@media (max-width: 568px) {
  .promo-slider .swiper-buttons {
    display: none;
  }
}
.promo-slider .swiper-button {
  position: static;
  margin: 0;
}
.promo-slider__item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.promo-slide {
  display: block;
  position: relative;
  z-index: 1;
  height: 920px;
  color: var(--black);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1200px) {
  .promo-slide {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}
@media (max-width: 767px) {
  .promo-slide {
    padding: 15px;
    border-radius: 20px;
    height: 100vh;
    min-height: 640px;
  }
  .promo-slide::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
  }
}
.promo-slide__wrap {
  position: relative;
  z-index: 1;
  padding: 416px 0 70px;
}
@media (max-width: 1200px) {
  .promo-slide__wrap {
    padding: 0 0 90px;
  }
}
.promo-slide__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.promo-slide__title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 75px;
  line-height: 105%;
  text-transform: uppercase;
  color: var(--black);
max-width: 1350px;
}
@media (max-width: 1200px) {
  .promo-slide__title {
    font-size: 64px;
  }
}
@media (max-width: 767px) {
  .promo-slide__title {
    font-size: 42px;
    line-height: 1.1;
  }
}
.promo-slide__subtitle {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 22px;
  line-height: 125%;
  color: var(--black);
}
@media (max-width: 767px) {
  .promo-slide__subtitle {
    font-size: 20px;
    max-width: 320px;
  }
}

.page-cover {
  position: relative;
  margin-top: -76px;
  z-index: 1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 992px) {
  .page-cover {
    margin-top: -65px;
  }
}
  .page-cover::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
  }

 .promo-slider__item::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
  }

.page-cover__wrap {
  height: 920px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 0 70px;
}
@media (max-width: 992px) {
  .page-cover__wrap {
    margin-top: -65px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .page-cover__wrap {
    height: 100vh;
    min-height: 640px;
    padding: 0 0 40px;
  }
}
.page-cover__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  width: 45%;
}
@media (max-width: 992px) {
  .page-cover__header {
    width: 100%;
  }
}
.page-cover__title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 90px;
  line-height: 105%;
  text-transform: uppercase;
  color: var(--black);
}
.page-cover__title.otrasli {
font-size: 55px;
}

@media (max-width: 1280px) {
.page-cover__title.otrasli {font-size: 32px;}
}

@media (max-width: 992px) {
  .page-cover__title {
    font-size: 64px;
  }
}
@media (max-width: 767px) {
  .page-cover__title {
    font-size: 42px;
  }
}
.page-cover__subtitle {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 22px;
  line-height: 125%;
  color: var(--black);
}
@media (max-width: 767px) {
  .page-cover__subtitle {
    font-size: 20px;
  }
}

.advantages-card {
  position: relative;
  padding-top: 40px;
}
.advantages-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--stroke-in-white);
}
.advantages-card__num {
  font-family: var(--second-family);
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 90px;
  line-height: 105%;
}
@media (max-width: 1600px) {
  .advantages-card__num {
    font-size: 72px;
  }
}
@media (max-width: 1200px) {
  .advantages-card__num {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .advantages-card__num {
    font-size: 32px;
  }
}
.advantages-card__num span {
  font-weight: 400;
  font-size: 128px;
  line-height: 85%;
}
@media (max-width: 1600px) {
  .advantages-card__num span {
    font-size: 96px;
  }
}
@media (max-width: 1200px) {
  .advantages-card__num span {
    font-size: 78px;
  }
}
@media (max-width: 767px) {
  .advantages-card__num span {
    font-size: 52px;
  }
}
.advantages-card__text {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--black);
}
@media (max-width: 767px) {
  .advantages-card__text {
    font-size: 16px;
  }
}
@media (max-width: 390px) {
  .advantages-card__text {
    font-size: 14px;
  }
}
.advantages-card__title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 32px;
  line-height: 110%;
  color: var(--black);
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .advantages-card__title {
    font-size: 24px;
  }
}
@media (max-width: 390px) {
  .advantages-card__title {
    font-size: 20px;
  }
}
.advantages-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  width: 90px;
  height: 90px;
  background: var(--bg);
  margin-bottom: 40px;
}
.advantages-card__icon img {
  display: block;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  height: 100%;
  min-height: 500px;
  background: var(--bg);
  position: relative;
  z-index: 1;
  transition: 0.3s;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .service-card {
    padding: 24px;
    min-height: 360px;
  }
}
@media (max-width: 992px) {
  .service-card {
    border-radius: 20px;
    min-height: 400px;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .service-card {
    min-height: 240px;
  }
}
.service-card::after {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  width: 62px;
  height: 62px;
  transition: 0.15s;
  background: url(../../images/arrow-next.svg) var(--white) center no-repeat;
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 1;
}
@media (max-width: 1200px) {
  .service-card::after {
    display: none;
  }
}
.service-card__title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 32px;
  line-height: 110%;
  color: var(--black);
  margin: 0;
}
@media (max-width: 1200px) {
  .service-card__title {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .service-card__title {
    font-size: 18px;
  }
}
.service-card__cover {
  width: 165px;
  height: 165px;
}
@media (max-width: 767px) {
  .service-card__cover {
    width: 100px;
    height: 100px;
  }
}
.service-card__cover img {
  display: block;
  mix-blend-mode: multiply;
  max-width: 100%;
}
.service-card__link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}
.service-card:hover {
  background-color: var(--blue);
}
.service-card:hover h3 {
  color: var(--white);
}

.about-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 70px;
}
.about-box__text {
  width: 60%;
}
@media (max-width: 1200px) {
  .about-box__text {
    width: auto;
  }
}
.about-box__descr {
  width: 90%;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 22px;
  line-height: 125%;
  color: var(--black);
  margin-bottom: 50px;
}
@media (max-width: 568px) {
  .about-box__descr {
    font-size: 18px;
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .about-box__decor {
    display: none;
  }
}

.download-box {
  display: flex;
  align-items: center;
  gap: 25px;
}
.download-box__info {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: var(--black);
}

.project-card {
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 500px;
  padding: 40px;
  transition: 0.15s;
  z-index: 1;
}
@media (max-width: 992px) {
  .project-card {
    padding: 24px;
  }
}
.project-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(238, 238, 238, 0) 0%, #eee 100%);
  z-index: -1;
  transition: 0.3s;
}
.project-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: var(--blue);
  opacity: 0;
  z-index: -1;
  transition: 0.3s;
}
.project-card__text {
  width: 78%;
  font-family: var(--second-family);
  color: var(--black);
  transition: 0.3s;
}
@media (max-width: 1200px) {
  .project-card__text {
    width: auto;
  }
}
.project-card__title {
  font-weight: 500;
  font-size: 32px;
  line-height: 110%;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .project-card__title {
    font-size: 28px;
  }
}
.project-card__descr {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
}
.project-card__info {
  display: flex;
  gap: 10px;
}
.project-card__tag {
  height: 32px;
  line-height: 32px;
  border-radius: 500px;
  padding: 0 12px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  background-color: var(--blue);
  transition: 0.3s;
  display:none;
}
@media (max-width: 992px) {
  .project-card__tag {
    font-size: 13px;
  }
}
.project-card:hover::after {
  opacity: 1;
}
.project-card:hover .project-card__text {
  color: var(--white) !important;
}
.project-card:hover .project-card__tag {
  color: var(--blue);
  background-color: var(--white);
}

.client-list {
  display: flex;
  align-items: center;
  justify-content: stretch;
  gap: 32px;
}

.client-slider__item {
  width: 260px;
  min-width: 260px;
}
@media (max-width: 568px) {
  .client-slider__item {
    width: 40vw;
    min-width: 40vw;
    height: 80px;
  }
}

.client-card {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  min-width: 260px;
  height: 180px;
  padding: 30px;
  background: var(--bg);
}
@media (max-width: 568px) {
  .client-card {
    width: 40vw;
    min-width: 40vw;
    height: 100px;
    padding: 15px;
  }
}
.client-card img {
  display: block;
  max-width: 100%;
}
.client-card:hover {
  background: var(--blue);
}
.client-card:hover img {
  filter: brightness(0) invert(1);
}

.service-info h3 {
  margin-top: 0;
}
.service-info__decor {
  position: relative;
  margin-top: 60px;
  padding-bottom: 60px;
}
.service-info__decor::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  top: 0;
  background: var(--stroke-in-white);
}

.request-box {
  width: 100%;
  max-width: 700px;
}
.request-box__title h2._white {
  color: var(--white);
}
.request-box__descr {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 22px;
  line-height: 125%;
  color: var(--white);
  margin-bottom: 50px;
}
.request-box .form-fields {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
flex-wrap: wrap;
justify-content: space-between;
}
@media (max-width: 768px) {
  .request-box .form-fields {
    flex-wrap: wrap;
  }
.request-box__descr {font-size: 19px;}

}
.request-box .form-footer {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}
@media (max-width: 568px) {
  .request-box .form-footer {
    flex-wrap: wrap;
  }
}
.request-box .form-footer .button {
  width: 50%;
}
@media (max-width: 568px) {
  .request-box .form-footer .button {
    width: 100%;
  }
}
.request-box .form-footer .button:hover {
  background-color: var(--blue);
}
.request-box .form-footer__note {
  display: flex;
  align-items: flex-start;
  width: 50%;
  margin: 0;
}
@media (max-width: 568px) {
  .request-box .form-footer__note {
    width: 100%;
  }
}
.request-box .form-footer label {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: var(--dark-gray-element);
  margin: 0;
}
.request-box .form-footer a {
  color: var(--white);
}
.request-box .form-footer a:hover {
  color: var(--orange);
}

.product-box {
  margin-top: 120px;
}
@media (max-width: 1200px) {
  .product-box {
    margin-top: 80px;
  }
}
@media (max-width: 568px) {
  .product-box {
    margin-top: 60px;
  }
}

.product-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}
@media (max-width: 1200px) {
  .product-card {
    display: block;
  }
  .product-card > .product-card__cover {
    display: none;
  }
}
.product-card__cover {
  width: 100%;
  max-width: 450px;
}
.product-card__info {width: 100%;}
@media (max-width: 1600px) {
  .product-card__cover {
    width: 600px;
    min-width: 600px;
  }
}
@media (max-width: 1360px) {
  .product-card__cover {
    width: 480px;
    min-width: 480px;
  }
}
@media (max-width: 1200px) {
  .product-card__cover {
    width: auto;
    min-width: 0;
    margin-bottom: 30px;
  }
}
.product-card__cover img {
  width: 100%;
}
.product-card__descr {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 22px;
  line-height: 125%;
  color: var(--black);
  margin-bottom: 35px;
  flex: 1;
}
.product-card h3 {
  margin-top: 40px;
}
.product-card .button {
  height: 62px;
  padding: 0 28px;
}
.product-card__table-info {
  width: 100%;
  margin-top: 40px;
}
.product-card__table-info tr {
  background: var(--bg);
  border-bottom: 10px solid var(--white);
}
@media (max-width: 1200px) {
  .product-card__table-info td {
    padding: 10px;
  }
}

.product-thumb {
  width: 90px;
  padding: 15px 0;
}
.product-thumb img {
  display: block;
  mix-blend-mode: multiply;
}

.product-title {
  width: 50%;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--black);
  padding-left: 30px;
  padding-right: 70px;
}
.product-title__label {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: var(--gray-element);
}
@media (max-width: 1200px) {
  .product-title__title {
    min-width: 200px;
  }
}

.product-weight {
  width: 15%;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--black);
}
.product-weight__label {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: var(--gray-element);
}

.product-length {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--black);
  padding-left: 30px;
}
.product-length__label {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: var(--gray-element);
}

.product-item {
  display: flex;
  flex-direction: column;
  padding: 40px 30px;
  background: var(--bg);
}
.product-item__title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 22px;
  line-height: 125%;
  color: var(--black);
  margin-bottom: 30px;
}
.product-item__cover {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.product-item__cover img {
  display: block;
  width: 406px;
  height: 260px;
}
.product-item__descr {
  position: relative;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: var(--black);
  padding-top: 30px;
}
.product-item__descr::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: var(--stroke-in-bg);
}
.product-item:hover {
  background-color: var(--blue);
}
.product-item:hover .product-item__title, .product-item:hover .product-item__descr {
  color: var(--white);
}
.product-item:hover .product-item__descr::before {
  background: var(--bg);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 568px) {
  .pagination {
    gap: 10px;
    justify-content: space-between;
  }
}
.pagination__pages {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (max-width: 568px) {
  .pagination__pages {
    gap: 1px;
  }
}

.pagination-button {
  width: 25px;
  height: 25px;
  background-position: center;
  background-repeat: no-repeat;
}
.pagination-button._disable {
  filter: brightness(0) invert(0.6);
}
.pagination-button._prev {
  background-image: url(../../images/pagination-arrow-prev.svg);
}
.pagination-button._next {
  background-image: url(../../images/pagination-arrow-next.svg);
}

.pagination-link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  width: 56px;
  height: 56px;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--black);
  border: 1px solid transparent;
}
.pagination-link.active {
  color: var(--black);
  border: 1px solid var(--stroke);
}
.pagination-link:not(.active):hover {
  color: var(--orange-brand);
}

@media (min-width: 992px) {
  .text-columns {
    -moz-columns: 2;
         columns: 2;
    -moz-column-gap: 32px;
         column-gap: 32px;
  }
}

.num-animate {
  display: inline-flex;
  justify-content: flex-end;
}

.black-bg-decor-01 {
  background: url(../../uploads/project-decor.png) var(--black) center right no-repeat;
}

.black-bg-decor-02 {
  background: url(../../uploads/rectangle-decor.png) var(--black) center right no-repeat;
}

.swiper-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
.swiper-footer .swiper-pagination {
  position: static;
  gap: 8px;
}
@media (max-width: 767px) {
  .swiper-footer .swiper-pagination {
    display: none;
  }
}
.swiper-footer .swiper-pagination-bullet {
  margin: 0 !important;
  width: 60px;
}
.swiper-footer .swiper-pagination-bullet-active {
  width: 120px;
}
.swiper-footer .swiper-scrollbar {
  display: none;
}
@media (max-width: 767px) {
  .swiper-footer .swiper-scrollbar {
    display: block;
    width: 100%;
    height: 3px;
  }
}
.swiper-footer .swiper-scrollbar-drag {
  background: var(--orange);
}
.swiper-footer .swiper-button {
  position: static;
  background: var(--orange);
}
.swiper-footer .swiper-button::after {
  filter: brightness(0) invert(1);
}
.swiper-footer .swiper-button-disabled {
  background: var(--bg);
  opacity: 1;
}
.swiper-footer .swiper-button-disabled::after {
  filter: none;
}
@media (max-width: 767px) {
  .swiper-footer .swiper-button {
    display: none;
  }
}
.swiper-footer.theme-black .swiper-button-disabled {
  background: rgba(255, 255, 255, 0.1);
  opacity: 1;
}
.swiper-footer.theme-black .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.1);
}
.swiper-footer.theme-black .swiper-pagination-bullet-active {
  background: var(--white);
}
.swiper-footer.theme-black .swiper-scrollbar {
  background: rgba(255, 255, 255, 0.1);
}
.swiper-footer.theme-black .swiper-scrollbar-drag {
  background: var(--white);
}

.popup {
  /*display: none;*/
  border-radius: 30px;
  max-width: 690px;
  width: 100%;
  padding: 60px;
  background: #fff;
  color: #000;
  font-family: var(--font-family);
}
@media (max-width: 568px) {
  .popup {
    padding: 24px;
  }
}
.popup._sending {
  text-align: center;
}
.popup-title {
  margin-bottom: 14px;
  color: #000;
}
@media (max-width: 568px) {
  .popup-title {
    font-size: 32px;
  }
}
.popup-note {
  font-size: 17px;
  line-height: 140%;
  color: #000;
}
@media (max-width: 568px) {
  .popup-note {
    font-size: 16px;
  }
}
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}
.popup-form input[type=text],
.popup-form input[type=textarea],
.popup-form input[type=password],
.popup-form input[type=email],
.popup-form input[type=tel] {
  border-radius: 8px;
  padding: 0 20px;
  width: 100%;
  height: 62px;
  background: var(--white);
  color: var(--white);
  font-size: 17px;
  line-height: 140%;
}
.popup-form input[type=text]::-moz-placeholder, .popup-form input[type=password]::-moz-placeholder, .popup-form input[type=email]::-moz-placeholder, .popup-form input[type=tel]::-moz-placeholder {
  color: var(--gray-element);
}
.popup-form input[type=text]::placeholder,
.popup-form input[type=textarea]::placeholder,
.popup-form input[type=password]::placeholder,
.popup-form input[type=email]::placeholder,
.popup-form input[type=tel]::placeholder {
  color: var(--gray-element);
}
.popup-form input[type=text],
.popup-form input[type=textarea],
.popup-form input[type=password],
.popup-form input[type=email],
.popup-form input[type=tel] {
  -webkit-appearance: none !important;
  outline: none !important;
}
.popup-form .button {
  min-width: 210px;
}

.form-fields {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
}
.form-fields .form-field {
  width: 48%;
  padding: 5px;
}
.form-fields .form-field.form-area {
  width: 100%;
  padding: 5px;
}
.form-fields .form-field.form-area textarea {
max-height: 150px;
}
@media (max-width: 568px) {
  .form-fields .form-field {
    width: 100%;
  }
}

.form-footer .button:hover {
  background-color: var(--blue);
}
.form-footer__note {
 /* margin-top: 20px; */
}

.footer {
  background: var(--black);
  color: var(--white);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.footer a:hover {
  color: var(--orange);
}
.footer__wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 70px 0;
}
@media (max-width: 767px) {
  .footer__wrap {
    padding: 40px 0;
  }
}
.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .footer__top {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }
}
.footer__info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-weight: 500;
  line-height: 140%;
  font-size: 16px;
  color: var(--text-gray-light);
}
@media (max-width: 1200px) {
  .footer__info {
    gap: 20px;
    font-size: 14px;
  }
  .footer__info .footer-logo {
    display: none;
  }
}
@media (max-width: 767px) {
  .footer__info {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
  }
}

.footer-soc__title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 32px;
  line-height: 110%;
  color: var(--white);
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .footer-soc__title {
    font-size: 22px;
  }
}

@media (max-width: 1200px) {
  .footer-logo {
    margin-bottom: 30px;
  }
}
.footer-logo img {
  display: block;
}
@media (max-width: 1600px) {
  .footer-logo img {
    width: 320px;
  }
}
@media (max-width: 1480px) {
  .footer-logo img {
    width: 140px;
  }
}

.footer-info {
  position: relative;
  font-family: var(--font-family);
  color: var(--white);
  padding-right: 24px;
}
.footer-info::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  width: 14px;
  height: 14px;
  background-image: url(../../images/arrow-next-orange.svg);
}
.footer-info:hover {
  color: var(--orange);
}

.footer-copyright {
  font-family: var(--font-family);
  color: rgba(255, 255, 255, 0.35);
}

.footer-feedback .button:hover {
  color: var(--white);
  background-color: var(--blue);
}

.footer-dev {
  font-family: var(--font-family);
  color: rgba(255, 255, 255, 0.35);
}
@media (min-width: 767px) {
  .footer-dev {
    margin-top: 80px;
  }
}
.footer-dev a {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-dev a:hover {
  color: var(--blue);
}
.footer-dev img {
  display: block;
}

@media (max-width: 1200px) {
  .footer-nav:nth-child(2), .footer-nav:nth-child(3) {
    display: none;
  }
}
@media (max-width: 992px) {
  .footer-nav {
    display: none;
  }
}
.footer-nav__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 40px;
}
.footer-nav__item {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: var(--white);
  margin-bottom: 15px;
}
.footer-nav__item:last-child {
  margin-bottom: 0;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
}
.footer-contacts__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 40px;
}
.footer-contacts__info {
  margin-bottom: 30px;
}
.footer-contacts__info a {
  display: block;
}
.footer-contacts__phone {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 32px;
  line-height: 110%;
  color: var(--blue);
  margin-bottom: 10px;
}
.footer-contacts__mail {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--white);
}
.footer-contacts__address {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-contacts__label {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .footer-contacts {
    width: 100%;
  }
}

.header__nav nav.main-nav div.main-nav__item a.main-nav__link.active {
   color: var(--orange);
}

.footer-nav__item a.active {
  color: var(--orange);
}

.fdd_sl {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}

.cat_ssrt {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 12px;
}

.error {
    background: pink !important;
}


.glr_df {
  display: flex;
  margin: 0 0px;
  flex-wrap: wrap;
}

.glr_df div.cls_otz a img {
border: 1px solid #3333;
  margin-right: 23px;
  margin-bottom: 14px;
}


@media (max-width: 768px) {
.cat_ssrt {
  flex: 0 0 100%;
  max-width: 100%;
}
.cls_otz {margin-bottom: 10px;}
.glr_df div.cls_otz a img {
  display:block!important;
  margin: 0;
width: 100%;
}
.glr_df {
  display:block!important;
}
.cls_otz span {
max-width: 556px !important;
}
}

.glr_df div.cls_otz span {
display: flex;
  margin: 0 0px;
  flex-wrap: wrap;
  max-width: 250px;
  text-align: left;
  text-decoration: none;
}


.typography div.glr_df div.cls_otz a span {
  text-decoration: none;
}

.active a.main-nav__link._drop {
 color: var(--orange);
}

.drop-nav div.drop-nav__item a.active {
 color: var(--orange);
}


.contacts-map {
    display: flex;
    gap: 15px;
}

.contacts-map__col {
    width: 50%;
}

.contacts-map img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vac_form {display:flex;flex-wrap:wrap;gap:30px;}
.vac_form .field {width:33%;}

.first {font-weight: 500 !important;font-size: 27px !important;line-height: 125% !important;width:75%;}

@media (max-width: 992px) {
.first {font-weight: 500 !important;font-size: 21px !important;line-height: 125% !important;width:100%;}
.vac_form .field {width:100%;}
.wrap.saad_hj input {margin-bottom: 0 !important;}
    .contacts-map {
        display: flex;
        flex-wrap: wrap;
    }

    .contacts-map__col {
        width: 100%;
    }
}
.proekt {margin: 20px 0;}



.wrap.saad_hj input {
   margin-bottom: 20px;
}

.wrap.saad_hj select {
   margin-bottom: 20px;
}
.main-nav__item.active a.main-nav__link {
color: var(--orange);
}

/* Цвет текста, который пользователь вводит */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  color: #1a1a1a; /* ← сюда ваш нужный цвет */
}

/* Если нужно, чтобы и плейсхолдер тоже был одинаковым */
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder {
  color: #999999; /* цвет плейсхолдера */
  opacity: 1;     /* важно для Firefox */
}

/* Все поля ввода и textarea */
form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
  color: #000000 !important;
}



.agree.error {
    background: red;
}

.confirm-field {
    display: block;
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 24px;
    cursor: pointer;
}

.confirm-field .st {
    margin: 0;
    padding-left: 32px;
    position: relative;
}

.confirm-field input[type=checkbox] {
    display: none;
    margin: 0;
    padding: 0;
    width: 24px;
    height: 24px;
}

.confirm-field .st::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background-image: url(../../images/checkbox.svg);
}

.confirm-field input[type=checkbox]:checked+.st::before {
    background-image: url(../../images/checkbox-active.svg);
background-position: center;
background-color: var(--red);
}

.confirm-field input[type=checkbox].error+.st::before {
    background-image: url(../../images/checkbox-error.svg);
}

/* Stylesheet: Стиль Modified On 2026-08-27 11:54:06 */
