@font-face {
  font-family: 'icomoon';
  src:  url('/tpl/default/icomoon/fonts/icomoon.eot?pklrf9');
  src:  url('/tpl/default/icomoon/fonts/icomoon.eot?pklrf9#iefix') format('embedded-opentype'),
  url('/tpl/default/icomoon/fonts/icomoon.ttf?pklrf9') format('truetype'),
  url('/tpl/default/icomoon/fonts/icomoon.woff?pklrf9') format('woff'),
  url('/tpl/default/icomoon/fonts/icomoon.svg?pklrf9#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-work:before {
  content: "\e90b";
}
.icon-adv-1:before {
  content: "\e900";
}
.icon-adv-2:before {
  content: "\e901";
}
.icon-adv-3:before {
  content: "\e902";
}
.icon-adv-4:before {
  content: "\e903";
}
.icon-adv-5:before {
  content: "\e904";
}
.icon-jeep:before {
  content: "\e905";
}
.icon-bike:before {
  content: "\e906";
}
.icon-bus:before {
  content: "\e907";
}
.icon-phone:before {
  content: "\e908";
}
.icon-adv-6:before {
  content: "\e909";
}
.icon-car:before {
  content: "\e90a";
}


@font-face {
  font-family: 'OpenSans';
  src: url('/tpl/default/fonts/OpenSans/OpenSans-Bold.eot');
  src: url('/tpl/default/fonts/OpenSans/OpenSans-Bold.eot?#iefix') format('embedded-opentype'),
  url('/tpl/default/fonts/OpenSans/OpenSans-Bold.woff2') format('woff2'),
  url('/tpl/default/fonts/OpenSans/OpenSans-Bold.woff') format('woff'),
  url('/tpl/default/fonts/OpenSans/OpenSans-Bold.ttf') format('truetype'),
  url('/tpl/default/fonts/OpenSans/OpenSans-Bold.svg#OpenSans-Bold') format('svg');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'OpenSans';
  src: url('/tpl/default/fonts/OpenSans/OpenSans-SemiBold.eot');
  src: url('/tpl/default/fonts/OpenSans/OpenSans-SemiBold.eot?#iefix') format('embedded-opentype'),
  url('/tpl/default/fonts/OpenSans/OpenSans-SemiBold.woff2') format('woff2'),
  url('/tpl/default/fonts/OpenSans/OpenSans-SemiBold.woff') format('woff'),
  url('/tpl/default/fonts/OpenSans/OpenSans-SemiBold.ttf') format('truetype'),
  url('/tpl/default/fonts/OpenSans/OpenSans-SemiBold.svg#OpenSans-SemiBold') format('svg');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'OpenSans';
  src: url('/tpl/default/fonts/OpenSans/OpenSans-Regular.eot');
  src: url('/tpl/default/fonts/OpenSans/OpenSans-Regular.eot?#iefix') format('embedded-opentype'),
  url('/tpl/default/fonts/OpenSans/OpenSans-Regular.woff2') format('woff2'),
  url('/tpl/default/fonts/OpenSans/OpenSans-Regular.woff') format('woff'),
  url('/tpl/default/fonts/OpenSans/OpenSans-Regular.ttf') format('truetype'),
  url('/tpl/default/fonts/OpenSans/OpenSans-Regular.svg#OpenSans-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
}

/*Шрифт по всему сайту*/

:root {
  --main-font: OpenSans, Arial sans-serif;
}

button {
  cursor: pointer
}
body {
  font-family: var(--main-font);
  background: #fff;
  margin: 0;
  padding: 0;
}

p {
  font-family: var(--main-font);
  font-size: 16px;
  color: #000;
  font-weight: 500;
  line-height: 40px;
}

a {
  color: #000;
  text-decoration: underline;
  font-size: 15px;
}

a:hover {
  text-decoration: none;
  color: #000;
}
.centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.just-con {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.col-6_p{
  padding-left: 15px;
  padding-right: 15px;
}


._container {
  width: 1260px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

.top_menu {
  background: #1b1b1b;
  height: 100px;
}
.top_menu-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.number {
  background: #f8d027;
  border-radius: 12px;
  padding: 5px 30px;
  float: right;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .5s;
  width: max-content;
}
.number a {
  font-family: var(--main-font);
  color: #000;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
}
.modal {
  opacity: 0;
  position: fixed;
  background: rgba(0,0,0,0.9);
  -webkit-transition: .7s;
  -o-transition: .7s;
  transition: .7s;
}
.modal-body {
  width: 460px;
  position: absolute;
  left: 50%;
  top: 40%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
.close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.close img {
  cursor: pointer;
}
form.form-footer {
  background: #fff;
  padding: 10px 115px;
  text-align: center;
  margin-top: 30px;
}
.form-control {
  width: 100%;
  border: 3px solid #dedede;
  background-color: rgba(73,104,180,0);
  margin: 18px auto;
  min-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 15px;
  font-family: var(--main-font);
  color: #8b8b8b;
  font-size: 14px;
  font-weight: 400;
  outline: none!important;
}
.textarea-form {
  min-height: 90px;
}
button.btn-call-footer {
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  background-color: #ffc600;
  border: 3px solid #fff;
  text-transform: uppercase;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  cursor: pointer;
  width: 191px;
  height: 37px;
  margin-top: 15px;
  outline: none!important;
}
.margin-none {
  margin: 0 0 8px!important;
}

.modal-thank {
  opacity: 0;
  position: fixed;
  background: rgba(0,0,0,0.9);
  -webkit-transition: .7s;
  -o-transition: .7s;
  transition: .7s;
}
.modal-thank-content {
  background: #fff;
  padding: 50px;
}
.active {
  z-index: 9;
  opacity: 1;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.modal-thank-content p {
  text-align: center;
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}
.contact-footer p {
  font-family: var(--main-font);
  color: #1b1b1b;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
}

.col-fot-6 {
  width: 50%;
}
.text-main-footer p {
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  border-bottom: 10px solid #ffc600;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  padding-top: 65px;
}

.footer-slogan, .address {
  width: 100%;
}
.w-100 {
  width: 100%;
}
button.btn-call-footer {
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  background-color: #ffc600;
  border: 3px solid #fff;
  text-transform: uppercase;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  cursor: pointer;
  width: 191px;
  height: 37px;
  margin-top: 15px;
  outline: none!important;
}
button.btn-call-footer:hover {
  border: 3px solid #000;
}
.text-main-footer {
  width: 100%;
}
.address p, .footer-slogan p {
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  margin: 10px auto;
}
.col-consultant:before {
  content: "";
  background-image: url(/tpl/default/img/consultant_cal_back.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  width: 210px;
  height: 210px;
  top: 90px;
  left: -90px;
}
form.form-footer {
  background: #fff;
  padding: 10px 115px;
  text-align: center;
  margin-top: 30px;
}
.col-consultant {
  position: relative;
}
.text-main-white h1{
  font-family: var(--main-font);
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
  width: max-content;
  border-bottom: 10px solid #f7c700;
}
button.btn-call-footer {
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  background-color: #ffc600;
  border: 3px solid #fff;
  text-transform: uppercase;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  cursor: pointer;
  width: 191px;
  height: 37px;
  margin-top: 15px;
  outline: none!important;
}

.bg-footer {
  background: url(/tpl/default/img/footer-bg.jpg);
  background-size: cover;
  width: 100%;
  min-height: 450px;
}
.number:hover {
  background: #eaeaea;
}
.icon-phone-head {
  padding-right: 8px;
  font-size: 32px;
}
.bg-slide {
  height: 640px;
  position: relative;
}
.bg-slide img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
button.btn-white {
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
  margin-top: 70px;
  margin-bottom: 70px;
  background: #fff;
  border: 2px solid #f8d027;
  border-radius: 10px;
  padding: 8px 28px;
  transition: .5s;
  cursor: pointer;
  outline: none !important;
}
button.btn-white:hover {
  background: #e2e2e2;
}
.count-car {
  position: absolute;
  top: 55%;
  right: -15px;
  background: #1b1b1b;
  z-index: 7;
  border: 2px solid #f7c700;
  box-shadow: 0 0 11px 2px #f7c700;
}
.count-car p {
  margin: 7px 13px;
  font-family: var(--main-font);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.after-b-text {
  margin-top: 35px;
}
.after-b-text span {
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 14px;
  font-weight: 700;
  background: #fff;
  padding: 9px 18px;
  margin: 20px auto;
  width: max-content;
  display: block;
  text-transform: uppercase;
}
.bg-slide:before {
  content: "";
  background: url(/tpl/default/img/line-slide.png);
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  right: 0;
  height: 38px;
}
.bg-slide:after {
  content: "";
  background: url(/tpl/default/img/line-slide.png);
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  right: 0;
  height: 38px;
}
.bg-slide-1 {
  content: "";
  background: url(/tpl/default/img/slide-top.png) no-repeat;
  position: absolute;
  left: 50%;
  width: 650px;
  height: 650px;
  transform: translate(-50%,0);
}
.slide-abs {
  position: absolute;
  left: 50%;
  transform: translate(-50%,-50%);
  top: 45%;
  text-align: center;
}
.slide-text-h1 h1, .slide-text-h1 p {
  font-family: var(--main-font);
  color: #f7c700;
  font-size: 40px;
  font-weight: 700;
  line-height: 44px;
  text-transform: uppercase;
}
.slide-text-p p {
  font-family: var(--main-font);
  color: #ffffff;
  font-size: 27px;
  font-weight: 400;
  line-height: 42px;
  padding: 0;
  margin: 0;
}
.slide-text-p span {
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 14px;
  font-weight: 700;
  background: #fff;
  padding: 9px 18px;
  margin: 20px auto;
  width: max-content;
  display: block;
  text-transform: uppercase;
}
button.btn-call {
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
  margin-top: 10px;
  background: #f8d027;
  border: 2px solid #f8d027;
  border-radius: 10px;
  padding: 8px 28px;
  transition: .5s;
  cursor: pointer;
  outline: none !important;
}
button.btn-call:hover {
  background: #d0ab12;
}
.pa {
  position: absolute;
  z-index: 1;
}
.line-slide {
  background: url(/tpl/default/img/gear-wheel.png) no-repeat center;
  width: 100%;
  height: 35px;
}
.page-body {
  margin: 30px auto 40px;
}
.line-slide:before {
  content: "";
  background: #f8d027;
  position: absolute;
  width: 100%;
  height: 5px;
  z-index: -1;
}

.text-main p, .text-main h1{
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
  width: max-content;
  margin: 20px auto;
  border-bottom: 10px solid #f7c700;
}
.text-main {
  width: 100%;
}
.col-6 {
  width: 37%;
  padding-left: 15px;
  padding-right: 15px;
}
.col-4 {
  width: 30%;
  padding-left: 15px;
  padding-right: 15px;
}
.advantages-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 10px auto;
}
.advantages-list span {
  font-size: 38px;
  padding-right: 8px;
  width: 58px;
  text-align: center;
}
.advantages-list p {
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 17px;
  font-weight: 600;
  line-height: 22px;
}
.seo-text {
  margin: 60px auto 40px;
}
.seo-text p,.seo-text span {
  font-family: var(--main-font);
  color:  #1b1b1b;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.techika {
  background: url(/tpl/default/img/bg-techika.png);
  background-size: cover;
  height: auto;
  width: 100%;
  min-height: 840px;
  padding-bottom: 40px;
}
.text-main-white {
  width: 100%;
  padding-top: 55px;
  display: flex;
  justify-content: center;
}
.text-main-white p {
  font-family: var(--main-font);
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
  width: max-content;
  border-bottom: 10px solid #f7c700;
}
.arr-r:before {
  content: "";
  background: url(/tpl/default/img/arrow-r.png);
  position: absolute;
  right: -20px;
  top: 52%;
  width: 45px;
  height: 45px;
}
.arr-r:last-child:before {
  display: none;
}
.top-txt {
  height: 45px;
  text-align: center;
  background: #1b1b1b;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-txt p {
  font-family: var(--main-font);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}
.tech-list img {
  width: 100%;
}
.tech-img:hover img {
  transform: scale(1.2);
}
button.btn-send {
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  background: #f7c700;
  border: 0;
  padding: 0;
  width: 100%;
  height: 45px;
  border-radius: 0 0 10px 10px;
  cursor: pointer;
  text-transform: uppercase;
}
button.btn-send:hover {
  background: #d0ab12;
}

a.btn-send {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  background: #f7c700;
  border: 0;
  padding: 0;
  width: 100%;
  height: 45px;
  border-radius: 0 0 10px 10px;
  cursor: pointer;
  text-transform: uppercase;
}
a.btn-send:hover {
  background: #d0ab12;
}


.manipulator-list {
  border: 3px solid #e8edf2;
  margin: 20px auto;
  text-align: center;
  position: relative;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.hover {
  opacity: 0;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.r-hov img, .l-hov img {
  width: 0;
}

.l-hov {
  position: absolute;
  left: -120px;
  bottom: -5px;
  -webkit-transition: .8s;
  -o-transition: .8s;
  transition: .8s;
}

.r-hov {
  position: absolute;
  bottom: -5px;
  right: -120px;
  -webkit-transition: .8s;
  -o-transition: .8s;
  transition: .8s;
}

.manipulator-list a {
  text-decoration: none;
}

.img-man img {
  width: 100%;
  height: 415px;
  -o-object-fit: cover;
  object-fit: cover;
}

.name-map {
  height: 50px;
  background: #1b1b1b;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.name-map p {
  font-family: var(--main-font);
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}
.body-map {
  margin: 15px auto;
}
.body-map p {
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  padding: 0;
  margin: 0;
  text-align: center;
}
button.btn-manipulator {
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  background-color: #ffc600;
  border: 3px solid #f5ad00;
  padding: 10px 30px;
  margin-top: 10px;
  margin-bottom: 35px;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  cursor: pointer;
}

.manipulator-list:hover {
  -webkit-box-shadow: 0 0 20px 1px #afafaf;
  box-shadow: 0 0 20px 1px #afafaf;
}
.manipulator-list:hover .hover {
  opacity: 1;
}
.manipulator-list:hover .l-hov {
  left: 0;
}
.manipulator-list:hover .r-hov {
  right: 0;
}



.benefit {
  background-image: url(/tpl/default/img/bg-y.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  width: 100%;
  padding-top: 80px;
  position: relative;
}
.flex-end {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.text-main-black {
  width: 100%;
}

.text-main-black p {
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  border-bottom: 10px solid #1b1b1b;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 40px auto 0;
}

ul.list-benefit {
  padding: 0;
}

p.title{
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 20px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
  text-align: center;
}

/* Dropdown Button */
.dropbtn {
  background-color: transparent;
  font-family: var(--main-font);
  text-decoration: none;
  text-transform: capitalize;
  color: #f8d027;
  font-size: 18px;
  font-weight: 800;
  line-height: 42px;
  border: none;
  cursor: pointer;
  padding-right: 30px;
}

.dropbtn:after {
  height: 0;
  width: 0;
  border-top: 4px solid #777;
  transition: all 125ms ease-in-out;
  content: '';
  pointer-events: none;
  position: absolute;
  right: 7px;
  top: 50%;
  border: solid #161616;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: translateY(calc(-50% - 2px)) rotate(45deg);
}

.socials{
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: flex-end;
}

.socials a{
  margin: 0 0;
}

.dropbtn::after {
  border: solid #fff;
  border-width: 0 2px 2px 0;
}

/* The container <div> - needed to position the dropdown content */
.dropdown-menu {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 240px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.bg-services{
  background: #4a4a4a;
}

.service_item{
  margin-bottom: 20px;
}

.service_item .number{
  padding: 10px 30px;
  word-wrap: break-word;
}

.service_item .number a{
  word-wrap: break-word;
}


/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}

.list-benefit-title p {
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
}

@media (min-width: 767px){
  .revealator-zoomin {
    transform: scale(0.75);
    opacity: 0;
  }
  .revealator-slideright {
    transform: translate(-100px,0);
    opacity: 0;
  }
  .revealator-fade.revealator-within, .revealator-fade.revealator-partially-above, .revealator-fade.revealator-above {
    opacity: 1;
  }
  .revealator-delay4 {
    transition-delay: 400ms !important;
  }
  .revealator-slideright.revealator-within, .revealator-slideright.revealator-partially-above, .revealator-slideright.revealator-above {
    transform: translate(0,0);
    opacity: 1;
  }
  .revealator-zoomin.revealator-within, .revealator-zoomin.revealator-partially-above, .revealator-zoomin.revealator-above {
    transform: scale(1);
    opacity: 1;
  }
  .revealator-fade, .revealator-slideup, .revealator-slideleft, .revealator-slideright, .revealator-slidedown, .revealator-zoomin, .revealator-zoomout, .revealator-rotateleft, .revealator-rotateright {
    transition: all 400ms;
  }

  .duration10 {
    transition-duration: 1000ms !important;
  }

}
.bg-slide-man {
  background: url(/tpl/default/img/slide-man.jpg);
  width: 100%;
  background-size: cover;
  height: 688px;
  position: relative;
}

.slide-text-h1-man h1, .slide-text-h1-man p {
  font-family: var(--main-font);
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  text-transform: uppercase;
}

.slide-text-p-man p {
  font-family: var(--main-font);
  color: #fffefe;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

span.c-f7c700 {
  color: #f7c700;
  padding-left: 10px;
}
button.btn-call-man {
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
  margin-top: 20px;
  background: #f7c700;
  border: 3px solid #fff;
  padding: 8px 44px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  border-radius: 8px;
}
button.btn-call-man:hover {
  background: #fff;
}
.line-slide-man:before {
  content: '';
  border-top: 5px solid #f7c700;
  left: 0;
  z-index: -1;
  position: absolute;
  right: 0;
  top: 22px;
}

.line-slide-man {
  background: url(/tpl/default/img/kran-icon.png) no-repeat center;
  height: 75px;
  margin: -22px auto 0;
  position: relative;
  width: 100%;
}

.slide-abs {
  position: absolute;
  left: 50%;
  top: 45%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  text-align: center;
  width: 655px;
}

.slide-text-p-man p {
  font-family: var(--main-font);
  color: #fffefe;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

button.btn-consultant {
  position: absolute;
  bottom: 20px;
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 16px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
  background: #F5F5DC;
  border: 3px solid #ffae00;
  padding: 2px 20px;
  left: 50%;
  width: 320px;
  -webkit-transform: translate(-50%,0);
  -ms-transform: translate(-50%,0);
  transform: translate(-50%,0);
  cursor: pointer;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.consultant {
  margin-top: -168px;
  margin-left: 180px;
  position: relative;
}

ul.list-benefit li {
  list-style-type: none;
  margin: 30px auto;
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.number_consultant {
  border: 3px solid #1b1b1b;
  border-radius: 50%;
  width: 61px;
  height: 61px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 15px;
}

.number_consultant p {
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.manipulator-list:hover .r-hov img, .manipulator-list:hover .l-hov img {
  width: 180px;
}
button.owl-prev {
  position: absolute;
  left: -60px;
  top: 40%;
  outline: none!important;
}
button.owl-next {
  position: absolute;
  right: -60px;
  top: 40%;
  outline: none!important;
}
.owl-equipment {
  margin: 35px auto;
}
.img-slide-equipment img {
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
button.btn-manipulator:hover {
  border-color: #1b1b1b;
}
.adv-circle {
  background: #1b1b1b;
  width: 63px;
  height: 63px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: auto;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.adv-circle img {
  width: 34px;
}
.adb-text p {
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
}
.rent {
  margin: 60px auto;
  background: #f2f2f2;
  padding: 50px 0;
}
.rent-main-titile p {
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 24px;
  text-align: center;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 40px;
}
.slide-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.img-slide {
  width: 35%;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.img-slide img {
  height: 270px;
  -o-object-fit: cover;
  object-fit: cover;
}
.text-slide {
  width: 65%;
}
.text-slide p {
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  padding-left: 50px;
  margin: 0;
}
.mt-55 {
  margin-top: 15px;
}
.advantages-list-b {
  border-top: 8px solid #cbcbcb;
  margin-left: 25px;
  margin-right: 25px;
  background: #f2f2f2;
  padding: 0;
}
.top-t-adv p {
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  margin: 8px auto;
}
.body-t-adv p {
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  min-height: 50px;
  text-align: center;
}

.black-info-block {
  margin-top: 60px;
  background-color: #1b1b1b;
  min-height: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.text-info-m p {
  font-family: var(--main-font);
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  line-height: 32px;
  margin: 0;
}
.text-info-sm p {
  font-family: var(--main-font);
  color: #bbb;
  font-size: 13px;
  font-weight: 600;
  line-height: 22px;
  margin: 15px 0 0;
}
.btn-call-partner {
  font-family: var(--main-font);
  color: #1b1b1b;
  font-weight: 700;
  line-height: 40px;
  background: #f7c700;
  border: 3px solid #fff;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 20px;
  padding: 5px 36px;
  margin: 0;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.icon-menu {
  display: block;
  position: relative;
  width: 38px;
  height: 27px;
  z-index: 50;
}
.icon-menu span, .icon-menu::before, .icon-menu::after {
  content: "";
  transition: all 0.3s ease 0s;
  right: 0;
  position: absolute;
  width: 34px;
  height: 4px;
  background-color: rgb(13, 120, 107);
}

.techika__small{
  min-height: 170px;
}

.tech-list {
  margin: 18px 0;
  position: relative;
}
.tech-img {
  overflow: hidden;
  cursor: pointer;
  height: 265px;
}
.tech-list img {
  width: 100%;
  height: 265px;
  transition: 1s;
}
.bg-yellow {
  position: relative;
  background: url('/tpl/default/img/bg-yellow.png');
  background-size: cover;
  width: 100%;
}
.text-main-black {
  width: 100%;
  display: flex;
  justify-content: center;
}
.text-main-black p {
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  padding-top: 60px;
  margin: 0;
  width: max-content;
  text-align: center;
  border-bottom: 10px solid #000;
  text-transform: uppercase;
}
.col-3 {
  position: relative;
  width: 25%;
}
.price-list p {
  font-family: var(--main-font);
  color: #010101;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
}
.price-list {
  width: 170px;
  background: #fff;
  border-radius: 50%;
  height: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  flex-direction: column;
  text-align: center;
  position: relative;
}
.price-list:before {
  content: "";
  border: 10px solid rgba(255, 255, 255, 0.5);
  width: 170px;
  position: absolute;
  height: 170px;
  border-radius: 50%;
}
.price-list span {
  font-size: 36px;
}
.hover-price {
  position: absolute;
  background: #000;
  border-radius: 50%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: .8s;
  cursor: pointer;
}
.hover-price:hover {
  opacity: 1;
}
.hover-price p {
  font-family: var(--main-font);
  color: #f7c700;
  font-size: 26px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
}
.hover-price:before {
  content: "";
  border: 26px solid transparent;
  border-top: 20px solid #f7c700;
  position: absolute;
  top: 0;
  border-radius: 12px;
}
.hover-price:after {
  content: "";
  border: 26px solid transparent;
  border-bottom: 20px solid #f7c700;
  position: absolute;
  bottom: 0;
  border-radius: 12px;
}
.line-bottom {
  background: url(/tpl/default/img/line-yellow.png);
  background-size: cover;
  position: absolute;
  height: 38px;
  width: 100%;
  bottom: 0;
}
.text-main-b p {
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
  text-align: center;
}
.w-1020 {
  width: 1020px;
}
.text-map-item p {
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 30px;
  font-weight: 400;
  line-height: 40px;
  padding: 0;
  margin: 0;
}
.call-map {
  margin-top: 120px;
}
.call-map p , .call-map a {
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  text-decoration: none;
  margin: 0;
}
.img-map {
  margin-left: -170px;
}
.cal-but {
  position: relative;
  width: max-content;
}
.cal-but:before {
  content: "";
  background: url(/tpl/default/img/arrow-yellow.png) no-repeat;
  width: 50px;
  height: 60px;
  position: absolute;
  right: -75px;
  top: -20px;
}
.bg-fot {
  background: url('/tpl/default/img/bg-footer.jpg');
  background-size: cover;
  width: 100%;
  height: 650px;
  position: relative;
}
.bg-fot:before {
  content: "";
  background: url('/tpl/default/img/line-footer.png');
  background-size: cover;
  height: 38px;
  width: 100%;
  position: absolute;
  top: 0;
}
.bg-footer-b {
  background: #1b1b1b;
}
.bg-fot:after {
  content: "";
  background: url('/tpl/default/img/line-footer.png');
  background-size: cover;
  height: 38px;
  width: 100%;
  position: absolute;
  bottom: 0;
}
.foot-text {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
}
span.icon-work {
  font-size: 42px;
  cursor: pointer;
}
.icon-work-span {
  position: absolute;
}
.icon-work-0 {
  top: 45px;
  left: 55px;
}
.icon-work-1 {
  top: 80px;
  left: 170px;
}
.icon-work-2 {
  top: 50px;
  left: 250px;
}
.icon-work-3 {
  top: 150px;
  left: 135px;
}
.icon-work-4 {
  top: 170px;
  left: 235px;
}
.icon-work-5 {
  top: 110px;
  left: 270px;
}
.icon-work-6 {
  top: 215px;
  left: 125px;
}
.icon-work-7 {
  top: 260px;
  left: 170px;
}
.icon-work-8 {
  top: 260px;
  left: 260px;
}
.icon-work-9 {
  top: 240px;
  left: 365px;
}
.icon-work-11 {
  top: 365px;
  left: 215px;
}
.icon-work-10 {
  top: 325px;
  left: 430px;
}
.icon-work-12 {
  top: 440px;
  left: 265px;
}
.icon-work-13 {
  top: 390px;
  left: 345px;
}
.icon-work-14 {
  top: 450px;
  left: 440px;
}
.icon-work-16 {
  top: 515px;
  left: 315px;
}
.icon-work-17 {
  top: 510px;
  left: 390px;
}
.icon-work-18 {
  bottom: 340px;
  left: 375px;
}
.icon-work-19 {
  bottom: 310px;
  left: 330px;
}
.icon-work-20 {
  bottom: 260px;
  left: 275px;
}
.icon-work-21 {
  bottom: 305px;
  left: 160px;
}
.icon-work-23 {
  bottom: 320px;
  left: 60px;
}
.icon-work-22 {
  bottom: 155px;
  left: 160px;
}
.icon-work-24 {
  bottom: 190px;
  left: 70px;
}
.icon-work-25 {
  bottom: 140px;
  left: -45px;
}
.icon-work-27 {
  bottom: 75px;
  left: 0;
}
.icon-work-26 {
  bottom: 50px;
  left: -95px;
}
.icon-work-28 {
  bottom: 90px;
  left: 100px;
}
.icon-work-15 {
  display: none;
}
.icon-work-span {
  opacity: .3;
}
.map-path:hover .icon-work-span {
  opacity: 1;
}

.footer-main p {
  font-family: var(--main-font);
  color: #f7c700;
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
}
.footer-address p , .footer-phone p, .footer-phone a{
  font-family: var(--main-font);
  color: #ffffff;
  font-size: 27px;
  font-weight: 400;
  line-height: 40px;
  margin: 0;
  text-decoration: none;
}
.list-sitemap p {
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}
ul.list-sitemap {
  list-style-type: none;
  margin: 10px 0;
  padding: 0 10px;
}
ul.list-sitemap li a {
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
  margin: 0;
}
.sitemap-block {
  margin: 40px auto;
}
.cart_popup {
  opacity: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.9);
  transition: .7s;
}
.cart_popup.active {
  z-index: 9;
  opacity: 1;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.cooping p, .cooping a {
  color: #fff;
  font-size: 15px;
  margin: 5px auto;
}
.skylogic a {
  color: #fff;
  float: right;
  text-decoration: none;
}
.cart-body a {
  color: #fff;
}
.cart-body {
  position: absolute;
  left: 50%;
  top: 35%;
  transform: translate(-50%,-50%);
  width: 300px;
  text-align: center;
}
.cart-body p {
  color: #fff;
  font-size: 33px;
}
.close {
  display: flex;
  justify-content: flex-end;
}
.close img {
  cursor: pointer;
}
.catr-phone div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.catr-phone a {
  font-family: var(--main-font);
  text-decoration: none;
  font-size: 24px;
  font-weight: 400;
  display: block;
  margin: 10px;
  position: relative;
}
.catr-phone a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  bottom: -10px;
  right: 0;
  transition: .5s;
}

.top_menu .col-7{
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  justify-content: center;
  gap: 100px;
}

.nav{
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 0;
}
.menu-btn{
  display: none;
}

.nav_item{
  padding: 10px 15px;
}

.nav_item  a{
  font-family: var(--main-font);
  text-decoration: none;
  text-transform: capitalize;
  color: #f8d027;
  font-size: 18px;
  font-weight: 800;
  line-height: 42px;
}

.nav_item  a:hover{
  border-bottom: 2px solid #ffffff;
}

.container-select--lang select{
  display: none;
}

.dropdown {
  background-image: linear-gradient(to bottom, rgb(248 208 39) 0, rgb(248 208 39) 80%);
  background-repeat: repeat-x;
  background-color: transparent;
  border-radius: 6px;
  box-shadow: none;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  float: left;
  font-size: 14px;
  font-weight: 400;
  height: 42px;
  line-height: 42px;
  outline: 0;
  padding-left: 10px;
  padding-right: 20px;
  position: relative;
  text-align: left;
  transition: all .2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
}

.container-select--lang .dropdown
.current {
  display: flex;
  max-width: 60px;
  overflow: hidden;
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
}
.select .current {
  display: flex;
  position: relative;
  text-overflow: ellipsis;
  overflow: hidden;
}
.dropdown .list {
  box-sizing: border-box;
  transition: all .15s cubic-bezier(.25, 0, .25, 1.75), opacity .1s linear;
  transform: scale(.75);
  transform-origin: 50% 0;
  box-shadow: 0 0 0 1px rgb(0 0 0 / 9%);
  background-color: #fff;
  border-radius: 6px;
  margin-top: 4px;
  padding: 3px 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  max-height: 300px;
  overflow-x: hidden;
  overflow-y: auto;
}

.dropdown .list ul{
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.container-select--lang .dropdown::after {
  border: solid #fff;
  border-width: 0 2px 2px 0;
}
.dropdown .option {
  cursor: default;
  font-weight: 400;
  line-height: 30px;
  outline: 0;
  padding-left: 11px;
  padding-right: 6px;
  text-align: left;
  transition: all .2s;
}
.dropdown .option.selected {
  font-weight: 600;
}

.dropdown .option:hover{
  cursor: pointer;
  background: #e7e4e4;
}

.dropdown.open, .dropdown:active {
  background-color: #f8d027!important;
  border-color: #f8d027!important;
  box-shadow: 0 1px 4px rgb(0 0 0 / 5%) inset;
}
.dropdown.open .list {
  transform: scale(1);
  opacity: 1;
  pointer-events: auto;
}
.dropdown.open:after {
  transform: translateY(calc(-50% + 2px)) rotate(225deg);
}
.dropdown:after {
  height: 0;
  width: 0;
  border-top: 4px solid #777;
  transition: all 125ms ease-in-out;
  content: '';
  pointer-events: none;
  position: absolute;
  right: 7px;
  top: 50%;
  border: solid #161616;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: translateY(calc(-50% - 2px)) rotate(45deg);
}

.dropdown .list {
  left: 0!important;
  right: 0!important;
}



.catr-phone a:hover:before {
  width: 0;
}
.catr-phone a y {
  color: #f4bb21;
}
p.twenty-minut {
  font-size: 22px;
  margin-top: 15px;
}
.fixed-href {
  position: fixed;
  top: 30%;
  right: 0;
  background: #f8d027;
  z-index: 9;
  height: 285px;
  width: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px 0 0 8px;
  transition: .3s;
}
.mt-40 {
  margin-top: 40px;
}
.fixed-href a {
  text-decoration: none;
}
.fixed-href p {
  font-family: var(--main-font);
  color: #1b1b1b;
  font-size: 20px;
  font-weight: 700;
  line-height: 40px;
  transform: rotate(-90deg);
  text-transform: uppercase;
  letter-spacing: 8px;
}
.fixed-href:hover {
  width: 40px;
}
#toTop {
  text-align: center;
  padding: 5px;
  position: fixed;
  bottom: 65px;
  right: 25px;
  cursor: pointer;
  display: none;
  color: #ffffff;
  font-size: 11px;
  z-index: 8;
  background: #f7c700;
  height: 50px;
  width: 50px;
}
#toTop img {
  margin-top: 10px;
}

@media (max-width: 1290px) {
  ._container {
    width: 980px;
  }
  .tech-img, .tech-list img {
    height: 210px;
  }
  .top_menu .col-7 {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: flex-start;
     gap: 0;
  }
}
@media (max-width: 1090px) {
  .arr-r:before {
    display: none;
  }
  .number {
    float: unset;
    margin: 0 auto;
  }
  .col-consultant:before {
    width: 160px;
    height: 160px;
    top: 130px;
    left: -60px;
  }
  ._container {
    width: 90%;
  }
  .img-map {
    display: none;
  }
  .col-sm-12 {
    width: 100%;
  }
  .tech-img, .tech-list img {
    height: 200px;
  }
  .col-4 {
    width: 35%;
  }
  .cal-but {
    margin-bottom: 20px;
  }
}
@media (max-width: 870px) {
  .col-3 {
    width: 50%;
  }
  .bg-yellow {
    height: auto;
    padding-bottom: 70px;
  }
  .col-4 {
    width: 45%;
  }

  .top_menu .col-7 {
    width: auto ;
    gap: 0px;
  }

  .container-select--lang{
    order: 1;
    margin-right: 20px;
  }

  .container-select--lang select{
    height: 25px;
  }

  .menu-btn{
    order: 2;
  }

  .menu-btn{
    display: flex;
  }
  .slide-abs, .foot-text {
    width: 90%;
  }
  .nav{
    flex-direction: column;
    padding-left: 0;
    text-align: left;
    align-items: flex-start;
  }
  .menu-btn {
    width: 30px;
    height: 30px;
    position: relative;
    z-index:32;
    overflow: hidden;
  }
  .menu-btn span {
    width: 30px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFFFFF;
    transition: all 0.5s;
  }
  .menu-btn span:nth-of-type(2) {
    top: calc(50% - 10px);
  }
  .menu-btn span:nth-of-type(3) {
    top: calc(50% + 10px);
  }
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 15px;
    background: #2a2a2a;
    transform: translateX(-100%);
    transition: transform 0.5s;
  }
  .nav_item {
    padding: 8px 15px;
  }
  .number {
    margin: 0 auto;
  }
  .menu.active {
    transform: translateX(0);
  }
  .menu li {
    list-style-type: none;
  }
  /* Меняем гамбургер иконку, когда меню открыто */
  .menu-btn.active span:nth-of-type(1) {
    display: none;
  }
  .menu-btn.active span:nth-of-type(2) {
    top: 50%;
    transform: translate(-50%, 0%) rotate(45deg);
  }
  .menu-btn.active span:nth-of-type(3) {
    top: 50%;
    transform: translate(-50%, 0%) rotate(-45deg);
  }
  .col-fot-6 {
    width: 100%;
  }
  form.form-footer {
    padding: 10px 20px;
  }
  .col-consultant:before {
    content: "";
    display: none;
  }
  .img-slide {
    display: none;
  }

  .text-main p, .text-main h1 {
    font-size: 22px;
  }
  .w-slide {
    width: 75%;
  }
  .text-main {
    width: 100%;
  }
  .text-main p, .text-main h1 {
    font-family: var(--main-font);
    color: #1b1b1b;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    border-bottom: 10px solid #ffc600;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 20px auto;
    max-width: 100%;
    text-align: center;
  }
  .text-main-black p {
    font-size: 24px;
  }
  .text-main-black p {
    font-size: 24px;
  }
  .slide-text-h1-man h1, .slide-text-h1-man p {
    font-size: 27px;
    line-height: 34px;
  }

  .consultant {
    display: none;
  }
  ul.list-benefit {
    margin: 0;
  }
  ul.list-benefit li {
    font-size: 15px;
  }
  .list-benefit-title {
    width: 100%;
    text-align: center;
  }
  .col-7-profitable {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .text-info-m {
    display: none;
  }
  .text-info-sm {
    display: none;
  }
  form.form-footer {
    padding: 10px 20px;
  }
  .modal-body {
    width: 95%;
  }
  .owl-next img, .owl-prev img {
    width: 30px;
  }
  button.owl-prev {
    left: -40px;
  }
  button.owl-next {
    right: -40px;
  }

  .img-man img {
    height: 220px;
  }
  .text-slide p {
    padding: 0;
  }
  .text-slide {
    width: 100%;
  }
  .manipulator-list {
    margin: 8px auto;
  }
  .col-6_p {
    width: 100%;
  }

}
@media (max-width: 650px) {
  .skylogic {
    margin-bottom: 15px;
  }
  #toTop {
  	width: 33px;
  	height: 33px;
  }
  #toTop img {
    margin-top: 5px;
  }
  .seo-text {
    margin: 20px auto 40px;
  }
  #toTop {
    right: 0;
  }
  .bg-slide-1 {
    width: 100%;
  }
  .col-4 {
    width: 100%;
  }
  .tech-list {
    width: 320px;
    margin: 10px auto;
  }
  button.btn-send {
    border-radius: 0;
  }
  .top_menu {
    height: auto;
    padding-bottom: 20px;
  }
  .top_menu-flex {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .col-6 {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .logo {
    margin-bottom: 15px;
  }
  .number {
    float: unset;
  }
}
@media (max-width: 460px) {

  .bg-slide {
    height: 570px;
  }
  button.btn-white {
    margin-bottom: 0;
  }
  .price-list {
    margin-top: 80px;
  }
  .arr-r:before {
    display: block;
    right: unset;
    top: 107%;
    transform: rotate(90deg);
  }
  .col-3 {
    width: 100%;
  }
  .call-map p, .call-map a {
    font-size: 26px;
  }
  .text-map-item p {
    font-size: 26px;
    line-height: 32px;
  }
  button.btn-call {
    font-size: 20px;
  }
  .slide-text-h1 h1, .slide-text-h1 p {
    font-size: 36px;
  }
  .slide-text-p p, .number a {
    font-size: 22px;
  }
  .call-map {
    margin-top: 50px;
  }
  .tech-list {
    width: 100%;
  }
  .slide-abs, .foot-text {
    width: 100%;
  }
  .footer-address p, .footer-phone p, .footer-phone a {
    font-size: 22px;
    line-height: 32px;
  }

  .service_item .number{
    width: auto;
    text-align: center;
  }
}

