@import "reset.css";
@import "owl.carousel.css";

@font-face {
    font-family: 'Clear Sans';
    font-style: normal;
    font-weight: 400;
    src: local('ClearSans'), local('Clear Sans'),
         url('/fonts/ClearSans-Regular.eot'),
         url('/fonts/ClearSans-Regular.eot?#iefix') format('embedded-opentype'),
         url('/fonts/ClearSans-Regular.woff') format('woff'),
         url('/fonts/ClearSans-Regular.ttf') format('truetype'),
         url('/fonts/ClearSans-Regular.svg') format('svg');
}

@font-face {
    font-family: 'Clear Sans';
    font-style: italic;
    font-weight: 400;
    src: local('ClearSans-Italic'), local('Clear Sans Italic'),
         url('/fonts/ClearSans-Italic.eot'),
         url('/fonts/ClearSans-Italic.eot?#iefix') format('embedded-opentype'),
         url('/fonts/ClearSans-Italic.woff') format('woff'),
         url('/fonts/ClearSans-Italic.ttf') format('truetype'),
         url('/fonts/ClearSans-Italic.svg') format('svg');
}

@font-face {
    font-family: 'Clear Sans';
    font-style: normal;
    font-weight: 500;
    src: local('ClearSans-Medium'), local('Clear Sans Medium'),
         url('/fonts/ClearSans-Medium.eot'),
         url('/fonts/ClearSans-Medium.eot?#iefix') format('embedded-opentype'),
         url('/fonts/ClearSans-Medium.woff') format('woff'),
         url('/fonts/ClearSans-Medium.ttf') format('truetype'),
         url('/fonts/ClearSans-Medium.svg') format('svg');
}

@font-face {
    font-family: 'Clear Sans';
    font-style: italic;
    font-weight: 500;
    src: local('ClearSans-MediumItalic'), local('Clear Sans Medium Italic'),
         url('/fonts/ClearSans-MediumItalic.eot'),
         url('/fonts/ClearSans-MediumItalic.eot?#iefix') format('embedded-opentype'),
         url('/fonts/ClearSans-MediumItalic.woff') format('woff'),
         url('/fonts/ClearSans-MediumItalic.ttf') format('truetype'),
         url('/fonts/ClearSans-MediumItalic.svg') format('svg');
}

@font-face {
    font-family: 'Clear Sans';
    font-style: normal;
    font-weight: 700;
    src: local('ClearSans-Bold'), local('Clear Sans Bold'),
         url('/fonts/ClearSans-Bold.eot'),
         url('/fonts/ClearSans-Bold.eot?#iefix') format('embedded-opentype'),
         url('/fonts/ClearSans-Bold.woff') format('woff'),
         url('/fonts/ClearSans-Bold.ttf') format('truetype'),
         url('/fonts/ClearSans-Bold.svg') format('svg');
}

@font-face {
    font-family: 'Clear Sans';
    font-style: italic;
    font-weight: 700;
    src: local('ClearSans-BoldItalic'), local('Clear Sans Bold Italic'),
         url('/fonts/ClearSans-BoldItalic.eot'),
         url('/fonts/ClearSans-BoldItalic.eot?#iefix') format('embedded-opentype'),
         url('/fonts/ClearSans-BoldItalic.woff') format('woff'),
         url('/fonts/ClearSans-BoldItalic.ttf') format('truetype'),
         url('/fonts/ClearSans-BoldItalic.svg') format('svg');
}


html, body {
	width: 100%;
	height: 100%;
}

body {
	font-size: 16px;
	font-family: 'Clear Sans', sans-serif;
	color: #000;
	background: #fff;
    min-width: 980px;
}

body.noscroll {
	overflow: hidden;
	transition: none;
	padding-right: 16px;
}

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	
}

body > * {
	transition: 200ms all ease-in-out;
}

::-moz-selection {
    color: #fff;
	background: #016c9b;
}

::selection {
	color: #fff;
	background: #016c9b;
}


b, strong {
	font-weight: 700;
}

main i, main em {
	font-style: italic;
}

h2 {
	font-size: 52px;
	line-height: 60px;
	color: #003c58;
	margin: 37px 0;
}
h3, .static h1 {
	font-size: 32px;
	 color: #003c58;
	 margin: 27px 0;
}

h2 a {
	color: #003c58;
	text-decoration: none;
	border-bottom: 1px solid #dfe3e6;
}

h2 a:hover {
	border-bottom-color: #0090d0;
	color: #0090d0;
}

input, textarea, button {
	font-family: 'Clear Sans', sans-serif;
}

