/* Document */
/* ================================= */
html {
  line-height: 130%;
  -webkit-text-size-adjust: 100%;
}

/* Sections */
/* ================================= */
body {
  margin: 0;
}

main {
  display: block;
}

/* Grouping content */
/* ================================= */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Text-level semantics */
/* ================================= */
a {
  background-color: transparent;
  text-decoration: none;
  color: unset;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ================================= */
img {
  border-style: none;
}

/* Forms */
/* ================================= */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

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

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive */
/* ================================= */
details {
  display: block;
}

summary {
  display: list-item;
}

/* Misc */
/* ================================= */
template {
  display: none;
}

[hidden] {
  display: none;
}

html {
  padding: 0;
  margin: 0;
  height: 100%;
  font-family: "Montserrat", sans-serif;
  color: #232323;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  will-change: background-color;
  transition: background-color 0.2s ease-in-out 0s;
  background-color: #04000f;
}
html.theme-light {
  background-color: #ececec;
}
html.theme-light::-webkit-scrollbar-thumb {
  border: 3px #ececec solid;
}
html::-webkit-scrollbar {
  width: 10px;
}
html::-webkit-scrollbar-thumb {
  background-color: #00b2ff;
  border-radius: 10px;
  border: 3px #04000f solid;
}
html::-webkit-scrollbar-track {
  background-color: transparent;
}
@media (max-width: 750px) {
  html::-webkit-scrollbar {
    display: none;
  }
}

.page {
  position: relative;
  overflow-x: hidden;
  margin: 0 auto;
  padding: 0;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
}
.page.lock {
  overflow: hidden;
  touch-action: none;
  -ms-touch-action: none;
}
.page.lock .page__blackout {
  opacity: 0.9;
  pointer-events: all;
  visibility: visible;
}
.page__preloader {
  width: 100%;
  height: 100vh;
  z-index: 500;
}
.page__blackout {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  visibility: hidden;
  pointer-events: none;
  z-index: 55;
  background-color: #000000;
  opacity: 0;
  cursor: pointer;
  will-change: opacity, visibility;
  transition: opacity 0.3s ease-in-out 0s, visibility 0.3s ease-in-out 0s;
}
@media (max-width: 950px) {
  .page__blackout {
    display: flex;
  }
}
@media (min-width: 950px) {
  .page__blackout {
    display: none;
  }
}
.page__lang-modal {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 30;
}
.page__header {
  position: fixed;
  left: 0;
  top: 0;
  height: 130px;
  width: 100%;
}
.page__header.theme-dark, .page__header.theme-light {
  height: 75px;
}
@media (max-width: 750px) {
  .page__header {
    height: 100px;
  }
  .page__header.theme-dark, .page__header.theme-light {
    height: 60px;
  }
}
.page__mobile {
  position: fixed;
  right: 0;
  top: 0;
  width: 330px;
  max-width: 100%;
  height: 100vh;
}
.page__content {
  position: relative;
  z-index: 1;
  padding-top: 150px;
  width: 100%;
  min-height: 100vh;
}
@media (max-width: 750px) {
  .page__content {
    padding-top: 100px;
  }
}
.page__footer {
  position: static;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  background-color: #00245b;
}

.container {
  margin: 0 auto;
  position: relative;
  display: flex;
  max-width: 1100px;
  width: 100%;
  padding: 0 25px;
}
@media (max-width: 1200px) {
  .container {
    max-width: 900px;
  }
}
@media (max-width: 950px) {
  .container {
    max-width: 700px;
  }
}
@media (max-width: 750px) {
  .container {
    max-width: 500px;
    padding: 0 20px;
  }
}
@media (max-width: 550px) {
  .container {
    max-width: calc(100% - 30px);
    padding: 0 15px;
  }
}

.content {
  background-color: #ececec;
}
.content__default-section, .content__big-section {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
.content__default-section {
  row-gap: 30px;
  column-gap: 0;
}
.content__big-section {
  row-gap: 50px;
  column-gap: 0;
}
.content__intro {
  margin-top: -150px;
  background-color: #232323;
}
.content__about, .content__cards, .content__system, .content__solutions, .content__request, .content__request.modal, .content__contacts, .content__catalog {
  padding: 50px 0;
}
.content__features {
  padding: 50px 0 40px 0;
}
.content__functionality {
  padding: 50px 0 0 0;
}
@media (max-width: 750px) {
  .content__intro {
    margin-top: -100px;
    background-color: #232323;
  }
  .content__about, .content__cards, .content__system, .content__solutions, .content__request, .content__request.modal, .content__contacts, .content__catalog {
    padding: 40px 0;
  }
  .content__features {
    padding: 40px 0 30px 0;
  }
  .content__functionality {
    padding: 40px 0 0 0;
  }
}

h1,
h2,
h3,
h4,
p,
a {
  margin: 0;
  padding: 0;
  line-height: 140%;
  font-weight: 500;
  color: #232323;
}
h1.fs,
h2.fs,
h3.fs,
h4.fs,
p.fs,
a.fs {
  font-size: 12px;
}
h1.fxs,
h2.fxs,
h3.fxs,
h4.fxs,
p.fxs,
a.fxs {
  font-size: 14px;
}
h1.fm,
h2.fm,
h3.fm,
h4.fm,
p.fm,
a.fm {
  font-size: 16px;
}
h1.fl,
h2.fl,
h3.fl,
h4.fl,
p.fl,
a.fl {
  font-size: 18px;
}
h1.fxl,
h2.fxl,
h3.fxl,
h4.fxl,
p.fxl,
a.fxl {
  font-size: 22px;
}
h1.wsb,
h2.wsb,
h3.wsb,
h4.wsb,
p.wsb,
a.wsb {
  font-weight: 500;
}
h1.wm,
h2.wm,
h3.wm,
h4.wm,
p.wm,
a.wm {
  font-weight: 600;
}
h1.wb,
h2.wb,
h3.wb,
h4.wb,
p.wb,
a.wb {
  font-weight: 700;
}
h1.cbl,
h2.cbl,
h3.cbl,
h4.cbl,
p.cbl,
a.cbl {
  color: #00b2ff;
}
h1.cbm,
h2.cbm,
h3.cbm,
h4.cbm,
p.cbm,
a.cbm {
  color: #012e71;
}
h1.cw,
h2.cw,
h3.cw,
h4.cw,
p.cw,
a.cw {
  color: #ffffff;
}
h1.up,
h2.up,
h3.up,
h4.up,
p.up,
a.up {
  text-transform: uppercase;
}
h1.link,
h2.link,
h3.link,
h4.link,
p.link,
a.link {
  color: #384fca;
  text-decoration: underline;
  cursor: pointer;
  will-change: color;
  transition: color 0.2s ease-in-out 0s;
}
h1.link:hover,
h2.link:hover,
h3.link:hover,
h4.link:hover,
p.link:hover,
a.link:hover {
  color: #4b60cc;
}
h1.link.cw,
h2.link.cw,
h3.link.cw,
h4.link.cw,
p.link.cw,
a.link.cw {
  color: #ffffff;
  cursor: pointer;
  will-change: color;
  transition: color 0.2s ease-in-out 0s;
}
h1.link.cw:hover,
h2.link.cw:hover,
h3.link.cw:hover,
h4.link.cw:hover,
p.link.cw:hover,
a.link.cw:hover {
  color: #ffffff;
}
h1 > .span,
h2 > .span,
h3 > .span,
h4 > .span,
p > .span,
a > .span {
  color: #00b2ff;
}
h1 > .span-dark,
h2 > .span-dark,
h3 > .span-dark,
h4 > .span-dark,
p > .span-dark,
a > .span-dark {
  color: #384fca;
}
@media (max-width: 750px) {
  h1.fxs,
  h2.fxs,
  h3.fxs,
  h4.fxs,
  p.fxs,
  a.fxs {
    font-size: 14px;
  }
  h1.fm,
  h2.fm,
  h3.fm,
  h4.fm,
  p.fm,
  a.fm {
    font-size: 14px;
  }
  h1.fl,
  h2.fl,
  h3.fl,
  h4.fl,
  p.fl,
  a.fl {
    font-size: 16px;
  }
  h1.fxl,
  h2.fxl,
  h3.fxl,
  h4.fxl,
  p.fxl,
  a.fxl {
    font-size: 18px;
  }
}

h1,
h2 {
  text-transform: uppercase;
  font-weight: 700;
}

h1 {
  font-size: 30px;
  line-height: 130%;
  color: #ffffff;
}
@media (max-width: 750px) {
  h1 {
    font-size: 24px;
  }
}

h2 {
  font-size: 26px;
}
@media (max-width: 750px) {
  h2 {
    font-size: 22px;
  }
}

.entry {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 8px;
  column-gap: 0;
}
.entry__title, .entry__line, .entry__description {
  width: 100%;
}
.entry__title {
  padding-top: 100px;
  margin-top: -100px;
}
.entry__line {
  margin: 0;
  background-color: #232323;
}
.entry__description {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  max-width: 800px;
}
.entry__content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  row-gap: 0;
  column-gap: 30px;
}
.entry__content-description {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 8px;
  column-gap: 0;
}
.entry__icon img {
  height: 100%;
  max-height: 90px;
}
@media (max-width: 750px) {
  .entry__content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: 50px;
    column-gap: 0;
  }
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 0;
  margin: 0;
  height: 46px;
  width: 100%;
  border-radius: 10px;
  border: none;
  outline: none;
  cursor: pointer;
  will-change: border-radius, background-color;
  transition: border-radius 0.2s ease-in-out 0s, background-color 0.2s ease-in-out 0s;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  line-height: 100%;
}
.btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 100%;
  height: 100%;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  line-height: 100%;
  background-color: transparent;
}
.btn:hover {
  border-radius: 20px;
}
.btn:active {
  border-radius: 10px;
}
.btn__accent {
  background: linear-gradient(125deg, rgb(12, 105, 255) 30%, rgb(48, 205, 255) 100%);
  white-space: nowrap;
  min-width: 230px;
}
.btn__fill {
  height: auto;
  padding: 13.5px 25px;
  line-height: 130%;
  background-color: #4b60cc;
}
.btn__fill:hover {
  background-color: #384fca;
}
.btn__disabled {
  opacity: 0.5;
  pointer-events: none;
}
.btn__clear {
  border: 2px #ffffff solid;
  height: 42px;
  min-width: 240px;
  background-color: rgba(236, 236, 236, 0.1);
  backdrop-filter: blur(10px);
}
.btn__clear:hover {
  background-color: rgba(236, 236, 236, 0);
}
@media (max-width: 750px) {
  .btn__accent {
    padding: 0 30px;
    min-width: fit-content;
  }
  .btn__clear {
    min-width: fit-content;
    width: calc(100% - 2px);
  }
  .btn__clear a {
    padding: 0 29px;
  }
}

