:root {
  --font-family: "Montserrat", sans-serif;
  --content-width: 1230px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
  --dark-color: #fff;
    color-scheme: light ;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  color: #000;
  line-height: 1.5;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 20px;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.is-hidden {
  display: none !important;
  /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

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

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
  width: 100%;
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.centered {
  text-align: center;
}

.dis-scroll {
  overflow: hidden;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.site-container {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  overflow: hidden;
}

.richText > *:first-child {
  margin-top: 0;
}
.richText > *:last-child {
  margin-bottom: 0;
}

.cookie {
  background: #2D2E31;
  position: fixed;
  z-index: 50;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 15px;
  display: none;
}
.cookie.active {
  display: block;
}
.cookie__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px 60px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .cookie__wrap {
    gap: 15px 40px;
  }
}
@media (max-width: 767px) {
  .cookie__wrap {
    gap: 15px 30px;
  }
}
@media (max-width: 600px) {
  .cookie__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.cookie__btn {
  background: #00ADEE;
  padding: 10px 30px;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .cookie__btn {
    padding: 8px 30px;
  }
}
@media (max-width: 767px) {
  .cookie__btn {
    padding: 6px 30px;
  }
}
@media (hover: hover) {
  .cookie__btn:hover {
    opacity: 0.8;
  }
}
.cookie__text {
  margin: 0;
  color: #D0D0D0;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}
@media (max-width: 1023px) {
  .cookie__text {
    font-size: 13px;
    line-height: 18px;
  }
}
@media (max-width: 767px) {
  .cookie__text {
    font-size: 12px;
    line-height: 15px;
  }
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
  margin: 0 0 40px;
}
.breadcrumbs--white {
  color: #efefef;
}
@media (max-width: 1023px) {
  .breadcrumbs {
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 30px;
    gap: 3px 7px;
  }
}
@media (max-width: 767px) {
  .breadcrumbs {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 20px;
    gap: 3px 6px;
  }
}
.breadcrumbs a {
  color: inherit;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .breadcrumbs a:hover {
    color: #00ADEE;
  }
}

@media (max-width: 767px) {
  .header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
}
.header__top {
  background: #FFF;
  padding: 25px 0;
}
@media (max-width: 1023px) {
  .header__top {
    padding: 19px 0;
  }
}
@media (max-width: 767px) {
  .header__top {
    padding: 13px 0;
  }
}
.header__topWr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header__logo {
  display: block;
  width: 240px;
}
@media (max-width: 1023px) {
  .header__logo {
    width: 160px;
  }
}
@media (max-width: 767px) {
  .header__logo {
    width: 135px;
  }
}
.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.header__addr {
  color: #000;
  font-size: 19px;
  font-weight: 500;
  line-height: 30px;
}
@media (max-width: 1023px) {
  .header__addr {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .header__addr {
    display: none;
  }
}
.header__time {
  color: #000;
  font-size: 19px;
  font-weight: 500;
  line-height: 30px;
}
@media (max-width: 1023px) {
  .header__time {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .header__time {
    display: none;
  }
}
.header__tels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .header__tels {
    display: none;
  }
}
.header__tels a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #000;
  text-align: right;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  white-space: nowrap;
}
@media (max-width: 1023px) {
  .header__tels a {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (hover: hover) {
  .header__tels a:hover {
    color: #00ADEE;
  }
}
.header__bot {
  background: #2D2E31;
}
@media (max-width: 767px) {
  .header__bot {
    display: none;
  }
}
.header__bwr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  .header__bwr {
    gap: 15px;
  }
}
.header__btnModal {
  padding: 11px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 50px;
  background: #00ADEE;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .header__btnModal {
    font-size: 14px;
  }
}
@media (hover: hover) {
  .header__btnModal:hover {
    background-color: #47C1EF;
  }
}
.header__btnModal:active {
  background-color: #0598CF;
}
.header__nav > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px ;
}
@media (max-width: 1200px) {
  .header__nav > ul {
    gap: 10px;
  }
}
@media (max-width: 1023px) {
  .header__nav > ul {
    gap: 3px;
  }
}
.header__nav > ul > li {
  display: block;
  position: relative;
}
.header__nav > ul > li > a {
  color: #FFF;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
  padding: 25px 5px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
}
@media (max-width: 1200px) {
  .header__nav > ul > li > a {
    font-size: 14px;
    padding: 22px 5px;
  }
}
@media (max-width: 1023px) {
  .header__nav > ul > li > a {
    font-size: 11px;
    padding: 20px 4px;
    border-bottom-width: 2px;
  }
}
.header__nav > ul > li.parent > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #FFF;
}
@media (max-width: 1200px) {
  .header__nav > ul > li.parent > a {
    gap: 15px;
  }
}
@media (max-width: 1023px) {
  .header__nav > ul > li.parent > a {
    gap: 6px;
  }
}
.header__nav > ul > li.parent > a svg {
  display: block;
  width: 20px;
  height: auto;
}
@media (max-width: 1200px) {
  .header__nav > ul > li.parent > a svg {
    width: 18px;
  }
}
@media (max-width: 1023px) {
  .header__nav > ul > li.parent > a svg {
    width: 12px;
  }
}
.header__nav > ul > li.parent > a.active {
  border-color: #00ADEE;
  color: #00ADEE;
}
@media (hover: hover) {
  .header__nav > ul > li.parent > a:hover {
    border-color: #00ADEE;
  }
}
.header__nav > ul > li > ul {
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  background: #FFF;
  padding: 30px 50px;
  width: 820px;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  gap: 40px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1200px) {
  .header__nav > ul > li > ul {
    width: 660px;
    padding: 20px 30px;
    gap: 30px;
  }
}
.header__nav > ul > li > ul > li {
  display: block;
  width: 100%;
  margin-bottom: 15px;
}
@media (max-width: 1200px) {
  .header__nav > ul > li > ul > li {
    margin-bottom: 10px;
  }
}
.header__nav > ul > li > ul > li > a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  padding-left: 30px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1200px) {
  .header__nav > ul > li > ul > li > a {
    font-size: 16px;
    line-height: 19px;
    padding-left: 25px;
  }
}
@media (hover: hover) {
  .header__nav > ul > li > ul > li > a:hover {
    color: #00ADEE;
  }
}
.header__nav > ul > li > ul > li > a::after {
  content: "";
  display: block;
  width: 15px;
  height: 3px;
  background: #70D1F5;
  position: absolute;
  left: 0;
  top: 9px;
}
.header__nav > ul > li:hover > a {
  color: #00ADEE;
}
.header__nav > ul > li:hover > ul {
  opacity: 1;
  pointer-events: all;
}
.header__nav > ul > li > a.active {
  border-color: #00ADEE;
}
.header__mobBtns {
  display: none;
}
@media (max-width: 767px) {
  .header__mobBtns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.header__mobTel {
  display: block;
  width: 36px;
}
.header__mobTel svg {
  display: block;
  width: 100%;
  height: auto;
}
.header__btnBurger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 7px;
  width: 40px;
}
.header__btnBurger span {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 2px;
  background-color: #00ADEE;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__btnBurger.active span:nth-child(2) {
  opacity: 0;
}
.header__btnBurger.active span:first-child {
  -webkit-transform: translateY(11px) rotate(45deg);
  -ms-transform: translateY(11px) rotate(45deg);
  transform: translateY(11px) rotate(45deg);
}
.header__btnBurger.active span:last-child {
  -webkit-transform: translateY(-11px) rotate(-45deg);
  -ms-transform: translateY(-11px) rotate(-45deg);
  transform: translateY(-11px) rotate(-45deg);
}
.header__burger {
  display: none;
}
@media (max-width: 767px) {
  .header__burger {
    display: block;
    width: 100%;
    height: calc(100svh - 72px);
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    overflow: auto;
    padding: 30px 20px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header__burger.active {
    opacity: 1;
    pointer-events: all;
  }
}
.header__burger .headerFix__inf {
  margin-top: 30px;
}
.header__burgerNav {
  display: block;
  margin-bottom: 30px;
}
.header__burgerNav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.header__burgerNav ul a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #0F0F0F;
  font-size: 17px;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.header__burgerNav ul a svg {
  display: block;
  width: 21px;
  height: auto;
}

.headerFix {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 0;
  background-color: #fff;
  z-index: 1000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 767px) {
  .headerFix {
    display: none;
  }
}
.headerFix.active {
  opacity: 1;
  pointer-events: all;
}
.headerFix__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.headerFix__logo {
  display: block;
  width: 135px;
}
.headerFix__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.headerFix__mobBtns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1023px) {
  .headerFix__mobBtns {
    gap: 35px;
  }
}
@media (max-width: 767px) {
  .headerFix__mobBtns {
    gap: 30px;
  }
}
.headerFix__mobTel {
  display: block;
  width: 36px;
}
.headerFix__mobTel svg {
  display: block;
  width: 100%;
  height: auto;
}
.headerFix__btnBurger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 7px;
  width: 40px;
}
.headerFix__btnBurger span {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 2px;
  background-color: #00ADEE;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.headerFix__btnBurger.active span:nth-child(2) {
  opacity: 0;
}
.headerFix__btnBurger.active span:first-child {
  -webkit-transform: translateY(11px) rotate(45deg);
  -ms-transform: translateY(11px) rotate(45deg);
  transform: translateY(11px) rotate(45deg);
}
.headerFix__btnBurger.active span:last-child {
  -webkit-transform: translateY(-11px) rotate(-45deg);
  -ms-transform: translateY(-11px) rotate(-45deg);
  transform: translateY(-11px) rotate(-45deg);
}
.headerFix__burger {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 69px);
  -webkit-transform: translateY(calc(100% - 1px));
  -ms-transform: translateY(calc(100% - 1px));
  transform: translateY(calc(100% - 1px));
  background-color: #fff;
  padding: 30px 0 40px;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.headerFix__burger.active {
  opacity: 1;
  pointer-events: all;
}
.headerFix__bWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 1023px) {
  .headerFix__bWrap {
    gap: 30px;
  }
}
@media (max-width: 1023px) {
  .headerFix__m1 {
    width: 300px;
  }
}
.headerFix__m1 ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.headerFix__m1 > ul > li > a {
  color: #00ADEE;
  font-size: 17px;
  font-weight: 500;
  line-height: 30px;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.headerFix__m1 > ul > li > a svg {
  display: block;
  width: 20px;
  height: auto;
}
.headerFix__m1 > ul > li > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  margin-top: 5px;
  padding-left: 30px;
}
.headerFix__m1 > ul > li > ul a {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .headerFix__m1 > ul > li > ul a:hover {
    color: #00ADEE;
  }
}
.headerFix__col {
  width: 200px;
}
.headerFix__m2 ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.headerFix__m2 ul a {
  color: #0F0F0F;
  font-size: 17px;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .headerFix__m2 ul a:hover {
    color: #00ADEE;
  }
}
.headerFix__btnModal {
  border-radius: 50px;
  background: #00ADEE;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 12px 20px;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .headerFix__btnModal:hover {
    background-color: #47C1EF;
  }
}
.headerFix__btnModal:active {
  background-color: #0598CF;
}
.headerFix__inf {
  width: 330px;
}
.headerFix__addr {
  color: #000;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 20px;
}
.headerFix__tels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
}
.headerFix__tels a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  line-height: 21px;
  display: block;
  width: fit-content;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .headerFix__tels a:hover {
    color: #00ADEE;
  }
}
.headerFix__time {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 15px;
  margin: 0 0 20px;
}
.headerFix__soc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.headerFix__soc a {
  display: block;
  width: 23px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .headerFix__soc a:hover {
    opacity: 0.8;
  }
}
.headerFix__soc a img {
  display: block;
  width: 100%;
  height: auto;
}

