:root {
  font-size: 20px;
}
ul,
li {
  margin: 0;
  padding: 0;
  display: block;
}
a {
  -webkit-transition: .3s all;
  transition: .3s all;
  outline: none;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}
body {
  color: #161616;
  font-size: 0.85rem;
  font-family: 'Montserrat', sans-serif;
}
.tel-popup {
  position: fixed;
  z-index: 99;
  right: 8rem;
  bottom: 10rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  -webkit-animation: pulse-anim 2s infinite;
          animation: pulse-anim 2s infinite;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 99, 14, 0.7);
          box-shadow: 0 0 0 0 rgba(255, 99, 14, 0.7);
  cursor: pointer;
}
.tel-popup img {
  width: 3rem;
  height: 3rem;
}
@-webkit-keyframes pulse-anim {
  0% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(255, 99, 14, 0.7);
            box-shadow: 0 0 0 0 rgba(255, 99, 14, 0.7);
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0 0 0 1rem rgba(255, 121, 63, 0);
            box-shadow: 0 0 0 1rem rgba(255, 121, 63, 0);
  }
  100% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(255, 121, 63, 0);
            box-shadow: 0 0 0 0 rgba(255, 121, 63, 0);
  }
}
@keyframes pulse-anim {
  0% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(255, 99, 14, 0.7);
            box-shadow: 0 0 0 0 rgba(255, 99, 14, 0.7);
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0 0 0 1rem rgba(255, 121, 63, 0);
            box-shadow: 0 0 0 1rem rgba(255, 121, 63, 0);
  }
  100% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(255, 121, 63, 0);
            box-shadow: 0 0 0 0 rgba(255, 121, 63, 0);
  }
}
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: .5rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}
.section__title {
  color: #161616;
  font-size: 2.2rem;
  line-height: 122%;
  text-transform: uppercase;
  margin: 0 auto 3rem;
  max-width: 29rem;
  text-align: center;
}
.feedback {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.4);
  display: none;
}
.feedback-done {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 1.5rem 1.5rem rgba(0, 0, 0, 0.15);
          box-shadow: 0px 1.5rem 1.5rem rgba(0, 0, 0, 0.15);
  border-radius: .5rem;
  padding: 1.25rem 1rem;
  width: 22rem;
  display: none;
}
.feedback-done__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.feedback-done__close {
  width: 1rem;
  cursor: pointer;
  color: #ff6600;
}
.feedback-done__close svg {
  width: 100%;
}
.feedback-done__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.feedback-done__info img {
  width: 1.5rem;
  margin-right: 1rem;
}
.feedback-done__info span {
  font-size: 1rem;
  color: #111;
  font-weight: 600;
}
.feedback-close {
  color: #fff;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #ff6600;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -4rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.feedback-close img {
  width: 1.5rem;
  height: 1.5rem;
}
.feedback-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 41rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: 90vh;
}
.feedback__img {
  background: #ff6600;
  border-radius: .5rem 0px 0px .5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.feedback__img img {
  -ms-flex-item-align: end;
      align-self: flex-end;
  width: 24rem;
  margin-left: -3rem;
}
.feedback-wrap {
  border-radius: 0 .5rem .5rem 0;
  background: #fff;
  padding: 2.5rem 2rem 3rem;
  width: 21.5rem;
  margin-left: -3rem;
}
.feedback__title {
  line-height: 123%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.feedback__text {
  line-height: 134%;
  margin-bottom: 2.5rem;
}
.feedback-form__input {
  margin-bottom: 1rem;
}
.feedback-form__input p {
  margin-bottom: 0.5rem;
  color: #6C7B8A;
}
.feedback-form__input input {
  background: #F4F4F4;
  border-radius: .25rem;
  width: 100%;
  border: .1rem solid #F4F4F4;
  padding: 0.9rem 1rem;
  color: #111;
  outline: none;
}
.feedback-form__input input:focus {
  border-color: #ff6600;
}
.feedback-form__input input::-webkit-input-placeholder {
  color: #111;
}
.feedback-form__input input:-ms-input-placeholder {
  color: #111;
}
.feedback-form__input input::-ms-input-placeholder {
  color: #111;
}
.feedback-form__input input::placeholder {
  color: #111;
}
.feedback-form .btn {
  margin-top: 0.5rem;
  width: 100%;
  height: 3rem;
  text-transform: uppercase;
  background: #ff6600;
  border: none;
}
.header {
  background: #fff;
  padding: 0.75rem 0;
  -webkit-box-shadow: 0px 1.5rem 1.5rem rgba(0, 0, 0, 0.3);
          box-shadow: 0px 1.5rem 1.5rem rgba(0, 0, 0, 0.3);
  color: #111;
}
.header .container {
  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;
}
.header__logo {
  width: 10rem;
}
.header__logo img {
  width: 100%;
}
.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 7.5rem;
}
.header__address img {
  width: 1.5rem;
  margin-right: 0.5rem;
}
.header__lang {
  position: relative;
}
.header__lang a,
.header__lang button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: .5rem;
  background: #fff;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  border: 1px solid #E8E8E8;
}
.header__lang a img,
.header__lang button img {
  width: 100%;
  height: 100%;
}
.header__lang button.active {
  border-color: #ff6600;
}
.header__lang a {
  position: absolute;
  left: 0;
  top: 3.5rem;
  display: none;
}
.header__lang a.show {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.header-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 1rem;
}
.header-tel a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: .5rem;
  background: #fff;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  border: 1px solid #E8E8E8;
  margin-right: 0.5rem;
}
.header-tel a img {
  width: 100%;
  height: 100%;
}
.header-tel span {
  font-weight: 600;
}
.main {
  height: 35rem;
  min-height: 80vh;
  color: #fff;
}
.main-carousel {
  height: 100%;
  position: relative;
}
.main-carousel .owl-stage-outer,
.main-carousel .owl-stage,
.main-carousel .owl-item {
  height: 100%;
}
.main-carousel .owl-dots {
  position: absolute;
  bottom: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.main-carousel .owl-dots .owl-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #fff;
  margin: 0 0.25rem;
  border-radius: 50%;
}
.main-carousel .owl-dots .owl-dot.active {
  background: #ff6600;
}
.main-carousel .owl-nav {
  position: absolute;
  bottom: 2.6rem;
  right: 17vw;
  z-index: 5;
}
.main-carousel .owl-nav button {
  color: #fff;
  outline: none;
}
.main-carousel .owl-nav button span {
  font-size: 1.2rem;
  line-height: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1.5rem;
  height: 1.5rem;
}
.main-carousel .owl-nav button:hover {
  color: #ff6600;
}
.main-carousel__item {
  height: 100%;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main-carousel__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.main-carousel__img.mobi {
  display: none;
}
.main-carousel__img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.main .container {
  position: relative;
  z-index: 2;
}
.main-content {
  margin: 0 auto 3rem;
  text-align: center;
  max-width: 40rem;
}
.main__title {
  font-size: 2.6rem;
  line-height: 121%;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.main__text {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 150%;
}
.main__text strong {
  font-weight: 700;
}
.main-info {
  padding: 0.7rem;
  border-radius: .75rem;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  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;
}
.main-info__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0.5rem;
}
.main-info__list li {
  margin-right: 1.5rem;
  padding-left: 2rem;
  position: relative;
  font-size: 0.9rem;
}
.main-info__list li::before {
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/list.svg) center center no-repeat;
  background-size: contain;
  content: '';
}
.main-info__btn {
  height: 2.5rem;
  width: 8rem;
  background: #ff6600;
}
.numbers {
  background: -webkit-gradient(linear, left top, left bottom, from(#ebf6ff), to(rgba(248, 252, 255, 0)));
  background: linear-gradient(180deg, #ebf6ff 0%, rgba(248, 252, 255, 0) 100%);
  padding: 5rem 0 3.5rem;
}
.numbers .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.numbers__img {
  width: 25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 2rem;
}
.numbers__img img {
  width: 100%;
}
.numbers__title {
  margin-left: 0;
  text-align: left;
}
.numbers-list__item {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 1.5rem 1.5rem rgba(0, 0, 0, 0.1);
          box-shadow: 0px 1.5rem 1.5rem rgba(0, 0, 0, 0.1);
  border-radius: .75rem;
  padding: 0.85rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.5rem;
}
.numbers-list__item:hover {
  background: #ff6600;
  color: #fff;
}
.numbers-list__item:hover .numbers-list__number {
  color: #fff;
}
.numbers-list__item:hover .numbers-list__number span {
  color: #fff;
}
.numbers-list__number {
  color: #929292;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 1.5rem;
  width: 6.5rem;
}
.numbers-list__number span {
  display: block;
  font-weight: 700;
  font-size: 1.8rem;
  color: #161616;
}
.numbers-list__text {
  line-height: 150%;
}
.facade {
  padding-top: 3rem;
}
.facade-main {
  background: url(../img/facade.jpg) center center no-repeat;
  background-size: cover;
  height: 34rem;
  position: relative;
}
.facade-main__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
}
.facade-main__item:first-child {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  top: 4rem;
  left: 15vw;
}
.facade-main__item:nth-child(2) {
  top: 5.5rem;
  right: 30vw;
}
.facade-main__item:nth-child(3) {
  bottom: 10rem;
  left: 25vw;
}
.facade-main__item:nth-child(4) {
  bottom: 5.5rem;
  right: 40vw;
}
.facade-main__item:nth-child(5) {
  bottom: 5rem;
  right: 20vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.facade-main__dot {
  width: 1.25rem;
  height: 1.25rem;
  margin-bottom: 1rem;
  border: 0.3rem solid #ff6600;
  border-radius: 50%;
  background: #fff;
}
.facade-main__dot:hover + .facade-main__desc {
  opacity: 1;
}
.facade-main__desc {
  width: 11.5rem;
  padding: 0.5rem 0.8rem;
  -webkit-box-shadow: 0px 0.75rem 1rem rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0.75rem 1rem rgba(0, 0, 0, 0.3);
  background: #fff;
  border-radius: .75rem;
  margin-bottom: 1rem;
  font-size: 0.6rem;
  line-height: 125%;
  opacity: 0;
  -webkit-transition: .4s all;
  transition: .4s all;
}
.facade-info {
  padding: 3rem 0 1rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#ebf6ff), to(rgba(248, 252, 255, 0)));
  background: linear-gradient(180deg, #ebf6ff 0%, rgba(248, 252, 255, 0) 100%);
}
.facade-info .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.facade-info__item {
  width: 48.5%;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 1.5rem 1.5rem rgba(0, 0, 0, 0.1);
          box-shadow: 0px 1.5rem 1.5rem rgba(0, 0, 0, 0.1);
  border-radius: .75rem;
  padding: 1.5rem;
  padding-left: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 2rem;
}
.facade-info__ico {
  width: 1.5rem;
  margin-right: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.facade-info__ico img {
  width: 100%;
}
.facade-info__name {
  color: #111;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.facade-info__desc {
  line-height: 150%;
}
.devices {
  margin: 2rem 0 3rem;
}
.devices-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.devices-item {
  width: 31.5%;
  margin-right: 2.75%;
}
.devices-item:nth-child(3n) {
  margin-right: 0;
}
.devices-item__img {
  overflow: hidden;
  border-radius: .75rem;
  border: 1px solid #EEEEEE;
  margin-bottom: 2rem;
  -webkit-transition: .4s all;
  transition: .4s all;
}
.devices-item__img:hover {
  border-color: transparent;
  -webkit-box-shadow: 0 1.5rem 1.5rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 1.5rem 1.5rem rgba(0, 0, 0, 0.1);
}
.devices-item__img img {
  width: 100%;
  display: block;
}
.devices-item__name {
  font-size: 1.1rem;
  line-height: 150%;
  font-weight: 700;
}
.services {
  padding-top: 2rem;
  margin-bottom: 5rem;
}
.services-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.services-item {
  width: 31.5%;
  margin-right: 2.75%;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  color: #fff;
}
.services-item:nth-child(3n) {
  margin-right: 0;
}
.services-item:hover {
  -webkit-box-shadow: 0px 1rem 2.5rem rgba(0, 0, 0, 0.25);
          box-shadow: 0px 1rem 2.5rem rgba(0, 0, 0, 0.25);
}
.services-item:hover .services-item__wrap {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(3.79%, #ff630e), color-stop(38.14%, rgba(255, 99, 14, 0.51)), color-stop(68.97%, rgba(0, 0, 0, 0)));
  background: linear-gradient(360deg, #ff630e 3.79%, rgba(255, 99, 14, 0.51) 38.14%, rgba(0, 0, 0, 0) 68.97%);
}
.services-item:hover .services-item__link svg {
  color: #fff;
}
.services-item__img {
  height: 20rem;
}
.services-item__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.services-item__wrap {
  position: absolute;
  padding: 2rem;
  bottom: 0;
  left: 0;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
  width: 100%;
}
.services-item__name {
  font-size: 1.3rem;
  line-height: 118%;
  font-weight: 500;
  text-transform: uppercase;
  font-weight: 700;
}
.services-item__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 1.5rem;
  cursor: pointer;
}
.services-item__link span {
  border-bottom: 1px solid #fff;
}
.services-item__link svg {
  width: 1.2rem;
  margin-left: 1rem;
  color: #ff6600;
}
.steps-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.steps-item {
  width: 31.5%;
  margin-right: 2.75%;
  margin-bottom: 3rem;
}
.steps-item:nth-child(3n) {
  margin-right: 0;
}
.steps-item__number {
  margin-bottom: 1rem;
  font-weight: 700;
  color: #ff6600;
  font-size: 2.4rem;
}
.steps-item__name {
  font-size: 1.2rem;
  line-height: 150%;
  font-weight: 700;
  margin-bottom: 1rem;
}
.steps-item__desc {
  line-height: 150%;
}
.equip {
  background: url(../img/equip.png) center center no-repeat;
  background-size: cover;
}
.equip .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.equip-wrap {
  width: 50%;
  padding: 7rem 0 13.5rem;
}
.equip__title {
  margin-left: 0;
  margin-bottom: 1rem;
  text-align: left;
}
.equip__subtitle {
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 150%;
  margin-bottom: 1.5rem;
}
.equip__text {
  font-size: 0.9rem;
  line-height: 150%;
}
.consult {
  -webkit-box-shadow: 0px 1.5rem 1.5rem rgba(0, 0, 0, 0.1);
          box-shadow: 0px 1.5rem 1.5rem rgba(0, 0, 0, 0.1);
  background: #ff6600;
  color: #fff;
}
.consult .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.consult-content {
  width: 50%;
  padding: 4.5rem 0 3.5rem;
}
.consult__title {
  color: #fff;
  margin-bottom: 1.5rem;
  margin-left: 0;
  text-align: left;
}
.consult__text {
  font-size: 1.2rem;
  line-height: 145%;
  margin-bottom: 3rem;
}
.consult-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.consult__btn {
  width: 14rem;
  height: 3.5rem;
  background: #1D92EC;
}
.consult__btn-white {
  margin-left: 2rem;
  background: #fff;
  color: #111;
}
.consult__img {
  margin-top: -5rem;
  width: 27rem;
}
.consult__img img {
  width: 100%;
  display: block;
}
.codex {
  padding-top: 5rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#ebf6ff), to(rgba(248, 252, 255, 0)));
  background: linear-gradient(180deg, #ebf6ff 0%, rgba(248, 252, 255, 0) 100%);
}
.codex__title {
  max-width: 35rem;
}
.codex-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.codex-item {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 3rem;
}
.codex-item:nth-child(3n) {
  margin-right: 0;
}
.codex-item__ico {
  width: 3.5rem;
  height: 3.5rem;
  background: #ff6600;
  padding: 0.5rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.codex-item__ico img {
  width: 100%;
  height: 100%;
}
.codex-item__title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 1rem;
}
.codex-item__text {
  line-height: 150%;
}
.result {
  padding: 2rem 0 5rem;
}
.result-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 3rem;
}
.result-head__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.result-head__wrap .section__title {
  margin-bottom: 0;
  margin-right: 1.5rem;
}
.result-reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.result-reviews__ico {
  width: 3rem;
  height: 3rem;
  background: #ff6600;
  padding: 0.5rem;
  border-radius: 50%;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 1rem;
}
.result-reviews__ico img {
  width: 100%;
  height: 100%;
}
.result-reviews__ico span {
  background: #FF0000;
  border: 1px solid #FFFFFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 25px;
  color: #fff;
  font-weight: 700;
  font-size: 0.5rem;
  padding: 1px 5px;
  position: absolute;
  top: -0.25rem;
  right: 0;
}
.result-reviews__text {
  line-height: 150%;
  width: 9.5rem;
}
.result-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.result-arrows span {
  border: 1px solid #E8E8E8;
  width: 2.5rem;
  height: 2.5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.result-arrows span svg {
  width: 1.2rem;
  color: #C4C4C4;
}
.result-arrows span:hover {
  border-color: #ff6600;
  position: relative;
  z-index: 2;
}
.result-arrows span:hover svg {
  color: #ff6600;
}
.result-arrows .arrow-right {
  margin-left: -1px;
}
.result-carousel__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.result-carousel__img {
  width: 49%;
  position: relative;
}
.result-carousel__img img {
  border-radius: .75rem;
  height: 20rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.result-carousel__img span {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: .75rem 0;
  width: 5rem;
  height: 2rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-weight: 600;
}
.result-carousel__before span {
  background: #EB2C2C;
}
.result-carousel__after span {
  background: #67CB29;
}
.faq {
  background: -webkit-gradient(linear, left top, left bottom, from(#ebf6ff), to(rgba(248, 252, 255, 0)));
  background: linear-gradient(180deg, #ebf6ff 0%, rgba(248, 252, 255, 0) 100%);
  padding: 5rem 0;
}
.faq-item {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin-bottom: 2rem;
}
.faq-item:last-child {
  margin-bottom: 0;
}
.faq-item__quest {
  padding: 1.1rem 1.1rem 1.1rem 2rem;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 1.5rem 1.5rem rgba(0, 0, 0, 0.1);
          box-shadow: 0px 1.5rem 1.5rem rgba(0, 0, 0, 0.1);
  border-radius: .75rem;
  font-size: 1.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-weight: 600;
}
.faq-item__quest svg {
  width: 1.75rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 1.5rem;
  color: #ff6600;
}
.faq-item__quest.active {
  color: #fff;
  background: #ff6600;
}
.faq-item__quest.active svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  color: #fff;
}
.faq-item__answer {
  padding: 2rem 2rem 0 2rem;
  line-height: 150%;
  display: none;
}
.partners {
  margin-bottom: 2rem;
}
.partners__title {
  max-width: 40rem;
  margin-bottom: 0;
}
.partners-carousel .owl-stage-outer {
  padding: 3rem 0;
}
.partners-carousel__item {
  width: 9rem;
  height: 9rem;
  background: #fff;
  -webkit-box-shadow: 0px 1.5rem 1.5rem rgba(0, 0, 0, 0.1);
          box-shadow: 0px 1.5rem 1.5rem rgba(0, 0, 0, 0.1);
  border-radius: .75rem;
  margin-right: 2rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.partners-carousel__item img {
  max-width: 5rem;
  max-height: 5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 2.5rem rgba(0, 117, 255, 0.1);
          box-shadow: 0px 0px 2.5rem rgba(0, 117, 255, 0.1);
  padding: 1.25rem 0;
}
.footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-top {
  display: none;
}
.footer__logo {
  width: 10rem;
}
.footer__logo img {
  width: 100%;
}
.footer-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-item img {
  width: 1.5rem;
  margin-right: 0.5rem;
}
.footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-social li {
  margin-right: 1rem;
}
.footer-social li:last-child {
  margin-right: 0;
}
.footer-social a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid #E8E8E8;
  color: #ff6600;
}
.footer-social a:hover {
  background: #ff6600;
  border-color: #ff6600;
  color: #fff;
}
.footer-social a svg {
  height: 1rem;
}
@media (max-width: 1400.98px) {
  :root {
    font-size: 17px;
  }
}
@media (max-width: 1200.98px) {
  :root {
    font-size: 14px;
  }
}
@media (max-width: 992.98px) {
  :root {
    font-size: 15px;
  }
  .section__title {
    margin-bottom: 2rem;
  }
  .header__address {
    display: none;
  }
  .header-tel a {
    margin-right: 0;
  }
  .header-tel span {
    display: none;
  }
  .main-carousel__img.mobi {
    display: block;
  }
  .main-carousel__img.desc {
    display: none;
  }
  .main-carousel .owl-nav {
    right: 2rem;
  }
  .main-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: transparent;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
  .main-info__list {
    display: block;
    margin-right: 0;
    -ms-flex-item-align: start;
        align-self: flex-start;
    margin-bottom: 2rem;
  }
  .main-info__list li {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  .main-info__btn {
    width: 11rem;
    height: 3.5rem;
    font-size: 1.1rem;
  }
  .numbers {
    padding: 3.5rem 0 2rem;
  }
  .numbers .container {
    display: block;
  }
  .numbers__img {
    margin-right: 0;
    margin-bottom: 2rem;
    width: 100%;
  }
  .facade {
    padding-top: 1.5rem;
  }
  .facade-main {
    background: transparent;
    height: auto;
    padding: 0 2rem 3rem;
  }
  .facade-main__item {
    position: static;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .facade-main__item:first-child {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .facade-main__item:nth-child(5) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .facade-main__desc {
    opacity: 1;
    -webkit-box-shadow: none;
            box-shadow: none;
    width: 100%;
    font-size: 1rem;
  }
  .services {
    padding-top: 0.5rem;
    margin-bottom: 3.5rem;
  }
  .steps-content {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .steps-item {
    margin-right: 0;
    width: 48%;
  }
  .equip {
    background-size: 100vh;
    background-position: bottom center;
  }
  .equip .container {
    display: block;
  }
  .equip-wrap {
    width: 100%;
    padding: 2rem 0 43vh;
  }
  .consult-content {
    width: 60%;
    padding: 3.5rem 0 2.5rem;
  }
  .codex {
    padding-top: 3.5rem;
  }
  .codex-content {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .codex-item {
    margin-right: 0;
    width: 48%;
  }
  .faq {
    padding: 3.5rem 0;
  }
  .partners__title {
    margin-bottom: 0.5rem;
  }
  .partners-carousel .owl-stage-outer {
    padding: 1.5rem 0 3rem;
  }
  .footer .container {
    display: block;
    position: relative;
  }
  .footer__logo {
    margin-bottom: 1.5rem;
  }
  .footer-item {
    margin-bottom: 1.5rem;
    margin-right: 0;
  }
  .footer-social {
    margin-top: 1.5rem;
  }
  .footer-top {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 4.5rem;
    height: 4.5rem;
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    background: #ff6600;
    position: absolute;
    right: 20px;
    top: 2rem;
  }
}
@media (max-width: 767.98px) {
  :root {
    font-size: 14px;
  }
  .tel-popup {
    right: 2rem;
    bottom: 12rem;
  }
  .section__title {
    font-size: 1.8rem;
    text-align: left;
  }
  .feedback__img {
    display: none;
  }
  .feedback-content {
    width: 90%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: auto;
    bottom: 10vh;
  }
  .feedback-wrap {
    width: 100%;
    margin-left: 0;
    border-radius: .5rem;
  }
  .feedback-done {
    width: 90%;
    right: 5%;
  }
  .main__title {
    font-size: 2rem;
  }
  .main-content {
    margin-bottom: 2rem;
  }
  .main-carousel .owl-dots,
  .main-carousel .owl-nav {
    bottom: 1.5rem;
  }
  .numbers-list__item {
    display: block;
  }
  .numbers-list__number {
    width: auto;
    margin-bottom: 1rem;
  }
  .facade__title {
    padding-left: 20px;
  }
  .facade-info {
    padding-top: 2rem;
  }
  .facade-info__item {
    width: 100%;
  }
  .devices-content {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    max-width: 100%;
    overflow: auto;
    margin-bottom: 0;
  }
  .devices-item {
    margin-right: 2rem !important;
    width: 19rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .services-content {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    max-width: 100%;
    overflow: auto;
    margin-bottom: 0;
  }
  .services-item {
    margin-right: 2rem !important;
    width: 19rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .steps-item {
    width: 100%;
    margin-bottom: 1.8rem;
  }
  .consult .container {
    display: block;
  }
  .consult-content {
    width: 100%;
    padding: 2rem 0;
  }
  .consult__img {
    width: 100%;
    margin-top: 0;
  }
  .codex {
    padding-top: 3rem;
  }
  .codex-item {
    width: 100%;
    margin-bottom: 1.8rem;
  }
  .result {
    position: relative;
    padding-bottom: 7rem;
  }
  .result-arrows {
    position: absolute;
    bottom: 4rem;
  }
  .result-head__wrap {
    display: block;
  }
  .result-head__wrap .section__title {
    margin-right: 0;
    margin-bottom: 1.2rem;
  }
  .result-carousel__item {
    display: block;
  }
  .result-carousel__img {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .result-carousel__img img {
    height: 18rem;
  }
  .faq {
    padding: 3rem 0;
  }
  .partners__title {
    padding-left: 20px;
  }
  .partners-carousel__item {
    width: 7rem;
    height: 7rem;
    margin-right: 1.2rem;
  }
  .partners-carousel__item img {
    max-width: 4rem;
    max-height: 4rem;
  }
  .footer-top {
    top: 4rem;
  }
}
@media (max-width: 327.98px) {
  :root {
    font-size: 12px;
  }
}
@media (max-width: 300.98px) {
  :root {
    font-size: 11px;
  }
}