.form {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 30px;
  column-gap: 0;
}
.form__main, .form__commerce-info {
  width: 100%;
}
.form__main {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  row-gap: 15px;
  column-gap: 0;
  width: 100%;
}
.form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  row-gap: 15px;
  column-gap: 15px;
}
.form__inp {
  height: 46px;
  padding: 0 15px;
  background-color: transparent;
  border-radius: 10px;
  border: 1px #232323 solid;
  outline: none;
  font-size: 15px;
  font-weight: 500;
  color: #232323;
}
.form__inp::placeholder {
  color: #232323;
}
.form__area {
  height: 92px;
  padding: 15px;
  resize: none;
  background-color: transparent;
  border-radius: 10px;
  border: 1px #232323 solid;
  outline: none;
  font-size: 15px;
  font-weight: 500;
  color: #232323;
}
.form__area::placeholder {
  color: #232323;
}
.form .form-input.error {
  border: 1px #e32636 solid;
  animation: shake 0.5s ease;
}
.form .form-input.error::-webkit-input-placeholder {
  color: #e32636;
}
.form .form-input.error:-ms-input-placeholder {
  color: #e32636;
}
.form .form-input.error::-moz-placeholder {
  color: #e32636;
}
.form .form-input.error:-moz-placeholder {
  color: #e32636;
}
.form__commerce-info {
  font-size: 12px;
}
@media (max-width: 750px) {
  .form {
    row-gap: 20px;
    column-gap: 0;
  }
  .form__main {
    row-gap: 10px;
    column-gap: 0;
  }
  .form__grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    row-gap: 10px;
    column-gap: 0;
  }
}

.frame-video {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  height: 540px;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}
.frame-video.half {
  height: 400px;
}
.frame-video > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 950px) {
  .frame-video {
    height: 400px;
  }
  .frame-video.half {
    height: 300px;
  }
}
@media (max-width: 750px) {
  .frame-video {
    height: 300px;
  }
  .frame-video.half {
    height: 250px;
  }
}
@media (max-width: 550px) {
  .frame-video {
    height: 230px;
  }
}

