:root {
  --main-bg-color: #eef1f8;
  --primary-color: #222737;
  --black: #222737;
  --white: #fff;
  --blue: #01306b;
  --orange: #ff9000;
  --gray-element: #a3b4ca;
  --red: #ff2626;
  --gray-text: #4c6e97;
  --bg: #eef1f8;
  --stroke-in-white: #dadee6;
  --stroke-in-bg: #ced4e0;
  --blue-hover: #0133cb;
  --blue-dark: #01306b;
  --body-font-size: 20px;
  --font-family: "Roboto Condensed", sans-serif;
  --second-family: "Roboto Condensed", 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: -15px;
}

@media (max-width: 768px) {}

.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: 5px;
}

.col-sm-4 {
  padding: 15px;
}

.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%;
    max-width: 33%;
  }

  .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: 30px;
}

@media (max-width: 1400px) {

  .title-h1,
  .title-h2,
  .title-h3 {
    margin-bottom: 30px;
  }

  .col-sm-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }

}

@media (max-width: 767px) {

  .title-h1,
  .title-h2,
  .title-h3 {
    margin-bottom: 20px;
  }

  .col-sm-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

}

.title-h1 {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 38px;
  line-height: 110%;
  color: var(--blue);
}

@media (max-width: 1380px) {
  .title-h1 {
    font-size: 42px;
    line-height: 1.4;
  }
}

@media (max-width: 767px) {
  .title-h1 {
    font-size: 28px;
    line-height: 1.2;
  }
}

.title-h2 {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 48px;
  line-height: 110%;
  color: var(--blue);
}

@media (max-width: 1380px) {
  .title-h2 {
    font-size: 42px;
  }
}

@media (max-width: 1200px) {
  .title-h2 {
    font-size: 34px;
    line-height: 1.2;
  }
}

@media (max-width: 992px) {
  .title-h2 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .title-h2 {
    font-size: 24px;
  }
}


.title-h3 {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 30px;
  line-height: 120%;
  color: var(--blue);
}

@media (max-width: 1380px) {
  .title-h3 {
    font-size: 24px;
    line-height: 1.3;
  }
}

@media (max-width: 1200px) {
  .title-h3 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .title-h3 {
    font-size: 18px;
  }
}

.cms_submit,
.button {
  cursor: pointer;
  transition: 0.15s;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 64px;
  justify-content: center;
  border-radius: 5px;
  padding: 0 26px;
  text-decoration: none !important;
  min-width: 120px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: var(--white);
  background: var(--blue);
}

@media (max-width: 992px) {

  .cms_submit,
  .button {
    border-radius: 12px;
    height: 60px;
  }
}

@media (max-width: 767px) {

  .cms_submit,
  .button {
    height: 56px;
    font-size: 18px;
  }
}

.cms_submit:hover,
.button:hover {
  background: var(--blue-hover);
}

.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 {
  color: var(--blue);
  background: var(--bg);
}

.cms_submit._gray:hover,
.button._gray:hover {
  color: var(--white);
  background-color: var(--blue);
}

.cms_submit._online,
.button._online {
  position: relative;
}

.cms_submit._online::before,
.button._online::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin-top: 2px;
  background: var(--white);
}

.cms_submit._feedback,
.button._feedback {
  background-color: var(--white);
  color: var(--blue);
}

.cms_submit._feedback:hover,
.button._feedback:hover {
  color: var(--white);
  background-color: var(--blue);
}

.cms_submit._sm,
.button._sm {
  height: 62px;
  font-size: 16px;
}

@media (max-width: 767px) {

  .cms_submit._sm,
  .button._sm {
    height: 54px;
  }
}

.typography {
  font-size: 16px;
  line-height: 150%;
  color: var(--gray-text);
}

@media (max-width: 1200px) {
  .typography {
    font-size: 16px;
  }
}

.typography h1,
.typography h2,
.typography h3,
.typography h4 {
  font-family: var(--second-family);
  font-weight: 800;
  color: var(--black);
  line-height: 110%;
}

@media (max-width: 767px) {

  .typography h1,
  .typography h2,
  .typography h3,
  .typography h4 {
    font-weight: 500;
  }
}


.typography h2 {
  font-size: 37px;
  line-height: 130%;
  color: var(--black);
  margin-top: 60px;
  margin-bottom: 40px;
}

.typography h2:first-child {
  margin-top: 0;
}

.typography h2:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .typography h2 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .typography h2 {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 20px;
  }
}



.typography h3 {
  font-size: 30px;
  line-height: 120%;
  color: var(--blue);
  margin-bottom: 25px;
}

@media (max-width: 1380px) {
  .typography h3 {
    font-size: 24px;
    line-height: 1.3;
  }
}

@media (max-width: 1200px) {
  .typography h3 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .typography h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.typography h3:first-child {
  margin-top: 0;
}

.typography h3:last-child {
  margin-bottom: 0;
}

.typography p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: var(--blue);
}

@media (max-width: 1200px) {
  .typography p {
    font-size: 16px;
  }
}

.typography p:first-child {
  margin-top: 0;
}

.typography p:last-child {
  margin-bottom: 0;
}

.typography ul li {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: var(--blue);
  margin-bottom: 19px;
  position: relative;
  padding-left: 16px;
}

@media (max-width: 767px) {
  .typography ul li {
    font-size: 16px;
  }
}

.typography ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 9px;
  background: url(../../images/list-marker.svg) center no-repeat;
}

.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: 20px;
  line-height: 140%;
  padding-left: 15px;
  margin-bottom: 10px;
  position: relative;
  list-style: none;
}

@media (max-width: 767px) {
  .typography ol li {
    font-size: 16px;
    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;*/
}

.typography a:hover {
  text-decoration: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 40px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--gray-text);
  scrollbar-width: none;
}

@media (max-width: 992px) {
  .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;
  white-space: nowrap;
}

.breadcrumb a:not(:first-child)::before {
  content: "/";
  margin: 0 13px;
}

@media (min-width: 992px) {
  .breadcrumb a:hover {
    color: var(--blue);
  }
}

.breadcrumb span {
  display: flex;
  color: var(--gray-element);
  white-space: nowrap;
  align-items: center;
}

.breadcrumb span::before {
  content: "/";
  margin: 0 13px;
}

.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-hover);
}

.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: 1px solid var(--blue);
  border-radius: 8px;
  background: var(--white);
  caret-color: var(--blue);
}

.forms textarea {
  padding: 18px;
  resize: none;
  height: 260px;
}

@media (max-width: 767px) {
  .forms textarea {
    height: 200px;
  }
}