input[type="text"], textarea {
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15) inset;
	border: 1px solid #d9d9d9;
	border-radius: 3px;
	width: 100%;
	font-size: 16px;
}

input[type="text"] {
	height: 36px;
	padding: 0 5px;
}

textarea {
	height: 176px;
	resize: none;
	padding: 8px 5px;
}

input[type="text"]:focus, textarea:focus {
	border-color: #000;
}

button {
	-webkit-appearance: default-button;
	cursor: pointer;
	background: #fff;
	border: 1px solid #0090d0;
	border-radius: 4px;
	color: #0090d0;
	font-size: 13px;
	text-align: center;
	width: 128px;
	height: 42px;
}

button:hover {
	color: #fff;
	background: #0090d0;
}

/* valid */

input[type="text"].error, textarea.error {
	border-color: #ff4e4e;
}

button[disabled] {
	opacity: 0.5;
}

button[disabled]:hover  {
	background: #fff;
	color: #0090d0;
}

.validateline {
	position: relative;
}

.validateline .invalidMessage {
	position: absolute;
	bottom: -34px;
	left: 0;
	padding: 9px 16px 13px;
	border-radius: 5px;
	background: rgba(255, 59, 59, 0.9);
	font-size: 16px;
	color: #fff;
	display: none;
}

.validateline .invalidMessage:before {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 6px 6px 6px;
	border-color: transparent transparent rgba(255, 59, 59, 0.9) transparent;
	position: absolute;
	top: -6px;
	left: 20px;
}

/* !valid */

img {
	max-width: 100%;
    max-height: 100%;
    height: auto;
/*    width: auto; */
}

a { 
   color: #0090d0;
}
a:visited { 
   color: #0090d0;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
 
.clearfix:after {
  clear: both;
}

.left {
	float: left;
}

.right {
	float: right;
}

.ta_l {
	text-align: left;
}

.ta_r {
	text-align: right;
}

.iblock {
	display: inline-block;
	vertical-align: middle;
}
.comm_item .iblock h3 {
	margin-top:0px;  margin-bottom:10px; 
}

.comm_item .iblock img { 
	margin-top:20px;
}
#command .comm_item .iblock img {
    margin-top:0px;
}


.iblock_top {
	display: inline-block;
	vertical-align: top;
}

.table {
	display: table;
}

.table-cell {
	display: table-cell;
	vertical-align: top;
}

.container {
	margin: 0 auto;
	width: 100%;
	max-width: 1600px;
    min-width: 980px;
}

.b_top {
	border-top: 1px solid #e6e6e6;
}

.blue_bg {
	background: #0090d0;
	color: #fff;
}

.blue_bg h2, .blue_bg h3, .blue_bg h4 {
	color: #fff;
}

.grey_bg {
	background-color: #f5f5f5;
}

/* header */

header .logo {
	float: left;
	margin: 48px 0 0 64px;
	width: 15.9%;
}

header .logo:hover {
	opacity: 0.8;
}

header .logo img {
	display: block;
	max-width: 100%;
	border-bottom: 4px solid #0090d0;
	padding-bottom: 51px;
}

header .nav_block {
	width: 75%;
	float: right;
}

header .top_h {
	background-color: #f7f7f7;
	padding: 13px 32px 11px;
	margin-bottom: 51px;
}
header.with-submenu .top_h {
	margin-bottom: 31px;
}

header h1 {
	font-size: 12px;
	line-height: 24px;
	text-transform: uppercase;
	color: #000;
	float: left;
}

header address {
	text-align: right;
	line-height: 24px;
}

header address a {
	font-size: 12px;
	color: #000000;	
	vertical-align: middle;
	text-decoration:none;
	border-bottom: 1px solid #d2d2d2;
	margin-right: 27px;
}

header address a:hover {
	border-bottom-color: #000;
}

header address strong {
	font-size: 18px;
	vertical-align: middle; 
	white-space: nowrap;
}

#navigation {
	background: #fff;
	transition: none;
}

#navigation .nav-wrapper {
    margin: 0 0 0 32px;
}

#topn {
	font-size: 0;
}

#topn a, #navigation .phone, #navigation .rss {
	color: #003c58;
	font-size: 14px;
	line-height: 24px;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-block;
	vertical-align: top;
	margin-right: 22px;
	border-top: 3px solid transparent;
	padding: 6px 0px 24px;
}

#topn a:hover {
	color: #0090d0;
}

#topn a:first-child, #navigation .phone, #navigation .rss {
	display: none;
}