@keyframes shake {
  0% {
    transform: translateX(-5px);
  }
  20% {
    transform: translateX(5px);
  }
  40% {
    transform: translateX(-5px);
  }
  60% {
    transform: translateX(5px);
  }
  80% {
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(5px);
  }
}
.preloader {
  background-color: #04000f;
  overflow: hidden;
  position: fixed;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.preloader.hidden {
  visibility: hidden;
}
.preloader__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 15px;
  column-gap: 0;
}
.preloader__pic {
  width: 400px;
}
@media (max-width: 550px) {
  .preloader__pic {
    width: 300px;
  }
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  z-index: 50;
  will-change: background-color, height, border-bottom, backdrop-filter;
  transition: background-color 0.2s ease-in-out 0s, height 0.2s ease-in-out 0s, border-bottom 0.2s ease-in-out 0s, backdrop-filter 0.2s ease-in-out 0s;
}
.header.theme-dark {
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.53);
}
.header.theme-light {
  backdrop-filter: none;
  box-shadow: rgba(0, 0, 0, 0.15) 3px 3px 5.5px;
  background-color: #ececec;
}
.header__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.header__commerce {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  height: fit-content;
  width: fit-content;
}
.header__logo {
  min-height: 50px;
  max-height: 50px;
  min-width: 250px;
  max-width: 250px;
  will-change: max-height, min-height, min-width, max-width, fill;
  transition: max-height 0.3s ease-in-out 0s, min-height 0.3s ease-in-out 0s, min-width 0.3s ease-in-out 0s, max-width 0.3s ease-in-out 0s, fill 0.3s ease-in-out 0s;
}
.header.theme-dark .header__logo {
  min-height: 42px;
  max-height: 42px;
  min-width: 210px;
  max-width: 210px;
}
.header.theme-light .header__logo #vector-logo-text {
  fill: #363636;
}
.header__contacts {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: column;
  min-height: 50px;
  max-height: 50px;
  will-change: max-height, min-height;
  transition: max-height 0.2s ease-in-out 0s, min-height 0.2s ease-in-out 0s;
}
.header.theme-dark .header__contacts, .header.theme-light .header__contacts {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
  min-height: 42px;
  max-height: 42px;
}
.header__contact-grid {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
  row-gap: 0;
  column-gap: 15px;
}
.header__contact-link {
  cursor: pointer;
  will-change: color;
  transition: color 0.2s ease-in-out 0s;
  color: #ffffff;
}
.header__contact-link:hover {
  color: #00b2ff;
}
.header.theme-light .header__contact-link {
  cursor: pointer;
  will-change: color;
  transition: color 0.2s ease-in-out 0s;
  color: #232323;
}
.header.theme-light .header__contact-link:hover {
  color: #384fca;
}
.header__nav {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
  min-height: 55px;
  will-change: min-height;
  transition: min-height 0.2s ease-in-out 0s;
}
.header.theme-dark .header__nav, .header.theme-light .header__nav {
  min-height: 0;
}
.header__nav-body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  row-gap: 0;
  column-gap: 30px;
}
.header__item > a {
  cursor: pointer;
  will-change: color;
  transition: color 0.2s ease-in-out 0s;
}
.header__item > a:hover {
  color: #00b2ff;
}
.header.theme-light .header__item > a {
  color: #232323;
  cursor: pointer;
  will-change: color;
  transition: color 0.2s ease-in-out 0s;
}
.header.theme-light .header__item > a:hover {
  color: #384fca;
}
.header__item-category {
  position: relative;
}
.header__item-category p {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  row-gap: 0;
  column-gap: 5px;
  cursor: pointer;
  will-change: color;
  transition: color 0.2s ease-in-out 0s;
  cursor: pointer;
}
.header__item-category p:hover {
  color: #ffffff;
}
.header__item-category p::after {
  content: "";
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.header.theme-light .header__item-category > p {
  color: #232323;
  cursor: pointer;
  will-change: color;
  transition: color 0.2s ease-in-out 0s;
}
.header.theme-light .header__item-category > p:hover {
  color: #232323;
}
.header__category {
  position: absolute;
  top: 28px;
  left: 0;
  overflow: hidden;
  width: max-content;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  border-radius: 10px;
  border: 1px #ffffff solid;
  background-color: rgba(236, 236, 236, 0.3);
  will-change: opacity, visibility, background-color;
  transition: opacity 0.2s ease-in-out 0s, visibility 0.2s ease-in-out 0s, background-color 0.2s ease-in-out 0s;
}
.header__item-category:hover .header__category {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.header.theme-dark .header__category {
  background-color: rgba(0, 0, 0, 0.7);
}
.header.theme-light .header__category {
  border: 1px #232323 solid;
  background-color: #ececec;
  box-shadow: rgba(0, 0, 0, 0.15) 3px 3px 5.5px;
}
.header__category-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  will-change: background-color;
  transition: background-color 0.2s ease-in-out 0s;
}
.header__category-item_title {
  background-color: rgba(236, 236, 236, 0.2);
  border-bottom: 1px #ffffff solid;
}
.header__category-item a {
  cursor: pointer;
  will-change: color;
  transition: color 0.2s ease-in-out 0s;
  width: 100%;
  padding: 14px;
}
.header__category-item a:hover {
  color: #ffffff;
}
.header__category-item:hover {
  background-color: rgba(236, 236, 236, 0.4);
}
.header.theme-dark .header__category-item_title {
  background-color: rgba(236, 236, 236, 0.1);
}
.header.theme-dark .header__category-item:hover {
  background-color: rgba(236, 236, 236, 0.2);
}
.header.theme-light .header__category-item_title {
  background-color: transparent;
  border-bottom: 1px #232323 solid;
}
.header.theme-light .header__category-item a {
  cursor: pointer;
  will-change: color;
  transition: color 0.2s ease-in-out 0s;
  color: #232323;
}
.header.theme-light .header__category-item a:hover {
  color: #232323;
}
.header.theme-light .header__category-item:hover {
  background-color: #ffffff;
}
.header__open {
  position: relative;
  border-radius: 50%;
  width: 13px;
  height: 13px;
  background: url("/assets/img/icons/icon-down-light.svg") center no-repeat;
  background-size: 100%;
  will-change: background-color, box-shadow;
  transition: background-color 0.2s ease-in-out 0s, box-shadow 0.2s ease-in-out 0s;
}
.header__open::before {
  content: "";
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  will-change: opacity;
  transition: opacity 0.2s ease-in-out 0s;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 100%;
  opacity: 0;
  background: #ffffff;
}
.header__item-category:hover .header__open {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 7px 3px rgba(255, 255, 255, 0.3);
  -moz-box-shadow: 0px 0px 7px 3px rgba(255, 255, 255, 0.3);
  box-shadow: 0px 0px 7px 3px rgba(255, 255, 255, 0.3);
}
.header__item-category:hover .header__open::before {
  opacity: 1;
  transform: translate(-50%, 50%);
}
.header.theme-light .header__item-category:hover .header__open {
  background-color: #232323;
  -webkit-box-shadow: 0px 0px 7px 3px rgba(255, 255, 255, 0);
  -moz-box-shadow: 0px 0px 7px 3px rgba(255, 255, 255, 0);
  box-shadow: 0px 0px 7px 3px rgba(255, 255, 255, 0);
}
.header.theme-light .header__open {
  background: url("/assets/img/icons/icon-down-dark.svg") center no-repeat;
  background-size: 90%;
}
.header.theme-light .header__open::before {
  background: #232323;
}
.header__mobile {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: none;
  visibility: hidden;
}
.header__mobile > svg {
  height: 100%;
  width: 100%;
}
.header__mobile > svg > #vector-mobile-burger {
  will-change: fill;
  transition: fill 0.2s ease-in-out 0s;
}
.header__mobile:active > svg > #vector-mobile-burger {
  fill: #00b2ff;
}
.header.theme-light .header__mobile svg > #vector-mobile-burger {
  fill: #363636;
}
@media (max-width: 1200px) {
  .header__nav-body {
    row-gap: 0;
    column-gap: 20px;
  }
}
@media (max-width: 950px) {
  .header__nav {
    display: none;
    pointer-events: none;
    visibility: hidden;
  }
  .header__contacts {
    display: none;
    pointer-events: none;
    visibility: hidden;
  }
  .header__mobile {
    display: flex;
    visibility: visible;
  }
}
@media (max-width: 750px) {
  .header__logo {
    min-height: 32px;
    max-height: 32px;
    min-width: 160px;
    max-width: 160px;
  }
  .header.theme-dark .header__logo, .header.theme-light .header__logo {
    min-height: 32px;
    max-height: 32px;
    min-width: 160px;
    max-width: 160px;
  }
  .header__mobile {
    width: 35px;
    height: 35px;
  }
}

