@charset "utf-8";
@font-face {
  font-family: 'MullerNarrow-Light';
  src: url('/assets/fonts/MullerNarrow-Light.eot');
  src: url('/assets/fonts/MullerNarrow-Light.woff2') format('woff2'),
       url('/assets/fonts/MullerNarrow-Light.woff') format('woff'),
       url('/assets/fonts/MullerNarrow-Light.ttf') format('truetype'),
       url('/assets/fonts/MullerNarrow-Light.svg#MullerNarrow-Light') format('svg'),
       url('/assets/fonts/MullerNarrow-Light.eot#iefix') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'MullerNarrow-ExtraBold';
  src: url('/assets/fonts/MullerNarrow-ExtraBold.eot');
  src: url('/assets/fonts/MullerNarrow-ExtraBold.woff2') format('woff2'),
       url('/assets/fonts/MullerNarrow-ExtraBold.woff') format('woff'),
       url('/assets/fonts/MullerNarrow-ExtraBold.ttf') format('truetype'),
       url('/assets/fonts/MullerNarrow-ExtraBold.svg#MullerNarrow-ExtraBold') format('svg'),
       url('/assets/fonts/MullerNarrow-ExtraBold.eot#iefix') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}
/**
 * -------------------
 *  Defult CSS 
 * -------------------
 */