.forms select {
  width: 100%;
  -webkit-appearance: none;
  outline: none;
  background: url(../../images/select-arrow.svg) var(--white) right 18px center 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(--blue-hover);
}

.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 a {
  text-decoration: underline;
}

.checkbox a:hover {
  text-decoration: none;
}

.form-field__note {
  font-size: 16px;
  line-height: 140%;
  color: var(--gray-element-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-hover);
}

.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;
}

@media (max-width: 767px) {
  .tabs__box.visible {
    display: none;
  }
}

/* plugins */
.swiper-button {
  top: 50%;
  margin-top: -31px;
  width: 57px;
  height: 57px;
  border-radius: 5px;
  border: none;
  background: var(--blue);
  transition: 0.5s;
}

@media (max-width: 1200px) {
  .swiper-button {
    width: 48px;
    height: 48px;
  }
}

.swiper-button:hover {
  background-color: var(--blue-hover);
}

.swiper-button:after {
  content: "";
  width: 34px;
  height: 34px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev::after {
  background-image: url(../../images/arrow-prev-white.svg);
}

.swiper-button-next::after {
  background-image: url(../../images/arrow-next-white.svg);
}

.swiper-button-disabled {
  opacity: 1 !important;
  background: var(--white);
}

.swiper-button-disabled::after {
  filter: brightness(0) invert(0.6);
}

.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: var(--bg);
  border-radius: 2px;
  transition: 0.2s;
  opacity: 1;
  position: relative;
  margin: 0 !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--blue);
}

.swiper-horizontal>.swiper-scrollbar {
  display: none;
  width: 100%;
  left: 0;
  bottom: 0;
}

@media (max-width: 992px) {
  .swiper-horizontal>.swiper-scrollbar {
    display: block;
    position: static;
    margin-top: 10px;
  }
}

.swiper-horizontal>.swiper-scrollbar .swiper-scrollbar-drag {
  background: var(--blue);
}

.fancybox__container {
  z-index: 9999;
}

.fancybox__content>.carousel__button.is-close {
  width: 30px;
  height: 30px;
  right: 0;
  top: -40px;
  opacity: 1;
  background: url(../../images/close-button-white.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 - 1520px) / -2);
  margin-right: calc((100vw - 1520px) / -2);
  padding-left: calc((100vw - 1520px) / 2);
  padding-right: calc((100vw - 1520px) / 2);
}

@media (max-width: 1600px) {
  .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;
  }
}

.white-bg {
  background-color: var(--white);
}

.white-bg .swiper-button-disabled {
  background-color: var(--bg);
}

@media (max-width: 767px) {
  .white-bg .button-more {
    background: var(--bg);
  }
}

.white-bg .button-more::after {
  background-color: var(--bg);
}

body.open-filter {
  overflow: hidden;
}

body.open-filter .cbc {
  overflow: hidden;
}

body.open-nav {
  overflow: hidden;
}

body.open-nav .cbc {
  overflow: hidden;
}

@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;
    background: var(--white);
  }

  body.open-nav .header__action {
    z-index: 999;
  }
}

.container {
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
  max-width: 1600px;
  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: 767px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.header {
  position: sticky;
  z-index: 999;
  top: -124px;
  background: var(--bg);
}

@media (max-width: 767px) {
  .header__wrap {
    height: 180px;
    padding-top: 90px;
  }
}

.header__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  z-index: 99;
}

@media (max-width: 992px) {
  .header__top {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .header__top {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    background: #fff;
    padding: 0 15px;
    height: 90px;
  }
}

.header__top::after {
  content: "";
  position: absolute;
  top: 100%;
  left: calc((100vw - 1520px) / -2);
  right: calc((100vw - 1520px) / -2);
  height: 1px;
  background: var(--stroke-in-bg);
}

@media (max-width: 1600px) {
  .header__top::after {
    left: -40px;
    right: -40px;
  }
}

@media (max-width: 1200px) {
  .header__top::after {
    left: -20px;
    right: -20px;
  }
}

.header__logo {
  display: flex;
  align-items: center;
}

@media (max-width: 992px) {
  .header__logo {
    flex: 1;
  }
}

@media (max-width: 767px) {
  .header__logo img {
    height: 66px;
  }
}

.header__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  position: relative;
}

@media (max-width: 767px) {
  .header__bottom {
    padding: 20px 0 0 0;
  }
}

.header__controls {
  display: flex;
  align-items: center;
  gap: 9px;
}

@media (max-width: 992px) {
  .header__controls {
    display: none !important;
    margin-top: 20px;
  }
}

@media (max-width: 1600px) {
  .header__controls .button {
    font-size: 18px;
    height: 62px;
    padding: 0 20px;
  }
}

@media (max-width: 1380px) {
  .header__controls .button {
    font-size: 16px;
    height: 58px;
    padding: 0 16px;
  }
}

@media (max-width: 992px) {
  .header__controls .button._feedback {
    background: var(--bg);
  }
}

.header__contacts {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.header__mobile {
  display: none;
}

@media (max-width: 992px) {
  .header__mobile {
    display: flex;
    align-items: center;
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .header__nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    background: var(--white);
    padding: 115px 15px 60px;
    z-index: 98;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .header__nav::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 992px) {
  .header__nav .header__controls {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 992px) {
  .header__search {
    width: 100%;
  }
}

.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;
}

.header-address {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 52px;
  gap: 2px;
  padding-left: 67px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: var(--blue);
}

@media (max-width: 1600px) {
  .header-address {
    font-size: 15px;
  }
}

@media (max-width: 1200px) {
  .header-address {
    display: none;
  }
}

.header-address::before {
  content: "";
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50px;
  top: 0;
  left: 0;
  background: url(../../images/icon-location.svg) center var(--white) no-repeat;
}

.header-address span {
  opacity: 0.6;
}

.header-search {
  display: flex;
  align-items: center;
  position: relative;
  gap: 10px;
  height: 50px;
  background: var(--white);
  transition: 0.3s;
  border-radius: 12px;
  padding-left: 15px;
}

@media (min-width: 992px) {
  .header-search {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg);
  }
}

.header-search::before {
  content: "";
  width: 22px;
  height: 22px;
  background: url(../../images/icon-search.svg) center no-repeat;
}

.header-search__field {
  cursor: pointer;
  width: 100%;
  flex: 1;
  min-width: 140px;
  height: 100%;
  border: none;
  padding: 0;
  background: transparent;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--blue);
}

.header-search__field::-moz-placeholder {
  color: var(--gray-text);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  opacity: 1;
}