#topn a:first-child {
	margin-right: 172px;
}

#navigation .phone {
    position: absolute;
    right: 0;
    top: 0;
} 
#navigation .rss {
	position: absolute;
    right: 14em;
    top: 9px;
}

#topn a.active {
	border-top-color: #0090d0;
}


.subnav { display:none; } 
.subnav.current {display: inline-block;}
.subnav.activated { display: block; zIndex:2000; background-color: #ffffff;} 
.subnav a {
	color: #003c58;
	font-size: 13px;
	text-transform: uppercase;
	text-decoration: none;
	margin-right:22px;
}
.subnav span { color: #444444; padding-right:12px; text-transform: uppercase;  font-size:13px;}
.menu-fixed .subnav { margin-bottom: 5px; }
.menu-fixed #subnav_blog { margin-left: 239px; } 
.menu-fixed #subnav_company { margin-left: 439px; } 
.menu-fixed .subnav span { 
    font-size: 11px; 
}
.menu-fixed .subnav a { 
	font-size: 11px; padding-bottom: 5px;
}
.menu-fixed .topbanner { display: none; } 
#navigation .topbanner img { max-width:1000px; }
#navigation a.infixedmenu  { display: none; }
#navigation.menu-fixed a.infixedmenu { display: inline-block;} 

.subnav a.current { font-weight: bold; }
.subnav a.current::before { content: '▶'; padding-right: 2px; position: relative; top:-1px;}

.fixed_mini_head {
    position: fixed;
    margin: 0;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    box-shadow: 0 0 5px #5A5858;
    background: #fff;
    padding: 5px 32px 0;
    display: none;
    transition: none;
    height: 60px;
}

.fixed_mini_head .mini_nav {
    width: 26px;
    margin: 14px 0 0;
}

.menu-fixed#navigation{
	position: fixed;
	margin: 0;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	box-shadow: 0 0 5px #5A5858;
}

.menu-fixed#navigation .nav-wrapper {
	max-width: 1600px;
	position: relative;
    margin: 0 auto;
	padding-right: 180px;
}

.menu-fixed#navigation #topn {
    padding: 0 32px 0 64px;
}

.menu-fixed #topn a:first-child, .menu-fixed#navigation .phone, .menu-fixed#navigation .rss {
	display: inline-block;
	padding-bottom: 0;
}


.menu-fixed #topn a {
	font-size: 11px;
	padding: 16px 0 3px;
}

.menu-fixed #topn a:first-child {
	padding: 5px 0 0; float: left;
}

.menu-fixed#navigation .phone {
	font-size: 14px;
	padding: 16px 0 17px 0;
}

.menu-fixed  a:hover img {
	opacity: 0.8;
}

#menu-list {
    display: none;
}

#navigation img {
    max-width: 104px;
}

/* !header */

/* slider */

#sl-wr {
	background: url('../img/sl_bg.jpg') no-repeat right top / cover;
}

#sl-wr .container {
	padding: 24px 0 55px 64px;
}

#sl-wr h2 {
	color: #003c58;
	font-size: 26px;
	line-height: 24px;
	margin: 25px 0;
}

.bn-carousel .owl-stage {
	width: 100%;
	white-space: nowrap;
	font-size: 0;
}

.bn-carousel .owl-item {
	float: none;
	display: inline-block;
	vertical-align: top;
	opacity: 0.5;
}

#sl-wr .sl-item {
	padding: 0 64px;
	white-space: normal;
	font-size: 14px;
	color: #003c58;
	border: 2px solid #003c58;
	height: 394px;
	width: 825px;
}

#sl-wr .sl-item h3 {
	font-size: 32px;
	line-height: 36px;
	margin: 43px 0 26px;
	transition: 0.2s all ease-in-out;
}

#sl-wr .sl-item p {
	font-size: 13px;
	line-height: 24px;
	transition: 0.2s all ease-in-out;
}

#sl-wr .activeEl.owl-item {
	opacity: 1;
}

#sl-wr  .activeEl .sl-item  h3 {
	font-size: 32px;
	line-height: 36px;
}

#sl-wr  .activeEl .sl-item  p {
	font-size: 16px;
	line-height: 26px;
}

.owl-carousel .owl-controls .owl-prev, .owl-carousel .owl-controls .owl-next  {
	position: absolute;	
	width: 28px;
	height: 54px;
	background: url('../img/icons.png') -5px -579px no-repeat;
	font-size: 0;
	top: 50%;
	margin-top: -27px;
}

