@charset "UTF-8";
@font-face{
    font-family: 'Roboto';
    src: url('../fonts/roboto-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face{
    font-family: 'Roboto';
    src: url('../fonts/roboto-bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}
/* common */
html,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,hr,pre,code,form,input,button,textarea,p,blockquote,th,td,figure,figcaption,nav,section,menu,main{
	margin: 0;
	padding: 0;
}
table{
	border-spacing: 0;
}
img{
	border: none;
/*	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0) scale(1.0, 1.0);*/
}
ul li, menu li{
	list-style: none;
}
h1,h2,h3,h4,h5,h6{
	font-size: inherit;
	font-weight: normal;
}
sup,sub{
	vertical-align: baseline;
}
*{
/*	text-rendering: optimizeLegibility;*/
	outline: none !important;
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: transparent;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
input,button,textarea,select,optgroup,option{
 	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
}
::-webkit-input-placeholder{
	opacity: 1;
	color: #7b7b7b;
	transition: all .4s ease;
}
::-moz-input-placeholder{
	opacity: 1;
	color: #7b7b7b;
	transition: all .4s ease;
}
:-moz-input-placeholder{
	opacity: 1;
	color: #7b7b7b;
	transition: all .4s ease;
}
:input-placeholder{
	opacity: 1;
	color: #7b7b7b;
	transition: all .4s ease;
}
select:invalid{
	color: #7b7b7b;
}
option{
	color: #6c6c6c;
}
.login ::-webkit-input-placeholder{
	color: inherit;
}
.login ::-moz-input-placeholder{
	color: inherit;
}
.login :-moz-input-placeholder{
	color: inherit;
}
.login :input-placeholder{
	color: inherit;
}
:focus::-webkit-input-placeholder{
	opacity: 0;
	text-indent: -100px;
}
:focus:-moz-placeholder{
	opacity: 0;
	text-indent: -100px;
}
:focus::-moz-placeholder{
	opacity: 0;
	text-indent: -100px;
}
:focus:input-placeholder{
	opacity: 0;
	text-indent: -100px;
}
input[type='checkbox'],input[type='submit'],input[type='reset'],input[type='radio'],input[type='image'],input[type='file'],button,label{
	cursor: pointer;
}
a{
	text-decoration: underline;
	outline: none;
	color: inherit;
	transition: all .4s ease;
}
a:hover,
a[href^='tel'],
a.noline{
	text-decoration: none;
}
body{
    font: normal 14px 'Roboto', Tahoma, Ubuntu, sans-serif;
	color: #434242;
	background: #fff;
}
input[type='text'], input[type='password'], input[type='email'], input[type='tel'], input[type='number'], input[type='search'], input[type='url'], input[type='time'], textarea, select{
	display: block;
	width: 100%;
	height: 32px;
	margin: 0;
	padding: 4px 10px;
	font-size: 12px;
	font-weight: normal;
	line-height: 1.833333333333333;
	color: #6c6c6c;
	text-align: left;
	text-indent: 0;
	border: 1px solid #a6a6a6;
	background: #fff;
	border-radius: 3px;
	box-shadow: none !important;
	transition: all .4s ease;
}
header input:not([type='submit']){
	height: 28px;
	padding-top: 3px;
	padding-bottom: 3px;
	font-size: 11px;
}
input.big{
	height: 40px;
}
input.big,
textarea.big{
	padding-top: 8px;
	padding-bottom: 8px;
}
input[type='text']:hover, input[type='password']:hover, input[type='email']:hover, input[type='tel']:hover, input[type='number']:hover, input[type='search']:hover, input[type='url']:hover, input[type='time']:hover, textarea:hover, select:hover,
input[type='text']:focus, input[type='password']:focus, input[type='email']:focus, input[type='tel']:focus, input[type='number']:focus, input[type='search']:focus, input[type='url']:focus, input[type='time']:focus, textarea:focus, select:focus{
	border-color: #6c6c6c;
}
.search input[type='text']:focus{
	border-color: #ee6f00;
}
input.error,
textarea.error,
select.error{
	border-color: #f00;
}
select{
	cursor: pointer;
	line-height: normal;
	padding: 0 30px 0 6px;
	background: #fff url('../images/select.png') no-repeat right 10px center;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
}
select::-ms-expand{
	display: none;
}
textarea{
	height: 200px;
	text-align: left;
	resize: none;
}
input[type='checkbox'],
input[type='radio']{
	display: none;
}
input[type='checkbox']+.input,
input[type='radio']+.input{
	display: inline-block;
	position: relative;
	width: 30px;
	height: 30px;
	margin: 0 15px 0 0;
	vertical-align: -9px;
	border: 2px solid #fff;
	border-radius: 100%;
}
input[type='checkbox']+.input:after,
input[type='radio']+.input:after{
	opacity: 0;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 20px;
	height: 20px;
	margin: -10px 0 0 -10px;
	content: '';
	background: #fff;
	border-radius: 100%;
	transition: all .4s ease;
}
input[type='checkbox']:checked+.input:after,
input[type='radio']:checked+.input:after{
	opacity: 1;
}
.button{
	cursor: pointer;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-content: center;
	-ms-flex-align:center;
	align-content: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	width: 224px;
	height: 50px;	   
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-weight: normal;
	line-height: normal;
	color: #fff;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	border: 0 none;
	background: linear-gradient(to bottom,#92c73e 50%,#83b92f 50%);
	border-radius: 3px;
	box-shadow: none !important;
	transition: all .4s ease;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.button.blue{
	background: linear-gradient(to bottom,#0491d1 50%,#008ac8 50%);
}
.button:focus{
	box-shadow: inset 0 0 0 100px rgba(0,0,0,.05) !important;
}
.button:hover{
	box-shadow: inset 0 0 0 100px rgba(0,0,0,.1) !important;
}
.button:active{
	box-shadow: inset 0 0 0 100px rgba(255,255,255,.1) !important;
}
.button.active{
	cursor: default;
}
[disabled]{
	cursor: not-allowed !important;
	opacity: .5 !important;
}
.nobr{
	white-space: nowrap;
}
.relative{
	position: relative;
}
.center{
	text-align: center;
}
.justify{
	text-align: justify;
}
.left{
	float: left;
}
.right{
	float: right;
}
.clear,
.clearfix:before,
.clearfix:after{
	display: block;
	clear: both;
}
.clearfix:before,
.clearfix:after{
	content: '';
}
.animate{
	transition: all .4s ease;
}
.circle{
	border-radius: 100%;
}
.uppercase{
	text-transform: uppercase;
}
hr{
	height: 0;
	margin: 0;
	padding: 0;
	border: 0 none;
	border-bottom: 1px solid #fff;
	background: none;
}
.table{
	display: table;
	border-spacing: 0;
	width: 100%;
	margin-bottom: 0;
}
.table .table{
	background: none;
}
.inline-table{
	display: inline-table;
	border-spacing: 0;
}
.tr{
	display: table-row;
}
.td{
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}
.td.left{
	text-align: left;
}
.td.right{
	text-align: right;
}
.td.top{
	vertical-align: top;
}
.td.bottom{
	vertical-align: bottom;
}
.img{
	font-size: 0;
	line-height: 0;
}
.img img{
	max-width: 100%;
	max-height: 100%;
}
.inline-block{
	display: inline-block;
}
.noselect{
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.flex{
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-content: center;
	-ms-flex-align:center;
	align-content: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.inline-flex{
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-content: center;
	-ms-flex-align:center;
	align-content: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.flex.row,
.inline-flex.row{
	-webkit-flex-flow: row wrap;
	-ms-flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-flow: row wrap;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-align-content: flex-start;
	-ms-flex-align: start;
	align-content: flex-start;
}
.flex.row.around,
.inline-flex.row.around{
	-webkit-justify-content: space-around;
	justify-content: space-around;
}
.flex .middle{
	margin: auto;
}
/* off */

/* text */
.plaintext:not(.td){
	line-height: 1.428571428571429;
}
.plaintext h1,
.plaintext h2,
.plaintext h3,
.title{
	margin: 0 0 30px;
	font-size: 30px;
	line-height: 1;
	color: #050505;
	text-transform: uppercase;
}
.white .title{
	color: #fff;
}
.plaintext h1,
.title.big{
	font-size: 40px;
}
.plaintext h3,
.title.small{
	font-size: 24px;
}
.plaintext a{
	color: #008ac8;
}
.plaintext p,
.plaintext img,
.plaintext hr{
	margin: 0 0 20px;
}
.plaintext img{
	max-width: 100%;
}
.plaintext img[style*='float:left'],
.plaintext img[style*='float: left']{
	margin: 0 20px 20px 0 !important;
}
.plaintext img[style*='float:right'],
.plaintext img[style*='float: right']{
	margin: 0 0 20px 20px !important;
}
.plaintext ol,
.plaintext ul{
	margin: 0 0 20px;
	padding: 0 17px;
}
.plaintext ol ol,
.plaintext ul ol,
.plaintext ul ol,
.plaintext ul ul{
	margin: 0;
}
.plaintext ol ol li{
	list-style: lower-alpha;
}
.plaintext ul li,
.plaintext ol ul li{
	list-style: disc;
}
.plaintext ul ul li{
	list-style: square;
}
.plaintext table{
	margin: 0 0 20px;
}
.plaintext table img,
.plaintext table p{
	margin: 0;
}
.plaintext sup,
.plaintext sub{
	font-size: .7em;
	line-height: 100%;
	vertical-align: 4px;
}
.plaintext sub{
	vertical-align: -2px;
}
.plaintext > *:nth-last-child(2){
	margin-bottom: 0;
}
/* off */
.white{
	color: #fff !important;
}
.blue:not(.button){
	color: #008cc4 !important;
}

.wrapper{
	overflow: hidden;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	min-width: 1000px;
    min-height: 100vh;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-align-content: stretch;
	-ms-flex-align: stretch;
	align-content: stretch;
	background: #fff url('../images/bg.jpg') repeat center top;
}
header,
footer{
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.inside{
	width: 980px;
	margin: 0 auto;
}

/* header */
header,
footer{
	padding: 19px 0 0;
	background: #fff url(../images/tile.png) repeat center top;
}
.phones{
	margin: 17px 0 0;
	font-size: 18px;
}
.phones li:not(:first-child){
	margin-top: 4px;
}
.links .link{
	margin: 21px 0 0 42px;
}
.links .link a{
	display: inline-block;
	margin: 8px 0 0;
	color: #008ac8;
}
.lang{
	margin: 23px 0 0 67px;
}
.lang li:not(:first-child){
	margin-left: 3px;
}
.lang .noline{
	display: block;
	width: 34px;
	height: 34px;
	font-size: 12px;
	line-height: 30px;
	color: #909090;
	border: 1px solid #b7b7b7;
	background: #fff;
}
.lang a.noline:hover,
.lang .active .noline{
	color: #008ac8;
	border-color: #008ac8;
}
.lang .active .noline{
	cursor: default;
}
.nav{
	margin: 18px 0 0;
	font-size: 12px;
	background: linear-gradient(to bottom,#0491d1 50%,#008ac8 50%);
}
.nav .td{
	height: 45px;
}
.nav li.td{
	width: 10000px;
}
.nav li.td:first-child,
.nav li.td:last-child{
	width: 5000px;
}
.nav li.td:first-child{
	text-align: left;
}
.nav li.td:last-child{
	text-align: right;
}
.nav li.td:not(:first-child):before{
	position: absolute;
	left: 0;
	top: 0;
	height: 50%;
	content: '';
	border-left: 1px solid #007eb7;
}
.nav .noline:hover,
.nav .active .noline{
	color: #a7e3fe;
}
.nav .active .noline{
	cursor: default;
}
.nav .td .td{
	padding: 2px 0 0;
}
.nav .td .td:before{
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	height: 3px;
	content: '';
	background: #fff;
	transition: all .4s ease;
}
.nav .inline-table:hover .td:before,
.nav .active .td:before{
	left: 0;
	width: 100%;
}
.socials{
	margin: 30px 0 0;
}
/* header off */

/* content */
main{
	-webkit-flex: 1 0 auto;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
}
.components{
	padding: 41px 0 30px;
	background: url('../images/bg-components.jpg') no-repeat center center/cover;
	box-shadow: inset 0 3px 0 rgba(0,138,200,.3);
}
.components:after,
.objects:before{
	position: absolute;
	left: 0;
	bottom: -7px;
	width: 100%;
	height: 16px;
	content: '';
	background: url('../images/line-components.png') no-repeat center bottom;
}
.title small{
	display: block;
	margin: 0 0 8px;
	font-size: .55em;
}
.components-list{
	width: 461px;
}
.components-list .table{
	height: 106px;
}
.components-list .img{
	width: 93px;
	background: url('../images/bg-li-components.png') no-repeat center center;
}
.components-list.left .txt{
	padding-right: 30px;
	text-align: right;
}
.components-list.right .txt{
	padding-left: 30px;
	text-align: left;
}
.components-list .txt h3{
	font-size: 16px;
	font-weight: bold;
	color: #44bef5;
}
.components-list .txt h3+ul{
	margin: 10px 0 0;
}
.components .button{
	margin: 28px 0 0;
}
.functions{
	padding: 60px 0 117px;
}
.functions .title{
	margin-bottom: 51px;
}
.functions-box{
	height: 474px;
	background: url('../images/pentagram.png') no-repeat 31px top;
}
.absolute-text{
	position: absolute;
	width: 108px;
	height: 108px;
	line-height: 1.142857142857143;
	color: #0c8ec9;
}
.absolute-text:nth-child(1){
	left: 227px;
	top: 0;
}
.absolute-text:nth-child(2){
	left: 422px;
	top: 134px;
}
.absolute-text:nth-child(3){
	left: 373px;
	top: 357px;
}
.absolute-text:nth-child(4){
	left: 79px;
	top: 357px;
}
.absolute-text:nth-child(5){
	left: 31px;
	top: 134px;
}
.absolute-text.big{
	left: 186px;
	top: 166px;
	width: 190px;
	height: 190px;
	font-size: 18px;
	line-height: 1.444444444444444;
}
.trio{
	padding: 46px 22px 0 0;
}
.trio .table{
	width: 320px;
}
.trio .table:not(:first-child){
	margin-top: 40px;
}
.trio .table:nth-child(2){
	margin-left: 57px;
}
.trio .img{
	width: 109px;
}
.trio .txt{
	padding: 0 0 0 30px;
	text-align: left;
}
.trio h3{
	margin: 0 0 12px;
	font-size: 16px;
	font-weight: bold;
}
.trio .table li:before{
	position: absolute;
	width: 4px;
	height: 4px;
	margin: 4px 0 0 -12px;
	content: '';
	border: 2px solid #119bda;
	border-radius: 100%;
}
.objects{
	padding: 57px 0 53px;
	background: url('../images/o0.png') no-repeat center top, url('../images/bg-objects.jpg') no-repeat center center/cover;
}
.objects:before{
	top: -8px;
	bottom: auto;
}
.objects:after,
.objects > .inside:before{
	position: absolute;
	left: 50%;
	top: 100%;
	margin: -211px 0 0 519px;
	content: url('../images/o1.png');
}
.objects > .inside:before{
	top: 0;
	margin: -46px 0 0 490px;
	content: url('../images/circle.png');
}
.objects .title{
	margin: 0 0 40px;
}
.objects-list li{
	width: 239px;
	margin: 39px 0 0 8px;
	padding: 0 0 11px;
	background: url('../images/line-objects.png') no-repeat center bottom;
}
.objects-list li:nth-child(4n+1){
	margin-left: 0;
}
.objects-list li:nth-child(1),
.objects-list li:nth-child(2),
.objects-list li:nth-child(3),
.objects-list li:nth-child(4){
	margin-top: 0;
}
.objects-list .img,
.news-list .img,
.news-one .image{
	height: 151px;
	padding: 3px;
	border: 1px solid #87c2de;
	border-radius: 3px;
}
.objects-list .txt{
	font-size: 16px;
	height: 50px;
}
.objects-list .txt small{
	font-size: 12px;
}
.numbers{
	height: 540px;
	padding: 68px 0 0;
	font-size: 16px;
	background: url('../images/bg-numbers.jpg') no-repeat center center/cover;
	box-shadow: inset 0 8px 0 rgba(4,147,210,.2);
}
.numbers .inside > p{
	margin: 0 20px 10px;
	line-height: 1.6666666666666667;
}
.numbers .title,
.numbers-list .num{
	color: #82c341;
}
.numbers-list-box{
	margin: 0 -53px;
	padding: 0 73px;
	height: 260px;
	background: url('../images/numbers.png') no-repeat center center;
}
.numbers-list{
	table-layout: fixed;
}
.numbers-list .td{
	width: 25%;
	vertical-align: top;
}
.numbers-list .txt{
	white-space: normal;
}
.numbers-list .num{
	margin: 100px 0 62px;
	font-size: 20px;
}
.more{
	padding: 36px 0 29px;
	background: url('../images/more.png') no-repeat center 4px, url('../images/bg-more.jpg') no-repeat center center;
}
.more .title{
	margin: 0 0 28px;
}
.targets{
	height: 484px;
	padding: 69px 0 0;
	background: url('../images/targets.png') no-repeat center bottom;
}
.targets .title{
	margin: 0 0 55px;
}
.targets-table{
	table-layout: fixed;
}
.targets-table .td{
	padding: 0 47px 47px;
	width: 50%;
}
.targets-table .tr:first-child .td{
	vertical-align: top;
}
.targets-table .tr:last-child .td{
	padding-bottom: 0;
}
.targets-table .td:first-child{
	text-align: right;
	padding-right: 94px;
}
.targets-table .td:last-child{
	text-align: left;
	padding-left: 94px;
}
.info{
	height: 61px;
	font-size: 16px;
	background: linear-gradient(to bottom,#0491d1 50%,#008ac8 50%);
}
.clients{
	padding: 44px 0 22px;
}
.clients .title{
	margin: 0 0 16px;
}
.breadcrumbs{
	cursor: default;
	padding: 13px 0;
	font-size: 12px;
	color: #4c5e67;
	background: rgba(0,138,200,.3);
}
.breadcrumbs a{
	text-decoration: none;
}
.breadcrumbs a:hover{
	text-decoration: underline;
}
.news{
	padding: 30px 0;
}
.news-list li{
	padding: 0 0 32px;
	background: url('../images/line-news.png') no-repeat center bottom;
}
.news-list li:not(:first-child){
	margin-top: 20px;
}
.news-list .img,
.news-one .image{
	height: auto;
	border-color: #e0e0e0;
}
.news-list .img~.txt{
	margin-left: 260px;
}
.news-list .txt h2,
.news-list .txt h3{
	margin: 0 0 6px;
	font-size: 18px;
	color: #008ac8;
}
.date{
	margin: 0 0 16px;
	font-size: 12px;
	color: #909090;
}
.more-news{
	margin: 60px 0 90px;
}
.news-one{
	padding: 30px 0 36px;
	background: url('../images/line-news.png') no-repeat center bottom;
}
.news-one .title{
	margin: 0 0 16px;
}
.back{
	font-size: 12px;
}
.news-one .image{
	margin: 0 0 20px;
}
.related.news{
	padding-bottom: 120px;
}
.related.news .news-list:after{
	display: block;
	content: '';
	clear: both;
}
.related.news .news-list li{
	float: left;
	width: 461px;
	margin: 58px 0 0 58px;
	padding: 0;
	background: none;
}
.related.news .news-list li:nth-child(1),
.related.news .news-list li:nth-child(2){
	margin-top: 0;
}
.related.news .news-list li:nth-child(2n+1){
	margin-left: 0;
}
.related.news .news-list li .img img{
	width: 192px;
}
.related.news .news-list li .img~.txt{
	margin-left: 220px;
}
.related.news .news-list li h3{
	font-size: 14px;
	line-height: 1.571428571428571;
}
/* content off */

/* footer */
footer{
	padding: 0;
}
footer .table{
	height: 112px;
	font-size: 12px;
	line-height: 1.5;
	color: #909090;
}
footer img{
	max-width: none;
	max-height: none;
}
footer a{
	text-decoration: none;
}
footer a:not([href^='tel']):hover{
	text-decoration: underline;
}
.footer-logo img{
	width: 103px;
}
footer .table > .td:first-child,
footer .table > .td:last-child{
	width: 130px;
	text-align: left;
}
.dev .td{
	text-align: left;
}
.dev .img{
	width: 10000px;
}
.dev .txt{
	width: 0;
}
/* footer off */

/* slider */
.slider-box{
	overflow: hidden;
}
.clients .slider-box{
	padding: 0 15px;
}
.caroufredsel_wrapper[style*='move']{
	cursor: url('../images/Move.cur'), auto !important;
}
#slider{
	width: 99999px;
}
#slider li{
	height: 80px;
}
#slider a:hover{
	opacity: .75;
}
.slider-nav{
	cursor: pointer;
	position: absolute;
	z-index: 5;
	top: 50%;
	margin: -12px 0 0;
}
.slider-nav:hover{
	opacity: .75;
}
.slider-nav.prev{
	left: 0;
}
.slider-nav.next{
	right: 0;
	-webkit-transform: scaleX(-1);
	-ms-transform: rotate(180deg);
	transform: scaleX(-1);
}
.slider-pager{
	position: absolute;
	z-index: 5;
	left: 0;
	top: 5.1%;
	width: 100%;
}
#pager{
	position: fixed;
	opacity: 0;
	top: -9999px;
}
.slider-pager a{
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	border: 1px solid #6c6c6c;
	background: #fff;
	border-radius: 100%;
	transition: all .4s ease;
}
.slider-pager a:hover{
	border-color: #008cc4;
	background: #008cc4;
}
.slider-pager a:hover{
	border-color: #ef7100;
	background: #ef7100;
}
.slider-pager a.selected{
	cursor: default;
}
.slider-pager span{
	display: none;
}
/* slider off */























/* eof */