.header-search__field::placeholder {
  color: var(--gray-text);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  opacity: 1;
}

.header-search__close {
  display: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url(../../images/icon-cross.svg) center/contain no-repeat;
  cursor: pointer;
}

.header-search.focus {
  left: 0;
  background: var(--white);
}

.header-search.focus .header-search__close {
  display: block;
}

.header-search form {
  flex: 1;
}


.search-result {
  position: absolute;
  left: 0;
  top: 100%;
  right: 0;
  padding: 20px;
  margin-top: 10px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.14);
  display: none;
}

.search-result-card {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  padding: 5px 0;
}

.search-result-card__thumb {
  width: 40px;
  height: 40px;
  padding: 5px;
  -o-object-fit: cover;
  object-fit: cover;
  border: 1px solid var(--stroke-in-white);
  border-radius: 5px;
}

.search-result-card__title {
  font-size: 16px;
}

.search-result-card:hover {
  color: var(--blue-hover);
}

.main-nav {
  display: flex;
  gap: 80px;
}

@media (max-width: 1380px) {
  .main-nav {
    gap: 60px;
  }
}

@media (max-width: 992px) {
  .main-nav {
    flex-direction: column;
    gap: 0;
  }
}

.main-nav__item {
  position: relative;
}

@media (min-width: 992px) {

  .main-nav__item:hover .drop-nav-box,
  .main-nav__item:hover .drop-nav {
    visibility: visible;
    opacity: 1;
  }

  .main-nav__item:hover .main-nav__link:not(._catalog) {
    color: var(--black);
  }

  .main-nav__item:hover .main-nav__link::after {
    transform: rotate(180deg);
  }
}

.main-nav__link {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 22px;
  line-height: 140%;
  color: var(--blue);
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .main-nav__link {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .main-nav__link {
    font-weight: 500;
    font-size: 24px;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 5px 0;
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .main-nav__link {
    font-size: 22px;
  }
}

.main-nav__link:hover {
  color: var(--black);
}

@media (max-width: 992px) {

  .main-nav__link.open,
  .main-nav__link.active {
    color: var(--black);
  }

  .main-nav__link._drop.open::after {
    transform: rotate(180deg);
  }
}

.main-nav__link._catalog {
  color: var(--blue);
}

.main-nav__link._catalog::before {
  content: "";
  width: 22px;
  height: 22px;
  background: url(../../images/icon-burger.svg) center no-repeat;
  position: relative;
  top: -1px;
}

@media (min-width: 992px) {
  .main-nav__link._catalog::after {
    display: none;
  }
}

@media (max-width: 992px) {
  .main-nav__link._catalog::before {
    display: none;
  }
}

.main-nav__link._catalog:hover {
  color: var(--black);
}

.main-nav__link._catalog:hover::before {
  filter: brightness(0);
}

@media (min-width: 992px) {
  .drop-nav {
    position: absolute;
    top: 100%;
    left: -25px;
    margin-top: 16px;
    border-radius: 8px;
    padding: 20px 25px;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.14);
    background: var(--white);
    display: flex;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    min-width: 200px;
    z-index: 999;
  }

  .drop-nav::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 100%;
    right: 0;
    height: 24px;
  }

  .drop-nav__link {
    display: block;
    padding: 5px 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--blue);
    white-space: nowrap;
  }
}

@media (min-width: 992px) and (min-width: 992px) {
  .drop-nav__link:hover {
    color: var(--black);
  }
}

@media (max-width: 992px) {
  .drop-nav {
    display: none;
    padding: 5px 0 5px 20px;
    font-size: 18px;
  }

  .drop-nav__item {
    margin-bottom: 10px;
  }

  .drop-nav__item:last-child {
    margin-bottom: 0;
  }

  .drop-nav__link {
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
  }
}

@media (max-width: 767px) {
  .drop-nav__link {
    font-size: 18px;
  }
}

.drop-nav-box {
  margin-left: 60px;
}

@media (min-width: 992px) {
  .drop-nav-box {
    position: absolute;
    top: 100%;
    left: 60px;
    z-index: 99;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.14);
    background: var(--white);
    visibility: hidden;
    opacity: 0;
    border-radius: 24px;
    padding: 40px;
    width: 683px;
    margin-left: 0;
  }

  .drop-nav-box::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 100%;
    right: 0;
    height: 24px;
  }

  .drop-nav-box__list {
    flex: 1;
  }
}

@media (max-width: 1600px) {
  .drop-nav-box {
    left: 40px;
  }
}

@media (max-width: 1200px) {
  .drop-nav-box {
    left: 20px;
    margin-left: 20px;
  }
}

@media (max-width: 992px) {
  .drop-nav-box {
    padding: 10px 0 0;
    display: none;
  }
}

.drop-arrow {
  content: "";
  width: 11px;
  height: 6px;
  background: url(../../images/chevron-down.svg) center -2px no-repeat;
  transition: 0.3s;
}

@media (max-width: 992px) {
  .drop-arrow {
    width: 24px;
    height: 24px;
    background-position: center;
  }
}



.header-contacts {
  display: flex;
  align-items: center;
  gap: 15px;
}

.soc-buttons {
  display: flex;
  align-items: center;
  gap: 11px;
}

.soc-buttons a {
  transition: 0.3s;
}

.soc-buttons img {
  display: block;
}

.soc-buttons a:hover img {
  filter: brightness(0) saturate(100%) invert(11%) sepia(93%) saturate(2414%) hue-rotate(205deg) brightness(95%) contrast(99%);
}

.order-call {
  display: block;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: var(--blue);
  text-decoration: underline;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .order-call {
    display: none;
  }
}

.order-call:hover {
  color: var(--blue-hover);
}

.header-phone {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 24px;
  line-height: 125%;
  color: var(--blue);
  white-space: nowrap;
}

@media (max-width: 1600px) {
  .header-phone {
    font-size: 22px;
  }
}

.header-phone:hover {
  color: var(--blue-hover);
}

@media (max-width: 767px) {
  .header-phone {
    font-size: 0;
    color: transparent;
    text-indent: -1000%;
    border: none;
    width: 22px;
    height: 22px;
    background: url(../../images/icon-phone.svg) center/contain no-repeat;
  }
}

.section-sm {
  margin-top: 40px;
  margin-bottom: 40px;
}

.section-sm>.section:first-child {
  margin-top: 0;
}

.section {
  margin-top: 40px;
  margin-bottom: 40px;
}

