:root{
    --main-color:#009EE0;
    --border-radius: 3px;
}
*{padding: 0;margin: 0;border: 0;}
*,*:before,*:after{-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}
nav,footer,header,aside{display: block;}
html,body{-ms-text-size-adjust:100%;-moz-text-size-adjust:100%;-webkit-text-size-adjust:100%;}
input,button,textarea{font-family:inherit;}
input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-moz-focus-inner{padding:0;border:0;}
a,a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul:not([class]), ol:not([class]){
    margin-left: 20px;
}
ul:not([class]) li,ol:not([class] li){
    margin-bottom: 7px;
}
ol { counter-reset: item; }
ol li { display: flex; margin-bottom:15px;}
ol li:before {
    content: counter(item) ".";
    counter-increment: item;
    color: #009EE0;
    margin-right:20px;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
}

ul li { display: flex; margin-bottom:15px;}
ul li:before {
    content: "•";
    color: #009EE0;
    margin-right:20px;
    font-weight: 700;

    line-height: 20px;
    border-radius:10px;
}

img{vertical-align: top;}
h1,h2,h3,h4,h5,h6{color:#1B1918; font-weight}
h1{
    font-size: 40px;
    margin-bottom: 20px;
}
h2,h3{
    font-size: 34px;
    margin-bottom: 20px;
}
body{
    font-family: 'Mulish', sans-serif !important;
    color:#4C4C4C;
    font-size:18px;
    background:#fff;
    line-height: 1.4;
}
a{
    color:var(--main-color);
    text-decoration:dashed;
}
a:hover, button:hover{
    cursor:pointer;
}
thead th{
    padding:10px;
    text-transform:uppercase;
}
tbody td{
    padding:7px;
}
p{
    margin: 0 0 10px 0;
}
.img-fluid{
    max-width: 100%;
    height: auto;
}
.text-center{
    text-align: center;
}
.br{
    display:block;
}
.underline{
    text-decoration: underline;
}
.nounderline{
    text-decoration: none;
}
.upper{
    text-transform: uppercase
}
.relative{
    position: relative;
}
.checkboxBlock{
    position: relative;
    padding-left: 22px;
}
.checkboxBlock input{
    display: none;
}
.checkboxBlock label:after{
    background: #fff;
    box-shadow: 0 0 0 1px #ccc;
    border-radius: 3px;
    position: absolute;
    content: "";
    left: 1px;
    top: 5px;
    width: 16px;
    height: 16px;
    padding: 3px;
    transition: all ease 0.15s;
}
.checkboxBlock input[type="checkbox"]:checked ~ label:after {
    box-shadow: 0 0 0 1px var(--main-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
    background-color: var(--main-color);
}
.radioBlock{
    position: relative;
    padding-left: 22px;
}
.radioBlock input{
    display: none;
}
.radioBlock label:after{
    background: #fff;
    box-shadow: 0 0 0 1px #ccc;
    border-radius: 50%;
    position: absolute;
    content: "";
    left: 1px;
    top: 5px;
    width: 16px;
    height: 16px;
    padding: 3px;
    transition: all ease 0.15s;
}
.radioBlock input[type="checkbox"]:checked ~ label:after {
    box-shadow: 0 0 0 1px var(--main-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
    background-color: var(--main-color);
}

input,select,textarea{
    border-radius: var(--border-radius);
}
.btnMain {
    background: #009EE0;
    color: #fff;
    border: 0;
    padding:15px 20px;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    transition: all ease 0.2s;
    border-radius: 68px;
    line-height: 100%;
    cursor:pointer;
    display:inline-block;
}
.btnMain:hover{
    background: #FFEC00;
    color:#1B1918;
}

.btnMainOrange {
    background: #FFEC00;
    color: #1B1918;
    border: 0;
    padding: 13px 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all ease 0.2s;
    border-radius: 58px;
    line-height: 100%;
    text-transform: uppercase;
}
.btnMainOrange:hover{
    background: #009EE0;
    color: #fff;
}



.fancybox-caption__body .btnMain{
    display: inline-block;
    padding: 13px 50px;
    font-size: 13px;
    color: #fff  !important;
    text-decoration: none !important;
    margin-top: 7px;
}

.zgSite{
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    color: #1B1918;
}
.modalBody{
    padding: 25px;

}
.modalBody .zgSite{
    font-size: 30px;
    margin-bottom: 15px;
}
.hystmodal__window{
    border-radius: 14px;
}
.form-group{
    margin-bottom: 15px;
}
.form-control {
    box-shadow: none;
    color: #000;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    padding: 17px 24px;
    height: auto;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 28px;
}
.form-control:focus{
    border-color:#ccc;
    box-shadow: none;
}
.form-control.error{
    border-color:darkred;
}
.form-control.file-browser{
    background-color: #fbfbfb;
}
.file-group {
    position: relative;
    overflow: hidden
}
.file-group input[type="file"] {
    position: absolute;
    opacity: 0;
    z-index: -1;
    width: 20px;
}
.file-group-inline {
    display: inline-block
}
.error_file{
    display: block;
    font-size: 13px;
    color: #f84141;
}
.file-value{
    display: block;
    font-size: 12px;
}
.form-control.file-value {
    cursor: text
}

.custom-number .btn-count{
    vertical-align: top;
    margin-top: 4px;
    padding: .20rem .60rem;
}
.custom-number {
    position: relative;
}
.custom-number input[type=number]::-webkit-inner-spin-button,
.custom-number input[type=number]::-webkit-outer-spin-button
{
  -webkit-appearance: none;
  margin: 0;
}

.custom-number input[type=number]
{
  -moz-appearance: textfield;
}
.custom-number2 .btn-count{
    margin-top: 0;
    font-size: 11px;
    padding: 0 .75rem;
}
.custom-number2 .btn-plus {
    margin-top: 1px;
    position: absolute;
    bottom: 0;
    left: 74px;
}
.grecaptcha-badge{
    display: none;
}
.personalAccept {
    font-size: 13px;
    color: #5f5f5f;
}
.personalAccept a{
    color: #006FBD;
}
.ajax_form .error,span.error{
    color:brown;
}
.error_check{
  min-height: 17px;
  display: inline-block;
}

.breadcrumbs {
    padding: 20px 0 10px 0;
}
ul.breadcrumb{
    background: none;
    font-size: 12px;
    margin: 0;
    padding: 0;
	display: block;
    color: #9f9f9f;
}
.breadcrumb li:before{
    display:none;
}
.breadcrumb li{
    display: inline-block;
    margin-right: 4px;
    list-style:none;
}
.breadcrumb li .separ{
    padding: 0 5px;
}
.breadcrumb a{
    text-decoration: none;
    color: #9f9f9f;
}
.breadcrumb a:hover{
    color: #567595;
}
.breadcrumb li>span{
	color: #9f9f9f;
}

.pagination{
    text-align: center;
    display:block;
}
ul.pagination{
    display: inline-block;
    background: #fff;
    margin-bottom: 20px;
    border-radius: 0;
    margin-top: 20px;
}
ul.pagination li{
    display: inline-block;
    padding-left: 6px;
}
ul.pagination li a{
    display: inline-block;
    padding: 8px  10px;
    border:1px solid rgba(47, 58, 80, 0.432);
    color: #666666;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
}
ul.pagination li a:hover,ul.pagination li.active a{
    background: var(--main-color);
    text-decoration: none;
    color: #fff;
    border:1px solid var(--main-color);
}
ul.pagination li.disabled span{
    color: #b2b2b2;
    display: inline-block;
    padding: 7px 7px;
    border:1px solid #fbfbfb;
    border-radius: 0;
    font-size: 14px;
    line-height: 14px;
    font-weight: 300;
}
#mapYan{top:0;position:relative;min-height:600px;width:100%}
.spinner {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hoverBlock{
    position: relative;
}
.hoverInset {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 102.79%);
    opacity: 0;
    transition: all ease 0.15s;
}
.hoverBlock:hover .hoverInset{
    opacity: 1;
}

.mobileMenu {
    position: fixed;
    left: -250px;
    top: 0;
    height: 100%;
    width: 250px;
    z-index: 1030;
    transition: all ease-in 0.25s;
    overflow: auto;
    background: #fff;
}
.mobileMenuUl {
    padding-left: 0;
    margin-bottom: 0;
    text-align: center
}
.mobileMenuUl a {
    text-decoration:none;
    display:block;
    transition:all 0.1s ease-in;
    color: #333;
    padding: 13px 25px;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 400;
}
.mobileMenuUl li{
    list-style:none;
    margin-bottom:0;
    padding-left:0;
    position: relative;
    display:block;
}
.mobileMenuUl li:before{
    display:none;
}
.mobileMenuUl li.hover>ul{
    display: block;
    position: relative;
    padding-left: 0;
    margin-bottom: 0;
}
.mobileMenuUl a:hover,.mobileMenuUl>li.active>a{
    text-decoration:none;
    background:  var(--main-color);
    color: #fff;
}
.mobileMenuUl>li>ul {
    position: relative;
    background: #fff;
    display: none;
}
.mobileMenuUl>li>ul li{
    display:block;
}
.mobileMenuUl>li>ul a{
    display:block;
    padding:11px 15px;
    font-size:14px;
    border-top:1px solid #dfe5e8;
    background: #fff;
    color: #003c7f;
    text-transform: none;
}
.mobileMenuUl>li>ul a:hover{
    background: #fff;
    color: #006FBD;
    text-decoration: none;
}
.mobileMenuUl>li>ul li.active>a{
    background: #006FBD;
    color: #fff;
}
body.openMenu {
    overflow-y: hidden;
}
body.openMenu .menuCloser {
    display: flex;
    justify-content: flex-end;
}
body.openMenu .mobileMenu {
    left: 0;
}

.openMenuSite{
    padding: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    line-height:11px;
}
.openMenuSite img{
    max-width: 20px;
    margin-right: 7px;
}
.menuCloserTimes img{
    max-width: 30px;
    display: block;
}
.burger {
    display: none;
    text-align: center;
    color: #333;
    position: fixed;
    width: 100%;
    left: 0;
    background: #fff;
    z-index: 35;
    top: 0;
    padding: 2px 7px;
}
.burger:hover {
    cursor: pointer;
}
.needShadow.burger{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.fixedMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 44;
}
.menuCloserTimes {
    color: #fff;
    font-size: 30px;
    padding: 15px;
}
.menuCloser {
    position: fixed;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.52);
    z-index: 1020;
    top: 0;
    left: 0;
    display: none;
}

.menu{
    padding-left: 0;
    display: flex;
    margin: 0;
}
.menu li{
    list-style:none;
    position: relative;
    margin-right: 33px;
    margin-bottom:0px;
}
.menu li:before{
    display:none;
}
.menu li:last-child{
    margin-right:0;
}

.menu>li>a{
    text-decoration:none;
    display:block;
    transition:all 0.1s ease-in;
    font-size: 16px;
    font-weight:600;
    color: #1B1918;
}
.menu a:hover, .menu>li.active a{
    color: #009EE0;
}

.menu>li>ul {
    position: absolute;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition:all ease-in 0.2s;
    left: 0;
    padding: 0;
    min-width: 220px;
    transform: translateY(20px);
    border: 1px solid #dfe5e8;
    box-shadow: 0 7px 10px 0 rgba(62, 62, 62, 0.12);
    z-index: 100;
}
.menu>li:hover>ul{
    opacity: 1;
    visibility: visible;
    transform:translateY(0);-o-transform:translateY(0);-ms-transform:translateY(0);-moz-transform:translateY(0);-webkit-transform:translateY(0)
}
.menu>li>ul li{
    display:block;
}
.menu>li>ul a{
    display:block;
    padding:11px 15px;
    font-size:14px;
    border-top:1px solid #dfe5e8;
    background: #fbfbfb;
}
.menu>li>ul a:hover{
    background: #fff;
    color: #333;
    text-decoration: none;
}
.menu>li>ul li.active>a{
    background: #fff;
}
.menu li ul li ul{
    position: absolute;
    background: #fff;
    opacity: 0;
    transition:all ease-in 0.2s;
    min-width: 220px;
    visibility: hidden;
    transform: translateX(20px);
    margin-top: -44px;
    right: -220px;
    padding-left: 0;
    border: 1px solid #dfe5e8;
}
.menu li ul li.parent>a{
    position: relative;
}
.menu li ul li.parent>a:after{
    position: absolute;
    content: "\f105";
    font-weight: 900;
    font-family: Font Awesome\ 5 Free;
    right: 11px;
    color: #7b7b7b;
}
.menu li ul li:hover ul{
    opacity: 1;
    visibility: visible;
    transform:translateX(0);-o-transform:translateX(0);-ms-transform:translateX(0);-moz-transform:translateX(0);-webkit-transform:translateX(0)
}
.menu li ul li:first-child a,.menu li ul li ul li:first-child a{
    border-top:none;
}


.mainPageBanner{
   height: 797px;
   background:url('/img/bannerBg.jpg') top center no-repeat;
   display:flex;
   align-items:center;
   justify-content:center
}
.mainPageBanner .container{
    margin-top:87px;
}
.bannerZg {
    font-weight: 700;
    font-size: 34px;
    line-height: 120%;
    color: #1B1918;
}
.bannerList{
    margin:65px 0 60px;
}
.bannerList li{
    list-style:none;
    font-weight: 600;
    font-size: 18px;
    color: #1B1918;
    margin-bottom:4px;
}
.bannerList li:before{
    background:url('/img/Check.svg');
    width:18px;
    min-width:18px;
    height:18px;
    content: "";
    display: inline-block;
    margin-right: 18px;
}
.mainPageBannerRow{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.mainPageBannerRow .col2{
    margin-right:44px;
}
.mainPageBannerRow .btnMain{
    text-transform:uppercase;
    padding:19px 40px;
    font-size:16px;
    font-weight:600;
}

.header.mainPage{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:10;
    height: 225px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}
.headerRow{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.headerRow .col2 {
    margin-left: 65px;
}
.headerWorkTime{
    font-size: 13px;
    line-height: 18px;
    color: #949494;
}
.phoneHeader{
    margin-top: 2px;
}
.phoneHeader a{
    font-weight: 700;
    font-size: 18px;
    color: #1B1918;
}

.callAS{
    color: #1B1918;
    display: inline-flex;
    align-items: center;
    transition: all ease 0.2s;
    cursor: pointer;
    position:relative;
    padding-bottom:3px;
    font-size:14px;
    border-bottom:1px dashed #1B1918;
}
.langkz .callAS{
   font-size:12px; 
}
.langkz .headerRow .col2{
    margin-left:0;
}
.callAS:hover{
    color: #009EE0;
}
.callASBlock{
    position: relative;
    display: inline-block;
    text-align:left;
}
.callASInner{
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.14);
    border-radius: 8px;
    padding: 30px 29px 22px 29px;
}
.callASInnerBlock{
    position: absolute;
    right: -21px;
    top: 12px;
    opacity: 0;
    z-index: 0;
    visibility: hidden;
    transition: all ease 0.2s;
    padding-top: 12px;
    min-width: 273px;
}
.hovercallAS .callASInnerBlock{
    opacity: 1;
    z-index: 30;
    visibility: visible;
    top: 22px;
}
.callAsZg{
    font-size: 14px;
    line-height: 16px;
    color: #666666;
    margin-bottom: 8px;
}
.callItem{
    display: inline-flex;
}
.callItem img{
    display: block;
}
.callItem.phones>span:last-child,.callItem.phones>div:last-child{
    margin: 7px 0 0 12px;
}
.callItem>span:last-child,.callItem>div:last-child{
    margin-left: 12px;
}
.phones a{
    font-weight: 500;
    font-size: 18px;
    color: #333333;
    text-decoration: none !important;
    display: block;
    margin-bottom: 6px;
}
.phones a:last-child{
    margin-bottom: 0;
}
.callASInner hr{
    border:none;
    border-top: 1px solid #E8E8E8;
    margin: 20px 0;
}
.socialA{
    font-weight: 500;
    color: #333333;
    text-decoration: none !important;
}
.callItem.socialA{
    margin-bottom: 17px;
    align-items: center;
}
.callItem.socialA:last-child{
    margin-bottom: 0;
}
.callAS svg{
    transition: all ease 0.2s;
}
.hovercallAS .callAS svg{
    transform: rotate(180deg);
}
.chooseLang{
    width:86px;
    background:#fff;
    color:#1B1918;
    font-size:14px;
    font-weight:600;
    border-radius:50px;
    display:inline-flex;
    align-items:center;
    position:relative;
}
.chooseLang .lng{
    margin: 0 4px 0 6px;
}
.chooseLangInnerBlock{
    position: absolute;
    right: -10px;
    top: 30px;
    opacity: 0;
    z-index: 0;
    visibility: hidden;
    transition: all ease 0.2s;
    padding-top: 30px;
}
.hoverChooseLang .chooseLangInnerBlock{
    opacity: 1;
    z-index: 30;
    visibility: visible;
    top: 22px;
}
.chooseLangInner{
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.14);
    border-radius: 8px;
    padding: 20px;
}
.langItem{
    display:inline-flex;
    align-items:center;
    transition:all ease 0.2s;
    color:#1B1918;
    padding:2px 10px;
    border-radius: 8px;
}
.langItem:hover{
    background:#ffec00;
}
.siteFooter{
    background: #2E2E2E;
    color: rgba(255, 255, 255,  0.48);
    padding: 50px 0 40px 0;
    font-size: 13px;
    position:absolute;
}
.siteFooter a{
    color: #fff6;
}
.siteFooter a:hover{
    color: #fff;
}
.rowFooter{
    justify-content: space-between;
    align-items:center
}
.rowFooter .politicPrivate{
    font-size: 14px;
    line-height: 18px;
    text-decoration: underline;
    color: #FFFFFF;
}
.footerCallAs{
    margin: 20px 0 30px 0;
}
.joinAS{
    color: #fff;
    font-size: 20px;
}
.socialButtons {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 14px;
}

.footerRow2{
    padding-top: 8px;
}
.bv_bl{
    text-align: right;
}
.bv{
    display: inline-block;
    background-image: url(/img/bv.png);
    color: #646464;
    padding: 17px 2px 0 35px;
    font-size: 10px;
    background-repeat: no-repeat;
    text-decoration: none;
    background-size: 150px;
    filter: grayscale(100%);
}
.bv:hover{
    color:#2a9854;
    text-decoration: none;
    filter: none;
}
.p140{
    padding-top:140px;
    padding-bottom:140px;
}
.pt140{
    padding-top:140px;
}
.pb140{
    padding-bottom:140px;
}
.siemensPartner {
    padding-top:118px;
    max-width:1070px;
    margin:0 auto;
    display:flex;
}
.siemensPartner .col1{
    padding-right:119px;
}
.siemensPartner .col2{
    padding-left:52px;
    border-left:4px solid #009999;
}
.siemensPartner .col2 .greenText{
    font-size:22px;
}
.greenText{
    color:#009999;
}
.catItems{
    display:flex;
    justify-content: center;
    flex-wrap:wrap;
    margin-top:60px;
    gap:65px 30px
}
.catItem{
    width:calc(25% - 30px);
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    text-align: center;
    color: #1B1918;
}
.catItem:nth-child(n+5):nth-child(n+5){
    margin-bottom:0;
        justify-self: center;
}
.catItemImg {
    padding: 10px;
    background: #A2DAF1;
    border-radius: 20px;
}
.catItemZg{
    padding:50px 27px 0;
}

.sivaconRow{
    display:flex;
    justify-content:space-between;
    margin-top:60px;
}
.sivaconRow .col2{
    padding-left:94px;
}
.sivaconSubZg,.zgSiteMin{
    font-size:26px;
    font-weight:700;
    line-height: 120%;
    color:#1B1918;
    margin-bottom:20px;
}
.sivaconDownload{
     display:flex;
    justify-content:space-between;
    margin-top:50px;
}
.coli1{
    max-width:300px;
    line-height: 120%;
    font-size: 16px;
}
.btnIcon{
    display:inline-flex;
    align-items:center
}
.btnIcon svg{
    margin-right:10px;
}
.btnIcon svg, .btnIcon svg path{
    transition: all ease 0.2s;
}
.btnIcon:hover svg path{
    stroke:#333
}
.sivaconRow2{
    display:flex;
    justify-content:space-between;
    margin-top:80px;
}
.playVideoBlock{
    position:relative;
    display:inline-block;
}
.playVideo{
    position:absolute;
    left:calc(50% - 27px);
    top: calc(50% - 27px);
    transition: all ease 0.2s;
}
.playVideoBlock:hover .playVideo{
    transform:scale(1.2);
}
.fs16{
    font-size:16px;
}
.fs20{
    font-size:16px;
}

.ourUslugs{
    display:grid;
    grid-template-columns: repeat(4,1fr);
    margin-top:60px;
    gap: 80px 30px;
}

.uslugaItem{
    width:300px;
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    text-align: center;
    color: #1B1918;
}

.uslugaItemImg img{
    border-radius: 20px;
}
.uslugaItemZg{
    padding:20px 27px 0;
}


.premRows{
    display: flex;
    justify-content: center;
    margin-top: 60px;
    flex-wrap: wrap;
}
.premItem{
    width: 20%;
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    text-align: center;
    color: #1B1918;
    margin-bottom: 52px;
}
.premItemIcon{
    width: 122px;
    height: 122px;
    background: #FFFFFF;
    border: 1.5px solid #009EE0;
    border-radius: 10px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-bottom:24px;
}
@media (min-width:992px){
   .premRows .premItem:nth-child(n+6):nth-child(n+6){
        margin-bottom:0;
    } 
}



.getConsultSection{
    background:url('/img/consultBg.jpg') top center no-repeat;
    padding:80px 0;
    color:#fff;
}
.getConsultSection .zgSite{
    color:#fff;
}
.consultFormRow{
    display:grid;
    grid-template-columns: repeat(3,332px);
    gap:0 16px ;
}
.getConsultSection .personalAccept{
    color:#fff;
    margin-top:20px;
    max-width:660px;
}
.getConsultSection .personalAccept a{
    color:#fff;
    text-decoration:underline;
}
.getConsultSection .btnMainOrange{
    padding:20px 40px;
    font-weight: 600;
    font-size: 16px;
    background: #FFEC00;
    color:#1B1918;
}
.consultDesc {
    margin: 30px 0 40px;
    max-width: 660px;
    font-weight: 600;
    font-size: 20px;
}
.oblpSection{
    overflow:hidden;
}
.oblpItemImg{
    margin-bottom:20px;
    text-align:center;
}
.oblpItemZg{
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    text-align: center;
    color: #1B1918;
    padding:0 7px;
}
.oblpItemImg img{
    border-radius: 20px;
}
.oblpItemsSld{
    margin-top:60px;
}
.swiper-container.oblpItemsSld {
    overflow:visible;
    position:relative;
}
.swiper-container.oblpItemsSld:before{
    position: absolute;
    width: 100%;
    content: "";
    background: #fff;
    height: 100%;
    z-index: 9;
    left: calc(-100%);
    top: 0;
}

.swiperBtn {
    position: absolute;
    top: calc(50% - 50px);
    height: 54px;
    width: 54px;
    margin-top: auto;
    background: #009EE0;
    border-radius:54px;
    transition:all ease 0.2s;
}
.swiper-button-next:after, .swiper-button-prev:after {
    display:none;
}
.swiperBtn:hover{
    opacity: 1;
    background: #FFEC00 !important;
}
.swiperBtn svg path{
    transition:all ease 0.2s;
}
.swiperBtn:hover svg path{
    stroke:#1B1918;
}
.swiper-button-prev{
    transform:rotate(180deg);
}
.swiperBtn.swiper-button-disabled{
    opacity: 0 !important;
    cursor: default;
    background: none;
    border: 2px solid #fff;
}
.swiper-button-prev{
    left: -25px;
}
.swiper-button-next{
    right: -25px;
}
.sliderWhiteNav{
    position: relative;
}
.sliderWhiteNav .swiperBtn {
    top: calc(50% - 25px);
    opacity: 1;
    width: 50px;
    height: 50px;
    color: #fff;
    background: rgba(0, 0, 0 ,0.5);
    border-radius: 50px;
}
.sliderWhiteNav .swiperBtn svg path{
    stroke: #ccc;
}
.sliderWhiteNav .swiperBtn:not(.swiper-button-disabled):hover svg path{
    stroke: #ffffff;
}
.sliderWhiteNav .swiper-button-prev {
    left: -25px;
}
.sliderWhiteNav .swiper-button-next {
    right: -25px;
}
.swiperBtn.swiper-button-disabled{
    opacity: 0 !important;
}

.projectsItems{
    display:flex;
    flex-wrap:wrap;
    margin-top:60px;
    gap:30px
}
.projectsItem{
    width:calc(50% - 15px);
    display:flex;
    justify-content:space-between;
    font-size: 16px;
    line-height: 120%;
    border: 1px solid #D3D3D3;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding:40px;
    transition:all ease 0.2s;
}
.projectsItem:hover{
    border: 1px solid #009EE0;
}
.projectsItem .col2{
    width:354px;
    padding-left:20px;
    display:flex;
    flex-direction: column;
}
.projectsItemMinZg{
    font-weight: 700;
    font-size: 14px;
    line-height: 120%;
    color: #1B1918;
    margin:30px 0 8px;
}
.projectsItemMinZg:first-child{
    margin-top:0;
}
.projectsItemOwner{
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    color: #1B1918;
}
.btnProjectBlock{
    margin-top:auto;
    padding-top:26px;
}
.btnProject{
    position:relative;
    padding:0 21px 0 55px;
    cursor:pointer;
    line-height:44px;
    display:inline-block;
}
.btnProjectStr{
    position:absolute;
    left:0;
    top:0;
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    background:#009EE0;
    z-index:3;
    transition:all ease 0.2s;
    border-radius:50px;
    
     padding-left:calc((44px - 16px) / 2);
}
.btnProjectText{
    position:relative;
    z-index:4;
    transition:all ease 0.3s;
    font-size: 15px;
    color: #1B1918;
}
.btnProject:hover .btnProjectStr{
    width:100%;
    justify-content:start;
}
.btnProject:hover .btnProjectText{
    color: #fff;
}


.contactsBlock{
    position: relative;
    margin-top:160px;
}
.contactsContainer{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}
.contactsContainer .container{
    position: relative;
}
.contactsInfo{
    padding:40px;
    position: absolute;
    top: 77px;
    right: 15px;
    z-index: 4;
    background: #FFFFFF;
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
}
.zgContact{
    font-weight: 700;
    font-size: 30px;
    line-height: 120%;
    color: #1B1918;
    margin-bottom:30px;
}

.contactsTable{
    max-width:417px;
    line-height: 120%;
}
.contactsTable tr>td{
    padding:0;
     padding-bottom:35px;
    vertical-align:top;
}
.contactsTable tr>td:first-child{
    font-size: 16px;
    
    color: #8E8E8E;
    padding-right:17px;
}

.contactsTable tr:last-child td{
    padding-bottom:0;
}
.contacAddress{
    font-size: 16px;
    line-height: 140%;
    color: #1B1918;
}
.contacPhones>div{
    margin-bottom:8px;
}
.contacPhones>div:last-child{
    margin-bottom:0;
}
.contacPhones a{
    font-weight: 700;
    font-size: 18px;
    color: #1B1918;
}
.contentMainPage{
    display:flex;
    justify-content:space-between;
}
.contentMainPage .col1{
    padding-right: 70px;
}
.imagesMainPage{
    display:inline-block;
    width:590px;
    height: 598px;
    margin-top:36px;
    position: relative;
}
.am1,.am2,.am3,.am4,.am5,.am6{
     position: absolute;
}
.am1 {
    left: 0;
    top: 249px
}
.am2 {
    left: 146px;
    top: 0px
}
.am3 {
    right: 56px;
    top: 9px;
}
.am4 {
    top: 157px;
    right: 0px;
}
.am5 {
    top: 355px;
    left: 146px;
}
.am6 {
    top: 355px;
    right: 0px;
}
/* ANIMATE */
.animated {
    opacity: 0;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
.fadeIn {
    transform-style: preserve-3d;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 0s;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@keyframes fadeInUp{
    from {
        opacity:0;
        -webkit-transform:translate3d(0,30px,0);
        transform:translate3d(0,30px,0)
    }to{
         opacity:1;
         -webkit-transform:translateZ(0);
         transform:translateZ(0)
     }
}
.fadeInUp{
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 0s;
    -webkit-animation-name:fadeInUp;
    animation-name:fadeInUp
}

@keyframes fadeInDown{
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -50px, 0);
        transform: translate3d(0, -50px, 0);
    }to{
         opacity: 1;
         -webkit-transform: translate3d(0, 0, 0);
         transform: translate3d(0, 0, 0);
     }
}
.fadeInDown{
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 0s;
    -webkit-animation-name:fadeInDown;
    animation-name:fadeInDown
}

@keyframes fadeLeft{
    from {
        opacity:0;
        -webkit-transform:translate3d(30px,0px,0);
        transform:translate3d(30px,0px,0)
    }to{
         opacity:1;
         -webkit-transform:translateZ(0);
         transform:translateZ(0)
     }
}
.fadeLeft{
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 0s;
    -webkit-animation-name:fadeLeft;
    animation-name:fadeLeft
}

@keyframes fadeRightBig{
    from {
        opacity: 0;
        transform: translateZ(100px) translateX(-30%) rotateY(90deg);
    }to {
         opacity: 1;
         -webkit-transform: translate3d(0, 0, 0);
         transform: translate3d(0, 0, 0);
     }
}
.fadeRightBig{
    transform-style: preserve-3d;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 0s;
    -webkit-animation-name:fadeRightBig;
    animation-name:fadeRightBig
}
.fixedMenuBlock{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: all ease 0.3s;
    background: #fff;
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.08);
}
.fixedMenuBlock .logo{
    max-height: 50px;
}
.fixedMenuBlock .header{
    background:#fff;
    position:relative;
    height:auto;
}
.showFixed .fixedMenuBlock{
    visibility: visible;
    opacity: 1;
    z-index: 44;
}

.header .col5{
    display:none;
}
.mapG{
    height:600px;
    width:100%;
}
/*
@media(min-width:1300px){
    .container{
        max-width: 1250px
    }
}*/
@media(max-width:1329px){
    .headerRow .col2{
        margin-left:0;
    }
    .catItemImg img{
        max-width:100%;
        width:auto;
    }
    .uslugaItemImg img {
        max-width: 100%;
    }
}

@media(max-width:1279px){
    .header .col5{
        display:block;
    }
    .header .col2{
        display:none;
    }
    .sivaconRow .col1 img{
        width:300px;
    }
    .zgSite,h1 {
        font-size: 35px;    
    }
    .sivaconRow .col2 {
        padding-left: 35px;
    }
    .sivaconRow {
        align-items:center;
    }
    .sivaconRow2 {
        display: block;
    }
    .sivaconRow2 .col2{
        text-align:center;
        margin-top:30px;
    }
    .pt140{
        padding-top:110px;
    }
    .pb140{
        padding-bottom:110px;
    }
    .p140{
        padding-top:110px;
        padding-bottom:110px;
    }
    .uslugaItem {
        width: 100%;
    }
    .uslugaItemImg img {
        max-width: 100%;
    }
    .ourUslugs {
        gap: 60px 15px;
    }
    .uslugaItemZg {
        padding: 20px 5px 0;
        font-size: 16px;
    }
    .projectsItem {
        flex-direction: column;
    }
    .projectsItem .col1{
        margin-bottom:15px;
    }
    .projectsItem .col2{
        padding-left:0;
        width:100%;
    }
    .contentMainPage{
        display:block;
    }
    .contentMainPage .col1 {
        padding-right: 0;
        margin-bottom:20px;
        text-align: center;
    }
}




@media(max-width:991px){
    .projectsItem {
        display:block;
    }
    .projectsItem{
        width:100%;
    }
    
    /*body {
        margin-top: 41px;
    }
    .burger {
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all ease 0.2s;
    }*/
    .mainPageBanner {
        height: 600px;
    }
    .mainPageBannerRow img {
        width: 240px;
    }
    .bannerZg {
        font-weight: 700;
        font-size: 25px;
    }
    .bannerList {
        margin: 27px 0;
    }
    .siemensPartner .col1 {
        padding-right: 35px;
    }
    .siemensPartner .col2 {
        padding-left: 35px;
    }
    .siemensPartner {
        padding-top: 80px;
    }
    .catItems {
        gap: 55px 15px;
    }
    .catItem {
        width: calc(33.33% - 15px);
    }
    .catItemZg {
        padding: 20px 10px 0;
        font-size: 17px;
    }
    .zgSite {
        font-size: 30px;    
    }
    .pt140{
        padding-top:80px;
    }
    .pb140{
        padding-bottom:80px;
    }
    .p140{
        padding-top:80px;
        padding-bottom:80px;
    }
    .sivaconRow1 {
        display: block;
    }
    .sivaconRow1 .col1{
        text-align:center;
        margin-bottom:30px;
    }
    .sivaconSubZg, .zgSiteMin {
        font-size: 22px;
    }
    .sivaconRow .col2 {
        padding-left: 0;
    }
    body{
        font-size:16px;
    }
    .ourUslugs {
        grid-template-columns: repeat(3,1fr);
    }
    .premItem {
        width: 33%;
        padding:0 8px;
    }
    .consultFormRow {
        display: block;
        max-width: 400px;
    }
    .consultFormRow .form-groudp{
        margin-bottom:15px;
    }
    .getConsultSection {
        background-size: cover;
    }
    .siteFooter{
        position:relative;
    }
    .header.mainPage{
        height:unset;
    }
    .oblpItemZg {
        font-size: 15px;
    }
    .oblpItemImg {
        margin-bottom: 15px;
    }
}

@media(max-width:767px){
    .fixedMenuBlock .headerRow .col4, .fixedMenuBlock .headerRow .col3{
        display:none;
    }
    .fixedMenuBlock .headerRow .col1{
        margin-bottom:0;
    }
    .fixedMenuBlock .headerRow{
        padding:10px 0;
    }
    .am1, .am2, .am3, .am4, .am5, .am6 {
        position: unset;
    }
    .imagesMainPage{
        height:unset;
        display:flex;
        flex-wrap:wrap;
        gap:15px;
        width:100%;
        margin-top:0;
    }
    .imagesMainPage img{
        max-width:100%;
    }
    .imagesMainPage span{
        display:flex;
        align-items:center;
        justify-content:center;
        flex: 1 1 calc((100% / 3) - 30px);
    }
    .getConsultSection {
        background: #12a3d2;
    }
    .siemensPartner {
        display: block;
    }
    .siemensPartner .col2 {
        padding-left: 30px;
        margin-top:25px;
    }
    .playVideoBlock img {
        max-width: 100%;
        width: auto;
    }
    .ourUslugs {
        display: flex;
        flex-wrap: wrap;
    }
    .uslugaItem {
        width: calc(50% - 15px);
    }
    .contactsContainer{
        position:relative;
    }
    .contactsInfo {
        padding: 20px;
        position: unset;
        margin-bottom:30px;
    }
    .contactsBlock{
        margin-top:80px;
    }
    .rowFooter {
        align-items: center;
        justify-content: center;
    }
    .rowFooter .col3{
        margin:15px 0;
    }
    .footerRow2{
        text-align:center;
    }
    .headerRow>div {
        width: 50%;
        text-align: center;
    }
    .headerRow {
        display: flex;
        flex-wrap: wrap;
    }
    .headerRow .col1,.headerRow .col3{
        margin-bottom:15px;
    }
    .openMenuSite{
        display:inline-flex;
    }
    .mainPageBannerRow img {
        width: 140px;
    }
}

@media (max-width: 575px){
    .mainPageBannerRow img {
        width: 220px;
    }
    .rowFooter{
        flex-direction:column;
    }
    .rowFooter .col1{
        margin-bottom:15px;
    }
    .catItems {
        gap: 35px 10px;
    }
    .catItem {
        width: calc(50% - 10px);
    }
    .catItemZg {
        padding: 10px 0px 0;
        font-size: 14px;
    }
    .zgSite,h1 {
        font-size: 24px;
    }
    .sivaconSubZg, .zgSiteMin {
        font-size: 19px;
    }
    
    .uslugaItemZg {
        padding: 7px 0px 0;
        font-size: 14px;
        font-weight: 600;
    }
    .ourUslugs{
        gap:30px 5px;
    }
    .uslugaItem {
        width: calc(50% - 5px);
    }
    
    .catItems,.sivaconRow,.ourUslugs,.premRows,.oblpItemsSld,.projectsItems,.contactsBlock,.contactsBlock{
        margin-top:30px;
    }
    .premItem {
        width: 50%;
        padding:0 8px;
        font-size:15px;
    }
    .premItem{
        margin-bottom:30px;
    }
    .premRows .premItem:last-child{
        margin-bottom:0;
    }
    .premItemIcon {
        width: 88px;
        height: 88px;
    }
    .getConsultSection .personalAccept {
        margin-top: 15px;
        font-size: 11px;
    }
    .consultDesc {
        margin: 20px 0 20px;
        font-size: 16px;
    }
    .btnMainOrange {
        font-size: 14px;
    }
    .getConsultSection {
        padding: 60px 0;
    }
    .pt140{
        padding-top:40px;
    }
    .pb140{
        padding-bottom:40px;
    }
    .p140{
        padding-top:40px;
        padding-bottom:40px;
    }
    
    .swiper-button-next {
        right: -10px;
    }
    .swiper-button-prev {
        left: -10px;
    }
    .swiperBtn {
        top: calc(50% - 33px);
        height: 30px;
        width: 30px;
    }
    .projectsItem {
        padding: 20px;
    }
    .zgContact {
        font-size: 22px;
    }
    #mapYan {
        min-height: 400px;
    }
    .mainPageBannerRow {
        display: block;
        margin-top: 80px;
        text-align: center;
    }
    .mainPageBannerRow .col1{
        margin-bottom:30px;
    }
    .bannerList {
        display: inline-block;
        text-align:left;
    }
    .mainPageBanner{
        background: url(/img/bannerBgM.jpg) top center no-repeat;
        background-size: cover;
    }
    .mainPageBannerRow .col2 {
        margin-right: 0;
        padding-bottom:20px;
    }
    .mainPageBanner {
        height: unset;
    }
}

@media(max-width:460px){
    
    .sivaconDownload {
        display: block;
        text-align:center;
    }
    .coli1 {
        max-width: 100%;
        margin-bottom:10px;
    }
    .siemensPartner .col2 .greenText {
        font-size: 19px;
    }
    
}
@media (max-width: 450px){

    .headerRow .logo{
        width:170px;
    }
    .headerRow .col1{
        width:auto;
    }
    .headerRow{
        justify-content:space-between;
    }
    .headerRow>div {
        width: unset;
    }
    .projectsItemOwner {
        font-size: 20px;
    }
    .contactsInfo {
        padding: 20px;
        margin:0 -10px;
    }
    .callASInnerBlock {
        right: -8px;
    }
    .chooseLangInner {
        padding: 10px;
    }
}
@media (max-width: 380px){
    .headerRow .logo{
        width:130px;
    }
    .phoneHeader a {
        font-size: 16px;
    }
    .callAS {
        font-size: 11px;
    }
    .mainPageBannerRow .btnMain {
        padding: 19px 35px;
        font-size: 13px;
    }
    .langkz .callAS {
        max-width:150px;
    }
}
