@font-face{font-family:'Roboto';src:url(../fonts/Robotothin.woff2);src:local('Robotothin'),local('Roboto Thin'),local('Roboto-Thin'),url(../fonts/Robotothin.woff2) format("woff2"),url(../fonts/Robotothin.woff) format("woff"),url(../fonts/Robotothin.ttf) format("truetype");font-weight:200;font-style:normal;font-display:swap}
@font-face{font-family:'Roboto';src:url(../fonts/Robotolight.woff2);src:local('Robotolight'),local('Roboto-Light'),local('Roboto Light'),url(../fonts/Robotolight.woff2) format("woff2"),url(../fonts/Robotolight.woff) format("woff"),url(../fonts/Robotolight.ttf) format("truetype");font-weight:300;font-style:normal;font-display:swap}
@font-face{font-family:'Roboto';src:url(../fonts/Roboto.woff2);src:local('Roboto'),local('Roboto-Regular'),local('Roboto Regular'),url(../fonts/Roboto.woff2) format("woff2"),url(../fonts/Roboto.woff) format("woff"),url(../fonts/Roboto.ttf) format("truetype");font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:'Roboto';src:url(../fonts/Robotomedium.woff2);src:local('Robotomedium'),local('Roboto-Medium'),local('Roboto Medium'),url(../fonts/Robotomedium.woff2) format("woff2"),url(../fonts/Robotomedium.woff) format("woff"),url(../fonts/Robotomedium.ttf) format("truetype");font-weight:500;font-style:normal;font-display:swap}
@font-face{font-family:'Roboto';src:url(../fonts/Robotobold.woff2);src:local('RobotoBold'),local('Roboto-Bold'),local('Roboto Bold'),url(../fonts/Robotobold.woff2) format("woff2"),url(../fonts/Robotobold.woff) format("woff"),url(../fonts/Robotobold.ttf) format("truetype");font-weight:700;font-style:normal;font-display:swap}
@font-face{font-family:'Roboto';src:url(../fonts/Robotoblack.woff2);src:local('Robotoblack'),local('Roboto-Black'),local('Roboto Black'),url(../fonts/Robotoblack.woff2) format("woff2"),url(../fonts/Robotoblack.woff) format("woff"),url(../fonts/Robotoblack.ttf) format("truetype");font-weight:900;font-style:normal;font-display:swap;}

@font-face{font-family:'Russo';src:url(../fonts/Russo_One.ttf);src:local('Russo_One'),local('Russo One'),local('Russo'),url(../fonts/Russo_One.ttf) format("woff2");font-weight:400;font-style:normal;font-display:swap;}
		
:root {
  --orange: #ff8820;
  --max-width: 1520px;
  --max-width-no-paddings: 1490px;
}
		