@media (max-width: 1600px) {
  .section {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

@media (max-width: 1200px) {
  .section {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .section {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

.section-inner {
  padding-top: 140px;
  padding-bottom: 140px;
}

@media (max-width: 1200px) {
  .section-inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .section-inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.section-inner .section:first-child {
  margin-top: 0;
}

.section-inner .section:last-child {
  margin-bottom: 0;
}

.section-header {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

@media (max-width: 1380px) {
  .section-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .section-header {
    margin-bottom: 20px;
  }
}

.section-header__title {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 992px) {
  .section-header__right {
    display: none;
  }
}

.section-header .title-h2,
.section-header .title-h3 {
  margin: 0;
}

.section-header .swiper-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-header .swiper-button {
  position: static;
  margin: 0;
}

.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;
  z-index: 1;
  height: 575px;
  border-radius: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 1200px) {
  .promo-box {
    flex-wrap: wrap;
  }
}

@media (max-width: 992px) {
  .promo-box {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .promo-box {
    height: 460px;
  }
}

.promo-box__wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 60px 0 40px 60px;
}

@media (max-width: 1200px) {
  .promo-box__wrap {
    padding: 40px;
  }
}

@media (max-width: 767px) {
  .promo-box__wrap {
    padding: 25px;
  }
}

@media (max-width: 767px) {
  .promo-box__wrap {
    padding: 30px 10px 10px 10px;
  }
}

.promo-box__info {
  max-width: 860px;
}

.promo-box__title {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 64px;
  line-height: 100%;
  color: var(--blue);
  margin-bottom: 25px;
}

@media (max-width: 1200px) {
  .promo-box__title {
    font-size: 52px;
  }
}

@media (max-width: 767px) {
  .promo-box__title {
    font-size: 30px;
    word-break: break-word;
  }
}

@media (max-width: 767px) {
  .promo-box__title {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
}

@media (max-width: 390px) {
  .promo-box__title {
    font-size: 24px;
  }
}

.promo-box__subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: var(--gray-text);
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .promo-box__subtitle {
    font-size: 18px;
  }
}

.promo-box .button {
  height: 68px;
}

@media (max-width: 767px) {
  .promo-box .button {
    height: 48px;
    font-size: 14px;
    padding: 0 15px;
  }
}

.brand-slider-box {
  width: 765px;
}

@media (max-width: 1200px) {
  .brand-slider-box {
    width: 60%;
  }
}

@media (max-width: 767px) {
  .brand-slider-box {
    width: calc(100% - 50px);
    margin-left: -7px;
  }
}

@media (max-width: 568px) {
  .brand-slider-box {
    margin-left: 1px;
  }
}

.brand-slider {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.brand-slider::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 45px;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}

@media (max-width: 767px) {
  .brand-slider::before {
    width: 100px;
  }
}

.brand-slider::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 45px;
  top: 0;
  right: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(-180deg);
  z-index: 2;
}

@media (max-width: 767px) {
  .brand-slider::after {
    width: 45px;
  }
}

.brand-slider._about-box {
  padding: 50px 0;
}

@media (max-width: 767px) {
  .brand-slider._about-box {
    padding: 30px 0;
  }
}

.brand-slider._about-box::before {
  top: 50px;
  width: 245px;
  height: 42px;
  background: linear-gradient(90deg, #eef1f8 0%, rgba(238, 241, 248, 0) 100%);
}

@media (max-width: 767px) {
  .brand-slider._about-box::before {
    top: 30px;
    width: 45px;
  }
}

.brand-slider._about-box::after {
  top: 50px;
  width: 245px;
  height: 42px;
  background: linear-gradient(90deg, #eef1f8 0%, rgba(238, 241, 248, 0) 100%);
}

@media (max-width: 767px) {
  .brand-slider._about-box::after {
    top: 30px;
    width: 45px;
  }
}

.brand-slider._about-box .swiper-wrapper {
  gap: 113px;
}

@media (max-width: 1200px) {
  .brand-slider._about-box .swiper-wrapper {
    gap: 60px;
  }
}

@media (max-width: 767px) {
  .brand-slider._about-box .swiper-wrapper {
    gap: 40px;
  }
}

.brand-slider .swiper-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

.brand-slider__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 45px;
  margin-right: 0 !important;
}

.brand-slider__item img {
  display: block;
}


@media (min-width: 768px) {
  .catalog-slider .row {
    width: auto;
  }
}

@media (max-width: 767px) {
  .catalog-slider .row {
    width: 100%;
    margin: 0;
    flex-wrap: nowrap;
  }

  .catalog-slider .row>div {
    padding: 0;

    flex: 0 0 auto !important;
    max-width: none !important;
    width: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 568px) {
  .catalog-slider .row>div {
    width: 100%;
  }
}


.catalog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 350px;
  border-radius: 12px;
  padding: 30px;
  background-color: var(--white);
  transition: 0.3s;
}

@media (max-width: 767px) {
  .catalog-card {
    height: 250px;
    padding: 20px;
  }
}


@media (min-width: 1200px) {
  .catalog-card:hover {
    background: var(--blue);
  }

  .catalog-card:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../../images/equipment-decor.png) no-repeat;
  }

  .catalog-card:hover .catalog-card__title,
  .catalog-card:hover .catalog-card__descr {
    color: var(--white);
  }

  .catalog-card:hover .catalog-card__more {
    background: url(../../images/arrow-more.svg) var(--white) center no-repeat;
  }
}

.catalog-card__cover {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}

.catalog-card__cover img {
  display: block;
  max-height: 228px;
}

@media (max-width: 1200px) {
  .catalog-card__cover img {
    max-width: 80%;
  }
}

@media (max-width: 767px) {
  .catalog-card__cover img {
    max-width: 70%;
  }
}

.catalog-card__title {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 30px;
  line-height: 120%;
  color: var(--blue);
  margin-bottom: 10px;
  z-index: 2;
}

@media (max-width: 1200px) {
  .catalog-card__title {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .catalog-card__title {
    font-size: 20px;
    line-height: 1.4;
  }
}

.catalog-card__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--gray-text);
  z-index: 2;
}

.catalog-card__more {
  position: absolute;
  bottom: 30px;
  left: 30px;
  border-radius: 5px;
  width: 30px;
  height: 30px;
  background: url(../../images/arrow-more-white.svg) var(--blue) center no-repeat;
  z-index: 2;
}

.more-box {
  margin-top: 60px;
  text-align: center;
}

@media (max-width: 767px) {
  .more-box {
    margin-top: 30px;
  }
}

.button-more {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: var(--blue);
  transition: 0.3s;
}

@media (max-width: 767px) {
  .button-more {
    width: 100%;
    padding: 0 20px;
    background: var(--white);
    border-radius: 10px;
    height: 40px;
  }
}

.button-more::after {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background: url(../../images/arrow-more-gray.svg) var(--white) center no-repeat;
  transition: 0.3s;
}

.button-more:hover::after {
  background-image: url(../../images/arrow-more-white.svg);
  background-color: var(--blue);
}

.section-header+.services-list {
  margin-top: -50px;
}

@media (max-width: 1380px) {
  .section-header+.services-list {
    margin-top: -20px;
  }
}

@media (max-width: 767px) {
  .section-header+.services-list {
    margin-top: 20px;
  }
}

.services-list {
  display: flex;
  flex-direction: column;
}

.service-item {
  padding-top: 50px;
  padding-bottom: 50px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  margin-left: calc((100vw - 1520px) / -2);
  margin-right: calc((100vw - 1520px) / -2);
  padding-left: calc((100vw - 1520px) / 2);
  padding-right: calc((100vw - 1520px) / 2);
}

@media (max-width: 1600px) {
  .service-item {
    margin-left: -40px;
    margin-right: -40px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 1380px) {
  .service-item {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (max-width: 1200px) {
  .service-item {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 767px) {
  .service-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--stroke-in-white);
    position: relative;
    padding-left: 120px;
    gap: 15px;
  }

  .service-item:first-child {
    border-top: 1px solid var(--stroke-in-white);
  }
}

.service-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  width: 120px;
  height: 120px;
  background-color: var(--bg);
  margin-right: 40px;
  transition: 0.3s;
}

@media (max-width: 1380px) {
  .service-item__icon {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 1200px) {
  .service-item__icon {
    width: 80px;
    height: 80px;
    margin-right: 20px;
  }
}

@media (max-width: 767px) {
  .service-item__icon {
    height: 95px;
    margin-right: 0;
    position: absolute;
    left: 20px;
    top: 30px;
  }
}

.service-item__icon img {
  transition: 0.3s;
  max-width: 130px;
}

@media (max-width: 1380px) {
  .service-item__icon img {
    max-width: 100%;
  }
}

.service-item__title {
  flex: 1;
}

.service-item__title .title-h3 {
  max-width: 550px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .service-item__title .title-h3 {
    font-size: 16px;
  }
}

.service-item__time {
  display: flex;
  align-items: center;
  height: 38px;
  border: 1px solid var(--stroke-in-bg);
  border-radius: 50px;
  padding: 0 22px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: var(--blue);
  opacity: 0.5;
  transition: 0.3s;
}

.service-item__control {
  margin-left: 120px;
}

@media (max-width: 767px) {
  .service-item__control {
    margin-left: 0;
    display: none;
  }
}

.service-item:hover {
  background-color: var(--bg);
}

.service-item:hover .button {
  color: var(--white);
  background-color: var(--blue);
}

.service-item:hover .service-item__time {
  opacity: 1;
}

.service-item:hover .service-item__icon {
  background-color: var(--white);
}

.service-item:hover .service-item__icon img {
  opacity: 0.3;
}

.project-card {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  padding: 40px;
  transition: 0.3s;
}

.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.project-list .project-slider__item {
  width: 32%;
}

@media (max-width: 1200px) {
  .project-card {
    padding: 30px;
    height: 400px;
  }

  .project-list .project-slider__item {
    width: 49%;
  }
}

@media (max-width: 767px) {
  .project-list {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .project-card {
    padding: 25px;
    height: 260px;
  }

  .project-list .project-slider__item {
    width: 80vw;
  }
}

.project-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(12, 22, 55, 0.8) 30%, rgba(255, 255, 255, 0));
  z-index: 1;
}

.project-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  opacity: 0;
  background: url(../../images/project-decor.png) var(--blue) center no-repeat;
  transition: 0.3s;
}

.project-card:hover::after {
  opacity: 1;
}

.project-card:hover .button {
  color: var(--blue);
  background-color: var(--white);
}

.project-card__cover {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.project-card__cover img {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.project-card__info {
  z-index: 5;
}

.project-card__title {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 36px;
  line-height: 125%;
  color: var(--white);
  margin-bottom: 10px;
  z-index: 10;
}

@media (max-width: 1380px) {
  .project-card__title {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .project-card__title {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .project-card__title {
    font-size: 20px;
  }
}

.project-card__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.65);
  opacity: 0;
  transition: 0.3s;
}

.project-card:hover .project-card__descr {
  opacity: 1;
}

.project-card__button {
  z-index: 5;
}

.project-card .button {
  height: 62px;
}

.about-box {
  position: relative;
  padding-bottom: 50px;
}

.about-box::after {
  content: "";
  position: absolute;
  height: 1px;
  bottom: 0;
  left: calc((100vw - 1520px) / -2);
  right: calc((100vw - 1520px) / -2);
  background: var(--stroke-in-bg);
}

@media (max-width: 1600px) {
  .about-box::after {
    left: -40px;
    right: -40px;
  }
}

@media (max-width: 1200px) {
  .about-box::after {
    left: -20px;
    right: -20px;
  }
}

@media (max-width: 767px) {
  .about-box__title .title-h2 {
    font-size: 20px;
    line-height: 1.4;
  }
}

.about-box__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: var(--blue);
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .about-box__descr {
    font-size: 18px;
  }
}

.about-box .more-box {
  text-align: left;
}

.about-box .button-more {
  width: -moz-max-content;
  width: max-content;
  justify-content: left;
}

.about-photo {
  border-radius: 12px;
}

.about-photo img {
  display: block;
  border-radius: 12px;
  max-width: 100%;
}

.news-slider__item {
  height: auto;
}

.news-card {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-radius: 12px;
  padding: 35px;
  min-height: 350px;
  height: 100%;
  background: var(--white);
  z-index: 1;
}

@media (max-width: 1380px) {
  .news-card {
    padding: 25px;
  }
}

.news-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  background: url(../../images/news-decor.png) var(--blue) center no-repeat;
  opacity: 0;
  transition: 0.3s;
  z-index: -1;
}

.news-card__title {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 24px;
  line-height: 125%;
  color: var(--blue);
  width: 100%;
  margin-bottom: 40px;
}

@media (max-width: 1200px) {
  .news-card__title {
    font-size: 20px;
    line-height: 1.3;
  }
}

.news-card__data {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: var(--gray-text);
  opacity: 0.5;
  display: flex;
  align-items: flex-end;
}

.news-card__thumb {
  display: flex;
  align-items: flex-end;
  border-radius: 5px;
  order: 3;
}

.news-card__thumb img {
  display: block;
  width: 150px;
  height: 150px;
  border-radius: 5px;
}

.news-card:hover::after {
  opacity: 1;
}

.news-card:hover .news-card__title {
  color: var(--white);
  z-index: 5;
}

.news-card:hover .news-card__data {
  color: rgba(255, 255, 255, 0.65);
}

.product-info .tabs__header {
  margin-bottom: 60px;
}

@media (max-width: 992px) {
  .product-info .tabs__header {
    margin-bottom: 20px;
  }
}

.product-info p {
  color: var(--gray-dark);
}

.product-info li {
  color: var(--gray-dark);
}

.product-info-title {
  font-weight: 300;
  font-size: 22px;
  line-height: 130%;
  color: var(--black);
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .product-info-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 0;
  }

  .product-info-title::after {
    content: "";
    width: 24px;
    height: 24px;
    background: url(../../images/chevron-down.svg) center no-repeat;
    transition: 0.2s;
  }

  .product-info-title.open::after {
    transform: rotate(180deg);
  }
}

.product-info .info-list {
  color: var(--black);
}

@media (min-width: 992px) {
  .product-info .card-param {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .product-info .card-param {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .product-info .tabs__box {
    display: block;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--stroke-in-bg);
  }

  .product-info .tabs__box:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .product-info .tabs__box .product-info-wrap {
    display: none;
    padding: 25px 0 15px 0;
  }

  .product-info .tabs__header {
    display: none;
  }
}

.product-info-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 0;
}

@media (max-width: 1380px) {
  .product-info-title {
    font-size: 24px;
    color: var(--blue);
  }
}

.product-info-title::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../../images/chevron-down.svg) center no-repeat;
  transition: 0.2s;
}