body {
  font-family: 'MullerNarrow-Light';
  font-size: 16px;
  font-style: none;
  line-height: 26px;
  font-weight: 300;
  overflow-x: hidden !important;
  text-align: left;
  position: relative;
  background-color: #edf4fe;
}
a,
.nav li a {
  text-decoration: none !important;
  display: inline-block;
  cursor: pointer;
  font-family: 'MullerNarrow-Light';
  padding: 0px;
  background-color: transparent;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a:hover,
.nav li a:hover {
  background-color: transparent;
}
a:focus,
.nav li a:focus {
  background-color: transparent;
  outline: 0 !important;
}
p, ul, ol {
  font-family: 'MullerNarrow-Light';
  font-size: 15px;
	line-height: 1.2;
  margin-bottom: 14px;
  font-weight: normal;
}
p:last-child {
  /*margin-bottom: 0px;*/
}
/**
 * ---------------------
 *  Defult Halping Class
 * ---------------------
 */
.overflow {
  overflow: hidden;
}
.relative {
  position: relative;
}
.display-table {
  display: table;
  width: 100%;
  height: 100%;
}
.display-flex {
  display: flex;
  flex: 1;
}
.vertical-middle {
  display: table-cell;
  float: none;
  vertical-align: middle;
}
  /**
     * ----------------
     *  Defult CSS 
     * ----------------
     */
  html *,
  body {
    text-align: center;
  }
  h1 {
	  font-family: 'MullerNarrow-Light';
    font-size: 24px;
    font-weight: normal;
	  text-transform: uppercase;
	  color: #dde4f2;
  }
  h2 {
	  font-family: 'MullerNarrow-Light';
    font-size: 24px;
    font-weight: normal;
	  text-transform: uppercase;
	  color: #517bd4;
  }
 /**
     * -----------------
     * Nav Defult Style
     * -----------------
     */
  ul,
  li {
	  list-style-position: inside;
    margin-top: 0;
    padding: 0;
    
  }
  li {
    
  }
/*
|===================
| GENERAL CSS
|===================
*/
.fixed-bg {
  background-attachment: fixed;
}
header{
}
/*
|===================
| NAVBAR
|===================
*/
.navbar {
  border: none;
  background: transparent;
  min-height: initial;
  padding: 10px 0 20px 0;
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.navbar-brand img {
  margin-top: -5px;
}
.navbar-nav {
	display: flex;
	position: relative;
	justify-content: center;
  margin-right: 0;
	float: none;
	text-align: center;
}
.navbar-nav > li {
	float: none;
  padding: 0 15px;
}
.navbar-nav > li:last-child {
  padding-right: 0;
}
.navbar-nav > li > a {
  color: #fff;
  font-size: 18px;
  padding: 15px 0;
}
.navbar.active {
  padding: 6px 0 8px 0;
  -webkit-box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1) ;
  -moz-box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1) ;
  -ms-box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1) ;
  -o-box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1) ;
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1) ;
}
.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
  color: #fff;
}
.navbar-nav > li > a:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 3px;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.navbar-nav > li > a:hover:before,
.navbar-nav > li.active > a:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  background-color: #fff;
}
.navbar-nav > li > a .fa {
  color: #f03c4d;
  margin: 0 8px 0 0;
}
.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
  background: none;
}
.strict {
  background-color: rgba(0, 0, 0, 0.9);
}
.collapse {
  display: block;
}
.navbar-toggle .icon-bar {
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
	.navbar {
		padding: 0px;
	}
	.navbar-nav {
		display: block;
	}
}
/*header-block ========================================*/
.header-block{
	display: block;
	position: relative;
	height: auto;
	min-height: 406px;
	background-color: #4570cc;
	/*background: url(/assets/images/back-top.jpg) no-repeat top center;*/
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#edf4fe+0,edf4fe+100&0.3+0,0+100 */
	background: -moz-radial-gradient(center, ellipse cover,  rgba(237,244,254,0.3) 0%, rgba(237,244,254,0) 100%),  url(/assets/images/back-top.jpg) no-repeat top center; /* FF3.6-15 */
	background: -webkit-radial-gradient(center, ellipse cover,  rgba(237,244,254,0.3) 0%,rgba(237,244,254,0) 100%), url(/assets/images/back-top.jpg) no-repeat top center; /* Chrome10-25,Safari5.1-6 */
	background: radial-gradient(ellipse at center,  rgba(237,244,254,0.3) 0%,rgba(237,244,254,0) 100%), url(/assets/images/back-top.jpg) no-repeat top center; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	background-size: cover;
	padding: 85px 0px 35px 0px;
}
.site-name{
	margin-bottom: 50px;
}
.present-block{
	display: inline-block;
	position: relative;
	margin-left: auto;
	margin-right: auto;
}
.present-block p{
	font-size: 18px;
	color: #dde4f2;
}
.pointer-icon-top{
	display: block;
	position: relative;
	clear: both;
	margin-top: 75px;
	text-align: center;
}
.pointer-icon-top img{
	display: inline-block;
	position: relative;
	margin-left: auto;
	margin-right: auto;
}
.header-block .plane{
	display: inline-block;
	position: absolute;
	left: 0px;
	bottom: -100px;
	z-index: 9;
	height: auto;
	max-width: 40%;
}
@media only screen and (max-width: 768px) {
	.header-block .plane{
		bottom: -60px;
	}
}
@media only screen and (max-width : 480px) {
	.header-block .plane{
		bottom: -30px;
	}
}
/*//header-block ======================================*/
/*content-blocks ========================*/
.content-block{
	display: block;
	position: relative;
	padding: 15px 0px;
}
.content-block .container-fluid{
	width: 90%;
}
.content-block .container-fluid > .row{
	margin-top: 80px;
}
.content-block div.content .number{
	display: inline-block;
	position: absolute;
	left: 15px;
	top: -15px;
	z-index: 1;
	font-family: 'MullerNarrow-ExtraBold';
	font-size: 88px;
	color: #dee7f8;
}
.content-block div.content h2{
	position: relative;
	z-index: 2;
	text-align: left;
}
.content-block div.content .content-text{
	background: url(/assets/images/back-kontent-text.png) no-repeat 60% 0%;
}
.content-block > .container-fluid > .row:nth-child(odd) div.content .content-text{
	padding-right: 10%;
}
.content-block > .container-fluid > .row:nth-child(even) div.content .content-text{
	padding-left: 5%;
	padding-right: 10%;
}
.content-block div.content p, .content-block div.content ul, .content-block div.content ul li{
	text-align: left;
	color: #5e6269;
}
.content-block > .container-fluid > .row:nth-child(odd) .content-image{
	text-align: right;
}
.content-block > .container-fluid > .row:nth-child(even) .content-image{
	text-align: left;
}
.content-block .content-image img{
	max-width: 100%;
	box-shadow: 0px 0px 15px 2px rgba(115,134,175,0.54);
}
@media only screen and (max-width: 1024px) {
	.content-block > .container-fluid > .row:nth-child(even) div.content .content-text{
		padding-left: 20%;
		padding-right: 0%;
	}
}
@media only screen and (max-width : 480px) {
	.content-block > .container-fluid > .row:nth-child(odd) div.content .content-text{
		padding-right: 0%;
	}
	.content-block > .container-fluid > .row:nth-child(even) div.content .content-text{
		padding-left: 5%;
		padding-right: 0%;
	}
}
/*//content-blocks ======================*/
/*service ===============================*/
#service{
	margin-top: 150px;
}
/*//service =============================*/
/*document-block =====================================*/
.document-block{
	display: block;
	position: relative;
	padding: 60px 0px;
	background-color: #4570cc;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#edf4fe+0,edf4fe+100&0.3+0,0+100 */
	background: -moz-radial-gradient(farthest-side at 30px 20px, rgba(237,244,254,0.3) 0%, rgba(237,244,254,0) 100%), #4570cc; /* FF3.6-15 */
	background: -webkit-radial-gradient(farthest-side at 30px 20px, rgba(237,244,254,0.3) 0%,rgba(237,244,254,0) 100%), #4570cc; /* Chrome10-25,Safari5.1-6 */
	background: radial-gradient(farthest-side at 30px 20px, rgba(237,244,254,0.3) 0%,rgba(237,244,254,0) 100%), #4570cc; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.document-block .container-fluid{
	width: 90%;
}
.document-block .number{
	display: inline-block;
	position: absolute;
	left: 15px;
	top: -15px;
	z-index: 1;
	font-family: 'MullerNarrow-ExtraBold';
	font-size: 88px;
	color: #dee7f8;
	opacity: .24;
}
.document-block h2.content-title{
	position: relative;
	z-index: 2;
	text-align: left;
	color: #dde4f2;
	margin-bottom: 30px;
}
.document-block .document-item{
	text-align: center;
}
.document-block .document-item img{
	margin-left: auto;
	margin-right: auto;
}
.document-block .document-item p{
	color: #dde4f2;
	font-size: 16px;
	line-height: 18px;
	margin-top: 15px;
	margin-bottom: 15px;
}
/*//document-block ======================*/
/*contact-block ==================================================*/
.contact-block{
		display: block;
	position: relative;
	overflow: hidden;
	height: auto;
	padding: 60px 0px;
	background: url(/assets/images/back-contakts.png) 20% -40px no-repeat;
}
.contact-block .container-fluid{
	width: 90%;
}
.contact-block .contact-text-item{
	padding-top: 20px;
}
.contact-block .contact-text-item .title-item{
	display: block;
	position: relative;
	clear: both;
}
.contact-block .number{
	display: inline-block;
	position: absolute;
	left: 0px;
	top: -30px;
	z-index: 1;
	font-family: 'MullerNarrow-ExtraBold';
	font-size: 88px;
	color: #dee7f8;
}
.contact-block h2.content-title{
	position: relative;
	z-index: 2;
	text-align: left;
	margin-bottom: 20px;
}
.contact-block .contact-text-item{}
.contact-block .contact-item{
	display: block;
	position: relative;
	clear: both;
	margin-bottom: 20px;
}
.contact-block .contact-item p{
	text-align: left;
	color: #5e6269;
	font-size: 15px;
	line-height: 18px;
}
.contact-block .mapa-item{}
.contact-block .mapa-wrap{
	display: block;
	position: relative;
	height: auto;
	min-height: 300px;
	box-shadow: 0px 0px 20px 10px rgba(115,134,175,0.54);
}
.contact-block .copy-item{
	margin-top: 40px;
}
.contact-block .support{
	font-size: 13px;
}
/*//contact-block ===========================*/