.switch-lang {
  position: relative;
}
.switch-lang__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  position: absolute;
  top: 23px;
  left: 0;
  border-radius: 0 0 5px 5px;
  border: 1px #ffffff solid;
  background-color: rgba(236, 236, 236, 0.3);
  overflow: hidden;
  max-height: 0px;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  will-change: max-height, visibility, opacity;
  transition: max-height 0.2s ease-in-out 0s, visibility 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
}
.switch-lang:hover .switch-lang__list {
  max-height: 200px;
  pointer-events: all;
  visibility: visible;
  opacity: 1;
}
.header.theme-dark .switch-lang__list {
  background-color: rgba(0, 0, 0, 0.7);
}
.header.theme-light .switch-lang__list {
  border: 1px #232323 solid;
  background-color: #ececec;
}
.switch-lang__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  row-gap: 0;
  column-gap: 5px;
  cursor: pointer;
  min-width: 45px;
  height: 22px;
  font-family: inherit;
  font-size: 12px;
  color: #ffffff;
  will-change: background-color;
  transition: background-color 0.2s ease-in-out 0s;
}
.switch-lang__item > img {
  height: 10px;
}
.switch-lang__item:hover {
  background-color: rgba(236, 236, 236, 0.4);
}
.header.theme-light .switch-lang__item {
  color: #232323;
}
.header.theme-light .switch-lang__item:hover {
  background-color: #ffffff;
}
.switch-lang__item.item-target {
  border-radius: 5px;
  border: 1px #ffffff solid;
  background-color: rgba(236, 236, 236, 0.5);
  will-change: background-color, border-radius;
  transition: background-color 0.2s ease-in-out 0s, border-radius 0.2s ease-in-out 0s;
}
.switch-lang__item.item-target:hover {
  background-color: rgba(236, 236, 236, 0.6);
}
.switch-lang:hover .switch-lang__item.item-target {
  border-radius: 5px 5px 0 0;
}
.header.theme-dark .switch-lang__item.item-target {
  background-color: rgba(236, 236, 236, 0.1);
}
.header.theme-dark .switch-lang__item.item-target:hover {
  background-color: rgba(236, 236, 236, 0.2);
}
.header.theme-light .switch-lang__item.item-target {
  border: 1px #232323 solid;
  background-color: transparent;
}
.header.theme-light .switch-lang__item.item-target:hover {
  background-color: #ffffff;
}
@media (min-width: 950px) {
  .switch-lang {
    display: flex;
  }
}
@media (max-width: 950px) {
  .switch-lang {
    display: none;
  }
}

.mobile {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  z-index: 60;
  visibility: hidden;
  transform: translateX(100%);
  pointer-events: none;
  background-color: #04000f;
  will-change: transform, visibility;
  transition: transform 0.3s ease-in-out 0s, visibility 0.3s ease-in-out 0s;
}
.mobile.open {
  visibility: visible;
  transform: translateX(0);
  pointer-events: all;
}
.mobile__body {
  height: calc(100% - 60px);
  width: calc(100% - 60px);
  padding: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
.mobile__hr {
  width: 100%;
  margin: 20px 0 !important;
}
.mobile__head {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
  width: 100%;
}
.mobile__button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 0;
  margin: 0;
  cursor: pointer;
  border: none;
  background-color: transparent;
}
.mobile__button img {
  width: 22px;
  height: 22px;
  pointer-events: none;
}
.mobile__content {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  row-gap: 0;
  column-gap: 0;
  width: 100%;
  height: max-content;
  overflow-y: scroll;
  overflow-x: hidden;
}
.mobile__content::-webkit-scrollbar {
  display: none;
}
.mobile__nav, .mobile__com, .mobile__contacts, .mobile__partners {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  row-gap: 0;
  column-gap: 0;
  margin: 0;
  padding: 0;
}
.mobile__item {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  height: 50px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}
.mobile__open {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: relative;
  height: 15px;
  width: 15px;
  pointer-events: none;
}
.mobile__open::before {
  content: "";
  display: flex;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  top: 20%;
  border-style: solid;
  border-width: 1.5px 1.5px 0 0;
  border-color: #ffffff;
  height: 10px;
  width: 10px;
  will-change: transform, top;
  transition: transform 0.3s ease-in-out 0s, top 0.3s ease-in-out 0s;
  transform: rotate(45deg);
}
.mobile__item.open .mobile__open::before {
  top: 0;
  transform: rotate(135deg);
}
.lang-switch.open .mobile__open::before {
  top: 0;
  transform: rotate(135deg);
}
.mobile__com-item {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  height: 50px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
}
.mobile__contacts {
  row-gap: 30px;
  column-gap: 0;
}
.mobile__contacts-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  row-gap: 0;
  column-gap: 12px;
  width: 100%;
}
.mobile__contacts-item > p {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  min-height: 20px;
  height: fit-content;
  max-height: max-content;
  width: 100%;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
}
.mobile__contacts-item > img {
  pointer-events: none;
  height: 20px;
  width: 20px;
}
.mobile__partners {
  row-gap: 20px;
  column-gap: 0;
}
.mobile__partners-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  row-gap: 0;
  column-gap: 12px;
  color: #ffffff;
  font-size: 16px;
  height: 100%;
  font-weight: 600;
}
.mobile__partners-item > img {
  pointer-events: none;
  height: 20px;
}
.mobile__copyright {
  text-align: center;
  color: #ececec;
  font-size: 12px;
  font-weight: 400;
}
@media (max-width: 950px) {
  .mobile {
    display: flex;
  }
}
@media (min-width: 950px) {
  .mobile {
    display: none;
  }
}

.sub-cat {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  min-height: 50px;
  height: auto;
}
.sub-cat__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  pointer-events: none;
  padding: 0;
  margin: 0;
  height: 50px;
  background: none !important;
  border: none !important;
  outline: none !important;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}