.footer {
  background: #2D2E31;
}
.footer__top {
  padding: 40px 0;
}
@media (max-width: 1023px) {
  .footer__top {
    padding: 35px 0;
  }
}
@media (max-width: 767px) {
  .footer__top {
    padding: 30px 0;
  }
}
.footer__topWr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 160px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1250px) {
  .footer__topWr {
    gap: 60px;
  }
}
@media (max-width: 1023px) {
  .footer__topWr {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.footer__topLeft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px ;
  width: 260px;
  min-width: 205px;
    text-align: center;
}
@media (max-width: 1023px) {
  .footer__topLeft {
    width: 180px;
    gap: 35px;
  }
}
@media (max-width: 767px) {
  .footer__topLeft {
    width: 160px;
    gap: 25px;
  }
}
.footer__topLogo {
  display: block;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.8;
}
@media (hover: hover) {
  .footer__topLogo:hover {
    opacity: 1;
  }
}
.footer__topLogo img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__topSoc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
    justify-content: center;
}
.footer__topSoc a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  height: auto;
  gap: 3px;
  color: #FFF;
  text-align: center;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  opacity: 0.8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .footer__topSoc a:hover {
    opacity: 1;
  }
}
.footer__topSoc a img {
  display: block;
  width: 25px;
  height: auto;
}
.footer__topNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px 40px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: calc(100% - 205px - 160px);
}
@media (max-width: 1250px) {
  .footer__topNav {
    width: calc(100% - 205px - 60px);
    gap: 30px 50px;
  }
}
@media (max-width: 1023px) {
  .footer__topNav {
    display: none;
  }
}
.footer__topNav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
}
.footer__topNav ul li {
  display: block;
  line-height: 1;
}
.footer__topNav ul li a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #FFF;
  font-size: 16px;
  font-weight: 450;
  line-height: 30px;
  opacity: 0.8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .footer__topNav ul li a:hover {
    opacity: 1;
  }
}
.footer__bottom {
  padding: 30px 0;
}
@media (max-width: 1023px) {
  .footer__bottom {
    padding: 25px 0;
  }
}
@media (max-width: 767px) {
  .footer__bottom {
    padding: 20px 0 50px;
  }
}
.footer__bottomWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex ;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start ;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between ;
  gap: 12px 40px ;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap ;
}
@media (max-width: 767px) {
  .footer__bottomWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.footer__bottomCoop {
  color: #FFF;
  font-size: 17px;
  font-weight: 400;
  line-height: 35px;
  opacity: 0.8;
}
@media (max-width: 1023px) {
  .footer__bottomCoop {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .footer__bottomCoop {
    font-size: 15px;
  }
}
.footer__bottomPolicy {
  color: #E6E6E6;
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.8;
}
@media (max-width: 1023px) {
  .footer__bottomPolicy {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .footer__bottomPolicy {
    font-size: 15px;
  }
}
@media (hover: hover) {
  .footer__bottomPolicy:hover {
    opacity: 1;
  }
}
.footer__middle {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 1023px) {
  .footer__middle {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .footer__middle {
    padding: 20px 0;
  }
}
.footer__middleAddr {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 23px;
  margin: 0 0 20px;
  opacity: 0.8;
}
@media (max-width: 1023px) {
  .footer__middleAddr {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .footer__middleAddr {
    font-size: 17px;
    margin-bottom: 10px;
  }
}
.footer__middleCont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.footer__middlePhone {
  color: #FFF;
  text-align: center;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  opacity: 0.8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer__middlePhone img {
  width: 22px;
  height: auto;
  display: block;
}
@media (hover: hover) {
  .footer__middlePhone:hover {
    opacity: 1;
  }
}
.footer__middleTime {
  opacity: 0.8;
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
}

.input {
  border: 1px solid #B1B1B1;
  background: #FFF;
  display: block;
  width: 100%;
  padding: 14px 18px;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  outline: none;
}
@media (max-width: 1023px) {
  .input {
    padding: 12px 15px;
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .input {
    padding: 10px 12px;
    font-size: 16px;
  }
}
.input::-webkit-input-placeholder {
  color: #979797;
}
.input::-moz-placeholder {
  color: #979797;
}
.input:-ms-input-placeholder {
  color: #979797;
}
.input::-ms-input-placeholder {
  color: #979797;
}
.input::placeholder {
  color: #979797;
}

.ch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}
@media (max-width: 1023px) {
  .ch {
    gap: 12px;
  }
}
@media (max-width: 767px) {
  .ch {
    gap: 10px;
  }
}
.ch input:checked ~ span::after {
  opacity: 1;
}
.ch > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 25px;
  min-width: 25px;
  height: 25px;
  border: 1px solid #B1B1B1;
  background: #FFF;
}
@media (max-width: 1023px) {
  .ch > span {
    width: 21px;
    min-width: 21px;
    height: 21px;
  }
}
@media (max-width: 767px) {
  .ch > span {
    width: 17px;
    min-width: 17px;
    height: 17px;
  }
}
.ch > span::after {
  content: "";
  display: block;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  opacity: 0;
  background-color: #B1B1B1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ch div {
  color: #545454;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
}
@media (max-width: 1023px) {
  .ch div {
    line-height: 21px;
  }
}
@media (max-width: 767px) {
  .ch div {
    font-size: 14px;
    line-height: 18px;
  }
}
.ch div a {
  color: inherit;
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .ch div a:hover {
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
  }
}

.videoSect video, .videoSect img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100svh - 200px);
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 767px) {
  .videoSect video, .videoSect img {
    max-height: 240px;
  }
}

.benefist {
  margin: 70px 0;
}
@media (max-width: 1023px) {
  .benefist {
    margin: 45px 0;
  }
}
@media (max-width: 767px) {
  .benefist {
    margin: 25px 0;
  }
}
.benefist__title {
  color: #000;
  font-size: 50px;
  font-weight: 500;
  line-height: 30px;
  margin: 0 0 80px;
}
@media (max-width: 1023px) {
  .benefist__title {
    font-size: 40px;
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .benefist__title {
    font-size: 30px;
    margin-bottom: 40px;
  }
}
.benefist__title span {
  font-weight: 700;
}
.benefist__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 50px 60px;
}
@media (max-width: 1023px) {
  .benefist__wrap {
    gap: 40px 50px;
  }
}
@media (max-width: 767px) {
  .benefist__wrap {
    gap: 30px 40px;
  }
}
.benefist__card {
  width: calc(33.3333333333% - 40px);
  position: relative;
  padding-left: 40px;
  counter-increment: list;
}
@media (max-width: 1023px) {
  .benefist__card {
    width: calc(50% - 25px);
    min-height: 80px;
  }
}
@media (max-width: 767px) {
  .benefist__card {
    width: calc(50% - 20px);
    min-height: 90px;
  }
}
@media (max-width: 600px) {
  .benefist__card {
    width: 100%;
  }
}
.benefist__card::after {
  content: counter(list);
  position: absolute;
  display: block;
  z-index: 1;
  top: -25px;
  left: 0;
  color: #EFEFEF;
  font-size: 150px;
  font-weight: 500;
  line-height: 100px;
}
.benefist__text {
  margin: 0;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1023px) {
  .benefist__text {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .benefist__text {
    font-size: 15px;
  }
}

.contacts__cont {
  background: #F3F3F3;
  padding: 50px 0;
}
@media (max-width: 1023px) {
  .contacts__cont {
    padding: 40px 0 42px;
  }
}
@media (max-width: 767px) {
  .contacts__cont {
    padding: 30px 0 35px;
  }
}
.contacts__map iframe {
  width: 100% !important;
  height: 650px;
  max-height: 90svh;
  display: block;
}
@media (max-width: 1023px) {
  .contacts__map iframe {
    height: 460px;
  }
}
@media (max-width: 767px) {
  .contacts__map iframe {
    height: 270px;
  }
}
.contacts__title {
  color: #000;
  font-size: 50px;
  font-weight: 700;
  line-height: 45px;
  margin: 0 0 40px;
}
@media (max-width: 1023px) {
  .contacts__title {
    margin-bottom: 25px;
    font-size: 38px;
    line-height: 37px;
  }
}
@media (max-width: 767px) {
  .contacts__title {
    margin-bottom: 15px;
    font-size: 26px;
    line-height: 30px;
  }
}
.contacts__text {
  color: #000;
  font-size: 23px;
  font-weight: 500;
  line-height: 40px;
  margin: 0;
  text-wrap: balance;
}
@media (max-width: 1023px) {
  .contacts__text {
    font-size: 19px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .contacts__text {
    font-size: 16px;
    line-height: 21px;
  }
}

.technology {
  background-image: url("../img/tehnologi/fon.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 1023px) {
  .technology {
    padding-bottom: 70px;
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .technology {
    padding-bottom: 50px;
  }
}
.technology .container {
  position: relative;
  z-index: 2;
}
.technology__content {
  padding-left: 30px;
  border-left: 10px solid #00ADEE;
  margin-left: auto;
  width: calc(60% - 10px);
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  margin-top: 90px;
  margin-bottom: 90px;
}
@media (max-width: 1023px) {
  .technology__content {
    padding-left: 25px;
    max-width: 100%;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.technology__title {
  color: #DFDFDF;
  font-size: 45px;
  font-weight: 700;
  line-height: 38px;
  margin: 0 0 45px;
}
@media (max-width: 1023px) {
  .technology__title {
    font-size: 35px;
    line-height: 34px;
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .technology__title {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}
.technology__text {
  color: #DFDFDF;
  font-size: 23px;
  font-weight: 500;
  line-height: 32px;
}
@media (max-width: 1023px) {
  .technology__text {
    font-size: 19px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .technology__text {
    font-size: 15px;
    line-height: 20px;
  }
}
.technology__wr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (max-width: 1023px) {
  .technology__wr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.technology__img {
  display: block;
  width: calc(40% - 10px);
  position: relative;
  height: auto;
}
@media (max-width: 1023px) {
  .technology__img {
    width: 100%;
    aspect-ratio: 64/50;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
.technology__img img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.75s ease-in-out;
  transition: all 0.75s ease-in-out;
  opacity: 0;
}
.technology__img img.active {
  opacity: 1;
}

.cardsSect {
  margin: 70px 0;
}
@media (max-width: 1023px) {
  .cardsSect {
    margin: 55px 0;
  }
}
@media (max-width: 767px) {
  .cardsSect {
    margin: 40px 0;
  }
}
.cardsSect__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
}
@media (max-width: 1023px) {
  .cardsSect__tabs {
    gap: 40px;
  }
}
.cardsSect__tabs--l {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.cardsSect__tabImg {
  width: calc(50% - 35px);
  border-radius: 80px 0 0 0;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .cardsSect__tabImg {
    width: calc(50% - 20px);
  }
}
@media (max-width: 767px) {
  .cardsSect__tabImg {
    display: none;
  }
}
.cardsSect__tabImg img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  z-index: 2;
}
.cardsSect__tabImg img:first-child {
  position: relative;
  opacity: 1;
  z-index: 1;
}
.cardsSect__tabImg img.active {
  opacity: 1;
  z-index: 2;
}
.cardsSect__tabImg--l {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.cardsSect__tabImg--lb {
  border-radius: 0 0 0 80px;
}
.cardsSect__tabImg--rb {
  border-radius: 0 0 80px 0;
}
.cardsSect__tabImg--tr {
  border-radius: 0 80px 0 0;
}
.cardsSect__tabImg--mob {
  display: none;
}
@media (max-width: 767px) {
  .cardsSect__tabImg--mob {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 30px 0;
  }
}
.cardsSect__tabCont {
  width: calc(50% - 35px);
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
@media (max-width: 1023px) {
  .cardsSect__tabCont {
    width: calc(50% - 20px);
  }
}
@media (max-width: 767px) {
  .cardsSect__tabCont {
    width: 100%;
  }
}
.cardsSect__tabCont--l {
  -ms-flex-item-align: start;
  align-self: flex-start;
}
@media (max-width: 767px) {
  .cardsSect__tabWr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
    overflow: auto;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: -15px;
    margin-right: -15px;
  }
}
.cardsSect__tabTitle {
  color: #000;
  font-size: 38px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 0 15px;
}
@media (max-width: 1023px) {
  .cardsSect__tabTitle {
    font-size: 32px;
    line-height: 32px;
  }
}
@media (max-width: 767px) {
  .cardsSect__tabTitle {
    font-size: 26px;
    margin-bottom: 25px;
    line-height: 27px;
  }
}
@media (max-width: 767px) {
  .cardsSect__tabCard {
    width: 240px;
    min-width: 240px;
  }
}
.cardsSect__tabImg2 {
  display: none;
}
@media (max-width: 767px) {
  .cardsSect__tabImg2 {
    display: block;
    margin-bottom: 20px;
    width: 100%;
    aspect-ratio: 24/30;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 80px 0 0 0;
  }
}
.cardsSect__tabBtn {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 15px 20px;
  outline: none;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .cardsSect__tabBtn {
    font-size: 18px;
    line-height: 24px;
    padding: 8px 10px;
  }
}
@media (max-width: 767px) {
  .cardsSect__tabBtn {
    font-size: 17px;
    line-height: 22px;
    padding: 0 0 9px;
  }
}
.cardsSect__tabBtn.active {
  background: #00ADEE;
  color: #FFF;
}
.cardsSect__tabBtn.active .cardsSect__tabBtnNumber {
  color: #FFF;
}
@media (max-width: 767px) {
  .cardsSect__tabBtn.active {
    background-color: transparent;
    color: #000;
  }
  .cardsSect__tabBtn.active .cardsSect__tabBtnNumber {
    color: #00ADEE;
  }
}
.cardsSect__tabBtnNumber {
  color: #00ADEE;
  font-size: 30px;
  font-weight: 600;
  line-height: 28px;
  width: 40px;
  min-width: 40px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .cardsSect__tabBtnNumber {
    width: 28px;
    min-width: 28px;
    font-size: 27px;
  }
}
@media (max-width: 767px) {
  .cardsSect__tabBtnNumber {
    width: 16px;
    min-width: 16px;
    font-size: 25px;
  }
}
.cardsSect__tabBtnText span {
  font-weight: 400;
}
.cardsSect__tabContHid {
  display: none;
  border-bottom: 5px solid #00ADEE;
  padding: 16px 20px 16px 70px;
}
@media (max-width: 1023px) {
  .cardsSect__tabContHid {
    padding: 8px 10px 8px 48px;
  }
}
@media (max-width: 767px) {
  .cardsSect__tabContHid {
    display: block !important;
    padding: 8px 0 0 26px;
    border-bottom: none;
  }
}
.cardsSect__tabText {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
}
@media (max-width: 1023px) {
  .cardsSect__tabText {
    font-size: 16px;
    line-height: 23px;
  }
}
@media (max-width: 767px) {
  .cardsSect__tabText {
    font-size: 15px;
    line-height: 20px;
  }
}
.cardsSect__vertWr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 1023px) {
  .cardsSect__vertWr {
    gap: 45px;
  }
}
@media (max-width: 767px) {
  .cardsSect__vertWr {
    gap: 30px;
  }
}
@media (max-width: 1023px) {
  .cardsSect__vertWr--big {
    gap: 50px;
  }
}
@media (max-width: 767px) {
  .cardsSect__vertWr--big {
    gap: 40px;
  }
}
.cardsSect__videoBl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
}
@media (max-width: 1023px) {
  .cardsSect__videoBl {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .cardsSect__videoBl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.cardsSect__videoBlContent {
  width: calc(50% - 35px);
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
@media (max-width: 1023px) {
  .cardsSect__videoBlContent {
    width: calc(50% - 20px);
  }
}
@media (max-width: 767px) {
  .cardsSect__videoBlContent {
    width: 100%;
  }
}
.cardsSect__videoBlContent > *:last-child {
  margin-bottom: 0 !important;
}
.cardsSect__videoBlVideo {
  width: calc(50% - 35px);
  position: relative;
  padding-left: 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.cardsSect__videoBlVideo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0 80px 0 0;
}
@media (max-width: 1023px) {
  .cardsSect__videoBlVideo {
    width: calc(50% - 20px);
  }
}
@media (max-width: 767px) {
  .cardsSect__videoBlVideo {
    width: 100%;
    display: none;
  }
  .cardsSect__videoBlVideo--all {
    display: block;
  }
}
.cardsSect__videoBlVideo--mob {
  display: none;
}
@media (max-width: 767px) {
  .cardsSect__videoBlVideo--mob {
    display: block;
    max-width: 400px;
    margin-bottom: 30px;
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  .cardsSect__videoBlVideo--left {
    padding-left: 0;
    padding-right: 40px;
    max-width: 400px;
    width: 100%;
  }
}
.cardsSect__videoBlVideo--left img {
  border-radius: 0 0 0 80px;
}
.cardsSect__videoBlVideo--left .cardsSect__videoBlPlay {
  left: initial;
  right: 0;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}
@media (max-width: 767px) {
  .cardsSect__videoBlVideo--left .cardsSect__videoBlPlay {
    right: 40px;
  }
}
@media (hover: hover) {
  .cardsSect__videoBlVideo--left .cardsSect__videoBlPlay:hover {
    -webkit-transform: translate(50%, -50%) scale(1.05);
    -ms-transform: translate(50%, -50%) scale(1.05);
    transform: translate(50%, -50%) scale(1.05);
  }
}
.cardsSect__videoBlPlay {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 164px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .cardsSect__videoBlPlay {
    width: 80px;
  }
}
@media (max-width: 767px) {
  .cardsSect__videoBlPlay {
    left: 40px;
  }
}
@media (hover: hover) {
  .cardsSect__videoBlPlay:hover {
    -webkit-transform: translate(-50%, -50%) scale(1.05);
    -ms-transform: translate(-50%, -50%) scale(1.05);
    transform: translate(-50%, -50%) scale(1.05);
  }
}
.cardsSect__videoBlPlay svg {
  display: block;
  width: 100%;
  height: auto;
}
.cardsSect__videoBlTitle {
  color: #000;
  font-size: 38px;
  font-weight: 700;
  line-height: 45px;
  margin: 0 0 25px;
}
.cardsSect__videoBlTitle--color {
  color: #00ADEE;
}
@media (max-width: 1023px) {
  .cardsSect__videoBlTitle {
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 36px;
  }
}
@media (max-width: 767px) {
  .cardsSect__videoBlTitle {
    margin-bottom: 15px;
    font-size: 26px;
    line-height: 27px;
  }
}
.cardsSect__videoBlText {
  margin: 0 0 40px;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}
@media (max-width: 1023px) {
  .cardsSect__videoBlText {
    font-size: 17px;
    line-height: 23px;
    margin-bottom: 35px;
  }
}
@media (max-width: 767px) {
  .cardsSect__videoBlText {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 30px;
  }
}
.cardsSect__videoBlText b {
  font-weight: 600;
}
.cardsSect__videoBlText a {
  color: #00ADEE;
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .cardsSect__videoBlText a:hover {
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
  }
}
.cardsSect__videoBlCards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cardsSect__videoBlCard {
  width: calc(33.3333333333% - 13.3333333333px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3px;
}
@media (max-width: 1023px) {
  .cardsSect__videoBlCard {
    width: calc(50% - 10px);
  }
}
@media (max-width: 767px) {
  .cardsSect__videoBlCard {
    width: calc(33.3333333333% - 13.3333333333px);
  }
}
@media (max-width: 600px) {
  .cardsSect__videoBlCard {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }
}
.cardsSect__videoBlCardTop {
  color: #000;
  font-size: 40px;
  font-weight: 500;
  line-height: 30px;
}
@media (max-width: 1023px) {
  .cardsSect__videoBlCardTop {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .cardsSect__videoBlCardTop {
    font-size: 30px;
  }
}
@media (max-width: 600px) {
  .cardsSect__videoBlCardTop {
    width: 150px;
    min-width: 150px;
  }
}
.cardsSect__videoBlCardTop span {
  font-size: 16px;
}
.cardsSect__videoBlTextB {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 21px;
  margin: 0;
}
.cardsSect__videoBlTextB b {
  font-weight: 600;
}
.cardsSect__videoBlVideoBtn {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #00ADEE;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  text-decoration: underline;
  gap: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .cardsSect__videoBlVideoBtn {
    font-size: 18px;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .cardsSect__videoBlVideoBtn {
    display: none;
  }
}
@media (hover: hover) {
  .cardsSect__videoBlVideoBtn:hover {
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
  }
}
.cardsSect__videoBlVideoBtn svg {
  display: block;
  width: 34px;
  height: auto;
}
@media (max-width: 1023px) {
  .cardsSect__videoBlVideoBtn svg {
    width: 30px;
  }
}
.cardsSect__citate {
  width: calc(50% - 35px);
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  position: relative;
}
.cardsSect__citate::after {
  content: "";
  display: block;
  width: 315px;
  height: 238px;
  position: absolute;
  left: -50px;
  top: -85px;
  background-image: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"315\" height=\"238\" viewBox=\"0 0 315 238\" fill=\"none\"><path d=\"M119.373 0V18.9109C92.3339 33.0556 72.976 47.8152 61.2999 63.1899C49.6237 78.5646 43.7856 95.323 43.7856 113.465C43.7856 124.227 45.322 131.607 48.3946 135.605C51.16 139.91 54.54 142.062 58.5345 142.062C62.5289 142.062 67.9061 140.986 74.666 138.833C81.4259 136.373 87.5712 135.143 93.1021 135.143C105.7 135.143 116.608 139.91 125.826 149.442C135.351 158.667 140.114 170.044 140.114 183.574C140.114 198.333 134.43 211.094 123.061 221.857C111.692 232.311 97.5574 237.539 80.6577 237.539C60.0708 237.539 41.4811 228.621 24.8887 210.787C8.29622 192.952 0 170.966 0 144.829C0 114.08 10.1398 85.4832 30.4195 59.0388C51.0064 32.2868 80.6577 12.6072 119.373 0ZM292.877 1.38372V18.9109C261.843 36.7455 241.409 52.7351 231.577 66.8798C221.744 81.0245 216.828 97.6292 216.828 116.694C216.828 125.304 218.518 131.761 221.898 136.066C225.278 140.371 228.811 142.523 232.499 142.523C235.879 142.523 240.949 141.293 247.708 138.833C254.468 136.373 261.228 135.143 267.988 135.143C280.586 135.143 291.494 139.756 300.712 148.981C310.237 157.898 315 168.968 315 182.19C315 197.257 309.008 210.326 297.025 221.395C285.349 232.465 270.907 238 253.7 238C233.42 238 215.138 229.236 198.853 211.709C182.568 194.182 174.425 172.35 174.425 146.213C174.425 113.926 184.719 84.5607 205.305 58.1163C225.892 31.3643 255.083 12.4535 292.877 1.38372Z\" fill=\"%23EFEFEF\"/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
}
@media (max-width: 1023px) {
  .cardsSect__citate::after {
    width: 270px;
    height: 200px;
    left: -30px;
    top: -50px;
  }
}
@media (max-width: 767px) {
  .cardsSect__citate::after {
    width: 230px;
    height: 173px;
    left: -10px;
    top: -30px;
  }
}
@media (max-width: 1023px) {
  .cardsSect__citate {
    width: calc(50% - 20px);
  }
}
@media (max-width: 767px) {
  .cardsSect__citate {
    width: 100%;
  }
}
.cardsSect__citate > * {
  position: relative;
  z-index: 2;
}
.cardsSect__citateTitle {
  color: #000;
  font-size: 38px;
  font-style: italic;
  font-weight: 700;
  line-height: 40px;
  margin: 0 0 30px;
}
@media (max-width: 1023px) {
  .cardsSect__citateTitle {
    font-size: 33px;
    line-height: 32px;
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .cardsSect__citateTitle {
    font-size: 29px;
    line-height: 25px;
    margin-bottom: 20px;
  }
}
.cardsSect__citateText {
  color: #000;
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: 30px;
}
@media (max-width: 1023px) {
  .cardsSect__citateText {
    font-size: 17px;
    line-height: 27px;
  }
}
@media (max-width: 767px) {
  .cardsSect__citateText {
    font-size: 15px;
    line-height: 25px;
  }
}
.cardsSect__citateBot {
  color: #000;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 30px;
  margin-top: 30px;
}
@media (max-width: 1023px) {
  .cardsSect__citateBot {
    font-size: 17px;
    line-height: 27px;
    margin-top: 25px;
  }
}
@media (max-width: 767px) {
  .cardsSect__citateBot {
    font-size: 16px;
    line-height: 25px;
    margin-top: 20px;
  }
}
.cardsSect__citateBot b {
  font-weight: 600;
}
.cardsSect__ulList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 0 40px;
  padding: 0;
  gap: 8px;
  list-style: none;
}
@media (max-width: 1023px) {
  .cardsSect__ulList {
    margin-bottom: 30px;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .cardsSect__ulList {
    margin-bottom: 20px;
    gap: 12px;
  }
}
.cardsSect__ulList li {
  padding-left: 50px;
  position: relative;
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 36px;
}
@media (max-width: 1023px) {
  .cardsSect__ulList li {
    font-size: 18px;
    line-height: 28px;
    padding-left: 45px;
  }
}
@media (max-width: 767px) {
  .cardsSect__ulList li {
    font-size: 16px;
    line-height: 20px;
    padding-left: 40px;
  }
}
.cardsSect__ulList li span {
  font-weight: 500;
}
.cardsSect__ulList li a {
  color: #00ADEE;
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .cardsSect__ulList li a:hover {
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
  }
}
.cardsSect__ulList li::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 2px;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml,<svg width=\"31\" height=\"28\" viewBox=\"0 0 31 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"14\" cy=\"14\" r=\"14\" fill=\"%2300ADEE\"/><path d=\"M8.18945 13L13.4827 18.2929C13.8732 18.6834 14.5064 18.6834 14.8969 18.2929L28.6898 4.5\" stroke=\"white\" stroke-width=\"3\" stroke-linecap=\"round\"/></svg>");
}
@media (max-width: 1023px) {
  .cardsSect__ulList li::after {
    top: -2px;
    width: 29px;
    height: 29px;
  }
}
@media (max-width: 767px) {
  .cardsSect__ulList li::after {
    top: -5px;
    width: 28px;
    height: 28px;
  }
}
.cardsSect__btnModal {
  padding: 18px 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 50px;
  background: #00ADEE;
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .cardsSect__btnModal {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .cardsSect__btnModal {
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }
}
@media (hover: hover) {
  .cardsSect__btnModal:hover {
    background-color: #47C1EF;
  }
}
.cardsSect__btnModal:active {
  background-color: #0598CF;
}
.cardsSect__videoBlLinkArrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  color: #00ADEE;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1023px) {
  .cardsSect__videoBlLinkArrow {
    margin-top: 20px;
    font-size: 18px;
    line-height: 27px;
  }
}
@media (max-width: 767px) {
  .cardsSect__videoBlLinkArrow {
    margin-top: 15px;
    font-size: 16px;
    line-height: 24px;
  }
}
.cardsSect__videoBlLinkArrow svg {
  display: block;
  width: 20px;
  height: auto;
}
@media (max-width: 1023px) {
  .cardsSect__videoBlLinkArrow svg {
    width: 18px;
  }
}
@media (max-width: 767px) {
  .cardsSect__videoBlLinkArrow svg {
    width: 16px;
  }
}
@media (hover: hover) {
  .cardsSect__videoBlLinkArrow:hover {
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
  }
}

.commands {
  background: #2D2E31;
}
.commands__content {
  padding: 70px 0;
}
@media (max-width: 1023px) {
  .commands__content {
    padding: 55px 0;
  }
}
@media (max-width: 767px) {
  .commands__content {
    padding: 40px 0;
  }
}
.commands__inf {
  border-left: 10px solid #00ADEE;
  padding-left: 55px;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (max-width: 1023px) {
  .commands__inf {
    padding-left: 40px;
    padding-top: 7px;
    padding-bottom: 7px;
  }
}
@media (max-width: 767px) {
  .commands__inf {
    padding-left: 25px;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.commands__title {
  color: #DFDFDF;
  font-size: 38px;
  font-weight: 500;
  line-height: 38px;
  margin: 0 0 15px;
}
@media (max-width: 1023px) {
  .commands__title {
    font-size: 28px;
    line-height: 33px;
    margin-bottom: 12px;
  }
}
@media (max-width: 767px) {
  .commands__title {
    font-size: 19px;
    line-height: 28px;
    margin-bottom: 10px;
  }
}
.commands__title span {
  color: #00ADEE;
  font-size: 44px;
  font-weight: 700;
  line-height: 38px;
  text-decoration: underline;
}
@media (max-width: 1023px) {
  .commands__title span {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .commands__title span {
    font-size: 25px;
  }
}
.commands__text {
  color: #DFDFDF;
  font-size: 29px;
  font-weight: 500;
  line-height: 38px;
  max-width: 860px;
}
@media (max-width: 1023px) {
  .commands__text {
    font-size: 22px;
    line-height: 29px;
  }
}
@media (max-width: 767px) {
  .commands__text {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .commands__slider {
    display: none;
  }
}
.commands__slide {
  display: block;
  max-width: 210px;
  width: clamp(180px, 14.2857142857vw, 210px);
}
.commands__slide img {
  display: block;
  width: 100%;
  height: auto;
}
.commands__imgMob {
  display: none;
}
@media (max-width: 767px) {
  .commands__imgMob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: grid;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
  .commands__imgMob img {
    display: block;
    width: 100%;
    height: auto;
  }
}

.modalVideo {
  background: #343638;
  padding: 12px;
  position: relative;
  overflow: visible;
}
@media (max-width: 1023px) {
  .modalVideo {
    padding: 9px;
  }
}
@media (max-width: 767px) {
  .modalVideo {
    padding: 6px;
  }
}
.modalVideo video {
  display: block;
  width: 100%;
  max-height: 90vh;
  max-width: 1040px;
    height: auto;
}
.modalVideo .fancybox-close-small {
  display: none;
}
.modalVideo__close {
  position: absolute;
  right: -20px;
  top: 0;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  width: 30px;
    z-index: 10;
}
@media (max-width: 1023px) {
  .modalVideo__close {
    right: -15px;
    width: 25px;
  }
}
@media (max-width: 767px) {
  .modalVideo__close {
    right: 35px;
    width: 20px;
    top: 8px;
  }
}
.modalVideo__close svg {
  display: block;
  width: 100%;
}
.modalVideo__close path {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .modalVideo__close:hover path {
    opacity: 1;
  }
}

.modalCons {
  background: #FFF;
  max-width: calc(100vw - 40px);
  width: 655px;
  padding: 70px 90px;
}
@media (max-width: 1023px) {
  .modalCons {
    width: 560px;
    padding: 45px 60px;
  }
}
@media (max-width: 767px) {
  .modalCons {
    padding: 30px 30px;
    width: 480px;
  }
}
.modalCons__title {
  color: #000;
  font-size: 40px;
  font-weight: 500;
  line-height: 25px;
  margin: 0 0 15px;
}
@media (max-width: 1023px) {
  .modalCons__title {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .modalCons__title {
    font-size: 28px;
  }
}
.modalCons__title b {
  font-weight: 700;
}
.modalCons__text {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  margin: 0 0 30px;
}
@media (max-width: 1023px) {
  .modalCons__text {
    font-size: 17px;
    margin-bottom: 25px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .modalCons__text {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 20px;
  }
}
.modalCons__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
}
.modalCons__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}
@media (max-width: 1023px) {
  .modalCons__inputs {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .modalCons__inputs {
    gap: 15px;
  }
}
.modalCons__chs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}
@media (max-width: 1023px) {
  .modalCons__chs {
    gap: 15px;
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .modalCons__chs {
    gap: 12px;
    margin-top: 12px;
  }
}
.modalCons__subm {
  margin-top: 25px;
  border-radius: 50px;
  background: #00ADEE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 18px 20px;
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  border: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
@media (max-width: 1023px) {
  .modalCons__subm {
    margin-top: 20px;
    font-size: 19px;
    padding: 16px 20px;
  }
}
@media (max-width: 767px) {
  .modalCons__subm {
    margin-top: 15px;
    font-size: 18px;
    padding: 14px 20px;
  }
}
@media (hover: hover) {
  .modalCons__subm:hover {
    background-color: #47C1EF;
  }
}
.modalCons__subm:active {
  background-color: #0598CF;
}
.modalCons .fancybox-close-small {
  display: none;
}
.modalCons__close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: block;
  width: 30px;
}
@media (max-width: 1023px) {
  .modalCons__close {
    top: 17px;
    right: 17px;
    width: 26px;
  }
}
@media (max-width: 767px) {
  .modalCons__close {
    top: 14px;
    right: 14px;
    width: 22px;
  }
}
.modalCons__close svg {
  display: block;
  width: 100%;
  height: auto;
}
.modalCons__close svg path {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .modalCons__close:hover path {
    fill: #000;
  }
}

.partners {
  margin: 70px 0;
}
@media (max-width: 1023px) {
  .partners {
    margin: 55px 0;
  }
}
@media (max-width: 767px) {
  .partners {
    margin: 40px 0;
  }
}
.partners__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .partners__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}
.partners__title {
  width: 375px;
  color: #000;
  font-size: 38px;
  font-weight: 400;
  line-height: 53px;
  margin: 0;
}
@media (max-width: 1023px) {
  .partners__title {
    font-size: 32px;
    line-height: 45px;
    width: 300px;
  }
}
@media (max-width: 767px) {
  .partners__title {
    font-size: 26px;
    line-height: 36px;
    width: 100%;
  }
}
.partners__title span {
  color: #00ADEE;
  font-weight: 700;
}
.partners__title b {
  font-weight: 700;
  text-transform: uppercase;
}
.partners__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 30px;
  width: calc(100% - 375px - 40px);
}
@media (max-width: 1023px) {
  .partners__cards {
    width: calc(100% - 300px - 40px);
  }
}
@media (max-width: 767px) {
  .partners__cards {
    width: 100%;
  }
}
.partners__cards img {
  display: block;
  width: calc(25% - 22.5px);
}
@media (max-width: 1023px) {
  .partners__cards img {
    width: calc(33.3333333333% - 20px);
  }
}
@media (max-width: 767px) {
  .partners__cards img {
    width: calc(25% - 22.5px);
  }
}
@media (max-width: 600px) {
  .partners__cards img {
    width: calc(33.3333333333% - 20px);
  }
}
@media (max-width: 500px) {
  .partners__cards img {
    width: calc(50% - 15px);
  }
}

.infCardsSect {
  margin: 70px 0;
}
@media (max-width: 1023px) {
  .infCardsSect {
    margin: 55px 0;
  }
}
@media (max-width: 767px) {
  .infCardsSect {
    margin: 40px 0;
  }
}
.infCardsSect__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px 70px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 1023px) {
  .infCardsSect__wrap {
    gap: 40px;
  }
}
.infCardsSect__card {
  width: calc(50% - 35px);
  background: #F3F3F3;
  padding: 45px 40px 40px;
  background-position: center left;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 1023px) {
  .infCardsSect__card {
    padding: 37px 35px 35px;
    width: calc(50% - 20px);
  }
}
@media (max-width: 767px) {
  .infCardsSect__card {
    padding: 30px;
    width: 100%;
  }
}
.infCardsSect__title {
  color: #000;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
  margin: 0 0 35px;
}
@media (max-width: 1023px) {
  .infCardsSect__title {
    margin-bottom: 27px;
    font-size: 30px;
    line-height: 35px;
  }
}
@media (max-width: 767px) {
  .infCardsSect__title {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 27px;
  }
}
.infCardsSect__title span {
  color: #00ADEE;
}
.infCardsSect__text {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}
@media (max-width: 1023px) {
  .infCardsSect__text {
    font-size: 18px;
    line-height: 27px;
  }
}
@media (max-width: 767px) {
  .infCardsSect__text {
    font-size: 16px;
    line-height: 25px;
  }
}
.infCardsSect__text b {
  font-weight: 700;
}

.contactsInf {
  margin: 70px 0;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .contactsInf {
    margin: 55px 0;
  }
}
@media (max-width: 767px) {
  .contactsInf {
    margin: 40px 0;
  }
}
.contactsInf__titleWr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media (max-width: 1023px) {
  .contactsInf__titleWr {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .contactsInf__titleWr {
    margin-bottom: 30px;
  }
}
.contactsInf__title {
  color: #000;
  font-size: 50px;
  font-weight: 700;
  line-height: 45px;
  margin: 0;
}
@media (max-width: 1023px) {
  .contactsInf__title {
    font-size: 38px;
    line-height: 37px;
  }
}
@media (max-width: 767px) {
  .contactsInf__title {
    font-size: 26px;
    line-height: 30px;
  }
}
.contactsInf__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 767px) {
  .contactsInf__nav {
    display: none;
  }
}
.contactsInf__nav--mob {
  display: none;
}
@media (max-width: 767px) {
  .contactsInf__nav--mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 30px 0 40px;
  }
}
.contactsInf__prev, .contactsInf__next {
  display: block;
  width: 60px;
  height: auto;
}
.contactsInf__prev svg, .contactsInf__next svg {
  display: block;
  width: 100%;
  height: auto;
}
.contactsInf__prev svg path, .contactsInf__next svg path {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  fill: #00ADEE;
}
@media (max-width: 767px) {
  .contactsInf__prev svg path, .contactsInf__next svg path {
    fill: #00ADEE;
  }
}
@media (hover: hover) {
  .contactsInf__prev:hover path, .contactsInf__next:hover path {
    fill: #47C1EF;
  }
}
.contactsInf__prev.swiper-button-disabled svg path, .contactsInf__next.swiper-button-disabled svg path {
  fill: #D9D9D9;
}
.contactsInf__slider {
  margin-bottom: 60px;
  overflow: visible;
}
@media (max-width: 1023px) {
  .contactsInf__slider {
    margin-bottom: 45px;
  }
}
.contactsInf__slide img {
  display: block;
  width: 100%;
  max-height: 90vh;
  -o-object-fit: cover;
  object-fit: cover;
}
.contactsInf__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 120px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 1023px) {
  .contactsInf__wrap {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .contactsInf__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}
.contactsInf__left {
  width: 320px;
}
@media (max-width: 1023px) {
  .contactsInf__left {
    width: 260px;
  }
}
@media (max-width: 767px) {
  .contactsInf__left {
    width: 100%;
  }
}
.contactsInf__right {
  width: calc(100% - 320px - 120px);
}
@media (max-width: 1023px) {
  .contactsInf__right {
    width: calc(100% - 260px - 40px);
  }
}
@media (max-width: 767px) {
  .contactsInf__right {
    width: 100%;
  }
}
.contactsInf__cons {
  border-radius: 80px;
  background: #00ADEE;
  padding: 26px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #FFF;
  text-align: center;
  font-size: 23px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .contactsInf__cons {
    padding: 25px 35px;
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 35px;
  }
}
@media (max-width: 767px) {
  .contactsInf__cons {
    padding: 24px 30px;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 20px;
    width: 100%;
  }
}
@media (hover: hover) {
  .contactsInf__cons:hover {
    background-color: #47C1EF;
  }
}
.contactsInf__cons:active {
  background-color: #0598CF;
}
.contactsInf__tels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
}
.contactsInf__tels a {
  color: #000;
  text-align: left;
  font-size: 30px;
  font-weight: 700;
  line-height: 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1023px) {
  .contactsInf__tels a {
    font-size: 25px;
    line-height: 37px;
  }
}
@media (max-width: 767px) {
  .contactsInf__tels a {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (hover: hover) {
  .contactsInf__tels a:hover {
    color: #00ADEE;
  }
}
.contactsInf__mainText {
  color: #000;
  font-size: 33px;
  font-weight: 500;
  line-height: 44px;
  margin-bottom: 40px;
}
@media (max-width: 1023px) {
  .contactsInf__mainText {
    margin-bottom: 25px;
    font-size: 25px;
    line-height: 35px;
  }
}
@media (max-width: 767px) {
  .contactsInf__mainText {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 25px;
  }
}
.contactsInf__mainText span {
  color: #00ADEE;
  font-weight: 700;
}
.contactsInf__mainText b {
  font-weight: 700;
}
.contactsInf__color {
  color: #FFF;
  font-size: 27px;
  font-weight: 600;
  line-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 1023px) {
  .contactsInf__color {
    font-size: 22px;
    line-height: 33px;
  }
}
@media (max-width: 767px) {
  .contactsInf__color {
    font-size: 18px;
    line-height: 27px;
  }
}
.contactsInf__color p {
  margin: 0;
  background: #00ADEE;
  display: inline;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 1023px) {
  .contactsInf__color p {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 767px) {
  .contactsInf__color p {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.contactsInf__color p:first-child {
  padding-top: 5px;
}
@media (max-width: 1023px) {
  .contactsInf__color p:first-child {
    padding-top: 4px;
  }
}
@media (max-width: 767px) {
  .contactsInf__color p:first-child {
    padding-top: 3px;
  }
}
.contactsInf__color p:last-child {
  padding-bottom: 5px;
}
@media (max-width: 1023px) {
  .contactsInf__color p:last-child {
    padding-bottom: 4px;
  }
}
@media (max-width: 767px) {
  .contactsInf__color p:last-child {
    padding-bottom: 3px;
  }
}

.director {
  margin: 70px 0;
}
@media (max-width: 1023px) {
  .director {
    margin: 55px 0;
  }
}
@media (max-width: 767px) {
  .director {
    margin: 40px 0;
  }
}
.director__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
}
@media (max-width: 1023px) {
  .director__wrap {
    gap: 40px;
  }
}
.straumann {
  padding: 60px 0 130px;
  background-position: center left;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 1023px) {
  .straumann {
    background: #27272A !important;
    padding: 47px 0 110px;
  }
}
@media (max-width: 767px) {
  .straumann {
    padding: 35px 0 95px;
  }
}
.straumann__bot {
  background: -webkit-gradient(linear, left top, right top, color-stop(26.45%, rgba(255, 255, 255, 0.2)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 26.45%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
}
@media (max-width: 1023px) {
  .straumann__bot {
    padding: 12px 0;
  }
}
@media (max-width: 767px) {
  .straumann__bot {
    padding: 10px 0;
  }
}
.straumann__botImg {
  display: block;
  width: 170px;
  height: auto;
}
@media (max-width: 1023px) {
  .straumann__botImg {
    width: 160px;
  }
}
@media (max-width: 767px) {
  .straumann__botImg {
    width: 150px;
    margin-left: auto;
    margin-right: auto;
  }
}
.straumann__cont {
  margin-left: 300px;
}
@media (max-width: 1023px) {
  .straumann__cont {
    margin-left: 0;
  }
}
.straumann__title {
  color: #DFDFDF;
  text-align: left;
  font-size: 45px;
  font-weight: 700;
  line-height: 45px;
  margin: 0 0 60px;
}
@media (max-width: 1023px) {
  .straumann__title {
    margin-bottom: 40px;
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .straumann__title {
    margin-bottom: 20px;
    font-size: 26px;
  }
}
.straumann__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 1023px) {
  .straumann__wrap {
    gap: 20px 30px;
  }
}
@media (max-width: 767px) {
  .straumann__wrap {
    gap: 15px 20px;
  }
}
.straumann__card {
  width: calc(33.3333333333% - 26.6666666667px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 1200px) {
  .straumann__card {
    width: calc(50% - 20px);
  }
}
@media (max-width: 1023px) {
  .straumann__card {
    gap: 27px;
    width: calc(50% - 15px);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .straumann__card {
    gap: 25px;
    width: calc(50% - 10px);
  }
}
@media (max-width: 600px) {
  .straumann__card {
    width: 100%;
  }
}
.straumann__card img {
  display: block;
  width: 70px;
  min-width: 70px;
  height: auto;
}
.straumann__card p {
  color: #DFDFDF;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  margin: 0;
}
@media (max-width: 1023px) {
  .straumann__card p {
    font-size: 16px;
    line-height: 21px;
  }
}
@media (max-width: 767px) {
  .straumann__card p {
    font-size: 15px;
    line-height: 20px;
  }
}

.stocks {
  margin: 40px 0 140px;
}
@media (max-width: 1023px) {
  .stocks {
    margin: 35px 0 100px;
  }
}
@media (max-width: 767px) {
  .stocks {
    margin: 30px 0 60px;
  }
}
.stocks__title {
  color: #000;
  font-size: 50px;
  font-weight: 700;
  line-height: 30px;
  margin: 0 0 60px;
}
@media (max-width: 1023px) {
  .stocks__title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .stocks__title {
    font-size: 30px;
  }
}
.stocks__wrap {
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 80px;
}
@media (max-width: 1023px) {
  .stocks__wrap {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .stocks__wrap {
    gap: 20px;
  }
}
.stocks__wrap img {
  display: block;
  width: calc(50% - 40px);
  height: auto;
  border: 1px solid #D9D9D9;
    max-width: 480px;
    max-height: 679px;
}
@media (max-width: 1023px) {
  .stocks__wrap img {
    width: calc(50% - 20px);
  }
}
@media (max-width: 767px) {
  .stocks__wrap img {
    width: calc(50% - 10px);
  }
}
@media (max-width: 600px) {
  .stocks__wrap img {
    width: 100%;
  }
}

.thanks {
  background: #00ADEE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 550px;
  padding: 60px 0;
}
@media (max-width: 1023px) {
  .thanks {
    min-height: 450px;
  }
}
@media (max-width: 767px) {
  .thanks {
    min-height: 350px;
  }
}
.thanks__title {
  color: #FFF;
  font-size: 45px;
  font-weight: 600;
  line-height: 50px;
  margin: 0 0 20px;
}
@media (max-width: 1023px) {
  .thanks__title {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .thanks__title {
    font-size: 27px;
    line-height: 30px;
  }
}
.thanks__descr {
  color: #FFF;
  font-size: 25px;
  font-weight: 400;
  line-height: 32px;
  margin: 0;
}
@media (max-width: 1023px) {
  .thanks__descr {
    font-size: 21px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .thanks__descr {
    font-size: 17px;
    line-height: 20px;
  }
}

.error {
  padding: 150px 0 200px;
}
@media (max-width: 1023px) {
  .error {
    padding: 100px 0 140px;
  }
}
@media (max-width: 767px) {
  .error {
    padding: 60px 0 80px;
  }
}
.error__title {
  color: #00ADEE;
  text-align: center;
  font-size: 114px;
  font-weight: 700;
  line-height: 100px;
  margin: 0 0 50px;
}
@media (max-width: 1023px) {
  .error__title {
    margin-bottom: 40px;
    font-size: 88px;
    line-height: 75px;
  }
}
@media (max-width: 767px) {
  .error__title {
    margin-bottom: 30px;
    font-size: 62px;
    line-height: 50px;
  }
}
.error__descr {
  color: #000;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  margin: 0 0 60px;
}
@media (max-width: 1023px) {
  .error__descr {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .error__descr {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}
.error__link {
  border-radius: 50px;
  background: #00ADEE;
  padding: 11px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .error__link:hover {
    opacity: 0.8;
  }
}

.command {
  margin: 40px 0 90px;
}
@media (max-width: 1023px) {
  .command {
    margin: 35px 0 70px;
  }
}
@media (max-width: 767px) {
  .command {
    margin: 30px 0 50px;
  }
}
.command__title {
  color: #000;
  font-family: Montserrat;
  font-size: 50px;
  font-weight: 700;
  line-height: 30px;
  margin: 0 0 70px;
}
@media (max-width: 1023px) {
  .command__title {
    margin-bottom: 50px;
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .command__title {
    margin-bottom: 30px;
    font-size: 30px;
  }
}
.command__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px 30px;
}
@media (max-width: 1023px) {
  .command__wrap {
    gap: 30px 20px;
  }
}
@media (max-width: 767px) {
  .command__wrap {
    gap: 28px 16px;
  }
}
.command__card {
  width: calc(33.3333333333% - 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1023px) {
  .command__card {
    width: calc(33.3333333333% - 13.3333333333px);
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .command__card {
    gap: 16px;
    width: calc(33.3333333333% - 10.6666666667px);
  }
}
@media (max-width: 650px) {
  .command__card {
    width: calc(50% - 8px);
  }
}
.command__card img {
  display: block;
  width: 100%;
  aspect-ratio: 39/55;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .command__card:hover .command__name {
    color: #00ADEE;
  }
  .command__card:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
}
.command__cardImg {
  display: block;
  overflow: hidden;
}
.command__name {
  color: #000;
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
  margin: 0 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .command__name {
    font-size: 21px;
    line-height: 25px;
    margin-bottom: 13px;
  }
}
@media (max-width: 767px) {
  .command__name {
    font-size: 17px;
    line-height: 20px;
    margin-bottom: 10px;
  }
}
.command__name span {
  font-weight: 500;
}
.command__descr {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 23px;
  margin: 0;
}
@media (max-width: 1023px) {
  .command__descr {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .command__descr {
    font-size: 14px;
    line-height: 17px;
  }
}

.portfolio {
  margin: 40px 0 90px;
}
@media (max-width: 1023px) {
  .portfolio {
    margin: 35px 0 70px;
  }
}
@media (max-width: 767px) {
  .portfolio {
    margin: 30px 0 50px;
  }
}
.portfolio__title {
  color: #000;
  font-family: Montserrat;
  font-size: 50px;
  font-weight: 700;
  line-height: 30px;
  margin: 0 0 70px;
}
@media (max-width: 1023px) {
  .portfolio__title {
    margin-bottom: 50px;
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .portfolio__title {
    margin-bottom: 30px;
    font-size: 30px;
  }
}
.portfolio__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 50px 40px;
}
@media (max-width: 1023px) {
  .portfolio__wrap {
    gap: 40px 20px;
  }
}
@media (max-width: 767px) {
  .portfolio__wrap {
    gap: 30px 16px;
  }
}
.portfolio__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  width: calc(33.3333333333% - 26.6666666667px);
}
@media (max-width: 1023px) {
  .portfolio__card {
    width: calc(33.3333333333% - 13.3333333333px);
    gap: 13px;
  }
}
@media (max-width: 767px) {
  .portfolio__card {
    width: calc(50% - 8px);
    gap: 10px;
  }
}
@media (hover: hover) {
  .portfolio__card:hover .portfolio__name {
    color: #00ADEE;
  }
  .portfolio__card:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
}
.portfolio__card img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 19/11;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.portfolio__name {
  color: #000;
  font-size: 21px;
  font-weight: 600;
  line-height: 27px;
  margin: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .portfolio__name {
    font-size: 18px;
    line-height: 23px;
  }
}
@media (max-width: 767px) {
  .portfolio__name {
    font-size: 16px;
    line-height: 20px;
  }
}
.portfolio__cardImg {
  overflow: hidden;
}

.contactsPage {
  margin: 40px 0 60px;
}
@media (max-width: 1023px) {
  .contactsPage {
    margin: 35px 0 50px;
  }
}
@media (max-width: 767px) {
  .contactsPage {
    margin: 30px 0 40px;
  }
}
.contactsPage__title {
  color: #000;
  font-family: Montserrat;
  font-size: 50px;
  font-weight: 700;
  line-height: 50px;
  margin: 0 0 40px;
}
@media (max-width: 1023px) {
  .contactsPage__title {
    margin-bottom: 35px;
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .contactsPage__title {
    margin-bottom: 30px;
    font-size: 30px;
  }
}
.contactsPage__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  .contactsPage__wrap {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .contactsPage__wrap {
    gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.contactsPage__inf {
  width: calc(50% - 30px);
}
@media (max-width: 1023px) {
  .contactsPage__inf {
    width: calc(50% - 20px);
  }
}
@media (max-width: 767px) {
  .contactsPage__inf {
    width: 100%;
  }
}
.contactsPage__img {
  display: block;
  width: calc(50% - 30px);
  height: auto;
}
@media (max-width: 1023px) {
  .contactsPage__img {
    width: calc(50% - 20px);
  }
}
@media (max-width: 767px) {
  .contactsPage__img {
    width: 100%;
    max-width: 450px;
  }
}
.contactsPage__t2 {
  color: #00ADEE;
  font-size: 27px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 0 30px;
}
@media (max-width: 1023px) {
  .contactsPage__t2 {
    font-size: 22px;
    line-height: 33px;
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .contactsPage__t2 {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 20px;
  }
}
.contactsPage__lic {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 39px;
  margin: 0 0 40px;
}
@media (max-width: 1023px) {
  .contactsPage__lic {
    margin-bottom: 32px;
    font-size: 18px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .contactsPage__lic {
    font-size: 16px;
    line-height: 29px;
    margin-bottom: 25px;
  }
}
.contactsPage__addr {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 40px;
  margin: 0 0 10px;
}
@media (max-width: 1023px) {
  .contactsPage__addr {
    font-size: 18px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .contactsPage__addr {
    font-size: 16px;
    line-height: 29px;
  }
}
.contactsPage__tels a {
  display: inline-block;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 40px;
}
@media (max-width: 1023px) {
  .contactsPage__tels a {
    font-size: 18px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .contactsPage__tels a {
    font-size: 16px;
    line-height: 29px;
  }
}
.contactsPage__mail, .contactsPage__wh {
  color: #00ADEE;
  font-size: 20px;
  font-weight: 500;
  line-height: 40px;
  text-decoration: underline;
  margin: 0 0 10px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .contactsPage__mail, .contactsPage__wh {
    font-size: 18px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .contactsPage__mail, .contactsPage__wh {
    font-size: 16px;
    line-height: 29px;
  }
}
@media (hover: hover) {
  .contactsPage__mail:hover, .contactsPage__wh:hover {
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
  }
}
.contactsPage__time {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 40px;
}
@media (max-width: 1023px) {
  .contactsPage__time {
    font-size: 18px;
    line-height: 35px;
  }
}
@media (max-width: 767px) {
  .contactsPage__time {
    font-size: 16px;
    line-height: 30px;
  }
}
.contactsPage__map iframe {
  width: 100% !important;
  height: 650px;
  max-height: 90svh;
  display: block;
}
@media (max-width: 1023px) {
  .contactsPage__map iframe {
    height: 460px;
  }
}
@media (max-width: 767px) {
  .contactsPage__map iframe {
    height: 270px;
  }
}

.gallery {
  margin: 80px 0 60px;
}
@media (max-width: 1023px) {
  .gallery {
    margin: 70px 0 55px;
  }
}
@media (max-width: 767px) {
  .gallery {
    margin: 60px 0 50px;
  }
}
.gallery__title {
  color: #000;
  font-size: 50px;
  font-weight: 700;
  line-height: 30px;
  margin: 0 0 50px;
}
@media (max-width: 1023px) {
  .gallery__title {
    font-size: 40px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .gallery__title {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
.gallery__wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: auto 30px auto 30px auto 30px auto 30px auto 30px auto 30px auto 30px auto;
  grid-template-rows: auto repeat(3, auto) auto repeat(3, auto);
  gap: 30px;
  grid-template-areas: "img1 img1" "img2 img4" "img3 img4" "img3 img5" "img6 img6" "img7 img9" "img8 img9" "img8 img10";
}
@media (max-width: 1023px) {
  .gallery__wrap {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .gallery__wrap {
    gap: 10px;
  }
}
@media (max-width: 550px) {
  .gallery__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.gallery__wrap img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.gallery__wrap img:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: img1;
}
.gallery__wrap img:nth-child(2) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: img2;
}
.gallery__wrap img:nth-child(3) {
  -ms-grid-row: 5;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  grid-area: img3;
}
.gallery__wrap img:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  grid-area: img4;
}
.gallery__wrap img:nth-child(5) {
  -ms-grid-row: 7;
  -ms-grid-column: 3;
  grid-area: img5;
}
.gallery__wrap img:nth-child(6) {
  -ms-grid-row: 9;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: img6;
}
.gallery__wrap img:nth-child(7) {
  -ms-grid-row: 11;
  -ms-grid-column: 1;
  grid-area: img7;
}
.gallery__wrap img:nth-child(8) {
  -ms-grid-row: 13;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  grid-area: img8;
}
.gallery__wrap img:nth-child(9) {
  -ms-grid-row: 11;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  grid-area: img9;
}
.gallery__wrap img:nth-child(10) {
  -ms-grid-row: 15;
  -ms-grid-column: 3;
  grid-area: img10;
}

.reviews {
  margin: 70px 0 80px;
}
@media (max-width: 1023px) {
  .reviews {
    margin: 60px 0 70px;
  }
}
@media (max-width: 767px) {
  .reviews {
    margin: 50px 0 60px;
  }
}
.reviews__title {
  color: #000;
  font-size: 50px;
  font-weight: 700;
  line-height: 30px;
  margin: 0 0 35px;
}
@media (max-width: 1023px) {
  .reviews__title {
    font-size: 40px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .reviews__title {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
.reviews__slide {
  background: #F3F3F3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
  padding: 40px 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: auto;
}
@media (max-width: 1023px) {
  .reviews__slide {
    padding: 32px 25px;
  }
}
@media (max-width: 767px) {
  .reviews__slide {
    padding: 25px 20px;
  }
}
.reviews__slideTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
}
.reviews__slideName {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
}
.reviews__slideDate {
  color: #9E9E9E;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
}
@media (max-width: 1023px) {
  .reviews__slideDate {
    font-size: 15px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .reviews__slideDate {
    font-size: 14px;
    line-height: 20px;
  }
}
.reviews__slideReit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
}
@media (max-width: 1023px) {
  .reviews__slideReit {
    margin-bottom: 17px;
  }
}
@media (max-width: 767px) {
  .reviews__slideReit {
    margin-bottom: 15px;
  }
}
.reviews__slideReit svg {
  display: block;
  width: 14px;
  height: auto;
}
.reviews__text {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 10px;
}
@media (max-width: 1023px) {
  .reviews__text {
    font-size: 15px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .reviews__text {
    font-size: 14px;
    line-height: 20px;
  }
}
.reviews__link {
  color: #9E9E9E;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: underline;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .reviews__link:hover {
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
  }
}
.reviews__wr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 1023px) {
  .reviews__wr {
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .reviews__wr {
    margin-bottom: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.reviews__reit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}
.reviews__reit img {
  display: block;
  width: 65px;
  min-width: 65px;
  height: auto;
}
.reviews__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 767px) {
  .reviews__nav {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
}
.reviews__btnPrev, .reviews__btnNext {
  display: block;
  width: 60px;
  height: auto;
}
.reviews__btnPrev svg, .reviews__btnNext svg {
  display: block;
  width: 100%;
  height: auto;
}
.reviews__btnPrev svg path, .reviews__btnNext svg path {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  fill: #00ADEE;
}
@media (max-width: 767px) {
  .reviews__btnPrev svg path, .reviews__btnNext svg path {
    fill: #00ADEE;
  }
}
@media (hover: hover) {
  .reviews__btnPrev:hover path, .reviews__btnNext:hover path {
    fill: #47C1EF;
  }
}
.reviews__btnPrev.swiper-button-disabled svg path, .reviews__btnNext.swiper-button-disabled svg path {
  fill: #D9D9D9;
}

.about__img {
  aspect-ratio: 1799/613;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 36px;
  width: 100%;
}
@media (max-width: 1023px) {
  .about__img {
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  .about__img {
    padding-top: 24px;
  }
}
.about__cont {
  background: #2D2E31;
  padding: 70px 0;
}
.about__inf {
  border-left: 10px solid #00ADEE;
  padding-left: 55px;
}
@media (max-width: 1023px) {
  .about__inf {
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  .about__inf {
    padding-left: 25px;
  }
}
.about__title {
  color: #DFDFDF;
  font-size: 35px;
  font-weight: 500;
  line-height: 41px;
  margin: 0 0 25px;
  max-width: 800px;
}
@media (max-width: 1023px) {
  .about__title {
    margin-bottom: 22px;
    font-size: 29px;
    line-height: 35px;
  }
}
@media (max-width: 767px) {
  .about__title {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 30px;
  }
}
.about__title span {
  color: #00ADEE;
  font-size: 44px;
  font-weight: 700;
  line-height: 30px;
}
@media (max-width: 1023px) {
  .about__title span {
    font-size: 35px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .about__title span {
    font-size: 26px;
    line-height: 26px;
  }
}
.about__text {
  color: #DFDFDF;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  margin: 0;
}
@media (max-width: 1023px) {
  .about__text {
    font-size: 22px;
    line-height: 27px;
  }
}
@media (max-width: 767px) {
  .about__text {
    font-size: 20px;
    line-height: 24px;
  }
}

.technologyPage {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 0 100px;
}
@media (max-width: 1023px) {
  .technologyPage {
    padding: 32px 0 80px;
  }
}
@media (max-width: 767px) {
  .technologyPage {
    padding: 24px 0 60px;
  }
}
.technologyPage__title {
  color: #D8D8D8;
  font-size: 50px;
  font-weight: 700;
  line-height: 50px;
  margin: 0 0 70px;
}
@media (max-width: 1023px) {
  .technologyPage__title {
    font-size: 37px;
    line-height: 37px;
    margin: 0 0 50px;
  }
}
@media (max-width: 767px) {
  .technologyPage__title {
    font-size: 25px;
    line-height: 25px;
    margin: 0 0 35px;
    margin-top: 20px ;
  }
}
.technologyPage__text {
  padding-left: 50px;
  border-left: 10px solid #00ADEE;
  color: #FFF;
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  text-wrap: balance;
  max-width: 960px;
}
@media (max-width: 1023px) {
  .technologyPage__text {
    font-size: 18px;
    line-height: 25px;
    padding-left: 35px;
  }
}
@media (max-width: 767px) {
  .technologyPage__text {
    font-size: 15px;
    line-height: 20px;
    padding-left: 20px;
  }
}
.technologyPage__text b {
  font-size: 26px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .technologyPage__text b {
    font-size: 18px;
    line-height: 20px;
  }
}

.technologyCards__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
}
@media (max-width: 767px) {
  .technologyCards__wrap {
    gap: 30px;
  }
}
.technologyCards__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 767px) {
  .technologyCards__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
}
.technologyCards__card--bg {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .technologyCards__card--bg {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 20px;
    padding: 0 20px 30px 0;
    position: relative;
  }
  .technologyCards__card--bg::after {
    content: "";
    display: block;
    width: calc(100vw - 16px);
    height: 100%;
    border-radius: 0 80px 0 0;
    background: #F3F3F3;
    position: absolute;
    top: 0;
    left: -15px;
  }
}
@media (max-width: 767px) {
  .technologyCards__card--bg .technologyCards__img {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    margin-left: auto;
    margin-right: auto;
  }
}
.technologyCards__img {
  display: block;
  width: calc(50% - 20px);
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .technologyCards__img {
    width: 100%;
    max-width: 400px;
  }
}
.technologyCards__cont {
  width: calc(50% - 20px);
  padding: 80px 0;
}
@media (max-width: 1023px) {
  .technologyCards__cont {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .technologyCards__cont {
    padding: 0;
    width: 100%;
  }
}
.technologyCards__cont--bg {
  padding: 65px 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 1023px) {
  .technologyCards__cont--bg {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .technologyCards__cont--bg {
    padding: 0;
  }
}
.technologyCards__cont--bg::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 80px 0 0;
  background: #F3F3F3;
  height: 100%;
  width: 70vw;
  -webkit-transform: translateX(calc((100vw - 1230px) / -2));
  -ms-transform: translateX(calc((100vw - 1230px) / -2));
  transform: translateX(calc((100vw - 1230px) / -2));
}
@media (max-width: 1260px) {
  .technologyCards__cont--bg::after {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    left: -15px;
    width: 80vw;
  }
}
@media (max-width: 767px) {
  .technologyCards__cont--bg::after {
    content: none;
  }
}
.technologyCards__cont--bg > * {
  position: relative;
  z-index: 2;
}
.technologyCards__cont ul {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 35px;
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
}
@media (max-width: 1023px) {
  .technologyCards__cont ul {
    font-size: 16px;
    line-height: 26px;
    gap: 4px;
  }
}
@media (max-width: 767px) {
  .technologyCards__cont ul {
    font-size: 15px;
    line-height: 20px;
    gap: 8px;
  }
}
.technologyCards__cont ul li::marker {
  color: #00ADEE;
}
.technologyCards__cont > *:last-child {
  margin-bottom: 0 !important;
}
.technologyCards__title {
  margin: 0 0 40px;
  color: #000;
  font-size: 40px;
  font-weight: 700;
  line-height: 44px;
}
@media (max-width: 1023px) {
  .technologyCards__title {
    margin-bottom: 25px;
    font-size: 31px;
    line-height: 37px;
  }
}
@media (max-width: 767px) {
  .technologyCards__title {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 26px;
  }
}
.technologyCards__title span {
  font-weight: 400;
}
@media (max-width: 1023px) {
  .technologyCards__title span {
    font-size: 29px;
    line-height: 37px;
  }
}
@media (max-width: 767px) {
  .technologyCards__title span {
    font-size: 18px;
    line-height: 26px;
  }
}
.technologyCards__title button {
  display: inline-block;
  width: 34px;
  vertical-align: middle;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .technologyCards__title button {
    width: 32px;
  }
}
@media (max-width: 767px) {
  .technologyCards__title button {
    width: 30px;
  }
}
@media (hover: hover) {
  .technologyCards__title button:hover {
    opacity: 0.8;
  }
}
.technologyCards__title button svg {
  display: block;
  width: 100%;
  height: auto;
}
.technologyCards__title a {
  color: #00ADEE;
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .technologyCards__title a:hover {
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
  }
}

.citate {
  background: #EFEFEF;
  padding: 60px 0;
  position: relative;
}
@media (max-width: 1023px) {
  .citate {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .citate {
    padding: 40px 0;
  }
}
.citate::after {
  content: "";
  display: block;
  width: 315px;
  height: 240px;
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 45px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"315\" height=\"240\" viewBox=\"0 0 315 240\" fill=\"none\"><path d=\"M119.373 0V19.0695C92.3339 33.3329 72.976 48.2164 61.2999 63.72C49.6237 79.2237 43.7856 96.1227 43.7856 114.417C43.7856 125.27 45.322 132.711 48.3946 136.742C51.16 141.083 54.54 143.254 58.5345 143.254C62.5289 143.254 67.9061 142.169 74.666 139.998C81.4259 137.517 87.5712 136.277 93.1021 136.277C105.7 136.277 116.608 141.083 125.826 150.696C135.351 159.998 140.114 171.47 140.114 185.114C140.114 199.997 134.43 212.865 123.061 223.718C111.692 234.26 97.5574 239.532 80.6577 239.532C60.0708 239.532 41.4811 230.539 24.8887 212.555C8.29622 194.571 0 172.401 0 146.044C0 115.037 10.1398 86.2003 30.4195 59.534C51.0064 32.5577 80.6577 12.713 119.373 0ZM292.877 1.39533V19.0695C261.843 37.0537 241.409 53.1775 231.577 67.4409C221.744 81.7043 216.828 98.4482 216.828 117.673C216.828 126.355 218.518 132.866 221.898 137.207C225.278 141.548 228.811 143.719 232.499 143.719C235.879 143.719 240.949 142.479 247.708 139.998C254.468 137.517 261.228 136.277 267.988 136.277C280.586 136.277 291.494 140.928 300.712 150.23C310.237 159.223 315 170.385 315 183.718C315 198.912 309.008 212.09 297.025 223.253C285.349 234.415 270.907 239.997 253.7 239.997C233.42 239.997 215.138 231.16 198.853 213.485C182.568 195.811 174.425 173.796 174.425 147.44C174.425 114.882 184.719 85.2701 205.305 58.6038C225.892 31.6275 255.083 12.558 292.877 1.39533Z\" fill=\"white\"/></svg>");
}
@media (max-width: 1023px) {
  .citate::after {
    width: 252px;
    height: 192px;
    top: 10px;
    left: 25px;
  }
}
@media (max-width: 767px) {
  .citate::after {
    width: 201px;
    height: 154px;
    top: 10px;
    left: 10px;
  }
}
.citate .container {
  position: relative;
  z-index: 2;
}
.citate__title {
  color: #000;
  font-size: 23px;
  font-weight: 700;
  line-height: 23px;
  margin: 0 0 30px;
}
@media (max-width: 1023px) {
  .citate__title {
    font-size: 21px;
    line-height: 21px;
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .citate__title {
    font-size: 19px;
    line-height: 19px;
    margin-bottom: 20px;
  }
}
.citate__text {
  margin-left: 90px;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
}
@media (max-width: 1023px) {
  .citate__text {
    margin-left: 55px;
    font-size: 17px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .citate__text {
    margin-left: 20px;
    font-size: 16px;
    line-height: 22px;
  }
}
.citate__text p {
  margin: 7px 0;
}
@media (max-width: 1023px) {
  .citate__text p {
    margin: 6px 0;
  }
}
@media (max-width: 767px) {
  .citate__text p {
    margin: 5px 0;
  }
}

.docEduc {
  margin: 60px 0;
}
@media (max-width: 1023px) {
  .docEduc {
    margin: 50px 0;
  }
}
@media (max-width: 767px) {
  .docEduc {
    margin: 40px 0;
  }
}
.docEduc__wr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1023px) {
  .docEduc__wr {
    gap: 35px;
  }
}
@media (max-width: 767px) {
  .docEduc__wr {
    gap: 30px;
  }
}
.docEduc__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}
@media (max-width: 1023px) {
  .docEduc__card {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .docEduc__card {
    gap: 20px;
  }
}
.docEduc__name {
  color: #000;
  font-size: 23px;
  font-weight: 700;
  line-height: 23px;
  margin: 0;
}
@media (max-width: 1023px) {
  .docEduc__name {
    font-size: 21px;
    line-height: 21px;
  }
}
@media (max-width: 767px) {
  .docEduc__name {
    font-size: 19px;
    line-height: 19px;
  }
}
.docEduc__list {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}
@media (max-width: 1023px) {
  .docEduc__list {
    gap: 9px;
    font-size: 17px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .docEduc__list {
    gap: 8px;
    font-size: 16px;
    line-height: 24px;
  }
}
.docEduc__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 5px;
}
.docEduc__list li span {
  width: 90px;
  min-width: 90px;
}
@media (max-width: 1023px) {
  .docEduc__list li span {
    width: 70px;
    min-width: 70px;
  }
}
@media (max-width: 767px) {
  .docEduc__list li span {
    width: 66px;
    min-width: 66px;
  }
}

.portfolio2 {
  background: #F3F3F3;
  padding: 60px 0 70px;
  overflow: hidden;
}
.portfolio2__wr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 60px;
}
@media (max-width: 1023px) {
  .portfolio2__wr {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .portfolio2__wr {
    margin-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.portfolio2__title {
  color: #000;
  font-size: 38px;
  font-weight: 700;
  line-height: 40px;
  margin: 0;
}
@media (max-width: 1023px) {
  .portfolio2__title {
    font-size: 32px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .portfolio2__title {
    font-size: 26px;
    line-height: 28px;
  }
}
.portfolio2__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 767px) {
  .portfolio2__nav {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
}
.portfolio2__btnPrev, .portfolio2__btnNext {
  display: block;
  width: 60px;
  height: auto;
}
.portfolio2__btnPrev svg, .portfolio2__btnNext svg {
  display: block;
  width: 100%;
  height: auto;
}
.portfolio2__btnPrev svg path, .portfolio2__btnNext svg path {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  fill: #00ADEE;
}
@media (max-width: 767px) {
  .portfolio2__btnPrev svg path, .portfolio2__btnNext svg path {
    fill: #00ADEE;
  }
}
@media (hover: hover) {
  .portfolio2__btnPrev:hover path, .portfolio2__btnNext:hover path {
    fill: #47C1EF;
  }
}
.portfolio2__btnPrev.swiper-button-disabled svg path, .portfolio2__btnNext.swiper-button-disabled svg path {
  fill: #D9D9D9;
}
@media (max-width: 549px) {
  .portfolio2__slider {
    overflow: visible;
  }
}
.portfolio2__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
  padding-left: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: auto;
}
@media (max-width: 767px) {
  .portfolio2__slide {
    padding-left: 5px;
  }
}
@media (max-width: 549px) {
  .portfolio2__slide {
    width: 300px;
  }
}
@media (hover: hover) {
  .portfolio2__slide:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
}
.portfolio2__img {
  position: relative;
  display: block;
  overflow: hidden;
}
.portfolio2__img img {
  display: block;
  width: 100%;
  aspect-ratio: 39/35;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.portfolio2__img::after {
  content: "";
  display: block;
  width: 10px;
  height: 50%;
  position: absolute;
  left: -10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #00ADEE;
}
@media (max-width: 767px) {
  .portfolio2__img::after {
    width: 5px;
    left: -5px;
  }
}
.portfolio2__name {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  width: 100%;
  max-width: calc(100% - 50px);
  margin: 0;
}
@media (max-width: 1023px) {
  .portfolio2__name {
    font-size: 25px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .portfolio2__name {
    font-size: 20px;
    line-height: 22px;
  }
}
.portfolio2__cont {
  background: #FFF;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 25px 30px 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 1023px) {
  .portfolio2__cont {
    padding: 20px 25px 30px;
  }
}
@media (max-width: 767px) {
  .portfolio2__cont {
    padding: 15px 20px 25px;
  }
}
.portfolio2__descr {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  margin: 0 0 15px;
}
@media (max-width: 1023px) {
  .portfolio2__descr {
    font-size: 17px;
    line-height: 25px;
  }
}
@media (max-width: 767px) {
  .portfolio2__descr {
    font-size: 16px;
    line-height: 22px;
  }
}
.portfolio2__dec {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: #00ADEE;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .portfolio2__dec {
    font-size: 17px;
    line-height: 25px;
  }
}
@media (max-width: 767px) {
  .portfolio2__dec {
    font-size: 16px;
    line-height: 22px;
  }
}
.portfolio2__dec svg {
  display: block;
  width: 17px;
  height: auto;
}
@media (max-width: 1023px) {
  .portfolio2__dec svg {
    width: 16px;
  }
}
@media (max-width: 767px) {
  .portfolio2__dec svg {
    width: 15px;
  }
}
@media (hover: hover) {
  .portfolio2__dec:hover {
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
  }
}

.doctor {
  margin: 36px 0 60px;
}
@media (max-width: 1023px) {
  .doctor {
    margin-top: 30px;
    margin-bottom: 55px;
  }
}
@media (max-width: 767px) {
  .doctor {
    margin-top: 24px;
    margin-bottom: 50px;
  }
}
.doctor__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 1023px) {
  .doctor__wrap {
    gap: 30px;
  }
}
.doctor__img {
  display: block;
  width: 500px;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0 80px 0 0;
}
@media (max-width: 1023px) {
  .doctor__img {
    width: 360px;
  }
}
@media (max-width: 767px) {
  .doctor__img {
    display: none;
  }
}
.doctor__img--mob {
  display: none;
}
@media (max-width: 767px) {
  .doctor__img--mob {
    display: block;
    width: 100%;
    max-width: 450px;
    margin-bottom: 15px;
  }
}
.doctor__content {
  width: calc(100% - 500px - 70px);
}
@media (max-width: 1023px) {
  .doctor__content {
    width: calc(100% - 360px - 30px);
  }
}
@media (max-width: 767px) {
  .doctor__content {
    width: 100%;
  }
}
.doctor__title {
  color: #000;
  font-size: 40px;
  font-weight: 700;
  line-height: 45px;
  margin: 0 0 30px;
}
@media (max-width: 1023px) {
  .doctor__title {
    font-size: 33px;
    line-height: 37px;
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .doctor__title {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}
.doctor__title2 {
  color: #00ADEE;
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
  margin: 0 0 12px;
}
@media (max-width: 1023px) {
  .doctor__title2 {
    font-size: 23px;
    line-height: 27px;
  }
}
@media (max-width: 767px) {
  .doctor__title2 {
    font-size: 21px;
    line-height: 24px;
  }
}
.doctor__spec {
  color: #00ADEE;
  font-size: 21px;
  font-weight: 500;
  line-height: 25px;
  margin: 0 0 30px;
}
@media (max-width: 1023px) {
  .doctor__spec {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .doctor__spec {
    font-size: 19px;
    line-height: 23px;
    margin-bottom: 20px;
  }
}
.doctor__vert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 1023px) {
  .doctor__vert {
    gap: 25px;
  }
}
@media (max-width: 767px) {
  .doctor__vert {
    gap: 20px;
  }
}
.doctor__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 1023px) {
  .doctor__card {
    gap: 13px;
  }
}
@media (max-width: 767px) {
  .doctor__card {
    gap: 12px;
  }
}
.doctor__title3 {
  color: #000;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}
@media (max-width: 1023px) {
  .doctor__title3 {
    font-size: 21px;
  }
}
@media (max-width: 767px) {
  .doctor__title3 {
    font-size: 20px;
  }
}
.doctor__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}
@media (max-width: 1023px) {
  .doctor__list {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .doctor__list {
    gap: 12px;
  }
}
.doctor__list li {
  padding-left: 50px;
  position: relative;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}
@media (max-width: 1023px) {
  .doctor__list li {
    font-size: 17px;
    line-height: 26px;
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  .doctor__list li {
    font-size: 16px;
    line-height: 24px;
    padding-left: 37px;
  }
}
.doctor__list li span {
  font-weight: 500;
}
.doctor__list li a {
  color: #00ADEE;
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .doctor__list li a:hover {
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
  }
}
.doctor__list li::after {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 1px;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml,<svg width=\"31\" height=\"28\" viewBox=\"0 0 31 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"14\" cy=\"14\" r=\"14\" fill=\"%2300ADEE\"/><path d=\"M8.18945 13L13.4827 18.2929C13.8732 18.6834 14.5064 18.6834 14.8969 18.2929L28.6898 4.5\" stroke=\"white\" stroke-width=\"3\" stroke-linecap=\"round\"/></svg>");
}
@media (max-width: 1023px) {
  .doctor__list li::after {
    top: -1px;
    width: 27px;
    height: 27px;
  }
}
@media (max-width: 767px) {
  .doctor__list li::after {
    top: -1px;
    width: 26px;
    height: 26px;
  }
}

.serv {
  margin: 36px 0 60px;
}
@media (max-width: 1023px) {
  .serv {
    margin-top: 30px;
    margin-bottom: 55px;
  }
}
@media (max-width: 767px) {
  .serv {
    margin-top: 24px;
    margin-bottom: 50px;
  }
}
.serv__title {
  color: #000;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 50px;
}
@media (max-width: 1023px) {
  .serv__title {
    font-size: 40px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .serv__title {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
.serv__text {
  font-size: 18px;
  line-height: 1.5;
}
@media (max-width: 1023px) {
  .serv__text {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .serv__text {
    font-size: 16px;
  }
}
.serv__text h2 {
  color: #000;
  font-size: 30px;
  font-weight: 700;
  line-height: 0.9;
  margin: 30px 0 20px;
}
@media (max-width: 1023px) {
  .serv__text h2 {
    font-size: 26px;
    margin: 27px 0 18px;
  }
}
@media (max-width: 767px) {
  .serv__text h2 {
    font-size: 22px;
    margin: 24px 0 16px;
  }
}
.serv__cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 50px;
  margin-top: 30px;
}
@media (max-width: 1023px) {
  .serv__cols {
    gap: 30px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .serv__cols {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin-top: 0;
  }
}
.serv__cols--start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .serv__cols--start {
    gap: 0;
    margin-top: 0px;
  }
}
.serv__colText {
  width: calc(55% - 25px);
}
@media (max-width: 1023px) {
  .serv__colText {
    width: calc(55% - 15px);
  }
}
@media (max-width: 767px) {
  .serv__colText {
    width: 100%;
  }
}
.serv__colImg {
  width: calc(45% - 25px);
  height: auto;
  display: block;
}
@media (max-width: 1023px) {
  .serv__colImg {
    width: calc(45% - 15px);
  }
}
@media (max-width: 767px) {
  .serv__colImg {
    width: 100%;
    max-width: 450px;
  }
}
.serv__title2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  color: #000;
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
}
@media (max-width: 1023px) {
  .serv__title2 {
    font-size: 27px;
    margin-bottom: 11px;
  }
}
@media (max-width: 767px) {
  .serv__title2 {
    font-size: 24px;
    margin-bottom: 0;
  }
}
.serv__title2--mb {
  margin-bottom: 30px;
}
@media (max-width: 1023px) {
  .serv__title2--mb {
    margin-bottom: 27px;
  }
}
@media (max-width: 767px) {
  .serv__title2--mb {
    margin-bottom: 25px;
    margin: 30px 0 ;
  }
}
.serv__title2 span {
  color: #00ADEE;
}
.serv__title2 svg {
  display: block;
  width: 50px;
  height: auto;
}
@media (max-width: 1023px) {
  .serv__title2 svg {
    width: 40px;
  }
}
@media (max-width: 767px) {
  .serv__title2 svg {
    width: 30px;
  }
}
.serv__text2 {
  font-size: 18px;
  line-height: 1.5;
}
@media (max-width: 1023px) {
  .serv__text2 {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .serv__text2 {
    font-size: 16px;
    margin-top: 20px;
  }
}
.serv__text2 h3 {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  margin: 30px 0 20px;
}
@media (max-width: 1023px) {
  .serv__text2 h3 {
    font-size: 19px;
    margin: 25px 0 17px;
  }
}
@media (max-width: 767px) {
  .serv__text2 h3 {
    font-size: 18px;
    margin: 20px 0 15px;
  }
}
.serv__text2 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}
@media (max-width: 1023px) {
  .serv__text2 ul {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .serv__text2 ul {
    gap: 12px;
  }
}
.serv__text2 ul li {
  padding-left: 50px;
  position: relative;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}
@media (max-width: 1023px) {
  .serv__text2 ul li {
    font-size: 17px;
    line-height: 26px;
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  .serv__text2 ul li {
    font-size: 16px;
    line-height: 24px;
    padding-left: 37px;
  }
}
.serv__text2 ul li span {
  font-weight: 500;
}
.serv__text2 ul li a {
  color: #00ADEE;
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .serv__text2 ul li a:hover {
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
  }
}
.serv__text2 ul li::after {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 1px;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml,<svg width=\"31\" height=\"28\" viewBox=\"0 0 31 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"14\" cy=\"14\" r=\"14\" fill=\"%2300ADEE\"/><path d=\"M8.18945 13L13.4827 18.2929C13.8732 18.6834 14.5064 18.6834 14.8969 18.2929L28.6898 4.5\" stroke=\"white\" stroke-width=\"3\" stroke-linecap=\"round\"/></svg>");
}
@media (max-width: 1023px) {
  .serv__text2 ul li::after {
    top: -1px;
    width: 27px;
    height: 27px;
  }
}
@media (max-width: 767px) {
  .serv__text2 ul li::after {
    top: -1px;
    width: 26px;
    height: 26px;
  }
}
.serv__text2 a {
  color: #00ADEE;
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .serv__text2 a:hover {
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
  }
}
.serv__text3 {
  font-size: 18px;
  line-height: 1.5;
}
@media (max-width: 1023px) {
  .serv__text3 {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .serv__text3 {
    font-size: 16px;
  }
}
.serv__text3 h3 {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  margin: 30px 0 20px;
}
@media (max-width: 1023px) {
  .serv__text3 h3 {
    font-size: 19px;
    margin: 25px 0 17px;
  }
}
@media (max-width: 767px) {
  .serv__text3 h3 {
    font-size: 18px;
    margin: 20px 0 15px;
  }
}
.serv__text3 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}
@media (max-width: 1023px) {
  .serv__text3 ul {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .serv__text3 ul {
    gap: 12px;
  }
}
.serv__text3 ul li {
  padding-left: 50px;
  position: relative;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}
@media (max-width: 1023px) {
  .serv__text3 ul li {
    font-size: 17px;
    line-height: 26px;
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  .serv__text3 ul li {
    font-size: 16px;
    line-height: 24px;
    padding-left: 37px;
  }
}
.serv__text3 ul li span {
  font-weight: 500;
}
.serv__text3 ul li a {
  color: #00ADEE;
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .serv__text3 ul li a:hover {
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
  }
}
.serv__text3 ul li::after {
  content: "";
  display: block;
  width: 20px;
  height: 3px;
  position: absolute;
  top: 11px;
  left: 0;
  background: #00ADEE;
}
@media (max-width: 1023px) {
  .serv__text3 ul li::after {
    top: 11px;
  }
}
@media (max-width: 767px) {
  .serv__text3 ul li::after {
    top: 10px;
  }
}
.serv__text3 a {
  color: #00ADEE;
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .serv__text3 a:hover {
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
  }
}
.serv__vizit {
  margin-top: 30px;
}
.serv__vizitTitle {
  color: #000;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 35px;
}
@media (max-width: 1023px) {
  .serv__vizitTitle {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .serv__vizitTitle {
    font-size: 19px;
    margin-bottom: 25px;
  }
}
.serv__vizitWr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px 30px;
}
@media (max-width: 767px) {
  .serv__vizitWr {
    gap: 30px 20px;
  }
}
.serv__vizitCard {
  width: calc(33.3333333333% - 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
  counter-increment: vizit;
}
@media (max-width: 1023px) {
  .serv__vizitCard {
    width: calc(50% - 15px);
  }
}
@media (max-width: 767px) {
  .serv__vizitCard {
    width: calc(50% - 10px);
  }
}
@media (max-width: 600px) {
  .serv__vizitCard {
    width: 100%;
  }
}
.serv__vizitCard img {
  display: block;
  width: 100%;
  aspect-ratio: 391/418;
}
.serv__vizitCont {
  background: #F3F3F3;
  padding: 40px 35px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .serv__vizitCont {
    padding: 32px 27px;
  }
}
@media (max-width: 767px) {
  .serv__vizitCont {
    padding: 25px 20px;
  }
}
.serv__vizitCont::after {
  content: counter(vizit);
  position: absolute;
  right: 0;
  bottom: 0;
  color: #FFF;
  font-size: 300px;
  font-weight: 500;
  line-height: 1;
  -webkit-transform: translateX(20px) translateY(50px);
  -ms-transform: translateX(20px) translateY(50px);
  transform: translateX(20px) translateY(50px);
  z-index: 1;
}
@media (max-width: 1023px) {
  .serv__vizitCont::after {
    font-size: 200px;
    -webkit-transform: translateX(15px) translateY(35px);
    -ms-transform: translateX(15px) translateY(35px);
    transform: translateX(15px) translateY(35px);
  }
}
.serv__vizitName {
  color: #060606;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.07;
  margin: 0 0 30px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1023px) {
  .serv__vizitName {
    font-size: 26px;
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .serv__vizitName {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.serv__vizitText {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  z-index: 2;
  margin: 0;
}
@media (max-width: 1023px) {
  .serv__vizitText {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .serv__vizitText {
    font-size: 16px;
  }
}
.serv__textImgDecor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  border-radius: 80px 0 0 0;
  margin-bottom: 50px;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .serv__textImgDecor {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .serv__textImgDecor {
    margin-bottom: 10px;
    border-radius: 0;
  }
}
@media (max-width: 600px) {
  .serv__textImgDecor {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #00ADEE;
  }
}
.serv__textImgDecor img {
  display: block;
  width: 230px;
  min-width: 230px;
  height: auto;
}
@media (max-width: 1023px) {
  .serv__textImgDecor img {
    width: 180px;
    min-width: 180px;
  }
}
@media (max-width: 767px) {
  .serv__textImgDecor img {
    width: 150px;
    min-width: 150px;
    display: none;
  }
}
@media (max-width: 600px) {
  .serv__textImgDecor img {
    width: 180px;
    min-width: 180px;
  }
}
.serv__textImgDecorCont {
  padding: 30px 30px 30px 70px;
  background: #00ADEE;
  vertical-align: middle;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #FFF;
  font-size: 24px;
  font-weight: 500;
  line-height: 33px;
}
@media (max-width: 1023px) {
  .serv__textImgDecorCont {
    font-size: 21px;
    line-height: 29px;
    padding: 20px 20px 20px 30px;
  }
}
@media (max-width: 767px) {
  .serv__textImgDecorCont {
    font-size: 18px;
    line-height: 25px;
    padding: 20px;
  }
}
.serv__textImgDecorCont b {
  font-weight: 700;
}
.serv__infoBg {
  background: #EFEFEF;
  padding: 45px 150px;
  margin-top: 50px;
  color: #000;
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  background-position: left 25px center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,<svg width=\"53\" height=\"194\" viewBox=\"0 0 53 194\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M9.576 124.904L1.144 0.599987H51.736L43.304 124.904H9.576ZM26.44 193.176C18.824 193.176 12.568 190.728 7.672 185.832C2.776 180.936 0.328001 175.133 0.328001 168.424C0.328001 161.533 2.776 155.821 7.672 151.288C12.568 146.573 18.824 144.216 26.44 144.216C34.2373 144.216 40.4933 146.573 45.208 151.288C50.104 155.821 52.552 161.533 52.552 168.424C52.552 175.133 50.104 180.936 45.208 185.832C40.4933 190.728 34.2373 193.176 26.44 193.176Z\" fill=\"white\"/></svg>");
}
.serv__infoBg b {
  font-weight: 700;
}
@media (max-width: 1023px) {
  .serv__infoBg {
    font-size: 19px;
    line-height: 25px;
    padding: 35px 100px;
  }
}
@media (max-width: 767px) {
  .serv__infoBg {
    font-size: 16px;
    line-height: 20px;
    padding: 20px 20px 20px 70px;
    background-position: left 10px center;
  }
}
.serv__title3 {
  color: #00ADEE;
  font-size: 31px;
  font-weight: 700;
  line-height: 0.87;
  margin: 0 0 25px;
}
@media (max-width: 1023px) {
  .serv__title3 {
    font-size: 26px;
    margin-bottom: 22px;
  }
}
@media (max-width: 767px) {
  .serv__title3 {
    font-size: 21px;
    margin-bottom: 20px;
    margin-top: 30px;
  }
}
.serv__dopText {
  margin-top: 50px;
  color: #000;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 1023px) {
  .serv__dopText {
    margin-top: 45px;
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .serv__dopText {
    margin-top: 40px;
    font-size: 18px;
  }
}
.serv__bgTextWr {
  border-radius: 80px 0 0 0;
  background: #EFEFEF;
  padding: 50px 115px;
  margin: 50px 0;
}
@media (max-width: 1023px) {
  .serv__bgTextWr {
    margin: 45px 0;
    padding: 35px 60px;
  }
}
@media (max-width: 767px) {
  .serv__bgTextWr {
    margin: 40px 0;
    padding: 20px 30px;
  }
}
.serv__bgText {
  padding-left: 50px;
  position: relative;
  color: #000;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 1023px) {
  .serv__bgText {
    font-size: 20px;
    padding-left: 35px;
  }
}
@media (max-width: 767px) {
  .serv__bgText {
    font-size: 18px;
    padding-left: 25px;
  }
}
.serv__bgText::after {
  content: "";
  display: block;
  width: 10px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 80px 0 0 0;
  background: #00ADEE;
}
.serv__bgImgText {
  background: #EFEFEF;
  border-radius: 0 0 0 80px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 50px 0;
}
@media (max-width: 1023px) {
  .serv__bgImgText {
    margin: 45px 0;
  }
}
@media (max-width: 767px) {
  .serv__bgImgText {
    margin: 40px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.serv__bgImgTextImg {
  width: calc(45% - 25px);
  display: block;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 767px) {
  .serv__bgImgTextImg {
    width: 100%;
    max-width: 450px;
  }
}
.serv__bgImgTextText {
  padding: 30px 35px 30px 50px;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
@media (max-width: 1023px) {
  .serv__bgImgTextText {
    font-size: 17px;
    padding: 25px 20px 25px 30px;
  }
}
@media (max-width: 767px) {
  .serv__bgImgTextText {
    font-size: 16px;
    padding: 20px;
  }
}
.serv__bgImgTextText h2 {
  color: #000;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  margin: 25px 0 15px;
}
@media (max-width: 1023px) {
  .serv__bgImgTextText h2 {
    font-size: 27px;
  }
}
@media (max-width: 767px) {
  .serv__bgImgTextText h2 {
    font-size: 22px;
  }
}
.serv__bigTitle {
  color: #000;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 30px;
}
@media (max-width: 1023px) {
  .serv__bigTitle {
    font-size: 31px;
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .serv__bigTitle {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.serv__bigTitle2 {
  color: #000;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 30px;
}
@media (max-width: 1023px) {
  .serv__bigTitle2 {
    font-size: 27px;
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .serv__bigTitle2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.serv__bigTitle3 {
  color: #000;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 25px;
}
@media (max-width: 1023px) {
  .serv__bigTitle3 {
    font-size: 23px;
    margin-bottom: 22px;
  }
}
@media (max-width: 767px) {
  .serv__bigTitle3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.serv__situationsTitle {
  color: #000;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 30px;
}
@media (max-width: 1023px) {
  .serv__situationsTitle {
    font-size: 22px;
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .serv__situationsTitle {
    font-size: 19px;
    margin-bottom: 20px;
  }
}
.serv__situationsWr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px 80px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 1023px) {
  .serv__situationsWr {
    gap: 30px 40px;
  }
}
.serv__situationsCard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  width: calc(50% - 40px);
}
@media (max-width: 1023px) {
  .serv__situationsCard {
    gap: 25px;
    width: calc(50% - 20px);
  }
}
@media (max-width: 767px) {
  .serv__situationsCard {
    gap: 20px;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .serv__situationsCard {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.serv__situationsCardNumber {
  border-radius: 80px 0;
  width: 120px;
  background: #EFEFEF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 400px;
  height: auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #00ADEE;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 2.7;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 1023px) {
  .serv__situationsCardNumber {
    font-size: 17px;
    width: 110px;
  }
}
@media (max-width: 767px) {
  .serv__situationsCardNumber {
    font-size: 16px;
    width: 100px;
    height: auto;
    min-height: 220px;
  }
}
@media (max-width: 600px) {
  .serv__situationsCardNumber {
    min-height: initial;
    width: 100%;
    gap: 0;
  }
}
.serv__situationsCardNumber span {
  font-size: 170px;
  line-height: 1;
  font-weight: 500;
}
@media (max-width: 1023px) {
  .serv__situationsCardNumber span {
    font-size: 125px;
  }
}
@media (max-width: 767px) {
  .serv__situationsCardNumber span {
    font-size: 80px;
  }
}
.serv__situationsText {
  width: calc(100% - 120px - 30px);
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
@media (max-width: 1023px) {
  .serv__situationsText {
    width: calc(100% - 110px - 25px);
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .serv__situationsText {
    width: calc(100% - 100px - 20px);
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .serv__situationsText {
    width: 100%;
  }
}
.serv__situationsText h2 {
  color: #00ADEE;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  margin: 30px 0 20px;
}
@media (max-width: 1023px) {
  .serv__situationsText h2 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .serv__situationsText h2 {
    font-size: 19px;
  }
}
.serv__dopInfoText {
  margin-top: 50px;
}
@media (max-width: 1023px) {
  .serv__dopInfoText {
    margin-top: 45px;
  }
}
@media (max-width: 767px) {
  .serv__dopInfoText {
    margin-top: 40px;
  }
}
.serv__titltH2 {
  color: #000;
  font-size: 35px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 20px;
}
@media (max-width: 1023px) {
  .serv__titltH2 {
    font-size: 31px;
  }
}
@media (max-width: 767px) {
  .serv__titltH2 {
    font-size: 27px;
  }
}
.serv__dopInfoTextBorder {
  margin-top: 50px;
  padding-left: 40px;
  border-left: 10px solid #00ADEE;
  color: #000;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 1023px) {
  .serv__dopInfoTextBorder {
    margin-top: 40px;
    font-size: 20px;
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .serv__dopInfoTextBorder {
    margin-top: 30px;
    font-size: 18px;
    padding-left: 20px;
  }
}
.serv__video {
  display: block;
  width: 100%;
  max-width: 990px;
  margin: 40px auto 0;
}
@media (max-width: 1023px) {
  .serv__video {
    margin-top: 35px;
  }
}
@media (max-width: 767px) {
  .serv__video {
    margin-top: 30px;
  }
}
.serv__video video {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
  object-fit: cover;
}
.serv__bgImgT {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #EFEFEF;
  border-radius: 80px 0 0 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .serv__bgImgT {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.serv__bgImgT img {
  display: block;
  width: 45%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 767px) {
  .serv__bgImgT img {
    width: 100%;
    max-width: 450px;
  }
}
.serv__bgImgTContent {
  padding: 50px 40px 50px 80px;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
@media (max-width: 1023px) {
  .serv__bgImgTContent {
    padding: 35px 30px;
  }
}
@media (max-width: 767px) {
  .serv__bgImgTContent {
    padding: 20px;
  }
}
.serv__etaps {
  margin-top: 50px;
}
@media (max-width: 1023px) {
  .serv__etaps {
    margin-top: 45px;
  }
}
@media (max-width: 767px) {
  .serv__etaps {
    margin-top: 40px;
  }
}
.serv__etapsTitle {
  color: #000;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.32;
  margin: 0 0 40px;
}
.serv__etapsWr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px 80px;
}
@media (max-width: 1023px) {
  .serv__etapsWr {
    gap: 35px 50px;
  }
}
.serv__etapsCard {
  width: calc(50% - 40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 1023px) {
  .serv__etapsCard {
    gap: 20px;
    width: calc(50% - 25px);
  }
}
@media (max-width: 767px) {
  .serv__etapsCard {
    width: 100%;
    gap: 15px;
  }
}
.serv__etapsNumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 80px 0;
  background: #EFEFEF;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 15px;
  color: #00ADEE;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.67;
  text-transform: uppercase;
  padding: 10px 30px;
  text-align: center;
}
@media (max-width: 1023px) {
  .serv__etapsNumb {
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  .serv__etapsNumb {
    font-size: 20px;
  }
}
.serv__etapsNumb span {
  font-size: 100px;
  line-height: 1;
  font-weight: 500;
}
@media (max-width: 1023px) {
  .serv__etapsNumb span {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .serv__etapsNumb span {
    font-size: 40px;
  }
}

.textBgSect {
  background: #00ADEE;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .textBgSect {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .textBgSect {
    padding: 40px 0;
  }
}
.textBgSect .container {
  position: relative;
}
.textBgSect__img {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) translateX(-25%);
  -ms-transform: translateY(-50%) translateX(-25%);
  transform: translateY(-50%) translateX(-25%);
  display: block;
}
@media (max-width: 767px) {
  .textBgSect__img {
    display: none;
  }
}
.textBgSect__textWr {
  padding-left: 300px;
}
@media (max-width: 1023px) {
  .textBgSect__textWr {
    padding-left: 275px;
  }
}
@media (max-width: 767px) {
  .textBgSect__textWr {
    padding-left: 0;
  }
}
.textBgSect__title {
  color: #FFF;
  font-size: 29px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 20px;
  text-wrap: balance;
}
@media (max-width: 1023px) {
  .textBgSect__title {
    font-size: 25px;
    margin-bottom: 17px;
  }
}
@media (max-width: 767px) {
  .textBgSect__title {
    font-size: 21px;
    margin-bottom: 15px;
  }
}
.textBgSect__text {
  margin: 0;
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}
@media (max-width: 1023px) {
  .textBgSect__text {
    font-size: 19px;
  }
}
@media (max-width: 767px) {
  .textBgSect__text {
    font-size: 18px;
  }
}

.examples {
  background: #F3F3F3;
  padding: 60px 0;
}
@media (max-width: 1023px) {
  .examples {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .examples {
    padding: 40px 0;
  }
}
.examples__title {
  color: #000;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 40px;
}
@media (max-width: 1023px) {
  .examples__title {
    font-size: 35px;
    margin-bottom: 35px;
  }
}
@media (max-width: 767px) {
  .examples__title {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
.examples__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 70px;
}
@media (max-width: 1023px) {
  .examples__wrap {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .examples__wrap {
    gap: 20px;
  }
}
.examples__wrap > * {
  width: calc(50% - 35px);
}
@media (max-width: 1023px) {
  .examples__wrap > * {
    width: calc(50% - 20px);
  }
}
@media (max-width: 767px) {
  .examples__wrap > * {
    width: calc(50% - 10px);
  }
}
@media (max-width: 550px) {
  .examples__wrap > * {
    width: 100%;
  }
}
.examples__wrap > * .portfolio2__img img {
  aspect-ratio: 57/35;
}

.priceBlock {
  margin: 60px 0 90px;
}
@media (max-width: 1023px) {
  .priceBlock {
    margin: 50px 0 75px;
  }
}
@media (max-width: 767px) {
  .priceBlock {
    margin: 40px 0 60px;
  }
}
.priceBlock__title {
  margin: 0 0 30px;
  display: block;
  max-width: 550px;
  color: #000;
  font-size: 32px;
  font-weight: 700;
  line-height: 39px;
}
@media (max-width: 1023px) {
  .priceBlock__title {
    line-height: 37px;
    font-size: 29px;
  }
}
@media (max-width: 767px) {
  .priceBlock__title {
    line-height: 30px;
    font-size: 26px;
  }
}
.priceBlock__title--mb {
  margin-bottom: 60px;
}
@media (max-width: 1023px) {
  .priceBlock__title--mb {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .priceBlock__title--mb {
    margin-bottom: 40px;
  }
}
.priceBlock__title--width {
  max-width: 780px;
}
.priceBlock__title--width2 {
  max-width: 920px;
}
.priceBlock__title span {
  color: #00ADEE;
  font-size: 45px;
  font-weight: 700;
  line-height: 39px;
}
@media (max-width: 1023px) {
  .priceBlock__title span {
    font-size: 39px;
    line-height: 37px;
  }
}
@media (max-width: 767px) {
  .priceBlock__title span {
    font-size: 33px;
    line-height: 30px;
  }
}
.priceBlock__title b {
  font-size: 45px;
  font-weight: 700;
  line-height: 39px;
}
@media (max-width: 1023px) {
  .priceBlock__title b {
    font-size: 39px;
    line-height: 37px;
  }
}
@media (max-width: 767px) {
  .priceBlock__title b {
    font-size: 33px;
    line-height: 30px;
  }
}
.priceBlock__titleBg {
  background: #00ADEE;
  padding: 45px;
  margin-bottom: 60px;
}
@media (max-width: 1023px) {
  .priceBlock__titleBg {
    margin-bottom: 45px;
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .priceBlock__titleBg {
    margin-bottom: 30px;
    padding: 15px;
  }
}
.priceBlock__titleBg .priceBlock__title {
  color: #FFF;
  margin: 0;
  max-width: 780px;
}
.priceBlock__titleBg .priceBlock__title span {
  color: #FFF;
}
.priceBlock__text {
  margin-bottom: 60px;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
}
@media (max-width: 1023px) {
  .priceBlock__text {
    margin-bottom: 50px;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .priceBlock__text {
    margin-bottom: 40px;
    font-size: 16px;
  }
}
.priceBlock__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0 80px;
}
@media (max-width: 1023px) {
  .priceBlock__price {
    gap: 0 40px;
  }
}
@media (max-width: 767px) {
  .priceBlock__price {
    gap: 0 30px;
  }
}
.priceBlock__price--full > * {
  width: 100% !important;
}
.priceBlock__priceLine {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000;
  font-size: 17px;
  font-weight: 500;
  line-height: 25px;
  width: calc(50% - 40px);
  padding: 15px 30px;
  border-top: 1px solid #C3C3C3;
  border-bottom: 1px solid #C3C3C3;
  margin-top: -1px;
}
@media (max-width: 1023px) {
  .priceBlock__priceLine {
    font-size: 16px;
    line-height: 23px;
    width: calc(50% - 20px);
    padding: 12px 15px;
  }
}
@media (max-width: 767px) {
  .priceBlock__priceLine {
    font-size: 15px;
    line-height: 21px;
    padding: 10px;
    width: calc(50% - 15px);
  }
}
@media (max-width: 700px) {
  .priceBlock__priceLine {
    width: 100%;
  }
}
.priceBlock__priceLine span {
  font-weight: 700;
  white-space: nowrap;
  text-align: right;
}
.priceBlock__priceLine i {
  font-style: normal;
  color: #00ADEE;
  font-weight: 700;
  white-space: nowrap;
  text-align: right;
}
.priceBlock__title2 {
  color: #00ADEE;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  text-align: right;
}
@media (max-width: 1023px) {
  .priceBlock__title2 {
    font-size: 34px;
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .priceBlock__title2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.priceBlock__title32 {
  padding-left: 40px;
  border-left: 10px solid #00ADEE;
  margin: 0 0 40px;
  color: #000;
  font-size: 33px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 1023px) {
  .priceBlock__title32 {
    padding-left: 30px;
    margin-bottom: 35px;
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .priceBlock__title32 {
    padding-left: 20px;
    margin-bottom: 30px;
    font-size: 23px;
  }
}
.priceBlock__title32 span {
  color: #00ADEE;
}
.priceBlock__title32 p {
  margin: 0;
  color: #000;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.25;
}
@media (max-width: 1023px) {
  .priceBlock__title32 p {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .priceBlock__title32 p {
    font-size: 19px;
  }
}

.etaps {
  background: #F3F3F3;
  padding: 60px 0;
}
@media (max-width: 1023px) {
  .etaps {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .etaps {
    padding: 40px 0;
  }
}
.etaps__title {
  color: #000;
  font-size: 30px;
  font-weight: 700;
  line-height: 0.9;
  margin: 0 0 40px;
}
@media (max-width: 1023px) {
  .etaps__title {
    font-size: 27px;
    margin-bottom: 35px;
  }
}
@media (max-width: 767px) {
  .etaps__title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.etaps__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px 80px;
}
@media (max-width: 1023px) {
  .etaps__wrap {
    gap: 25px;
  }
}
@media (max-width: 767px) {
  .etaps__wrap {
    gap: 20px;
  }
}
.etaps__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  width: calc(50% - 40px);
  counter-increment: etaps;
}
@media (max-width: 1023px) {
  .etaps__card {
    width: 100%;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .etaps__card {
    gap: 15px;
  }
}
@media (max-width: 550px) {
  .etaps__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.etaps__card:first-child .etaps__img, .etaps__card:nth-child(2) .etaps__img {
  border-radius: 80px 0 0 0;
}
@media (max-width: 1023px) {
  .etaps__card:nth-child(2) .etaps__img {
    border-radius: 0;
  }
}
.etaps__card:last-child .etaps__img, .etaps__card:nth-last-child(2) .etaps__img {
  border-radius: 0 0 0 80px;
}
@media (max-width: 1023px) {
  .etaps__card:nth-last-child(2) .etaps__img {
    border-radius: 0;
  }
}
.etaps__img {
  display: block;
  width: 235px;
  min-width: 235px;
  aspect-ratio: 235/125;
  position: relative;
  overflow: hidden;
}
@media (max-width: 600px) {
  .etaps__img {
    width: 175px;
    min-width: 175px;
  }
}
.etaps__img::after {
  content: counter(etaps);
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(30%);
  -ms-transform: translateY(-50%) translateX(30%);
  transform: translateY(-50%) translateX(30%);
  color: #F3F3F3;
  font-size: 150px;
  font-weight: 500;
  line-height: 100px;
}
@media (max-width: 600px) {
  .etaps__img::after {
    font-size: 100px;
  }
}
.etaps__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.etaps__text {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  margin: 0;
}
@media (max-width: 1023px) {
  .etaps__text {
    font-size: 17px;
    line-height: 25px;
  }
}
@media (max-width: 767px) {
  .etaps__text {
    font-size: 16px;
    line-height: 23px;
  }
}
.etaps__text b {
  font-weight: 700;
}

.examples2 {
  background: #F3F3F3;
  padding: 80px 0;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .examples2 {
    padding: 65px 0;
  }
}
@media (max-width: 767px) {
  .examples2 {
    padding: 50px 0;
  }
}
.examples2__wr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 60px;
}
@media (max-width: 1023px) {
  .examples2__wr {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .examples2__wr {
    margin-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.examples2__title {
  color: #000;
  font-size: 38px;
  font-weight: 700;
  line-height: 40px;
  margin: 0;
}
@media (max-width: 1023px) {
  .examples2__title {
    font-size: 32px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .examples2__title {
    font-size: 26px;
    line-height: 28px;
  }
}
.examples2__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 767px) {
  .examples2__nav {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
}
.examples2__btnPrev, .examples2__btnNext {
  display: block;
  width: 60px;
  height: auto;
}
.examples2__btnPrev svg, .examples2__btnNext svg {
  display: block;
  width: 100%;
  height: auto;
}
.examples2__btnPrev svg path, .examples2__btnNext svg path {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .examples2__btnPrev svg path, .examples2__btnNext svg path {
    fill: #00ADEE;
  }
}
@media (hover: hover) {
  .examples2__btnPrev:hover path, .examples2__btnNext:hover path {
    fill: #00ADEE;
  }
}
@media (max-width: 600px) {
  .examples2__slider {
    overflow: visible;
  }
}
.examples2__slide {
  background: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  padding: 35px 35px 45px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: auto;
}
@media (max-width: 1023px) {
  .examples2__slide {
    padding: 25px 25px 30px;
    gap: 22px;
  }
}
@media (max-width: 767px) {
  .examples2__slide {
    padding: 15px;
    gap: 15px;
  }
}
@media (max-width: 600px) {
  .examples2__slide {
    width: 320px;
  }
}
.examples2__img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 505/440;
  transition: transform .3s ease;
  will-change: transform;
}
@media (hover:hover){
  .portfolio2__slide:hover .examples2__img{
    transform: scale(1.05);
  }
}
.examples2__cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.examples2__name {
  color: #000;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 20px;
}
@media (max-width: 1023px) {
  .examples2__name {
    font-size: 20px;
    margin-bottom: 17px;
  }
}
@media (max-width: 767px) {
  .examples2__name {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.examples2__name span {
  font-weight: 500;
}
.examples2__text {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 25px;
}
@media (max-width: 1023px) {
  .examples2__text {
    font-size: 17px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .examples2__text {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.examples2__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #00ADEE;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.67;
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-top: auto;
}
@media (max-width: 1023px) {
  .examples2__link {
    font-size: 17px;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .examples2__link {
    font-size: 16px;
    gap: 8px;
  }
}
@media (hover: hover) {
  .examples2__link:hover {
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
  }
}
.examples2__link svg {
  display: block;
  width: 22px;
  height: auto;
}
@media (max-width: 1023px) {
  .examples2__link svg {
    width: 20px;
  }
}
@media (max-width: 767px) {
  .examples2__link svg {
    width: 18px;
  }
}

.faq {
  margin: 0 0 60px;
}
@media (max-width: 1023px) {
  .faq {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .faq {
    margin-bottom: 40px;
  }
}
.faq__title {
  margin: 0 0 40px;
  padding: 55px 100px;
  border-radius: 0 0 80px 0;
  background: #00ADEE;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #FFF;
  font-size: 40px;
  font-weight: 700;
  line-height: 0.75;
  text-transform: lowercase;
  background-image: url("../img/vopr.svg");
  background-position: left center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 1023px) {
  .faq__title {
    margin-bottom: 35px;
    font-size: 35px;
    padding: 40px 70px;
  }
}
@media (max-width: 767px) {
  .faq__title {
    margin-bottom: 30px;
    font-size: 30px;
    padding: 30px 40px;
  }
}
.faq__title::after {
  content: "";
  display: block;
  width: 100vw;
  left: 0;
  top: 0;
  height: 100%;
  background: #00ADEE;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  position: absolute;
}
.faq__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px 80px;
}
@media (max-width: 1023px) {
  .faq__wrap {
    gap: 30px 50px;
  }
}
.faq__card {
  width: calc(50% - 40px);
}
@media (max-width: 1023px) {
  .faq__card {
    width: calc(50% - 25px);
  }
}
@media (max-width: 767px) {
  .faq__card {
    width: 100%;
  }
}
.faq__name {
  color: #00ADEE;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 20px;
}
@media (max-width: 1023px) {
  .faq__name {
    font-size: 23px;
    margin-bottom: 17px;
  }
}
@media (max-width: 767px) {
  .faq__name {
    font-size: 19px;
    margin-bottom: 15px;
    line-height: 22px;
  }
}
.faq__text {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 1023px) {
  .faq__text {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .faq__text {
    font-size: 16px;
  }
}

.impl {
  background: #EFEFEF;
  padding: 60px 0;
}
@media (max-width: 1023px) {
  .impl {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .impl {
    padding: 40px 0;
  }
}
.impl__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .impl__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.impl__img {
  display: block;
  width: 415px;
  height: auto;
}
@media (max-width: 1023px) {
  .impl__img {
    width: 320px;
  }
}
@media (max-width: 767px) {
  .impl__img {
    width: 100%;
    max-width: 350px;
  }
}
.impl__img img {
  display: block;
  width: 100%;
  height: auto;
}
.impl__content {
  width: calc(100% - 415px - 20px);
}
@media (max-width: 1023px) {
  .impl__content {
    width: calc(100% - 320px - 20px);
  }
}
@media (max-width: 767px) {
  .impl__content {
    width: 100%;
  }
}
.impl__title {
  color: #000;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 20px;
}
@media (max-width: 1023px) {
  .impl__title {
    font-size: 27px;
    margin-bottom: 17px;
  }
}
@media (max-width: 767px) {
  .impl__title {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
.impl__title i {
  font-weight: 500;
  font-size: 27px;
}
@media (max-width: 1023px) {
  .impl__title i {
    font-size: 23px;
  }
}
@media (max-width: 767px) {
  .impl__title i {
    font-size: 19px;
  }
}
.impl__text {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 30px;
}
@media (max-width: 1023px) {
  .impl__text {
    font-size: 19px;
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .impl__text {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.impl__wr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 1023px) {
  .impl__wr {
    gap: 25px;
  }
}
.impl__card {
  width: calc(50% - 15px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 25px;
}
@media (max-width: 1023px) {
  .impl__card {
    gap: 20px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .impl__card {
    gap: 15px;
    width: calc(50% - 12.5px);
  }
}
@media (max-width: 600px) {
  .impl__card {
    width: 100%;
  }
}
.impl__card img {
  display: block;
  width: 70px;
  height: auto;
  min-width: 70px;
}
@media (max-width: 1023px) {
  .impl__card img {
    width: 55px;
    min-width: 55px;
  }
}
@media (max-width: 767px) {
  .impl__card img {
    width: 40px;
    min-width: 40px;
  }
}
.impl__card p {
  margin: 0;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.33;
}
@media (max-width: 1023px) {
  .impl__card p {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .impl__card p {
    font-size: 16px;
  }
}

.article {
  margin: 40px 0 90px;
}
@media (max-width: 1023px) {
  .article {
    margin: 35px 0 70px;
  }
}
@media (max-width: 767px) {
  .article {
    margin: 30px 0 50px;
  }
}
.article__title {
  color: #000;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 60px;
}
@media (max-width: 1023px) {
  .article__title {
    margin-bottom: 50px;
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .article__title {
    margin-bottom: 40px;
    font-size: 30px;
  }
}
.article__doctor {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .article__doctor {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .article__doctor {
    font-size: 16px;
  }
}
.article__doctor--width {
  max-width: 1080px;
}
.article__doctor a {
  color: #00ADEE;
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .article__doctor a {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .article__doctor a {
    font-size: 16px;
  }
}
@media (hover: hover) {
  .article__doctor a:hover {
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
  }
}
.article__text {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 1023px) {
  .article__text {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .article__text {
    font-size: 16px;
  }
}
.article__text--width {
  max-width: 1080px;
}
.article__text img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
}
@media (max-width: 1023px) {
  .article__text img {
    margin: 35px auto;
  }
}
@media (max-width: 767px) {
  .article__text img {
    margin: 30px auto;
  }
}
.article__text img b {
  font-weight: 700;
}
.article__text video {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin-bottom: 40px;
}
@media (max-width: 1023px) {
  .article__text video {
    margin-bottom: 35px;
  }
}
@media (max-width: 767px) {
  .article__text video {
    margin-bottom: 30px;
  }
}
.article__text a {
  color: #00ADEE;
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .article__text a:hover {
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
  }
}
.article__text .imgWr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
  margin: 30px 0;
}
@media (max-width: 1023px) {
  .article__text .imgWr {
    margin: 27px 0;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .article__text .imgWr {
    margin: 25px 0;
    gap: 10px;
  }
}
.article__text .imgWr img {
  margin: 0;
  width: calc(50% - 15px);
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (max-width: 1023px) {
  .article__text .imgWr img {
    width: calc(50% - 10px);
  }
}
@media (max-width: 767px) {
  .article__text .imgWr img {
    width: calc(50% - 5px);
  }
}
@media (max-width: 550px) {
  .article__text .imgWr img {
    width: 100%;
  }
}
.article__text .imgWr3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
  margin: 30px 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 1023px) {
  .article__text .imgWr3 {
    margin: 27px 0;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .article__text .imgWr3 {
    margin: 25px 0;
    gap: 10px;
  }
}
.article__text .imgWr3 img {
  margin: 0;
  width: calc(33.3333333333% - 20px);
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1023px) {
  .article__text .imgWr3 img {
    width: calc(33.3333333333% - 13.3333333333px);
  }
}
@media (max-width: 767px) {
  .article__text .imgWr3 img {
    width: calc(50% - 5px);
  }
}
@media (max-width: 550px) {
  .article__text .imgWr3 img {
    width: 100%;
  }
}
.article__text .textWr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1023px) {
  .article__text .textWr {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .article__text .textWr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
}
.article__text .textWr img {
  width: calc(40% - 40px);
  margin: 0;
}
@media (max-width: 1023px) {
  .article__text .textWr img {
    width: calc(40% - 30px);
  }
}
@media (max-width: 767px) {
  .article__text .textWr img {
    width: auto;
    max-width: 100%;
  }
}
.article__text .textWr .textWr__text {
  width: calc(60% - 20px);
}
@media (max-width: 1023px) {
  .article__text .textWr .textWr__text {
    width: calc(60% - 10px);
  }
}
@media (max-width: 767px) {
  .article__text .textWr .textWr__text {
    width: 100%;
  }
}

.portfolioSlider {
  margin: 90px 0 80px;
}
@media (max-width: 1023px) {
  .portfolioSlider {
    margin: 70px 0 65px;
  }
}
@media (max-width: 767px) {
  .portfolioSlider {
    margin: 50px 0;
  }
}
.portfolioSlider__wr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 50px;
}
@media (max-width: 1023px) {
  .portfolioSlider__wr {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .portfolioSlider__wr {
    margin-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.portfolioSlider__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 767px) {
  .portfolioSlider__nav {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
}
.portfolioSlider__btnPrev, .portfolioSlider__btnNext {
  display: block;
  width: 60px;
  height: auto;
}
.portfolioSlider__btnPrev svg, .portfolioSlider__btnNext svg {
  display: block;
  width: 100%;
  height: auto;
}
.portfolioSlider__btnPrev svg path, .portfolioSlider__btnNext svg path {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  fill: #00ADEE;
}
@media (max-width: 767px) {
  .portfolioSlider__btnPrev svg path, .portfolioSlider__btnNext svg path {
    fill: #00ADEE;
  }
.breadcrumbs, .about__img {
    display: none;
}.header__burgerNav ul ul a {
    text-transform: none;
}.serv__cols .serv__colImg {
    margin-top: 10px;
}.serv__bigTitle, .serv__bigTitle2, .serv__bigTitle3 {
    margin-top: 20px;
}.static__header {
    margin: 0 ;
}.contactsPage, .contactsPage__title {
    margin: 0 ;
}.contactsPage__map {
    margin-top: 20px;
}.command__title, .technologyPage__title, .about__title, .article__title, .doctor__title, .modalCons__title, .contactsPage__title, .etaps__title {
    line-height: 30px ;
    margin-bottom: 30px ;
}.commands__row {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    line-height: 0;
}.commands__row img {
    display: block;
    flex: 1 1 0;
    min-width: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
}
}
@media (hover: hover) {
  .portfolioSlider__btnPrev:hover path, .portfolioSlider__btnNext:hover path {
    fill: #47C1EF;
  }
}
.portfolioSlider__btnPrev.swiper-button-disabled svg path, .portfolioSlider__btnNext.swiper-button-disabled svg path {
  fill: #D9D9D9;
}
html, body {
    background: #fff ;
    color: #000 ;
}@media(prefers-color-scheme: dark){body {
    background: #fff ;
    color: #000 ;
}
}.header__nav > ul > li > ul > li > a.active {
    color: #00ADEE ;
}.search__word {
    font-size: 12px;
    color: #aaaaaa;
}.search__result .search__result-title {
    font-size: 18px;
    font-weight: bold;
}.search__result {
    font-size: 15px;
}.search__result em {
    color: var(--swiper-theme-color);
}.search__result li {
    margin-bottom: 10px;
}.search__form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    width: 100%;
}.search__form .input {
    all: unset;
    box-sizing: border-box;
    border: 1px solid #B1B1B1;
    padding: 12px 16px;
    font-size: 18px;
    line-height: 1.2;
    width: 100%;
}.search__form .modalCons__subm {
    all: unset;
    box-sizing: border-box;
    padding: 12px 24px;
    background: #00a6e8;
    color: #fff;
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
    font-size: 18px;
    line-height: 1.2;
}.footer__bottomLeft,
.footer__bottomRight {
    display: flex ;
    flex-direction: column ;
    gap: 6px ;
    flex: 1 1 280px ;
}.footer__bottomRight {
    text-align: right ;
    align-items: flex-end ;
}.footer__bottomLeft,
.footer__bottomLeft *,
.footer__bottomRight,
.footer__bottomRight * {
    font-size: 15px;
    color: var(--light-color) ;
}@media(max-width: 768px){.footer__bottomLeft,
  .footer__bottomRight {
    flex: 1 1 100% ;
    gap: 6px ;
}.footer__bottomWrap {
    gap: 10px ;
}.footer__bottomRight {
    text-align: left ;
    align-items: flex-start ;
}
}.static__header {
    margin: 40px 0 60px;
}.site-container > .contactsInf {
    margin-top: 0;
}.technologyCards {
    margin-bottom: 70px;
}.technologyCards__a {
    color: #000 ;
    text-decoration: none ;
}.technologyCards__a:hover {
    color: #00ADEE ;
    text-decoration: underline ;
}h1 {
    line-height: 54px ;
    margin: -19px 0px 41px ;
}.header__burgerNav .header__burgerNav-submenu {
    padding-left: 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}.header__burgerNav li:first-child {
    margin-top: 15px;
}.header__burgerNav li.is-open > .header__burgerNav-submenu {
    max-height: 500px;
}.header__burgerNav .has-children > a .header__burgerNav-toggleIcon svg {
    transition: transform 0.3s ease;
}.header__burgerNav .has-children.is-open > a .header__burgerNav-toggleIcon svg {
    transform: rotate(90deg);
}.invalid-feedback {
    font-size: 11px;
    color: red;
    display: none;
    margin-top: -15px;
    margin-bottom: -7px;
}.commands__title a {
    color: #00ADEE;
    font-size: 44px;
    font-weight: 700;
    line-height: 38px;
    text-decoration: underline;
}#spinner-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease;
}#spinner-overlay.active {
    opacity: 1;
    visibility: visible;
}#spinner-overlay .spinner-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}#spinner-overlay .spinner-image {
    width: 40px;
    height: 40px;
    animation: spinner-rotate 1s linear infinite;
}.lh40 {
    line-height: 40px;
}.cookie__text a {
    color: #D0D0D0;
    text-decoration: underline;
}.header__buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}.header__search {
    padding: 10px 10px;
}.fancybox-slide--html .fancybox-content.modalVideo {
    max-width: calc(100vw - 16px);
}@media(min-width: 1200px){.modalVideo__close {
    top: 20px;
    right: 50px;
}
}@media(max-width: 1199px) and (min-width: 768px){.modalVideo__close {
    top: 20px;
    right: 50px;
}
}@media(max-width: 360px){.modalVideo__close {
    top: 6px;
    right: 24px;
}
}.fancybox-close-small {
    display: none ;
}