@media (min-width: 568px) {
  .product-info-title {
    display: none;
  }
}

.product-info-wrap._cols {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

@media (max-width: 992px) {
  .product-info-wrap._cols {
    flex-direction: column;
    gap: 30px;
  }
}

.product-info-wrap__col {
  width: 50%;
}

.product-info-wrap__col:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media (max-width: 992px) {
  .product-info-wrap__col {
    width: 100%;
    margin-bottom: 30px;
  }

  .product-info-wrap__col:last-child {
    margin-bottom: 0;
  }
}

.product-info-wrap .text-block {
  margin-bottom: 25px;
}

.product-info-wrap .text-block p {
  margin-bottom: 15px;
  margin-top: 0;
}

.product-info-wrap .text-block:last-child {
  margin-bottom: 0;
}

.card-info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 627px;
  width: 100%;
  height: 305px;
  border-radius: 15px;
  padding: 30px;
  background-color: var(--blue);
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 992px) {
  .card-info {
    max-width: 100%;
  }
}

.card-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: url(../../images/equipment-decor.png) center no-repeat;
}

.card-info__text {
  max-width: 300px;
}

.card-info__title {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 24px;
  line-height: 125%;
  color: var(--white);
  margin-bottom: 15px;
}

.card-info__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: var(--white);
  opacity: 0.7;
}