.sub-cat__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  opacity: 0;
  max-height: 0px;
  visibility: hidden;
  pointer-events: none;
  will-change: max-height, opacity, visibility;
  transition: max-height 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s, visibility 0.4s ease-in-out 0s;
}
.sub-cat.open .sub-cat__list {
  max-height: 1000px;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.sub-cat__list > a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  height: 45px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  border-bottom: 1px #232323 solid;
}
.sub-cat__list > a:nth-last-child(1) {
  margin-bottom: 15px;
}

.lang-switch {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  min-height: 50px;
  height: auto;
}
.lang-switch__active {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding: 0;
  margin: 0;
  height: 50px;
  background: none !important;
  border: none !important;
  outline: none !important;
}
.lang-switch__all {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  opacity: 0;
  max-height: 0px;
  visibility: hidden;
  pointer-events: none;
  will-change: max-height, opacity, visibility;
  transition: max-height 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s, visibility 0.4s ease-in-out 0s;
}
.lang-switch.open .lang-switch__all {
  max-height: 1000px;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.lang-switch__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  row-gap: 0;
  column-gap: 10px;
  position: relative;
  width: 100%;
  height: 45px;
  font-size: 14px;
  font-weight: 400;
  color: #ececec;
  border-bottom: 1px #363636 solid;
}
.lang-switch__item > img {
  height: 13px;
}
.lang-switch__item:nth-last-child(1) {
  margin-bottom: 15px;
}
.lang-switch__item.active {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  row-gap: 0;
  column-gap: 12px;
  pointer-events: none;
  padding: 0;
  margin: 0;
  height: 50px;
  background: none !important;
  border: none !important;
  outline: none !important;
  color: #ffffff;
  font-size: 16px;
}

.modal-window {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  row-gap: 15px;
  column-gap: 0;
  padding: 25px;
  background-color: #ffffff;
  border-radius: 20px;
}
.modal-window#modal-request {
  row-gap: 30px;
  column-gap: 0;
}
.modal-window__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  row-gap: 0;
  column-gap: 15px;
  width: 100%;
}
.modal-window__close {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  cursor: pointer;
}
.modal-window__close img {
  pointer-events: none;
  height: 46px;
  width: 46px;
}
.modal-window__content {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  row-gap: 10px;
  column-gap: 0;
}
.modal-window > table {
  border-collapse: collapse;
}
.modal-window > table thead {
  background-color: #4b60cc;
}
.modal-window > table td,
.modal-window > table th {
  font-size: 14px;
  text-align: left;
  border: 1px solid #232323;
  padding: 5px;
}
.modal-window > table th {
  color: #ffffff;
  font-weight: 600;
}
@media (max-width: 750px) {
  .modal-window__close img {
    height: 30px;
    width: 30px;
  }
}
@media (max-width: 550px) {
  .modal-window {
    padding: 15px;
  }
}

.modal {
  background-color: transparent !important;
  box-shadow: none !important;
}
.modal ::-webkit-scrollbar {
  display: none;
}
@media (max-width: 550px) {
  .modal {
    margin: auto 15px !important;
  }
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: space-between;
  flex-direction: row;
  margin: 30px 0;
}
.footer__button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  border-top: 1px #ffffff solid;
}
.footer__button > a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  height: 50px;
  width: 100%;
  cursor: pointer;
  will-change: background-color;
  transition: background-color 0.3s ease-in-out 0s;
}
.footer__button > a:hover {
  background-color: #012e71;
}
.footer__button > a > img {
  height: 25px;
}
.footer__column {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 30px;
  column-gap: 0;
  width: fit-content;
}
.footer__column a {
  cursor: pointer;
  will-change: color;
  transition: color 0.2s ease-in-out 0s;
}
.footer__column a:hover {
  color: #00b2ff;
}
.footer__menu {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
  row-gap: 0;
  column-gap: 25px;
  width: fit-content;
}
.footer__menu a {
  cursor: pointer;
  will-change: color;
  transition: color 0.2s ease-in-out 0s;
}
.footer__menu a:hover {
  color: #00b2ff;
}
.footer__contacts {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 10px;
  column-gap: 0;
}
.footer__logo {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.footer__logo > svg, .footer__logo > img {
  height: 40px;
  pointer-events: none;
}
.footer__link-version {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  row-gap: 0;
  column-gap: 5px;
}
.footer__link-version > svg > path {
  will-change: stroke;
  transition: stroke 0.2s ease-in-out 0s;
}
.footer__link-version:hover > svg > path, .footer__link-version > a:hover > svg > path {
  stroke: #00b2ff;
}
@media (max-width: 1200px) {
  .footer__container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: 50px;
    column-gap: 0;
  }
  .footer__column {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: 15px;
    column-gap: 0;
    width: 100%;
    text-align: center;
  }
  .footer__contacts {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
  }
}
@media (max-width: 750px) {
  .footer__button > a {
    height: 70px;
  }
}
@media (max-width: 550px) {
  .footer__menu {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: 25px;
    column-gap: 0;
  }
}

.intro {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: url("/assets/img/common/intro/back-intro.jpg") no-repeat;
  background-position: bottom;
  background-size: cover;
}
.intro::before {
  content: "";
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.intro.type-products, .intro.type-product {
  background-position: center;
}
.intro__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding: 200px 0 100px 0;
  min-height: fit-content;
  height: auto;
}
.intro.type-products .intro__main {
  padding: 165px 0 55px 0;
}
.intro.type-product .intro__main {
  min-height: calc(100vh - 310px);
}
.intro__content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 50px;
  column-gap: 0;
  max-width: 500px;
}
.intro.type-products .intro__content {
  row-gap: 30px;
  column-gap: 0;
  max-width: 550px;
}
.intro.type-product .intro__content {
  row-gap: 60px;
  column-gap: 0;
  max-width: 550px;
}
.intro__text {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 20px;
  column-gap: 0;
}
.intro.type-products .intro__text, .intro.type-product .intro__text {
  row-gap: 10px;
  column-gap: 0;
}
.intro__description {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 10px;
  column-gap: 0;
}
.intro.type-product .intro__description {
  max-width: 500px;
}
.intro__buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  row-gap: 0;
  column-gap: 20px;
}
.intro.type-products .intro__buttons > .btn, .intro.type-product .intro__buttons > .btn {
  min-width: 300px;
}
.intro__pic {
  position: relative;
  width: 400px;
  height: 400px;
}
.intro__pic > img {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -53%);
  width: 630px;
  object-fit: contain;
}
.intro__pic-mobile {
  position: relative;
  width: 100%;
  height: 300px;
  display: none;
  visibility: hidden;
  pointer-events: none;
}
.intro__pic-mobile img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  height: 490px;
}
.intro.type-product .intro__products {
  display: none;
  visibility: hidden;
}
@media (max-width: 1200px) {
  .intro__pic {
    width: 200px;
    height: 200px;
  }
  .intro__pic > img {
    left: 20%;
    width: 500px;
  }
}
@media (max-width: 950px) {
  .intro__pic {
    display: none;
  }
  .intro__description {
    max-width: none;
  }
}
@media (max-width: 750px) {
  .intro__main {
    min-height: fit-content;
    height: auto;
    padding: 120px 0 60px 0 !important;
  }
  .intro.type-products .intro__main, .intro.type-product .intro__main {
    padding: 120px 0 30px 0;
    min-height: fit-content;
    height: auto;
  }
  .intro__content {
    max-width: none;
  }
  .intro.type-product .intro__content {
    row-gap: 30px;
    column-gap: 0;
    max-width: none;
  }
  .intro__text {
    max-width: none;
  }
  .intro.type-product .intro__products {
    display: grid;
    visibility: visible;
  }
}
@media (max-width: 550px) {
  .intro {
    background-position: top;
  }
  .intro__buttons {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    row-gap: 15px;
    column-gap: 0;
    width: 100%;
  }
  .intro__pic-mobile {
    display: flex;
    visibility: visible;
  }
}