.owl-carousel .owl-controls .owl-prev:hover, .owl-carousel .owl-controls .owl-next:hover {
	opacity: 0.7;
}

.owl-carousel .owl-controls .owl-next {
	background-position: -57px -579px;
}

.owl-carousel .owl-controls .owl-prev {
	left: -78px;
}

.owl-carousel .owl-controls .owl-next {
	right: -92px;
}

.bn-carousel.owl-carousel .owl-controls .owl-prev, .bn-carousel.owl-carousel .owl-controls .owl-next {
	top: 154px;
	margin: 0;
}

.bn-carousel.owl-carousel .owl-controls .owl-prev {
	left: -46px;
}

.bn-carousel.owl-carousel .owl-controls .owl-next {
	right: 16px;
}

.owl-dots {
	margin: 34px 0 0; text-align:center;
}

.owl-dots .owl-dot {
	display: inline-block;
	margin-right: 20px;
	zoom: 1;
}

.owl-dots .owl-dot span {
	width: 12px;
	height: 12px;
	background: #e6e6e6;
	display: block;
	-webkit-backface-visibility: visible;
	-webkit-transition: opacity 200ms ease;
	-moz-transition: opacity 200ms ease;
	-ms-transition: opacity 200ms ease;
	-o-transition: opacity 200ms ease;
	transition: opacity 200ms ease;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

.bn-carousel .owl-dots .owl-dot span {
	background: #ffffff;
}

.owl-dots .owl-dot.active span, .owl-dots .owl-dot:hover span {
	background: #0090d0;
}

/* !slider */

/* partners */

.partners {
	font-size: 0;
	padding: 0 128px;
	margin: 80px auto 64px;
}

.partners .p_item {
	width: 22.1%;
	display: inline-block;
	vertical-align: top;
	margin: 0 2.9% 32px 0;
	font-size: 16px;
	line-height: 24px;
	color: #000;
}

.partners .p_item a {
	display: block;
	border: 1px solid #e6e6e6;
	height: 134px;
	text-align: center;
	text-decoration: none;
	background-color: #fff;
	margin-bottom: 13px;
	padding: 10px 24px;
}

.partners .p_item a:after, .partners .p_item img  {
	display: inline-block;
	vertical-align: middle;
}

.partners .p_item a:after {
	content: '';
	width: 0;
	height: 100%;
}

/* !partners */

/* development */

#develop {
	padding: 22px 144px 60px 128px;
}

#develop .prt-item h3 {
	font-size: 24px;
	line-height: 32px;
	margin: 6px 0 18px;
}

#develop .prt-item a {
	color: #0090d0;
	text-decoration: none;
	border-bottom: 1px solid #77b7df;
}

#develop .prt-item a:hover{
	color: #003c58;
	border-bottom-color: #003c58;
}

#develop .prt-item p {
	font-size: 13px;
	line-height: 24px;
}

.prt-carousel .owl-dots {
	text-align: center;
	margin-top: 80px;
}

/* !development */

/* system */

#system {
	padding: 29px 128px;
}

#system .about {
	margin: 42px 0 64px;
}

#system .about p {
	font-size: 18px;
	line-height: 30px;
}

#system .about .logo {
	width: 22.1%;
	padding-top: 9px;
}

#system .about .logo img {
	max-width: 100%;
}

#system  .prop {
	border-top: 1px solid #33a6d9;
	padding: 59px 0;
}

#system  .prop .heading {
	width: 22.1%;
	padding-top: 71px;
}

#system h3 {
	font-size: 30px;
	line-height: 36px;
	font-weight: 700;	
}

#system  .prop .heading + .table-cell {
	font-size: 0;
}

#system  .prop .heading + .table-cell .iblock_top {
	width: 43.4%;
	margin: 0 5.7% 49px 0;
	font-size: 13px;
	line-height: 24px;	
}

#system  .prop .heading + .table-cell .iblock_top:nth-last-child(2), #system  .prop .heading + .table-cell .iblock_top:last-child {
	margin-bottom: 0;
}

#system  .prop .heading + .table-cell .iblock_top:before {
	content: '';
	display: block;
	background: url('../img/icons.png') 0 0 no-repeat;
}

#system  .prop .heading + .table-cell .iblock_top:first-child:before {
	width: 56px;
    height: 68px;
    background-position: -5px -501px;
}

#system  .prop .heading + .table-cell .iblock_top:nth-child(2):before {
	width: 58px;
    height: 58px;
    background-position: -5px -250px;
	margin: 8px 0 0 2px;
}