.card-info__thumb {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.card-info__thumb img {
  display: block;
  max-width: 100%;
}

.card-info__sert {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.3);
}

.option-card {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 12px;
  padding: 30px;
  background-color: var(--white);
  height: 100%;
}

@media (max-width: 1380px) {
  .option-card {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .option-card {
    padding: 10px 20px;
  }
}

.option-card__abbreviation {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 30px;
  line-height: 120%;
  color: var(--blue);
}

@media (max-width: 767px) {
  .option-card__abbreviation {
    width: 44px;
  }
}

.option-card__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--blue);
  flex: 1;
}

@media (max-width: 992px) {
  .row>div:last-child>.model-list {
    margin-bottom: 0;
  }
}

@media (max-width: 992px) {
  .model-list {
    margin-bottom: 30px;
  }
}

.model-list table {
  width: 100%;
  border-collapse: separate;
  overflow: hidden;
}

.model-list thead {
  border: none;
}

.model-list th {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: left;
  color: var(--gray-text);
  padding: 0 15px 15px;
}

@media (max-width: 767px) {
  .model-list th {
    padding: 0 8px 10px;
  }
}

.model-list th:first-child {
  padding-left: 30px;
}

@media (max-width: 767px) {
  .model-list th:first-child {
    padding-left: 10px;
  }
}

.model-list th:last-child {
  padding-right: 30px;
}

@media (max-width: 767px) {
  .model-list th:last-child {
    padding-right: 10px;
  }
}

.model-list tbody {
  position: relative;
}

.model-list tbody::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border: 1px solid var(--stroke-in-bg);
  border-radius: 15px;
}

.model-list tbody tr:nth-child(even) {
  background: rgba(76, 110, 151, 0.05);
}

.model-list td {
  padding: 15px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: var(--blue);
}

@media (max-width: 767px) {
  .model-list td {
    padding: 10px 8px;
    font-size: 16px;
  }
}

.model-list td:first-child {
  font-weight: 600;
  padding-left: 30px;
}

@media (max-width: 767px) {
  .model-list td:first-child {
    padding-left: 10px;
  }
}

.model-list td:last-child {
  padding-right: 30px;
}

@media (max-width: 767px) {
  .model-list td:last-child {
    padding-right: 10px;
  }
}

.doc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.doc-card {
  display: flex;
  flex-direction: column;
  width: 370px;
  /*height: 193px;*/
  border-radius: 15px;
  padding: 30px;
  background-color: var(--white);
}

@media (max-width: 767px) {
  .doc-card {
    width: 100%;
    height: auto;
    min-height: 160px;
    padding: 20px;
  }
}

.doc-card__icon {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .doc-card__icon {
    margin-bottom: 15px;
  }
}

.doc-card__icon img {
  display: block;
  width: 100%;
}

.doc-card__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 22px;
  line-height: 125%;
  color: var(--blue);
  margin-bottom: 10px;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .doc-card__title {
    font-size: 20px;
  }
}

.doc-card__size {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--blue);
  transition: 0.3s;
}

.doc-card:hover .doc-card__size,
.doc-card:hover .doc-card__title {
  color: var(--blue-hover);
}

.tabs__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  overflow: hidden;
}

@media (max-width: 1380px) {
  .tabs__header {
    position: relative;
  }

  .tabs__header::after {
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--stroke-in-bg);
  }
}

@media (max-width: 767px) {
  .tabs__header {
    width: 100%;
    margin-bottom: 20px;
    height: 48px;
  }
}