.features-intro {
  padding: 20px 0;
  width: 100%;
  z-index: 2;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.53);
}
.features-intro__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  row-gap: 0px;
  column-gap: 35px;
  justify-content: space-between;
}
.features-intro__card {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
.features-intro__card > img {
  margin-left: -15px;
}
@media (max-width: 1200px) {
  .features-intro__cards {
    align-items: flex-start;
    row-gap: 0px;
    column-gap: 20px;
  }
  .features-intro__card > h2 {
    font-size: 12px;
  }
}
@media (max-width: 950px) {
  .features-intro__cards {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: 1fr;
    row-gap: 30px;
    column-gap: 90px;
    justify-content: center;
  }
}
@media (max-width: 750px) {
  .features-intro__cards {
    row-gap: 30px;
    column-gap: 50px;
  }
}
@media (max-width: 550px) {
  .features-intro {
    padding: 25px 0;
  }
  .features-intro__cards {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    row-gap: 0;
    column-gap: 0;
  }
  .features-intro__card {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    row-gap: 0;
    column-gap: 10px;
  }
  .features-intro__card > img {
    height: 80px;
    margin-left: 0;
    margin-bottom: 0;
  }
}

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  padding: 0;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.53);
  backdrop-filter: blur(10px);
  border-radius: 15px 15px 0 0;
  border: 1px #ffffff solid;
}
.products__item {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  row-gap: 15px;
  column-gap: 0;
  cursor: pointer;
  will-change: background-color;
  transition: background-color 0.3s ease-in-out 0s;
  background: rgba(0, 0, 0, 0);
}
.products__item:nth-child(2) {
  border-left: 1px #ffffff solid;
  border-right: 1px #ffffff solid;
}
.products__item:hover {
  background-color: rgba(0, 0, 0, 0.53);
}
.products__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.products__buttons {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: row;
}
.products__buttons > img {
  width: 30px;
  transform: rotate(-90deg);
}
@media (max-width: 750px) {
  .products {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
  }
  .products__item {
    row-gap: 10px;
    column-gap: 0;
  }
  .products__item:nth-child(2) {
    border-left: none;
    border-right: none;
    border-top: 1px #ffffff solid;
    border-bottom: 1px #ffffff solid;
  }
  .products__header > p {
    font-size: 18px;
  }
}

.about__main {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  grid-template-rows: 1fr;
  row-gap: 0;
  column-gap: 40px;
}
.about__pic {
  border-radius: 15px;
  border: 1px #232323 solid;
  overflow: hidden;
  background-color: #ececec;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.about__pic > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.about__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  z-index: 1;
}
@media (max-width: 1200px) {
  .about__content {
    row-gap: 30px;
    column-gap: 0;
  }
}
@media (max-width: 950px) {
  .about__main {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 30px;
    column-gap: 0;
  }
  .about__pic {
    height: 350px;
  }
  .about__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    row-gap: 0;
    column-gap: 30px;
  }
}
@media (max-width: 750px) {
  .about__pic {
    height: 300px;
  }
  .about__content {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    row-gap: 40px;
    column-gap: 0;
  }
}
@media (max-width: 550px) {
  .about__pic {
    height: 250px;
  }
  .about__content {
    row-gap: 50px;
    column-gap: 0;
  }
}

.features__main {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1fr;
  row-gap: 0;
  column-gap: 30px;
}
.features__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  row-gap: 15px;
  column-gap: 0;
  text-align: center;
}
.features__item > img {
  height: 60px;
  width: auto;
}
@media (max-width: 950px) {
  .features__main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    row-gap: 40px;
    column-gap: 30px;
  }
}
@media (max-width: 750px) {
  .features__main {
    row-gap: 40px;
    column-gap: 15px;
  }
}
@media (max-width: 550px) {
  .features__main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    row-gap: 40px;
    column-gap: 0;
  }
  .features__item {
    row-gap: 10px;
    column-gap: 0;
  }
  .features__item > img {
    height: 60px;
  }
  .features__item > p {
    max-width: 150px;
  }
}

.cards__main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  row-gap: 20px;
  column-gap: 20px;
}
.cards__card {
  padding: 25px;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 30px;
  column-gap: 0;
  box-shadow: rgba(0, 0, 0, 0.15) 3px 3px 5.5px;
  background: linear-gradient(90deg, #384fca 0%, #445ee9 100%);
  transition: box-shadow 0.2s ease-in-out 0s;
}
@media (max-width: 750px) {
  .cards__main {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    row-gap: 15px;
    column-gap: 0;
  }
}
@media (max-width: 550px) {
  .cards__card {
    row-gap: 15px;
    column-gap: 0;
    padding: 20px;
  }
}

.system__main {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  row-gap: 40px;
  column-gap: 0;
}
.system__row {
  row-gap: 0;
  column-gap: 40px;
  justify-content: center;
}
.system__row:nth-child(1) {
  display: grid;
  grid-template-columns: repeat(4, auto);
  grid-template-rows: 1fr;
}
.system__row:nth-child(2) {
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-template-rows: 1fr;
}
.system__row:nth-child(3) {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: 1fr;
}
.system__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  row-gap: 15px;
  column-gap: 0;
  width: 100%;
  text-align: center;
}
.system__item p {
  width: 230px;
  max-width: 100%;
}
.system__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px #232323 solid;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
}
.system__icon img {
  width: auto;
  height: 45px;
}
@media (max-width: 1200px) {
  .system__row {
    row-gap: 0;
    column-gap: 30px;
  }
  .system__item p {
    width: 200px;
  }
}
@media (max-width: 950px) {
  .system__row {
    row-gap: 0;
    column-gap: 20px;
  }
  .system__item p {
    width: 100%;
    max-width: 170px;
  }
}
@media (max-width: 750px) {
  .system__main {
    row-gap: 40px;
    column-gap: 0;
  }
  .system__row {
    row-gap: 40px;
    column-gap: 40px;
    justify-content: center;
  }
  .system__row:nth-child(1) {
    order: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
  }
  .system__row:nth-child(2) {
    order: 3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
  }
  .system__row:nth-child(3) {
    order: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
  }
  .system__item p {
    width: 100%;
  }
  .system__icon {
    width: 80px;
    height: 80px;
  }
  .system__icon img {
    width: auto;
    height: 40px;
  }
}
@media (max-width: 550px) {
  .system__icon {
    width: 70px;
    height: 70px;
  }
  .system__icon img {
    width: auto;
    height: 35px;
  }
}