#system  .prop .heading + .table-cell .iblock_top:nth-child(3):before {
	width: 59px;
    height: 50px;
    background-position: -5px -377px;
	margin-top: 7px;
}

#system  .prop .heading + .table-cell .iblock_top:nth-child(4):before {
	width: 77px;
    height: 60px;
    background-position: -5px -180px;
}

#system  .prop .heading + .table-cell .iblock_top:nth-child(5):before {
	width: 60px;
    height: 60px;
    background-position: -5px -110px;
	margin: 7px 0 0 2px;
}

#system  .prop .heading + .table-cell .iblock_top:nth-child(6):before {
	width: 72px;
    height: 71px;
    background-position: -5px -29px;
	margin: 0 0 0 -4px;
}

#system  .prop .heading + .table-cell .iblock_top:nth-child(7):before {
	width: 44px;
    height: 54px;
    background-position: -5px -437px;
	margin: 0 0 0 2px;
}

#system  .prop .heading + .table-cell .iblock_top:last-child:before {
	width: 63px;
    height: 49px;
    background-position: -5px -318px;
	margin: 3px 0 0 -4px;
}

#system  .prop h4 {
	font-size: 20px;
	line-height: 24px;
	margin: 13px 0 9px;
}

.more-about {
	padding: 29px 44px;
	display: none;
	font-size: 18px;
	line-height: 22px;
	color: #FFF;
	text-decoration: none;
}
	
.more-about img {
	width: 13.2%;
	vertical-align: middle;
	display: inline-block;
	min-width: 64px;
}
	
.more-about span {
	display: inline-block;
	vertical-align: middle;
	width: 82%;
	text-align: center;		
}
	
.more-about:after {
	content: '';
	width: 14px;
	height: 26px;
	background: url('../img/icons.png') -2px -649px no-repeat;
	display: inline-block;
	vertical-align: middle;
}

/* !system */

/* links */

#links {
	padding: 30px 128px;
}

#links h3 {
	color: #003c58;
	font-size: 26px;
	margin: 11px 0;
}

#links .l_item {
	width: 384px;
	height: 126px;
	margin: 0 28px 30px 0;
	border: 1px solid #0090d0;
	position: relative;
	padding: 19px 32px;
	font-size: 13px;
	line-height: 18px;
}

#links .l_item:last-child {
	margin-right: 0;
}

#links .l_item:after {
	content: '';
	position: absolute;
	width: 14px;
    height: 14px;
    background: url('../img/icons.png') no-repeat -5px -5px;
	right: 8px;
	top: 8px;
}

#links .l_item h4 {
	font-size: 24px;
	line-height: 30px;
	margin-bottom: 17px;
}

#links .l_item h4 a {
	color: #0090d0;
	text-decoration: none;
	border-bottom: 1px solid #d4e3ee;
}

#links .l_item h4 a:hover{
	color: #003c58;
	border-bottom-color: #003c58;
}

/* !links */

/* articles */

#blog {
	padding: 23px 128px 0;
	font-size: 0;
}

#blog .art_item {
	width: 27.9%;
	display: inline-block;
	vertical-align: top;
	margin: 0 64px 68px 0;
}

#blog .art_item time {
	color: #b2b2b2;
	font-size: 12px;
	margin-bottom: 4px;
	font-weight: 700;
	text-transform: uppercase;
}

#blog .art_item h3, #blog .art_item h3 a {
	color: #0090d0;
	font-size: 24px;
	line-height: 32px;
}

#blog .art_item h3 a {
	text-decoration: none;
	border-bottom: 1px solid #dfedf7;
}

#blog .art_item h3 a:hover, .list .list-item h3 a:hover {
	color: #003c58;
	border-bottom-color: #003c58;
}

#blog .art_item p {
	font-size: 13px;
	line-height: 24px;
	margin: 20px 0;
}

#blog .art_item .author {
	display: none;
	border-top: 1px solid #0090d0;
	padding-top: 17px;
	position: relative;
}

#blog .art_item .author:before{
	content: '';
	position: absolute;
	top: -1px;
	left: 64px;
	height: 11px;
	width: 17px;
	border-top: 1px solid #fff;
	border-left: 1px solid #0090d0;
}

#blog .art_item .author:after {
	content: '';
	position: absolute;
	top: -6px;
	left: 73px;
	height: 21px;
	width: 1px;
	background: #0090d0;
	-moz-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    -webkit-transform: rotate(60deg);
	transform: rotate(60deg);
}

#blog .art_item .author img, #blog .art_item .author span {
	display: inline-block;
	vertical-align: middle;
}