*{margin:0;padding:0;box-sizing:border-box;outline:none}
:after,:before{box-sizing:border-box}
body{font-family:Roboto;font-weight:300;font-size:16px;line-height:1.5;color:#808080;min-height: 100vh;display: flex;flex-direction: column;}
::-webkit-input-placeholder{color:rgba(255,255,255,0.5)}
::-moz-placeholder{color:rgba(255,255,255,0.5)}
:-ms-input-placeholder{color:rgba(255,255,255,0.5)}
:-moz-placeholder{color:rgba(255,255,255,0.5)}
.form-group ::-webkit-input-placeholder{color:#808080;opacity:0.7;}
.form-group ::-moz-placeholder{color:#808080;opacity:0.7;}
.form-group :-ms-input-placeholder{color:#808080;opacity:0.7;}
.form-group :-moz-placeholder{color:#808080;opacity:0.7;}
button,a{font-family:inherit;cursor:pointer;outline:none;text-decoration:none;font-weight:inherit;transition-duration:.2s;transition-delay:0s}
svg,path{transition-duration:.2s;transition-delay:0}
.clear{clear:both}
textarea,input.text,input[type='text'],input[type='button'],input[type='submit'],.input-checkbox,input[type='tel'],input[type='email']{-webkit-appearance:none;border-radius:0}
textarea,input[type='text'],input[type='email'],input[type='tel'],input[type='password']{color:#808080;width:100%;background:#fff;border-radius:0;font-size:16px;padding:15px 24px;font-family:Roboto}
img{max-width:100%;height:auto}
iframe{max-width:100%}
ol,ul{padding-left:0;list-style:none}
p{margin-bottom:10px}
li{margin-bottom:0;-webkit-column-break-inside:avoid;page-break-inside:avoid;break-inside:avoid}
h1{font-size:36px;font-weight:700;font-family:Roboto;color:#333333;line-height:1.33}
h2{font-size:30px;font-weight:700;font-family:Roboto;color:#333333;line-height:1.33}
h3{font-size:20px;font-weight:500;font-family:Roboto;color:#333333;line-height:1.33}

header{
	position: fixed;
	width: 100%;
	z-index: 2000;
	top: 15px;
	left:0;
	padding: 0 15px;
	transition-duration: 0.2s;
}
.header_inner{
	width: 100%;
	max-width: var(--max-width-no-paddings);
	border-radius: 1000px;
	background-color: #ffffff;
	padding: 14px 30px 13px;
	box-shadow: 0px 6px 21.12px 2.88px rgba(0, 0, 1, 0.1);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	justify-content: space-between;
	transition-duration: 0.2s;
}
.btn-orange:hover{
	color: #262626;
	background-color: #fff;
}
.btn-orange{
	outline: none;
    background-color: var(--orange);
    color: #fff;
    border-radius: 250px;
    border: 2px solid var(--orange);
    font-weight: 400;
    font-size: 16px;
    padding: 13px 24px 12px;
	min-width: 180px;
}
.heading_right{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.headingMenu li.active a:before,
.headingMenu li.active a:after{
	content: '';
	display: block;
	height: 2px;
	background-color: var(--orange);
	position: absolute;
	bottom: -10px;
	transition-duration: 0.2s;
	opacity:1;
}
.headingMenu li.active a:after{
	width: 30px;
	right: 9px;
}
.headingMenu li.active a:before{
	width: 3px;
	right: 0;
}
.headingMenu li a:before,
.headingMenu li a:after{
	content: '';
	display: block;
	height: 2px;
	background-color: var(--orange);
	position: absolute;
	bottom: -10px;
	transition-duration: 0.2s;
	width: 0;
	opacity:0;
}
.headingMenu li a:before{
	right: 0px;
}
.headingMenu li a:after{
	right: 9px;
}
.headingMenu li a:hover:before{
	width: 3px;
	opacity:1;
}
.headingMenu li a:hover:after{
	width: 30px;
	opacity:1;
}


.headingMenu li{
	padding: 0 10px;
}
.headingMenu ul{
	display: flex;
}
.headingMenu a{
	font-size: 16px;
	font-weight: 400;
	color: #4c4c4c;
	position: relative;
}
.heading_tel a:hover{
	color: var(--orange);
}
.heading_tel a{
	color: #333333;
	font-weight: 500;
	font-size: 16px;
}
.heading_socs li a:hover path,
.heading_socs li a:hover circle{
	fill: var(--orange);
}
.heading_socs li{
	padding: 0 10px;
}
.heading_socs:before{
	content: '';
    width: 1px;
    height: 20px;
    display: block;
    position: absolute;
    left: 0;
    top: -2px;
    background-color: #d1d1d1;
    opacity: 0.3;
}
.heading_tel:before{
	content: '';
    width: 1px;
    height: 20px;
    display: block;
    position: absolute;
    left: 0;
    top: 2px;
    background-color: #d1d1d1;
    opacity: 0.3;
}
.heading_tel{
	padding: 0 24px;
	position: relative;
}
.heading_socs{
	display: flex;
	padding: 0 14px;
	position: relative;
}
.heading_socs svg{
	display: block;
}
.lang_switcher span:after{
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' id='Capa_1' x='0px' y='0px' width='8px' height='8px' viewBox='0 0 123.959 123.958' style='enable-background:new 0 0 123.959 123.958;' xml:space='preserve'%3E%3Cpath d='M117.979,28.017h-112c-5.3,0-8,6.4-4.2,10.2l56,56c2.3,2.3,6.1,2.3,8.401,0l56-56 C125.979,34.417,123.279,28.017,117.979,28.017z' fill='%234d4d4d'/%3E%3C/svg%3E");
	margin-left:6px;
}
.lang_switcher span{
	color: #4c4c4c;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 400;
    display: flex;
    align-items: center;
    cursor: pointer;
    z-index: 21;
    position: relative;
}
.lang_switcher:before{
	content: '';
	width: 1px;
	height: 20px;
	display: block;
	position: absolute;
	left: -8px;
	top:-1px;
	background-color: #d1d1d1;
	opacity: 0.3;
}
.lang_switcher{
	position: relative;
    padding: 0 16px;
	margin: 0 8px;
}
.lang_switcher ul a:hover{
	color: #4c4c4c;
}
.lang_switcher ul a{
	color: #808080;
	font-size: 13px;
	font-weight: 400;
	text-transform: uppercase;
}
.lang_switcher.active ul{
	opacity: 1;
    visibility: visible;
    z-index: 20;
    background-color: #ffffff;
    box-shadow: 0px 20px 21.12px 2.88px rgb(0 0 1 / 10%);
    left: 0;
    width: 100%;
    padding: 45px 15px 5px 15px;
    top: -15px;
	
}
.lang_switcher ul{
	position: absolute;
	opacity: 0;
	visibility: hidden;
	z-index: -1;
	transition-duration: 0.2s;
}
.headingMenu{
	padding-right: 14px;
}
.lang_switcher ul li{
	padding-bottom: 5px;
}
.mainBanner{
	background-size: cover;
	background-position: right bottom;
}
.main_banner_inner{
	width: 100%;
    max-width: var(--max-width);
    padding: 150px 15px 30px;
    margin: 0 auto;
    height: 900px;
    display: flex;
    align-items: center;
    max-height: 100vh;
    min-height: 600px;
    margin-bottom: 60px;
}
.main_banner_inner_d h1:before,
.main_banner_inner_d h1:after{
	content: '';
	display: block;
	height: 2px;
	background-color: var(--orange);
	position: absolute;
	bottom: 0;
}
.main_banner_inner_d h1:after{
	width: 8px;
	left: 88px;
}
.main_banner_inner_d h1:before{
	width: 80px;
	left: 0;
}
.main_banner_inner_d h1,
.main_banner_inner_d .mainBannerTitle{
	font-weight: 900;
    font-size: 60px;
    line-height: 1.2;
    color: #333333;
    position: relative;
    padding-bottom: 13px;
}
.main_banner_text{
	color: #6b6b6b;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.44;
	max-width: 480px;
	width: 100%;
	padding-top: 28px;
}
.btn-orange2:hover{
	color: #262626;
}
.btn-orange2{
	outline: none;
    background-color: var(--orange);
    color: #fff;
    border-radius: 250px;
    border: 2px solid var(--orange);
    font-weight: 400;
    font-size: 16px;
    padding: 13px 10px 12px;
	min-width: 180px;
	box-shadow: 0 6px 21.1px 2.9px rgba(0, 0, 1, 0.15);
	display: inline-block;
    text-align: center;
	line-height: 1.2;
}
.btn-white:hover{
	color: rgb(38 38 38 / 100%);
	border: 2px solid var(--orange);
}
.btn-white{
	outline: none;
    background-color: #fff;
    color: rgb(38 38 38 / 80%);
    border-radius: 250px;
    border: 2px solid #fff;
    font-weight: 400;
    font-size: 16px;
    padding: 13px 10px 12px;
    min-width: 180px;
    box-shadow: 0 6px 21.1px 2.9px rgb(0 0 1 / 15%);
    display: inline-block;
    text-align: center;
	line-height: 1.2;
}
.main_banner_buttons button{
	margin-right: 15px;
}
.main_banner_buttons{
	padding-top: 42px;
}
.Error404{
	width: 100%;
    max-width: 1210px; 
    padding: 30px 15px;
    margin: 0 auto;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
}
.services_inner{
	width: 100%;
	max-width: 1210px;
	padding: 0 15px;
	margin: 0 auto;
}
.title_for_block span:before,
.title_for_block span:after{
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	margin-top: -1px;
	background-color: var(--orange);
	height: 2px;
}
.title_for_block span:after{
	left: -31px;
	width: 8px;
}
.title_for_block span:before{
	left: -119px;
	width: 80px;
}
.title_for_block span{
	position: relative;
	display: inline-block;
	color: #333333;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.33;
}
.title_for_block{
	text-align: center;
    padding: 0 150px;
    max-width: 1400px;
    margin: 0 auto;
}
.copter{
	position: absolute;
    width: 193px;
    height: 115px;
    display: block;
    left: 100%;
    margin-left: -64px;
    top: 50%;
    margin-top: -56px;
    z-index: 1;
}
.services_list{
	display: flex;
	margin-left: -10px;
	margin-right: -10px;
	flex-wrap: wrap;
}
.service_item_outer{
	width: 33.3333333%;
    padding: 20px 10px;
}
.service_item_img img{
	display: block;
	width: 100%;
	height: auto;
}
.service_item_img{
	display: block;
	position: relative;
}
.serv_img_mask{
	display: block;
	position: absolute;
	left:0;
	bottom: -1px;
	width: 100%;
}
.serv_item_info{
	display: block;
	background-color: #fafafa;
	background-image: url(/img/serv_r_bg.png);
	background-repeat: no-repeat;
	background-position: right bottom;
	height: 185px;
	overflow: hidden;
	padding: 16px 30px 15px;
}
.serv_item_title{
	display: block;
	color: #333333;
	font-weight: 500;
	font-size: 18px;
}
.serv_item_text{
	display: block;
	color: #808080;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
	margin-top: 15px;
}
.service_item:hover{
	box-shadow: 0 6px 21.1px 2.9px rgba(0, 0, 1, 0.1);
}
.service_item{
	display: block;
	border-radius: 5px;
	overflow: hidden;
	max-width: 380px;
	margin: 0 auto;
}
.services_inner .title_for_block{
	margin-bottom: 44px;
}
.services_outer{
	padding: 50px 0 40px;
	
}
section{
	overflow: hidden;
}
.forWhoSLImage img{
	display: block;
}
.forWho{
	margin-top: 60px;
}
.forWhoSLImage:before{
	content: '';
	display: block;
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
	background-image: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
	background-image: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
	background-image: -ms-linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
}
.forWhoSLImage{
	position: relative;
}
.forWhoSLInfoInner{
	width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    background-color: #fafafa;
    box-shadow: 0 9px 20.8px 5.2px rgb(0 0 1 / 5%);
    border-radius: 5px;
    position: relative;
    background-image: url(/img/ms_bgl.png), url(/img/ms_bgr.png);
    background-repeat: no-repeat, no-repeat;
    background-position: left bottom, right top;
    padding: 45px 100px 40px;
}
.forWhoSLInfoTitle{
	text-align: center;
	color: #333333;
	font-size: 36px;
	font-weight: 700;
}
.forWhoSLInfoSubTitle{
	color: #4c4c4c;
	font-size: 18px;
	text-align: center;
	line-height: 1.44;
	margin-top: 3px;
}
.forWhoArrow{
	position: absolute;
	top: 50%;
	margin-top: -10px;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	z-index: 2;
	background: none;
}
.forWhoPrev{
	left: 30px;
}
.forWhoNext{
	right: 30px;
}

.forWhoSLInfoInner ol{
	list-style: none;
	counter-reset: who-counter;
	-moz-column-count: 2; /* Для Firefox */
    -moz-column-width: 320px;
    -moz-column-gap: 25px;
    -webkit-column-count: 2; /* Для Safari и Chrome */
    -webkit-column-width: 320px;
    -webkit-column-gap: 25px;
    column-count: 2;
    column-width: 320px;
    column-gap: 25px;
	margin-top: 32px;
}
.forWhoSLInfoInner ol li{
	counter-increment: who-counter;
	padding-left: 40px;
	position: relative;
	color: #808080;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 300;
	margin-bottom: 12px;
}

.forWhoSLInfoInner ol li:before {
	content: "0"counter(who-counter);
    position: absolute;
    left: 0;
    color: #ff8820;
    font-weight: 900;
    font-size: 16px;
    top: 0px;
}
.forWhoSLInfoInner ol li:nth-child(n+10):before {
	content:  counter(who-counter);
}
.forWhoSLInfo{
	margin-top: -175px;
}
.forWhoSliderItem {
	padding-bottom: 60px;
}
.whyWeInner .title_for_block{
	padding-bottom: 50px;
}
.whyWeInner{
	width: 100%;
	max-width: 1230px;
	padding: 0 15px;
	margin: 0 auto;
}
.whyWeItemsOut{
	margin-left: -10px;
	margin-right: -10px;
	display: flex;
	flex-wrap: wrap;
}
.whyWeOuter{
	padding: 50px 0 40px;
}
.whyWeItem{
	width: 33.3333333%;
    padding: 14px 10px;
}
.whyWeItemIcon img{
	display: block;
	max-width: 50px;
	max-height: 50px;
	width: auto;
	height: auto;
}
.whyWeItemIcon{
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 28px;
}
.whyWeItemTitle{
	text-align: center;
	color: #333333;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.33;
}
.whyWeItemText{
	text-align: center;
	color: #808080;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
	margin-top: 15px;
}

.oborudovanieInner{
	background-color: #fafafa;
	background-image: url(/img/ob1_l.png), url(/img/ob2_r.png);
    background-repeat: no-repeat, no-repeat;
    background-position: left top, right bottom;
	padding: 114px 0 85px;
	margin-top: 60px;
}
.oborudovanieBlocks{
	width: 100%;
	max-width: 1920px;
	padding: 0 15px;
	margin: 0 auto;
	display: flex;
}
.oborudovanieBlocksRight img{
	display: block;
	max-width: 100%;
	height: auto;
}
.oborudovanieBlocksRight{
	width: 50%;
	padding-left: 15px;
	padding-top: 45px;
}
.oborudovanieBlocksLeft{
	width: 50%;
	padding-right: 15px;
	display: flex;
	justify-content: flex-end;
}
.oborudovanieBlocksLeftInner{
	width: 100%;
	max-width: 600px;
}
.oborLTitle{
	color: #333333;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.33;
	max-width: 480px;
	margin-bottom: 13px;
}
.oborLText{
	color: #6b6b6b;
	font-size: 18px;
	line-height: 1.44;
	font-weight: 300;
	max-width: 480px;
	margin-bottom: 23px;
}
.oborLList{
	display: flex;
	margin-left: -10px;
	margin-right: -10px;
	flex-wrap: wrap;
}
.oborLListItem{
	width: 50%;
	padding: 10px 10px 9px;
	display: flex;
}
.oborLLIIcon{
	width: 24px;
	max-width: 24px;
}
.oborLLIInfo{
	width: calc(100% - 24px);
	padding-left: 17px;
}
.oborLLITitle{
	color: #333333;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
}
.oborLLIText{
	color: #808080;
	font-weight: 300;
	line-height: 1.5;
	margin-top: 7px;
}
.oborudovanieInner .title_for_block{
	margin-bottom: 60px;
}
.oborudovanieButtons .btn-orange{
	min-width: 180px;
	margin: 0 15px 15px;
}
.oborudovanieButtons{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 1400px;
	padding: 0 15px;
	margin: 0 auto;
	padding-bottom: 10px;
}
.btn-orange.active{
	color: #262626;
    background-color: #fff;
}
.contactFormOuter:before{
	    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    background-image: linear-gradient(65deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.65) 38%, transparent 100%);
    top: 0;
    left: 0;
}
.contactFormOuter{
	background-size: cover;
	background-position: center center;
	position: relative;
	padding: 65px 0 135px 0;
	margin-bottom: 60px;
}
.contentFormInner{
	position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1210px;
    margin: 0 auto;
    padding: 0 15px;
}
.smallTitle:after{
	left:35px;
	width: 4px;
}
.smallTitle:before{
	left:0;
	width: 30px;
}
.smallTitle:before,
.smallTitle:after{
	content: '';
	display: block;
	height: 1px;
	position: absolute;
	top: 50%;
	background-color: var(--orange);
}
.smallTitle{
	color: #fefefe;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.3;
	padding-left: 58px;
	position: relative;
	margin-bottom: 56px;
}
.contFormBodyTitle b{
	color: #ff8820;
	font-weight: 500;
}
.contFormBodyTitle{
	color: #fefefe;
	font-size: 36px;
	font-weight: 500;
	line-height: 1.33;
	margin-bottom: 17px;
}
.contFormBodySubtitle{
	color: #fefefe;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.3;
	margin-bottom: 19px;
}
.popThakYou{
	background: #fff;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    text-align: center;
    color: #000;
    font-weight: 500;
    font-size: 24px;
}
.thankText{
	display: none!important;
}
.form-group input:focus,
.form-group textarea:focus{
	border-bottom: 1px solid rgba(255,255,255,0.7);
}

.form-group.error input{
	border-color: red!important;
}
.form-group input,
.form-group textarea{
	background: none;
	border: none;
	color: #fff;
	border-bottom: 1px solid rgba(255,255,255,0.3);
	font-size: 16px;
	font-weight: 300;
	padding: 12px 22px;
}
.form-group{
	padding: 13px 0 12px;
}
.contFormBody .form-group{
	max-width: 380px;
}
.contFormBody{
	max-width: 600px;
}
.form-group-submit{
	padding: 28px 0 15px;
}
.contentFormInner .smallTitle{
	margin-bottom: 115px;
}
.portfolioSectionInner{
	width: 100%;
	max-width: 1210px;
	padding: 0 15px;
	margin: 0 auto;
	padding: 0 15px
}
.portfolioSectionWrapper{
	display: flex;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
}
.psItem a img{
	display: block;
	width: 100%;
	height: auto;
}
.psItem a:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, transparent 100%);
	z-index: 2;
	background-color: transparent;
	transition-duration: 0.3s;
}
.psItem a.video:after{
	content: '';
	width: 40px;
	height: 40px;
	display: block;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='40px' viewBox='0 -77 512.00213 512' width='40px'%3E%3Cpath d='m501.453125 56.09375c-5.902344-21.933594-23.195313-39.222656-45.125-45.128906-40.066406-10.964844-200.332031-10.964844-200.332031-10.964844s-160.261719 0-200.328125 10.546875c-21.507813 5.902344-39.222657 23.617187-45.125 45.546875-10.542969 40.0625-10.542969 123.148438-10.542969 123.148438s0 83.503906 10.542969 123.148437c5.90625 21.929687 23.195312 39.222656 45.128906 45.128906 40.484375 10.964844 200.328125 10.964844 200.328125 10.964844s160.261719 0 200.328125-10.546875c21.933594-5.902344 39.222656-23.195312 45.128906-45.125 10.542969-40.066406 10.542969-123.148438 10.542969-123.148438s.421875-83.507812-10.546875-123.570312zm0 0' fill='%23f00'/%3E%3Cpath d='m204.96875 256 133.269531-76.757812-133.269531-76.757813zm0 0' fill='%23fff'/%3E%3C/svg%3E");
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	margin-top: -20px;
	margin-left: -20px;
}
.psItem a{
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 5px;
}
.psItem{
	padding: 10px;
}
.psItemTitle{
	color: #fefefe;
	font-size: 18px;
	position: absolute;
	padding: 0 20px;
	left: 0;
	top: 20px;
	z-index: 4;
	font-weight: 400;
	transition-duration: 0.3s;
	width: 100%;
}
.psItem a:hover:after{
	z-index:1;
}
.psItem a:hover:before{
	 background-color: rgba(0,0,0,0.7);
}
.psItem a:hover .psItemTitle{
	top: 50%;
	font-size: 19px;
	transform: translate(0,-50%)
}
.psItem_416{
	width: 41.6%;
}
.psItem_333{
	width: 33.3%;
}
.psItem_251{
	width: 25.1%;
}
.psItemDoubleItem:first-child{
	margin-bottom: 20px;
}
.btn-white:hover{
	background-color: var(--orange);
    color: #fff;
    border: 2px solid var(--orange);
}
.btn-white{
	color: #262626;
	font-size: 16px;
	font-weight: 400;
	border-radius: 200px;
	outline: none;
    background-color: #fff;
    border: 2px solid #fff;
    padding: 13px 24px 12px;
    min-width: 180px;
	box-shadow: 0 6px 21.1px 2.9px rgba(0, 0, 1, 0.15);
}
.sectPorstolioAll{
	text-align: center;
	padding-top: 30px;
}
.portfolioSectionInner .title_for_block{
	margin-bottom: 55px;
}
.portfolioSection{
	padding: 50px 0 60px;
}
.upperFooter{
	background-color: #f2f2f2;
}
.upperFooterInner{
	width: 100%;
	max-width: 1210px;
	padding: 23px 15px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.uf_center img{
	display: block;
	margin: 0 auto;
}
.uf_center{
	width: 160px;
}
.uf_left, .uf_right{
	width: calc(50% - 80px);
	display: flex;
}
.uf_left_tel a:hover,.uf_right_inf a:hover{
	color: var(--orange);
}
.uf_left_tel a{
	color: #262626;
	font-weight: 400;
	font-size: 16px;
}
.uf_left_tel{
	flex-grow: 1;
    text-align: center;
    border-right: 1px solid rgb(111 111 111 / 15%);
    line-height: 1.33;
}
.uf_right_inf a{
	color: #262626;
    font-weight: 400;
    font-size: 16px;
}
.uf_right_inf{
	border-left: 1px solid rgb(111 111 111 / 15%);
    line-height: 1.33;
	flex-grow: 1;
	text-align: center;
	color: #262626;
    font-weight: 400;
    font-size: 16px;
}
.downFooter{
	background-color: #262626;
	
}
.downFooterInner{
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 1210px;
	padding: 0px 15px;
	margin: 0 auto;
}
.downFooterCopy a:hover{
	color: var(--orange);
}
.downFooterCopy a{
	color: #ffffff;
	font-weight: 500;
	font-size: 14px;
}
.downFooterSocs li{
	margin-left: 1px;
}
.downFooterCopy{
	flex-grow: 1;
    color: rgb(255 255 255 / 65%);
    font-size: 14px;
    font-weight: 300;
}
.downFooterSocs a path,
.downFooterSocs a circle{
	fill: #ffffff;
}
.downFooterSocs a:hover path,
.downFooterSocs a:hover circle{
	fill: var(--orange);
}
.downFooterSocs a:hover{
	background-color: #fff;
}
.downFooterSocs a{
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--orange)
}
.downFooterSocs{
	display: flex;
}
.main_content{
	flex: 1 0 auto;
}
footer{
	margin-top: 60px;
	flex: 0 0 auto;
}
.headingPage{
	background-size: cover;
	background-position: center center;
	padding-top: 85px;
	margin-bottom: 60px;
}
.headingPage_inner h1,.headingPage_inner .h1{
	color: #333333;
	text-align: center;
	font-weight: 700;
	font-size: 48px;
}
.headingPage_inner{
	padding: 30px 15px;
    width: 100%;
    max-width: 1210px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    min-height: 315px;
}
.headingPageAlign{
	width: 100%;
}
.breadcrumbs>a:hover,.breadcrumbs>span{
	color: var(--orange);
}
.breadcrumbs>*{
	padding: 5px 3px;
	font-size: 16px;
	line-height: 1.3;
	color: #6b6b6b;
	font-weight: 300;
}

.breadcrumbs{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 15px;
}
.newsOuter{
	width: 100%;
	max-width: 1210px;
	margin: 0 auto;
	padding: 25px 5px;
}
.newsListItem:nth-child(even){
	flex-direction: row-reverse;
}
.newsListItem{
	display: flex;
	align-items: center;
	padding: 35px 0;
}
.newsListItemImg{
	width: 50%;
	padding: 0 10px;
}
.newsListItemInfo{
	width: 50%;
	padding: 0 10px; 
}
.newsListItemImg a img{
	display: block;
	width: 100%;
	height: auto;
}
.newsListItemImg a{
	display: block;
	width: 100%;
	height: auto;
	overflow: hidden;
	border-radius: 5px;
	border-radius: 5px;
}
.newsListItemDate{
	color: #808080;
	font-size: 14px;
	font-weight: 300;
	margin-bottom: 10px;
}
.newsListItemTitle a:hover{
	color: var(--orange);
}
.newsListItemTitle a{
	color: #333333;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.5;
	text-transform: uppercase;
}
.newsListItemTitle:after{
	width: 8px;
	left: 88px;
}
.newsListItemTitle:before{
	width: 80px;
	left: 0;
}
.newsListItemTitle:before,
.newsListItemTitle:after{
	content: '';
    display: block;
    position: absolute;
    bottom: 0;
    background-color: var(--orange);
    height: 2px;
}
.newsListItemTitle{
	position: relative;
	padding-bottom: 18px;
}
.newsListItemShortd{
	color: #808080;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.5;
	margin-top: 19px;
}
.newsListItemMore{
	margin-top: 35px;
}
.newsListItem:nth-child(even) .newsListItemInfoInner{
	padding-right: 40px;
}
.newsListItem:nth-child(odd) .newsListItemInfoInner{
	padding-left: 40px;
}
ul.pagination a{
	border: 2px solid transparent;
	color: #999999;
}
ul.pagination .active span{
	border: 2px solid var(--orange);
	color: var(--orange);
	font-weight: 900;
}
ul.pagination a:hover,
ul.pagination a:hover svg path{
	color: var(--orange);
	fill: var(--orange);
}
ul.pagination a,
ul.pagination span{
	display: flex;
	width: 30px;
	height: 40px;
	border-radius: 3px;
	font-size: 18px;
	align-items: center;
	justify-content: center;
}
ul.pagination li{
	display: block;
	padding: 0 5px;
}
ul.pagination{
	display: flex;
    max-width: 1210px;
    margin: 0 auto;
    width: 100%;
    padding: 10px 15px 50px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.newsItemOuter{
	width: 100%;
	max-width: 1210px;
	padding: 50px 15px 30px;
	margin: 0 auto;
}
.newsItemOuter h1{
	color: #333333;
	font-size: 36px;
	font-weight: 700;
	text-align: center;
	line-height: 1.33;
	margin-bottom: 26px;
}
.niDate{
	color: #808080;
	font-size: 14px;
	font-weight: 300;
	text-align: center;	
	margin-bottom: 64px;
}
.niMainImage img{
	display: block;
	width: 100%;
	height:auto;
}
.niMainImage{
	overflow: hidden;
	border-radius: 4px;
}
.newsItemBlocks{
	display: flex;
	justify-content: space-between;
	padding-top: 65px;
}
.simpleText p{
	margin-bottom: 24px;
}
.nibLeft{
	width: 58.5%;
	color: #808080;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.5;
}
.simpleText{
	color: #808080;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.5;
}
.nibRight{
	width: 32.3%;
}
.simpleText ul,
.simpleText ol{
	margin-bottom: 26px;
	list-style: none;
}
.simpleText ol{
	counter-reset: who-counter;
}
.simpleText ol li{
	counter-increment: who-counter;
	padding-left: 40px;
    position: relative;
	margin-bottom: 12px;
}

.simpleText ol li:before{
	content: "0"counter(who-counter);
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 900;
    font-size: 16px;
    top: 0px;
}
.simpleText ol li:nth-child(n+10):before {
    content: counter(who-counter);
}

.simpleText ul li:before{
	content: "";
    position: absolute;
    left: 0;
    background-color: var(--orange);
    display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
    top: 7px;
}
.simpleText ul li{
	padding-left: 20px;
    position: relative;
	margin-bottom: 12px;
}

.simpleText h2,
.simpleText h3{ 
	margin-bottom: 15px;
	margin-top: 5px;
}
.nibRTitle{
	color: #333333;
	font-weight: 500;
	font-size: 18px;
	line-height: 1.3;
	margin-bottom: 12px;
}
.nibRLink a:hover{
	color: var(--orange);
}
.nibRLink a{
	color: #808080;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.33;
}
.nibRLink{
	padding: 12px 0;
}
.nibRBlock{
	margin-bottom: 18px;
}
.nibShare li{
	margin-right: 23px;
}
.nibShare {
	display: flex;
	align-items: center;
	margin-top: 16px;
	padding-bottom: 13px;
}
.pagePortfolioOut .pagination{
	padding: 50px 15px 20px;
}
.pagePortfolioOut{
	padding: 60px 0 40px;
}
.portfolioItemOut{
	width: 100%;
	max-width: 1210px;
	padding: 50px 15px;
	margin: 0 auto;
}
.portfolioItemText {
	width: 100%;
	max-width: 780px;
	margin: 0 auto 54px;
}
.portfolioItemGallery{
	display: flex;
	margin-left: -10px;
	margin-right: -10px;
	flex-wrap: wrap;
}
.portfolioItemGI a img{
	display: block;
	width: 100%;
	height: auto;
}
.portfolioItemGI a.video i{
	content: '';
	width: 40px;
	height: 40px;
	display: block;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='40px' viewBox='0 -77 512.00213 512' width='40px'%3E%3Cpath d='m501.453125 56.09375c-5.902344-21.933594-23.195313-39.222656-45.125-45.128906-40.066406-10.964844-200.332031-10.964844-200.332031-10.964844s-160.261719 0-200.328125 10.546875c-21.507813 5.902344-39.222657 23.617187-45.125 45.546875-10.542969 40.0625-10.542969 123.148438-10.542969 123.148438s0 83.503906 10.542969 123.148437c5.90625 21.929687 23.195312 39.222656 45.128906 45.128906 40.484375 10.964844 200.328125 10.964844 200.328125 10.964844s160.261719 0 200.328125-10.546875c21.933594-5.902344 39.222656-23.195312 45.128906-45.125 10.542969-40.066406 10.542969-123.148438 10.542969-123.148438s.421875-83.507812-10.546875-123.570312zm0 0' fill='%23f00'/%3E%3Cpath d='m204.96875 256 133.269531-76.757812-133.269531-76.757813zm0 0' fill='%23fff'/%3E%3C/svg%3E");
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	margin-top: -20px;
	margin-left: -20px;
}
.portfolioItemGI a:hover:before{
	opacity: 1;
}
.portfolioItemGI a:before{
	content: '';
	width: 40px;
	height: 40px;
	display: block;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' x='0px' y='0px' viewBox='0 0 512 512' style='enable-background:new 0 0 512 512;' xml:space='preserve' width='40px' height='40px'%3E%3Cpath fill='%23fff' xmlns='http://www.w3.org/2000/svg' d='M496.64,424.96l-71.68-71.68c23.04-35.84,35.84-76.8,35.84-122.88C460.8,102.4,358.4,0,230.4,0S0,102.4,0,230.4 s102.4,230.4,230.4,230.4c46.08,0,87.04-12.8,122.88-35.84l71.68,71.68c20.48,20.48,51.2,20.48,71.68,0 C517.12,476.16,517.12,445.44,496.64,424.96z M230.4,409.6c-99.84,0-179.2-79.36-179.2-179.2S130.56,51.2,230.4,51.2 s179.2,79.36,179.2,179.2S327.68,409.6,230.4,409.6z'/%3E%3Cpath fill='%23fff' xmlns='http://www.w3.org/2000/svg' d='M332.8,204.8H256V128c0-15.36-10.24-25.6-25.6-25.6c-15.36,0-25.6,12.8-25.6,25.6v76.8H128c-12.8,0-25.6,10.24-25.6,25.6 c0,15.36,10.24,25.6,25.6,25.6h76.8v76.8c0,15.36,10.24,25.6,25.6,25.6c15.36,0,25.6-10.24,25.6-25.6V256h76.8 c15.36,0,25.6-10.24,25.6-25.6C358.4,215.04,345.6,204.8,332.8,204.8z'/%3E%3C/svg%3E");
	position: absolute;
	z-index: 4;
	top: 50%;
	left: 50%;
	margin-top: -20px;
	margin-left: -20px;
	opacity: 0;
	transition-duration: 0.2s;
}
.portfolioItemGI a:hover:after{
	opacity: 0.5;
}
.portfolioItemGI a:after{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	z-index:3;
	background: #000;
	transition-duration: 0.2s;
	position: absolute;
}
.portfolioItemGI a{
	display: block;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}
.portfolioItemGI {
	padding: 10px;
}
.pgi_583{
	width: 58.3%;
}
.pgi_417{
	width: 41.7%;
}
.pgi_1000{
	width: 100%;
}
.pgi_333{
	width: 33.333333333%;
}
.noResults{
	width: 100%;
    text-align: center;
    font-weight: 500;
    font-size: 30px;
    padding: 10px 0 40px;
}
.textMiddleTwoCols{
	width: 100%;
	max-width: 1210px;
	padding: 50px 15px 40px;
	margin: 0 auto;
}
.tmtc_middle{
	width: 100%;
	max-width: 782px;
	margin: 0 auto;
	color: #4c4c4c;
	font-size: 18px;
	line-height: 1.66;
	margin-bottom: 57px;
}
.tmtc_outer{
	margin-left: -10px;
	margin-right: -10px;
	display: flex;
}
.tmtc_item{
	width: 50%;
	padding: 0 10px;
	color: #808080;
	font-size: 16px;
	line-height: 1.5;
}
.tmtc_item.tmtc_item_full{
	width: 100%;
}
.icons4rowInner{
	width: 100%;
	max-width: 1210px;
	padding: 54px 15px 35px;
	margin: 0 auto;
}
.icons4rowItemsOut{
	margin-left: -10px;
	margin-right: -10px;
	display: flex;
	flex-wrap: wrap;
}
.icons4rowItem{
	width: 25%;
	padding: 15px 10px;
}
.icons4rowItemText{
	color: #808080;
	font-size: 16px;
	line-height: 1.5
}
.icons4rowItemIcon{
	height: 36px;
	margin-bottom: 20px;
}
.icons4rowInner .title_for_block{
	margin-bottom: 50px;
}
.bigImage {
	padding: 20px 0 60px;	
}
.bigImage img{
	display: block;
	width: 100%;
	height: auto;
}

.howWeWorkInner{
	width: 100%;
	max-width: 1210px;
	padding: 50px 15px 35px;
	margin: 0 auto;
}
.howWeWorkItems{
	display: flex;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
}
.howWeWorkItem{
	width: 33.33333333%;
    padding: 20px 10px;
}
.howWeWorkItemIcon span{
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	background: #fff;
	color: #808080;
	font-weight: 900;
	font-size: 16px;
	line-height: 1;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	border: 2px solid var(--orange);
}
.howWeWorkItemIcon:before{
	content: '';
	width: calc(100% + 20px);
	height: 2px;
	top: 50%;
	left: -10px;
	background: var(--orange);
	z-index: -1;
	position: absolute;
}
.howWeWorkItemIcon{
	position: relative;
	margin-bottom: 26px;
}
.howWeWorkItemTitle{
	color: #333333;
	font-weight: 500;
	font-size: 18px;
	line-height: 1.33;
	text-align: center;
	margin-bottom: 15px;
}
.howWeWorkItemText{
	text-align: center;
	color: #808080;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
}
.howWeWorkInner .title_for_block{
	margin-bottom: 45px;
}
.makePopForm:after{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-image: linear-gradient(65deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.55) 21%, transparent 100%);
}

.makePopForm{
	position: relative;
    padding: 66px 0 70px;
    display: flex;
    min-height: 450px;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
	margin: 60px 0;
}
.makePopFormInner{
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1210px;
	padding: 0 15px;
	margin: 0 auto;
}
.makePopFormTitle b{
	font-weight: 900;
	color: var(--orange);
}
.makePopFormTitle{
	color: #ffffff;
	font-size: 60px;
	font-weight: 900;
	line-height: 1.2;
	margin-top: 43px;
}
.textblockInner .title_for_block{
	margin-bottom: 45px;
}
.textblockInner{
	width: 100%;
	max-width: 1210px;
	padding: 50px 15px;
	margin: 0 auto;
}
.sliderImagesInner{
	width: 100%;
	max-width: 1210px;
	padding: 50px 15px 60px;
	margin: 0 auto;
}
.sliderImagesItem img{
	display: block;
	width: 100%;
	height:auto;
}
.sliderImagesItem span{
	position: absolute;
	z-index: 2;
	color: #fefefe;
	font-weight: 400;
	font-size: 18px;
	left: 33px;
	top: 30px;
}
.sliderImagesItem:after{
	content: '';
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, transparent 100%);
}
.sliderImagesItem {
	position: relative;
	border-radius: 5px;
	overflow: hidden;
}
.sliderImagesBody .slick-prev{
	left: -60px;
}
.sliderImagesBody .slick-next{
	right: -60px;
}
.sliderImagesBut{
	text-align: center;
	padding-top: 40px;
}
.sliderImages .title_for_block{
	padding-bottom: 65px;
}

.sticky .header_inner .btn-orange{
	padding: 7px 21px 7px;
}
.sticky .header_inner{
	padding: 7px 30px 7px;
}
.sticky header{
	top: 5px;
}
.headingMenu li.active a:before, .headingMenu li.active a:after{
	    bottom: -5px;
}
.services_list_outer{
	padding-left: 30px;
    padding-right: 30px;
}

.custPop{
	width: 100%;
	max-width: 980px;
	background-color: #fff;
	margin: 0 auto;
	position: relative;
	box-shadow: 0 9px 16.2px 2.9px rgba(0, 0, 0, 0.2);
	padding: 45px 60px 55px;
	background-image: url(/img/popRight.jpg), url(/img/popLeft.png);
	background-repeat: no-repeat, no-repeat;
	background-position: right center,left bottom;
	background-size: auto 100%, auto auto;
}
.popSmallTitle:after{
	content: '';
    position: absolute;
    left: 35px;
    height: 1px;
    width: 4px;
    background-color: var(--orange);
    display: block;
    top: 50%;
}
.popSmallTitle:before{
	content: '';
    position: absolute;
    left: 0;
    height: 1px;
    width: 30px;
    background-color: var(--orange);
    display: block;
    top: 50%;
}
.popSmallTitle{
	padding-left: 56px;
	position: relative;
	color: #4c4c4c;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
}
.popTitle b{
	font-weight: 500;	
	color: #ff8820;
}
.popTitle{
	color: #333333;
	font-size: 36px;
	line-height: 1.33;
	font-weight: 500;
	width: 100%;
	max-width: 570px;
	margin-bottom: 15px;
}
.popSubTitle{
	color: #4c4c4c;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.33;
	opacity: 0.8;
	margin-bottom: 34px;
	    max-width: 570px;
}
.custForm .mfp-close{
	color: #fff;
}
.custForm .form-group input:focus{
	 border-bottom: 1px solid rgba(0,0,0,0.5);
}
.custForm .form-group input{
	background: none;
    border: none;
    color: #808080;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 16px;
    font-weight: 300;
    padding: 12px 22px;
}
.custForm{
	width: 100%;
	max-width: 380px;
}
.custForm .form-group{
	padding: 5px 0 20px;
}
.popInner .popSmallTitle{
	margin-bottom: 80px;
}
.mfp-close-btn-in .custPop .mfp-close{
	color: #fff;
}
@media ALL AND (max-width: 1450px){
	.heading_tel {
		padding: 0 10px;
	}
	.heading_socs{
		padding: 0 10px;
	}
	.lang_switcher{
		margin: 0 3px;
	}
	.headingMenu a {
		font-size: 15px;
	}
}
@media ALL AND (max-width: 1350px){
	.sliderImagesBody .slick-next {
    right: 0;
}
	.sliderImagesBody .slick-prev {
		left: 0;
	}
	.sliderImagesBody{
		padding-left: 40px;
		padding-right: 40px;
	}
	.heading_tel a{
		font-size: 14px;
	}
	.headingMenu a {
		font-size: 14px;
	}
	.headingMenu li {
		padding: 0 6px;
	}
	.heading_but .btn-orange{
		font-size: 14px;
		min-width: 160px;
	}
	.aLogo img{
		width: 85px;
	}
	.heading_socs li {
		padding: 0 5px;
	}
	.heading_socs {
		padding: 0 7px;
	}
	.lang_switcher{
		    padding: 0 11px;
	}
}
@media ALL AND (max-width: 1199px){
	.main_banner_inner_d h1, .main_banner_inner_d .mainBannerTitle{
		font-size: 50px;
	}
	.header_inner{
		padding: 14px 15px 13px;
	}
	.sticky .header_inner{
		padding: 7px 15px 7px;
	}
}
@media ALL AND (max-width: 1160px){
	.headingMenu a {
		font-size: 12px;
	}
	.aLogo img {
		width: 75px;
	}
}

@media ALL AND (min-width: 1081px){
	.mobileButtonPop,.mobileShowMenuOuter{
		display: none;
	}
}
@media ALL AND (max-width: 1080px){
	.lang_switcher ul li {
		padding-bottom: 0;
		margin: 0 5px;
	}
	.lang_switcher{
		margin: 0 3px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.lang_switcher ul {
		position: relative;
		opacity: 1;
		visibility: visible;
		z-index: 1;
		transition-duration: 0.2s;
		display: flex;
	}
	.lang_switcher span{
		margin: 0 5px;
		color: var(--orange)
	}
	.lang_switcher span:after{
		display: none;
	}
	.heading_socs{
		justify-content: center;
	}
	.heading_socs li {
		padding: 0px 11px;
	}
	.heading_but{
		display: none;
	}
	.heading_right{
		position: fixed;
		top: -100%;
		transition-duration: 0.2s;
		background: #fff;
		flex-wrap: wrap;
		box-shadow: 0px 6px 21.12px 2.88px rgb(0 0 1 / 10%);
		padding-bottom: 11px;
		max-height: calc(100vh - 56px);
		overflow-y: auto;
	}
	.heading_tel,.heading_socs,.lang_switcher{
		width: 100%;
		text-align: center;
		border: none;
		padding: 7px 15px;
	}
	.headingMenu a {
		font-size: 18px;
	}
	
	.headingMenu ul{
		display: block;
	}
	.headingMenu li{
		display: block;
		width: 100%;
		text-align: center;
		padding: 6px 6px;
	}
	.headingMenu{
		width: 100%;
		padding: 0 15px;
	}
	.heading_tel a {
    font-size: 17px;
}
	.aLogo img {
		width: 94px;
	}
	.mobileButtonPop,.mobileShowMenuOuter{
		width: 180px;
	}
	.mobileShowMenu i{
		display: block;
		width: 100%;
		height: 3px;
		background-color: #000;
	}
	.mobileShowMenu:before{
		top: 0;
	}
	.mobileShowMenu:after{
		bottom: 0;
	}
	.mobileShowMenu:before,
	.mobileShowMenu:after{
		content: '';
		display: block;
		width: 100%;
		height: 3px;
		position: absolute;
		left: 0;
		background-color: #000;
	}
	.mobileShowMenu{
		position: relative;
		display: flex;
		align-items: center;
		width: 27px;
		height: 19px;
		padding: 0;
		border: none;
		background: none;
	}
	.header_inner{
		padding: 7px 15px 7px
	}
	header {
		top: 5px;
	}
	.header_inner .btn-orange{
		padding: 7px 21px 7px;
	}
	.openedMenu .heading_right{
		position: fixed;
		top: 56px;
		left: 15px;
		width: calc(100% - 30px);
		box-shadow:0px 12px 18.12px 0.88px rgb(0 0 1 / 10%);
	}
	.openedMenu .header_inner{
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
		border-top-left-radius: 25px;
		border-top-right-radius: 25px;
	}
}


@media ALL AND (max-width: 991px){
	.makePopFormTitle{
		font-size: 40px;
	}
	.headingPage_inner{
		min-height: 200px;
	}
	.psItemDoubleItem:first-child {
		margin-bottom: 13px;
	}
	.oborudovanieBlocksLeftInner {
		width: 100%;
		max-width: initial;
	}
	.oborudovanieBlocksLeft{
		width: 100%;
		order: 1;
		padding: 0;
	}
	.oborudovanieBlocksRight img{
		max-width: 500px;
		margin: 0 auto;
		display: block;
		    width: 100%;
	}
	.oborudovanieBlocksRight{
		width: 100%;
		order: 0;
		padding: 0;
	}
	.oborudovanieBlocks{
		flex-wrap: wrap;
	}
	.forWhoSLInfo {
		margin-top: 0px;
	}
	.serv_item_info{
		padding: 16px 15px 15px;
	}
	.title_for_block span{
		font-size: 32px;
	}
	.uf_center{
		padding: 20px 0;
	}
	.uf_left_tel,.uf_right_inf{
		border: none;
	}
	.upperFooterInner{
		flex-wrap: wrap;
	}
	.uf_left, .uf_center, .uf_right{
		width: 100%;
	}
	.main_banner_inner_d h1, .main_banner_inner_d .mainBannerTitle {
		font-size: 40px;
	}
	.main_banner_inner_d h1:before {
		margin-left: -90px;
		left: 50%;
	}
	.main_banner_inner_d h1:after {
		left: 50%;
	}
	.main_banner_text{
		margin: 0 auto;
	}
	.main_banner_inner_d{
		width: 100%;
		text-align: center;
	}
	.mainBanner{
		background-position: left bottom;
		background-image: none!important;
		background-color: #F9F9F9;
	}
	.main_banner_inner{
		min-height: initial;
		height: auto;
		padding: 85px 15px 30px;
		max-height: initial;
	}
}



@media ALL AND (max-width: 850px){
	.mfp-close-btn-in .custPop .mfp-close {
		color: #000;
	}
	.custPop{
		background-image: none;
	}
}
@media ALL AND (max-width: 768px){
	.portfolioItemGallery{
		margin-left: -3px;
		margin-right: -3px;
	}
	.portfolioItemGI{
		padding: 3px;
	}
	.portfolioItemText{
		margin: 0 auto 20px;
	}
	.simpleText p {
		margin-bottom: 14px;
	}
	.portfolioItemOut{
		padding: 20px 5px;
	}
	.pagePortfolioOut{
		padding: 30px 0 20px;
	}
	.sliderImagesItem span{
		left: 10px;
		top: 10px;
	}
	.sliderImages .title_for_block {
		padding-bottom: 35px;
	}
	.sliderImagesBut{
		padding-top: 20px;
	}
	.sliderImagesInner{
		padding: 25px 15px 30px;
	}
	.makePopFormTitle{
		font-size: 30px;
		margin-top: 30px;
	}
	.smallTitle{
		    margin-bottom: 20px;
	}
	.makePopForm{
		padding: 30px 0 35px;
		min-height: 250px;
		margin: 30px 0;
	}
	.howWeWorkItem{
		width: 50%;
	}
	.howWeWorkInner .title_for_block {
		margin-bottom: 25px;
	}
	.howWeWorkInner{
		padding: 25px 15px 20px;
	}
	.bigImage{
		padding: 10px 0 30px;
	}
	.icons4rowItem {
		width: 50%;
		padding: 15px 10px;
	}
	.icons4rowInner{
		    padding: 25px 15px 15px;
	}
	.icons4rowInner .title_for_block {
		margin-bottom: 23px;
	}
	.tmtc_item{
		width: 100%;
		margin-bottom: 10px;
	}
	.tmtc_outer{
		flex-wrap: wrap;
	}
	.tmtc_middle{
		margin-bottom: 25px;
	}
	.textMiddleTwoCols{
		padding: 20px 15px 20px;
	}
	.simpleText,.nibRight{
		width: 100%;
		max-width: initial;
	}
	.newsItemBlocks{
		padding-top: 35px;
		flex-wrap: wrap;
	}
	.niDate{
		margin-bottom: 24px;
	}
	.newsItemOuter h1{
		    margin-bottom: 15px;
			font-size: 32px;
	}
	.newsItemOuter{
		padding: 20px 15px 10px;
	}
	.newsListItemTitle a{
		font-size: 20px;
	}
	.newsListItemTitle{
		padding-bottom: 10px;
	}
	.newsOuter{
		padding: 0px 5px 15px;
	}
	.newsListItem{
		padding: 25px 0;
	}
	ul.pagination{
		display: flex;
		flex-wrap: wrap;
		padding: 10px 15px 20px;
	}
	.newsListItem:nth-child(even) .newsListItemInfoInner,
.newsListItem:nth-child(odd) .newsListItemInfoInner	{
		padding-right: 0;
		padding-left: 0;
	}
	.newsListItemTitle:before{
		left: 50%;
		margin-left: -90px;
	}
	.newsListItemTitle:after{
		left: 50%;
	}
	.newsListItemInfo {
    width: 100%;
    padding: 15px 10px 0;
    text-align: center;
}
	.newsListItemImg{
		width: 100%;
		max-width: 580px;
		margin: 0 auto;
	}
	.newsListItem{
		flex-wrap: wrap;
	}
	.headingPage_inner {
		padding: 15px 15px;
	}
	.headingPage{
		padding-top: 60px;
		margin-bottom: 30px;
	}
	.headingPage_inner h1, .headingPage_inner .h1{
		font-size: 35px;
	}
	.portfolioSectionWrapper{
		justify-content: space-around;
	}
	.psItem_251{max-width: 280px;}
	.psItem_333{max-width: 380px;}
	.psItem_416{max-width: 480px;}
	div.psItem{
		width: 100%;
	}
	.portfolioSectionInner .title_for_block{
		margin-bottom: 25px;
	}
	.portfolioSection{
		padding: 25px 0 30px;
	}
	.contactFormOuter{
		padding: 45px 0 55px 0;
		margin-bottom: 30px;
	}
	.form-group-submit{
		text-align: center;
	}
	.contFormBody .form-group {
		max-width: 380px;
		margin: 0 auto;
	}
	.contFormBodySubtitle{
		text-align: center;
	}
	.contFormBodyTitle{
		text-align: center;
		font-size: 30px;
		line-height: 1.2;
		margin-bottom: 17px;
	}
	.contentFormInner .smallTitle {
		margin-bottom: 45px;
	}
	.contFormBody{
		max-width: initial;
	}
	.oborudovanieInner{
		padding: 60px 0 35px;
		margin-top: 30px;
	}
	.oborudovanieInner .title_for_block {
		margin-bottom: 30px;
		padding: 0 15px;
	}
	.copter{
		width: 150px;
		height: 87px;
		top: 50%;
		background-size: contain;
		background-position: center center;
	}
	footer{
		margin-top: 30px;
	}
	.whyWeInner .title_for_block {
		padding-bottom: 30px;
	}
	.whyWeOuter {
		padding: 35px 0 10px;
	}
	.whyWeItem{
		    width: 50%;
	}
	.forWhoSliderItem {
		padding-bottom: 30px;
	}
	.forWho {
		margin-top: 30px;
	}
	.forWhoSLInfoInner{
		padding: 30px 40px 30px;
	}
	.forWhoPrev {
		left: 10px;
	}
	.forWhoNext {
		right: 10px;
	}
	.forWhoSLInfoSubTitle{
		margin-top: 11px;
	}
	.forWhoSLInfoTitle{
		font-size: 32px;
		font-weight: 700;
		line-height: 1.2;
	}
	.main_banner_inner{
		margin-bottom: 15px;
	}
	.services_outer {
		padding: 25px 0 20px;
	}
	.services_inner .title_for_block {
		margin-bottom: 25px;
	}
	.title_for_block span {
		font-size: 27px;
	}
	.title_for_block{
		padding:0;
	}
	.mobileButtonPop, .mobileShowMenuOuter{
		width: 30px;
	}
	.header_inner{
		height: 51px;
	}
	.mobileButtonPop button{
		display: none;
	}
	.heading_but {
		display: block;
		text-align: center;
		width: 100%;
		padding: 10px 15px;
	}
}
@media ALL AND (max-width: 550px){
	.custPop{
		padding: 35px 30px 35px;
	}
	.popTitle{
		font-size: 26px;
	}
	.popInner .popSmallTitle {
		margin-bottom: 30px;
	}
	.headingPage_inner h1, .headingPage_inner .h1{
		font-size: 25px;
	}
	.howWeWorkItemText{
		font-size: 13px;
	}
	.howWeWorkItemTitle{
		font-size: 16px;
		margin-bottom: 10px;
	}
	.howWeWorkItemIcon{
		margin-bottom: 16px;
	}
	.oborLListItem{
		width: 100%;
	}
	.oborLTitle{
		text-align: center;
	}
	.oborLText{
		max-width: initial;
		text-align: center;
	}
	.whyWeItem{
		width: 100%;
	}
	.forWhoSLInfoTitle {
		font-size: 29px;
	}
	.main_banner_inner_d h1, .main_banner_inner_d .mainBannerTitle {
		font-size: 30px;
	}
	.downFooterInner{
		flex-wrap: wrap;
	}
	.downFooterCopy{
		width: 100%;
		text-align: center;
		padding: 5px 0;
		order: 1;
	}
	.downFooterSocs {
		display: flex;
		justify-content: center;
		width: 100%;
	}
	.uf_right,.uf_left{
		flex-wrap: wrap;
	}
	.uf_left_tel,.uf_right_inf{
		width: 100%;
		padding: 2px 0;
	}
	.main_banner_buttons button{
		margin-right: 0;
	}
	.main_banner_buttons{
		padding-top: 25px;
		text-align: center;
	}
	.main_banner_buttons>*{
		width: 220px;
		max-width: 100%;
		margin: 5px 0;
	}
}




/*slick*/
.slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{display:table;content:''}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}
@charset 'UTF-8';.slick-loading .slick-list{background:#fff}.slick-next,.slick-prev{font-size:0;line-height:0;position:absolute;top:50%;display:block;width:20px;height:20px;padding:0;-webkit-transform:translate(0,-50%);-ms-transform:translate(0,-50%);transform:translate(0,-50%);cursor:pointer;color:transparent;border:none;outline:0;background:0 0}.slick-next:focus,.slick-next:hover,.slick-prev:focus,.slick-prev:hover{color:transparent;outline:0;background:0 0}.slick-next:focus:before,.slick-next:hover:before,.slick-prev:focus:before,.slick-prev:hover:before{opacity:1}.slick-next.slick-disabled:before,.slick-prev.slick-disabled:before{opacity:.25}.slick-prev{left:-25px}[dir=rtl] .slick-prev{right:-25px;left:auto}[dir=rtl] .slick-prev:before{content:'→'}.slick-next{right:-25px}[dir=rtl] .slick-next{right:auto;left:-25px}[dir=rtl] .slick-next:before{content:'←'}.slick-dotted.slick-slider{margin-bottom:30px}.slick-dots{position:absolute;bottom:-25px;display:block;width:100%;padding:0;margin:0;list-style:none;text-align:center}.slick-dots li{position:relative;display:inline-block;width:20px;height:20px;margin:0 5px;padding:0;cursor:pointer}.slick-dots li button{font-size:0;line-height:0;display:block;width:20px;height:20px;padding:5px;cursor:pointer;color:transparent;border:0;outline:0;background:0 0}.slick-dots li button:focus,.slick-dots li button:hover{outline:0}.slick-dots li button:focus:before,.slick-dots li button:hover:before{opacity:1}.slick-dots li button:before{font-size:6px;line-height:20px;position:absolute;top:0;left:0;width:20px;height:20px;content:'•';text-align:center;opacity:.25;color:#000;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.slick-dots li.slick-active button:before{opacity:.75;color:#000}

/*magnific*/
.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:3000;overflow:hidden;position:fixed;background:#ffffff;opacity:.8}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:3002;position:fixed;outline:0!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#ccc}.mfp-preloader a:hover{color:#fff}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-arrow,button.mfp-close{overflow:visible;cursor:pointer;background:0 0;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;box-shadow:none;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;color:#fff;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:focus,.mfp-close:hover{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#fff;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#ccc;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:focus,.mfp-arrow:hover{opacity:1}.mfp-arrow:after,.mfp-arrow:before{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #fff;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #fff;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}