.solutions__hangs {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
.solutions__decisions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  row-gap: 30px;
  column-gap: 0;
  margin-top: 10px;
}
.solutions__mob-dec {
  display: none;
  visibility: hidden;
}
@media (max-width: 1200px) {
  .solutions__hangs {
    display: none;
  }
  .solutions__decisions {
    margin-top: 0;
  }
}
@media (max-width: 750px) {
  .solutions {
    row-gap: 30px;
    column-gap: 0;
  }
  .solutions__decisions {
    display: none;
    visibility: hidden;
  }
  .solutions__mob-dec {
    display: grid;
    visibility: visible;
  }
}

.points {
  display: grid;
  grid-template-columns: repeat(4, auto);
  grid-template-rows: 1fr;
  row-gap: 30px;
  column-gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
}
.points__item {
  display: flex;
}
.points__item h4 {
  margin-left: 10px;
}
.points__item > img {
  height: 50px;
}
@media (max-width: 950px) {
  .points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    row-gap: 0;
    column-gap: 30px;
  }
}
@media (max-width: 750px) {
  .points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    row-gap: 30px;
    column-gap: 30px;
  }
  .points__item > img {
    height: 45px;
  }
}
@media (max-width: 550px) {
  .points {
    display: grid;
    grid-template-columns: repeat(1, auto);
    grid-template-rows: 1fr;
    row-gap: 20px;
    column-gap: 20px;
  }
  .points__item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    row-gap: 0;
    column-gap: 10px;
  }
  .points__item:nth-child(1) {
    order: 3;
  }
  .points__item:nth-child(2) {
    order: 4;
  }
  .points__item:nth-child(3) {
    order: 1;
  }
  .points__item:nth-child(4) {
    order: 2;
  }
  .points__item > img {
    margin-bottom: -5px;
    height: 35px;
  }
}

.decisions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  row-gap: 0;
  column-gap: 50px;
  align-items: flex-start;
}
.decisions__cards {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  row-gap: 30px;
  column-gap: 0;
}
.decisions__card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 40px;
  column-gap: 0;
  border-radius: 15px;
  padding: 25px;
  width: calc(100% - 50px);
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.15) 3px 3px 5.5px;
  cursor: pointer;
  will-change: box-shadow, background-color;
  transition: box-shadow 0.2s ease-in-out 0s, background-color 0.2s ease-in-out 0s;
}
.decisions__card:hover {
  box-shadow: rgba(0, 0, 0, 0.2) 3px 3px 5.5px;
}
.decisions__card.active {
  background-color: #384fca;
}
.decisions__card-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: row;
  pointer-events: none;
}
.decisions__card-row > p {
  will-change: color;
  transition: color 0.2s ease-in-out 0s;
}
.decisions__card.active .decisions__card-row > p {
  color: #ffffff;
}
.decisions__card-title {
  font-size: 55px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  color: #232323;
  will-change: color;
  transition: color 0.2s ease-in-out 0s;
}
.decisions__card.active .decisions__card-title {
  color: #ffffff;
}
.decisions__card-icon {
  width: 40px;
  height: 40px;
  will-change: transform;
  transition: transform 0.3s ease-in-out 0s ease-in-out 0s;
  transform: rotate(-90deg);
  background: url("/assets/img/icons/btn-down-dark.svg") center no-repeat;
  background-size: 100%;
  background-position: center;
}
.decisions__card.active .decisions__card-icon {
  background: url("/assets/img/icons/btn-down-light.svg") center no-repeat;
  background-size: 100%;
  background-position: center;
  transform: rotate(90deg);
}
.decisions__content {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.decisions__features {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  row-gap: 15px;
  column-gap: 0;
  display: none;
  visibility: hidden;
}
.decisions__features.active {
  display: grid;
  visibility: visible;
}
.decisions__features-points {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  row-gap: 30px;
  column-gap: 0;
}
.decisions__feature {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  row-gap: 0;
  column-gap: 10px;
}
.decisions__feature > img {
  width: 25px;
}
@media (max-width: 1200px) {
  .decisions__card-title {
    font-size: 50px;
  }
}
@media (max-width: 950px) {
  .decisions {
    row-gap: 0;
    column-gap: 30px;
  }
  .decisions__card-title {
    font-size: 40px;
  }
}
@media (max-width: 750px) {
  .decisions {
    display: none;
    visibility: hidden;
  }
}

.mob-dec {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  row-gap: 20px;
  column-gap: 0;
}
.mob-dec__item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  row-gap: 0;
  column-gap: 0;
  box-shadow: rgba(0, 0, 0, 0.15) 3px 3px 5.5px;
  border-radius: 15px;
  overflow: hidden;
}
.mob-dec__features {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  row-gap: 30px;
  column-gap: 0;
  background-color: #ffffff;
  padding: 25px;
}
.mob-dec__feature {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  row-gap: 0;
  column-gap: 10px;
  margin-left: -5px;
}
.mob-dec__feature > img {
  width: 25px;
}
.mob-dec__card {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 25px;
  width: calc(100% - 50px);
  background-color: #ffffff;
  cursor: pointer;
  will-change: background-color;
  transition: background-color 0.2s ease-in-out 0s;
}
.mob-dec__card.active {
  background-color: #384fca;
}
.mob-dec__card.active > p {
  color: #ffffff;
}
.mob-dec__title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  width: 100%;
  min-height: 75px;
  font-size: 35px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  color: #232323;
  will-change: color, min-height;
  transition: color 0.3s ease-in-out 0s, min-height 0.3s ease-in-out 0s;
}
.mob-dec__card.active .mob-dec__title {
  color: #ffffff;
  min-height: 45px;
}
.mob-dec__icon {
  width: 35px;
  height: 35px;
  will-change: transform;
  transition: transform 0.3s ease-in-out 0s ease-in-out 0s;
  background: url("/resources/img/icons/btn-down-dark.svg") center no-repeat;
  background-size: 100%;
  background-position: center;
}
.mob-dec__card.active .mob-dec__icon {
  background: url("/resources/img/icons/btn-down-light.svg") center no-repeat;
  background-size: 100%;
  background-position: center;
  transform: rotate(180deg);
}
@media (min-width: 750px) {
  .mob-dec {
    display: none;
    visibility: hidden;
  }
}