#blog .art_item .author img {
	border-radius: 50%;
}

#blog .art_item .author span {
	font-size: 13px;
	line-height: 24px;
	margin-left: 16px;
}

#blog .art_item:nth-child(3n + 3) {
	margin-right: 0;
}

#blog .art_item:nth-child(2), #blog .art_item:nth-child(3) {
	width: 44.1%;
}

#blog .art_item:nth-child(2) .author, #blog .art_item:nth-child(3) .author {
	display: block;
}

/* !articles */

/* news */

#news {
	font-size: 0;
	padding: 52px 128px 66px;
}

#news .news_item {
	width: 14.7%;
	margin-right: 5.3%;
	display: inline-block;
	vertical-align: top;
	font-size: 13px;
}

#news .news_item:last-child {
	margin-right: 0;
}

#news h3 {
	font-size: 26px;
}

#news h3 a {
	border-bottom: 1px solid #e1e5e7;
	color: #003c58;
	text-decoration: none;
}

#news h3 a:hover {
	border-bottom-color: #0090d0;
	color: #0090d0;
}

#news .news_item time {
	color: #b2b2b2;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
}

#news .news_item time + a {
	color: #000000;
	text-decoration: none;
	font-size: 14px;
	line-height: 20px;
	border-bottom: 1px solid #e6e6e6;
}

#news .news_item time + a:hover {
	border-bottom-color: #000000;
}

/* !news */



/* command */

.comm_bg {
	background: url('../img/comm-bg.png') no-repeat center 146px #f5f5f5;
}

#command {
	padding: 27px 96px 36px 128px;
}

#command .comm_item {
	font-size: 0;
	margin: 69px 0;
}

#command .comm_item .iblock:first-child {
	width: 17.6%;
}

#command .comm_item .iblock:nth-child(2) {
	width: 208px;
}

#command .comm_item .iblock:nth-child(2) {
	border-radius: 50%;
	border: 1px solid #0090d0;
	padding: 15px;
}

#command .comm_item img {
	max-width: 100%;
	display: block;
	border-radius: 50%;
}

#command .comm_item .iblock:last-child {
	width: 57.6%;
	padding-left: 48px;
}

#command .comm_item h3 {
	font-size: 26px;
	line-height: 32px;
}

#command .comm_item p {
	font-size: 15px;
	line-height: 26px;
}

/* !command */

/* vacancies */

#vacancies {
	padding: 47px 128px 43px;
}

#vacancies h3, #vacancies ul {
	display: inline-block;
	vertical-align: top;
}

#vacancies h3 {
	width: 20.3%;
	color: #003c58;
	font-size: 26px;
}

#vacancies ul {
	width: 75%;
}

#vacancies ul  li {
	margin-bottom: 15px;
	padding-left: 25px;
	position: relative;
}

#vacancies ul  li:before {
	position: absolute;
	left: 0;
	top: 0;
	content: '—';
	color: #0090d0;
	font-size: 18px;
	line-height: 24px;
}

#vacancies a {
	color: #0090d0;
	font-size: 18px;
	line-height: 24px;
	text-decoration: none;
	border-bottom: 1px solid #e1eef7;
}

#vacancies a:hover {
	color: #003c58;
	border-bottom-color: #003c58;
}

/* !vacancies */

/* contacts */

.map {
	/*background: url('../img/map.png') no-repeat center top / cover;*/
	padding: 45px 0 119px;
}

#contacts {
	margin: 0 0 0 64px;
	padding: 31px 64px 54px;
	background: #fff;
	width: 60%;
	height: auto;
}

#contacts h2 {
	margin: 0 0 37px;
}

#contacts h3 {
	font-size: 18px;
	margin: 25px 0;
}

#contacts address {
	font-size: 0;
}

#contacts address .heading, #contacts address p  {
	display: inline-block;
	vertical-align: top;
	margin-bottom: 26px;
}

#contacts address .heading {
	font-size: 14px;
	color: #b2b2b2;
	width: 16.7%;
}

#contacts address p {
	font-size: 18px;
	width: 83%;
}

#contacts button {
	margin-top: 8px;
}

/* !contacts */

.container#doc { 
   margin: 0 0 0 64px; 
  padding: 1px 64px 54px;
  width: auto;
}


/* footer */

footer {
	padding: 35px 64px;
	font-size: 12px;
}

footer img {
	vertical-align: middle;
}

footer .dev {
	color: #b2b2b2;
}

/* !footer */

/* popup */

.overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 15;
	text-align: center;
	display: none;
	transition: none;
	overflow: auto;
}