.tabs__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 20%;
  height: 64px;
  white-space: nowrap;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: var(--blue);
  opacity: 0.5;
  transition: 0.3s;
  border-bottom: 1px solid var(--stroke-in-bg);
}

.tabs__item::before {
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 1380px) {
  .tabs__item {
    width: auto;
  }
}

@media (max-width: 992px) {
  .tabs__item {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .tabs__item {
    height: 48px;
    padding: 0 8px;
    width: 100%;
    font-size: 14px;
  }
}

.tabs__item:hover {
  opacity: 1;
}

.tabs__item.active {
  opacity: 1;
  border-bottom: 1px solid var(--blue);
  position: relative;
  z-index: 1;
}

.tabs__item.active::before {
  filter: brightness(0) invert(1);
}

.product-page {
  display: flex;
  gap: 20px;
  border-radius: 20px;
  padding: 40px;
  background: var(--white);
}

@media (max-width: 1200px) {
  .product-page {
    flex-direction: column;
  }
}

@media (max-width: 992px) {
  .product-page {
    padding: 25px;
  }
}

@media (max-width: 767px) {
  .product-page {
    padding: 20px;
  }
}

.product-page__gallery {
  width: 755px;
  display: flex;
  gap: 10px;
}

@media (max-width: 1600px) {
  .product-page__gallery {
    width: 50%;
  }
}

@media (max-width: 1200px) {
  .product-page__gallery {
    width: 100%;
    order: 1;
  }
}

.product-page__detail {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-left: 60px;
  flex: 1;
}

@media (max-width: 1600px) {
  .product-page__detail {
    padding-left: 40px;
  }
}

@media (max-width: 1200px) {
  .product-page__detail {
    width: auto;
    gap: 30px;
    order: 3;
    padding-left: 0;
  }
}

.product-title {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .product-title {
    font-size: 26px;
  }
}

.product-descr a {
  color: #ffa500
}

.product-descr a:hover {
  color: #01306b
}

.product-descr__more {
  margin-top: 15px;
}

.product-descr__more a {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: var(--gray-text);
  border-bottom: 2px solid;
  cursor: pointer;
}

.product-descr__more a:hover {
  border-bottom-color: transparent;
}

.product-params__title {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 22px;
  line-height: 140%;
  color: #3f8ef1;
}

.product-params__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.param-tag {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: var(--blue);
  opacity: 0.5;
  padding: 0 22px;
  border: 1px solid var(--stroke-in-bg);
  border-radius: 50px;
  height: 38px;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 992px) {
  .product-controls .button {
    width: 100%;
  }
}

.product-gallery {
  position: relative;
  overflow: hidden;
  height: 570px;
  width: 100%;
}

@media (max-width: 992px) {
  .product-gallery {
    width: 100%;
    height: 540px;
  }
}

@media (max-width: 767px) {
  .product-gallery {
    height: 360px;
  }
}

@media (max-width: 767px) {
  .product-gallery {
    height: 260px;
  }
}

.product-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  mix-blend-mode: darken;
  border-radius: 10px;
}

.product-gallery .card-label {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 99;
}

@media (max-width: 767px) {
  .product-gallery .card-label {
    top: 0;
    left: 0;
  }
}

.product-gallery .swiper-scrollbar {
  display: none;
}

@media (max-width: 992px) {
  .product-gallery .swiper-scrollbar {
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
  }
}

.product-gallery .swiper-pagination {
  bottom: 44px;
}

@media (max-width: 992px) {
  .product-gallery .swiper-pagination {
    bottom: 0;
  }
}

.product-gallery:hover .card-fav,
.product-gallery:hover .swiper-button {
  opacity: 1;
}

.product-gallery:hover .swiper-button-next.swiper-button-disabled,
.product-gallery:hover .swiper-button-prev.swiper-button-disabled {
  opacity: 1 !important;
}

.product-thumb-box {
  position: relative;
  display: flex;
  align-items: center;
}

@media (max-width: 992px) {
  .product-thumb-box {
    display: none;
  }
}

.product-thumb-box .swiper-button {
  left: 50%;
  margin: 0 0 0 -15px;
  width: 30px;
  height: 30px;
}

.product-thumb-box .swiper-button::after {
  width: 10px;
  height: 10px;
  background-size: contain;
}

.product-thumb-box .swiper-button-prev {
  top: 0;
}

.product-thumb-box .swiper-button-prev::after {
  transform: rotate(90deg);
}

.product-thumb-box .swiper-button-next {
  top: auto;
  bottom: 0;
}

.product-thumb-box .swiper-button-next::after {
  transform: rotate(90deg);
}

.product-gallery-thumb {
  height: 450px;
  overflow: hidden;
  opacity: 0;
}

.product-gallery-thumb.swiper-initialized {
  opacity: 1;
}

.product-gallery-thumb__item {
  cursor: pointer;
  border-radius: 10px;
  width: 140px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--gray-element);
  border-radius: 5px;
  overflow: hidden;
  opacity: 0.6;
}

.product-gallery-thumb__item:hover {
  opacity: 1;
}

.product-gallery-thumb .swiper-slide-thumb-active {
  opacity: 1;
}

.product-gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 6px;
}

.gallery-photo {
  position: relative;
}

.gallery-photo::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--light-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../../images/icon-zoom-in.svg);
  opacity: 0;
  transition: 0.3s;
}

@media (min-width: 1200px) {
  .gallery-photo:hover::after {
    opacity: 1;
  }
}


.product-slider {
  position: relative;
  overflow: hidden;
  height: 570px;
  width: 100%;
}

@media (max-width: 992px) {
  .product-slider {
    width: 100%;
    height: 540px;
  }
}

@media (max-width: 767px) {
  .product-slider {
    height: 360px;
  }
}

@media (max-width: 767px) {
  .product-slider {
    height: 260px;
  }
}

.product-slider img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  mix-blend-mode: darken;
  border-radius: 10px;
}

.product-slider .card-label {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 99;
}

@media (max-width: 767px) {
  .product-slider .card-label {
    top: 0;
    left: 0;
  }
}

.product-slider .swiper-scrollbar {
  display: none;
}

@media (max-width: 992px) {
  .product-slider .swiper-scrollbar {
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
  }
}

.product-slider .swiper-pagination {
  bottom: 44px;
}

@media (max-width: 992px) {
  .product-slider .swiper-pagination {
    bottom: 20px;
  }
}

.product-slider:hover .card-fav,
.product-slider:hover .swiper-button {
  opacity: 1;
}