.request__card {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 30px;
  column-gap: 0;
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  width: calc(100% - 60px);
  padding: 30px;
}
.request__card .request__title,
.request__card .request__main {
  width: 100%;
}
@media (max-width: 550px) {
  .request__card {
    width: calc(100% - 40px);
    padding: 20px;
  }
}

.contacts__main {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  row-gap: 20px;
  column-gap: 0;
}
.contacts__map {
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.contacts__map > iframe {
  width: 100%;
  height: 430px;
}
.contacts__props {
  width: 100%;
}
@media (max-width: 950px) {
  .contacts__map > iframe {
    width: 100%;
    height: 350px;
  }
}
@media (max-width: 750px) {
  .contacts__map > iframe {
    height: 300px;
  }
}
@media (max-width: 550px) {
  .contacts__map > iframe {
    height: 250px;
  }
}

.props {
  overflow: hidden;
}
.props__main {
  display: flex;
  justify-content: center;
  align-items: space-between;
  flex-direction: column;
  row-gap: 30px;
  column-gap: 0;
  padding: 25px;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 0 0 15px 15px;
}
.props__row {
  justify-content: space-between;
}
.props__row:nth-child(1) {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr;
  grid-template-rows: 1fr;
}
.props__row:nth-child(2) {
  display: grid;
  grid-template-columns: 3fr 1.2fr;
  grid-template-rows: 1fr;
}
.props__item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 10px;
  column-gap: 0px;
}
.props.prop-open .props__button {
  border-radius: 15px 15px 0 0;
}
@media (max-width: 1200px) {
  .props__row:nth-child(1) {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    grid-template-rows: 1fr;
  }
  .props__row:nth-child(2) {
    display: grid;
    grid-template-columns: 3fr 1.5fr;
    grid-template-rows: 1fr;
    row-gap: 0;
    column-gap: 15px;
  }
}
@media (max-width: 950px) {
  .props__row:nth-child(1) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    row-gap: 30px;
    column-gap: 15px;
  }
  .props__row:nth-child(2) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
  }
}
@media (max-width: 750px) {
  .props__row:nth-child(1) {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    row-gap: 30px;
    column-gap: 0;
  }
  .props__row:nth-child(2) {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    row-gap: 30px;
    column-gap: 0;
  }
}
@media (max-width: 550px) {
  .props__main {
    padding: 20px;
  }
}

.functionality__main {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr;
  row-gap: 0;
  column-gap: 40px;
}
@media (max-width: 950px) {
  .functionality__main {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    grid-template-rows: 1fr;
    row-gap: 0;
    column-gap: 30px;
  }
}
@media (max-width: 750px) {
  .functionality__main {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 0;
    column-gap: 0;
  }
  .functionality__sidebar {
    display: none;
    visibility: hidden;
  }
}

.sidebar {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, 1fr);
  border-radius: 10px;
  border: 1px #232323 solid;
  height: fit-content;
  width: fit-content;
  overflow: hidden;
  background: transparent;
}
.sidebar__row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  row-gap: 0;
  column-gap: 15px;
  padding: 20px 30px;
  will-change: background;
  transition: background 0.2s ease 0s;
}
.sidebar__row:nth-child(2) {
  border-top: 1px #232323 solid;
  border-bottom: 1px #232323 solid;
}
.sidebar__row:hover {
  background: #ffffff;
}
.sidebar__row.active {
  background: #4b60cc;
}
.sidebar__row.active > p {
  color: #ffffff;
}
.sidebar__row.active:hover {
  background: #384fca;
}
@media (max-width: 1200px) {
  .sidebar__row {
    padding: 20px;
  }
}
@media (max-width: 950px) {
  .sidebar__row {
    padding: 15px;
  }
}
@media (max-width: 750px) {
  .sidebar {
    display: none;
    visibility: hidden;
  }
}

.func {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  row-gap: 40px;
  column-gap: 0;
  border-radius: 15px;
  height: fit-content;
  width: calc(100% - 60px);
  overflow: hidden;
  background: #ffffff;
  padding: 30px;
}
.func__blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  row-gap: 40px;
  column-gap: 40px;
}
.func__item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 15px;
  column-gap: 0;
}
.func__item-head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  row-gap: 0;
  column-gap: 20px;
}
.func__item-head > img {
  width: 25px;
  height: 25px;
}
.func__buttons {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  row-gap: 20px;
  column-gap: 0;
}
.func__buttons > .btn {
  width: auto;
}
@media (max-width: 750px) {
  .func {
    row-gap: 30px;
    column-gap: 0;
  }
  .func__blocks {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    row-gap: 30px;
    column-gap: 0;
  }
  .func__item {
    row-gap: 8px;
    column-gap: 0;
  }
  .func__item-head {
    row-gap: 0;
    column-gap: 15px;
  }
  .func__item-head > h4 {
    font-size: 16px;
  }
}
@media (max-width: 550px) {
  .func {
    width: calc(100% - 40px);
    padding: 20px;
  }
}

.catalog__content {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  row-gap: 100px;
  column-gap: 0;
}
.catalog__item {
  display: grid;
  grid-template-columns: 1.3fr auto;
  grid-template-rows: auto;
  row-gap: 0;
  column-gap: 50px;
}
.catalog__item-content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 30px;
  column-gap: 0;
}
.catalog__item-pic {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 450px;
}
.catalog__item-pic img {
  height: 350px;
  max-width: 100%;
  object-fit: contain;
}
.catalog__title {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 5px;
  column-gap: 0;
  width: 100%;
}
.catalog__points {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 20px;
  column-gap: 0;
}
.catalog__points > p {
  padding-left: 35px;
  position: relative;
}
.catalog__points > p::before {
  content: "";
  display: flex;
  position: absolute;
  top: 3px;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}
.catalog__points > p.red::before {
  background: #FF4733;
}
.catalog__points > p.yel::before {
  background: #FFCB70;
}
.catalog__points > p.orn::before {
  background: #FF574C;
}
.catalog__points > p.blu::before {
  background: #497088;
}
.catalog__button {
  max-width: 330px;
  width: 100%;
}
@media (max-width: 1200px) {
  .catalog__item-pic {
    width: 350px;
  }
  .catalog__item-pic img {
    height: auto;
  }
}
@media (max-width: 950px) {
  .catalog__item-pic {
    width: 250px;
  }
  .catalog__item-pic img {
    height: auto;
  }
}
@media (max-width: 750px) {
  .catalog__item {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 30px;
    column-gap: 0;
  }
  .catalog__item-pic {
    width: 100%;
  }
  .catalog__item-pic img {
    max-width: 350px;
  }
  .catalog__button {
    max-width: none;
    width: calc(100% - 50px);
  }
}
@media (max-width: 550px) {
  .catalog__item-pic {
    width: calc(100% - 50px);
    padding: 0 25px;
  }
  .catalog__item-pic img {
    max-width: 100%;
  }
}