.overlay:after {
	display: inline-block;
	vertical-align: middle;
	width: 0;
	height: 100%;
	content: '';
}

.popup {
	display: inline-block;
	vertical-align: middle;
	background: #ffffff;
	text-align: left;
	position: relative;
	width: 45.2%;
}

.close-icon {
	position: absolute;
	width: 28px;
	height: 28px;
	background: url('../img/icons.png') -54px -647px no-repeat;
	top: 30px;
	right: 30px;
	cursor: pointer;
	opacity: 0.7;
}

.close-icon:hover {
	opacity: 1;
}

.popup .pp_body {
	padding: 26px 48px;
}

.popup .heading_p {
	font-size: 36px;
	color: #003c58;
	margin-bottom: 23px;
}

.popup label, .popup input {
	display: block;
}

.popup input, .popup textarea {
	margin-bottom: 20px;
}

.popup input#name {
	width: 79.7%;
}

.popup label {
	font-size: 16px;
}

.popup label.req:after {
	content: '*';
	color: #ff1a1a;
	margin-left: 4px;
}

.popup .btn-pp {
	border-top: 1px solid #f2f2f2;
	padding: 32px 48px;
}

/* !popup */

/* breadcrumbs */

#breadcrumbs {
	background: #f2f2f2;	
	margin-top: -1px;
}

#breadcrumbs .container {
	padding: 16px 64px;
}

#breadcrumbs  * {
	color: #b2b2b2;
	font-size: 12px;
	line-height: 24px;
}

#breadcrumbs  .bc-i:after {
	content: '→';
	font-family: Arial, sans-serif;
	margin: 0 4px;
}

#breadcrumbs  .bc-i:last-child:after {
	content: '↓';
}

#breadcrumbs  a:hover {
	color: #000;
}

/* !breadcrumbs */

/* infopage list */

.list {
	padding: 4px 64px;
}

.list .list-item {
	padding: 0 64px;
	margin: 0 0 60px;
}

.list .list-item time {
	font-size: 12px;
	color: #b2b2b2;
	font-weight: 700;
	text-transform: uppercase;
}

.list .list-item h3 {
	font-size: 22px;
	line-height: 23px;
	margin: 2px 0 21px;
}

.list .list-item h3 a {
	color: #0090d0;
	text-decoration: none;
	border-bottom: 1px solid #cbe2f2;
}

.list .list-item p {
	font-size: 16px;
	line-height: 24px;
	color: #000;
	margin: 0 0 16px;
}

/* !infopage list */

/* pagination */

#pagination {
	padding: 1px 128px 22px;
	margin-bottom: 60px;
}

#pagination:before {
	display: block;
	content: '';
	width: 160px;
	height: 1px;
	background: #e6e6e6;
	margin-bottom: 21px;
}

#pagination a {
	color: #0090d0;
	font-size: 24px;
	font-weight: 700;
	text-decoration: none;
	margin-right: 34px;
}

#pagination a.active {
	color: #000;
}

#pagination a:hover {
    color: rgb(5, 178, 255);
}

/* !pagination */

/* infopage */

#content {
	padding: 16px 64px;
	padding-bottom: 50px;
	padding-top: 0;
}

#content main {
	padding: 0 64px 70px;
	font-size: 18px;
	line-height: 28px;
}

main time {
	color: #b2b2b2;
	font-size: 13px;
}

main a {
	color: #0090d0;
	text-decoration: underline;
}

main p {
	margin: 30px 0;
}
main td p { 
	margin: 5px 0;
}
 
main pre {
	padding: 6px 12px;
	background: #f2f2f2;
	color: #444444;
	font-size: 16px;
    font-family: 'Clear Sans', sans-serif;
}

main ul, main ol  {
	padding: 0 32px;
	margin: 0 0 40px;
}

/*
main ol {
	counter-reset: licounter;
}
*/

main ul li, main ol li{
	padding: 0 32px;
	position: relative;
	margin-bottom: 16px;
}

main ul li:before, main ol li:before {
	position: absolute;	
	color: #0090d0;
	font-size: 18px;
	font-weight: 700;
	line-height: 28px;
	left: 0px;
}

main ul li:before {
/*	content: '•'; */
}

/*
main ol li:before {
	counter-increment: licounter;
	content: counter(licounter)'.';
}
*/

main h3 {
	font-size: 32px;
	color: #003c58;
	margin: 44px 0 30px;
}

main h4 {
	color: #003c58;
	font-size: 24px;
	line-height: 28px;
	margin: 44px 0 16px;
}