.product-slider:hover .swiper-button-next.swiper-button-disabled,
.product-slider:hover .swiper-button-prev.swiper-button-disabled {
  opacity: 1 !important;
}





.popup {

  border-radius: 8px;
  max-width: 715px;
  width: 100%;
  padding: 50px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-family);
}

@media (max-width: 767px) {
  .popup {
    padding: 24px;
  }
}

.popup._sending {
  text-align: center;
}

.popup-title {
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .popup-title {
    font-size: 32px;
  }
}

.popup-note {
  font-size: 20px;
  line-height: 150%;
  color: var(--grey);
}

@media (max-width: 767px) {
  .popup-note {
    font-size: 16px;
  }
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}

.popup-form .button {
  min-width: 210px;
}

.popup-form__fields {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
}

.popup-form__fields .form-field {
  width: 50%;
  padding: 5px;
}

@media (max-width: 767px) {
  .popup-form__fields .form-field {
    width: 100%;
  }
}

.popup-form__footer {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 767px) {
  .popup-form__footer {
    flex-direction: column;
    gap: 20px;
  }
}

.popup-form__footer .button {
  width: 300px;
}

@media (max-width: 767px) {
  .popup-form__footer .button {
    width: 100%;
    order: 2;
  }
}

.footer {
  background: var(--black);
  color: var(--white);
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer__wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 70px;
}

@media (max-width: 992px) {
  .footer__wrap {
    padding-top: 40px;
  }
}

@media (max-width: 767px) {
  .footer__wrap {
    padding-top: 30px;
  }
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 36px;
}

@media (max-width: 767px) {
  .footer__top {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

.footer__info {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-weight: 500;
  font-size: 14px;
  color: var(--gray-text-light);
  padding: 50px 0;
}

@media (max-width: 767px) {
  .footer__info {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .footer__info {
    padding: 30px 0;
  }
}

.footer__info::before {
  content: "";
  position: absolute;
  height: 1px;
  top: 0;
  left: calc((100vw - 1520px) / -2);
  right: calc((100vw - 1520px) / -2);
  background-color: rgba(255, 255, 255, 0.12);
}

@media (max-width: 1600px) {
  .footer__info::before {
    left: -40px;
    right: -40px;
  }
}

@media (max-width: 1200px) {
  .footer__info::before {
    left: -20px;
    right: -20px;
  }
}

.footer-soc__title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 32px;
  line-height: 110%;
  color: var(--white);
  margin-bottom: 30px;
}

.footer-logo img {
  display: block;
}

.footer-info {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--white);
  opacity: 0.5;
}

.footer-info:hover {
  opacity: 1;
}

.footer-copyright {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 767px) {
  .footer-copyright {
    text-align: center;
  }
}

.footer-dev {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--white);
  opacity: 0.5;
}

@media (max-width: 992px) {
  .footer-dev {
    position: absolute;
    left: 0;
    bottom: 155px;
  }
}

@media (max-width: 767px) {
  .footer-dev {
    position: static;
  }
}

.footer-dev a {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-dev:hover {
  opacity: 1;
}

.footer-dev img {
  display: block;
}

.footer-nav {
  height: 180px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 34px;
}

@media (max-width: 1380px) {
  .footer-nav {
    height: 120px;
    gap: 20px;
  }
}

@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__item {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 24px;
  line-height: 125%;
  color: var(--white);
  margin-right: 16px;
}

@media (max-width: 1380px) {
  .footer-nav__item {
    font-size: 20px;
  }
}

.footer-nav__item:hover {
  color: rgba(255, 255, 255, 0.5);
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (max-width: 1380px) {
  .footer-contacts {
    gap: 20px;
  }
}

.footer-contacts__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contacts__info a {
  display: block;
}

.footer-contacts__mail {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: var(--white);
  text-decoration: underline;
  opacity: 0.5;
}

@media (max-width: 1380px) {
  .footer-contacts__mail {
    font-size: 18px;
  }
}

.footer-contacts__mail:hover {
  opacity: 1;
}

.footer-contacts__address {
  display: flex;
  flex-direction: column;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--white);
}

@media (max-width: 767px) {
  .footer-contacts {
    width: 100%;
  }
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 767px) {
  .footer-contact {
    justify-content: center;
    margin: 20px 0 10px;
  }
}

.footer-contact__phone {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 30px;
  line-height: 120%;
  color: var(--white);
}

@media (max-width: 1380px) {
  .footer-contact__phone {
    font-size: 26px;
  }
}

.footer-contact__phone:hover {
  opacity: 0.5;
}

.footer-contact__soc {
  display: flex;
  align-items: center;
  gap: 11px;
}

.footer-contact__soc img {
  display: block;
}

.footer-contact__soc a:hover img {
  filter: brightness(0) invert(1);
}


.main-nav__item a.main-nav__link.active {
  color: orange;
}


.drop-nav div.drop-nav__item a.drop-nav__link.active {
  color: orange;
}




.error {
  border: 1px solid red !important;
  background: red;
}


.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;
  display: block;
}

.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: url(../../images/checkbox.svg) center no-repeat;
  border: 1px solid var(--red);
}

.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);
}

.gal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.gal .gal-img {
  width: 33%;
}

.gal-img img {
  width: 100%;
  max-width: 490px;
}

.event-card__title {
  margin-bottom: 15px;
}

.gal-img strong {
  display: block;
}

@media (max-width: 1100px) {
  .gal .gal-img {
    width: 49%;
  }

}


@media (max-width: 510px) {
  .gal .gal-img {
    width: 100%;
  }
}

.gal-client {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  background-color: #fff;
}

.gal-client .gal-img-client {
  width: 20%;
  padding: 0 10px;
}

.gal-img img-client {
  width: 100%;
  max-width: 200px;
}

@media (max-width: 1100px) {
  .gal-client .gal-img-client {
    width: 33%;
  }
}


@media (max-width: 510px) {
  .gal-client {
    justify-content: center;
  }

  .gal-client .gal-img-client {
    width: 100%;
    text-align: center;
  }
}


.mobil_promo {
  display: none;
}

.text-block__content a {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  text-decoration: underline
}

.text-block__content a:hover {
  text-decoration: none
}

@media (max-width: 467px) {
  .mobil_promo {
    display: block !important;
  }

  .promo-box {
    display: none;
  }

}

.project-slider {
  overflow: hidden;
}

.container section.section-sm.typography ul li a:hover {
  text-decoration: underline;
  color: gray;
}
/* Stylesheet: Стиль Modified On 2026-07-23 18:41:52 */