main table {
	font-size: 14px;
	line-height: 18px;
	margin: 16px 0 30px;
}

main table tbody tr  { vertical-align: top; }
main table thead {
	border-bottom: 1px solid #e6e6e6;
}

main table thead td, main table thead th {
	font-weight: 700;
	padding: 4px 0;
}

main table tbody td {
	padding: 15px 0 5px;
}

main table tbody td, main table thead td, main table thead th { 
	 font-size: 14px;
}

.table_fake .column{
	border-top: 1px solid #e6e6e6;
	font-size: 13px !important;
	line-height: 16px !important;
	padding: 5px 0;
}

.table_fake p {
	margin: 10px 0;
}

.table_fake span {
	color: #b2b2b2;
}

body time { display: inline-block; } 
.source { color: #b2b2b2; padding: 0 10px; }
.sectionref { color: #b2b2b2; margin: 0 10px;}
.sectionref:before { content: '#'; }

/* !infopage */

/* team page */
#teampage { padding: 27px 96px 36px 128px; }
#teampage .comm_item .iblock:nth-child(2) { width: 800px; padding-left: 40px; vertical-align: top;} 
#teampage .comm_item { padding-bottom: 20px; } 
#teampage .comm_item h3 { font-size: 28px; color: #003c58; } 
/* !team page */

.nav_block .press_menu {
	float: right;
	margin-right: 35px !important;
}

.nav_block .menu-fixed .press_menu {
	margin-right: 200px !important;
}

#company {
	padding: 27px 96px 36px 128px;
}
#company p { text-indent: 16mm; } 

@media screen and (max-width: 1060px) {
	header .logo {
		width: 17.6%;
	}
	
	header address a {
		font-size: 14px;
	}
	
	header address strong, header address a {
		vertical-align: top;
	}
	
	#topn a {
		margin-right: 24px;
	}
	
	#topn a:first-child {
		margin-right: 72px;
	}
	
	#sl-wr .container {
		padding: 24px 0 55px 44px;
	}
	
	.bn-carousel.owl-carousel .owl-controls .owl-prev {
		left: -39px;
	}
	
	.partners {
		font-size: 0;
		padding: 0 96px;
		margin: 80px auto 64px;
	}
	
	.partners .p_item {
		width: 21.7%;
		margin: 0 2.8% 32px 0;
		font-size: 13px;
		line-height: 20px;
	}
	
	#develop {
		padding: 22px 112px 60px 96px;
	}
	
	.owl-carousel .owl-controls .owl-prev {
		left: -64px;
	}
	
	.owl-carousel .owl-controls .owl-next {
		right: -72px;
	}
	
	#develop .prt-item h3 {
		font-size: 18px;
		line-height: 26px;
	}
	
	#develop .prt-item p {
		font-size: 12px;
		line-height: 20px;
	}
	
	#system {
		padding: 29px 96px;
	}
	
	#system h3 {
		font-size: 24px;
		line-height: 32px;
	}
	
	#links {
		padding: 30px 96px;
	}
	
	#blog {
		padding: 23px 96px 0;
	}
	
	#blog .art_item h3, #blog .art_item h3 a {
		font-size: 18px;
		line-height: 26px;
	}
	
	#blog .art_item p {
		font-size: 12px;
		line-height: 20px;
	}
	
	#blog .art_item:nth-child(2), #blog .art_item:nth-child(3) {
		width: 41.5%;
	}
	
	#news {
		padding: 52px 96px 66px;
	}
	
	#news .news_item time + a {
		font-size: 12px;
		line-height: 18px;
	}
	
	#news .news_item {
		width: 15.8%;
		margin-right: 4.1%;
	}
	
	#command {
		padding: 27px 32px 36px 96px;
	}
	
	#command .comm_item .iblock:first-child {
		width: 16.5%;
	}
	
	#command .comm_item .iblock:last-child {
		width: 58.7%;
	}
	
	#command .comm_item p {
		font-size: 13px;
		line-height: 24px;
	}
	
	#vacancies {
		padding: 47px 96px 43px;
	}
	
	#contacts {
		margin: 0 0 0 48px;
		width: 54.4%;
		padding: 31px 48px 54px;
	}
	
	footer {
		padding: 35px 48px;
	}
	
	footer .dev {
		display: none;
	}
	
	#teampage .comm_item .iblock:nth-child(2) { width: 440px; } 

}

/* !1000 */

.lai { float: left;  margin: 7px 10px 10px 0; clear: both;}
.rai { float: right; margin: 7px 10px 10px 0; clear: both;}



	


