html,body {
    height: 100%
    }
body {
    overflow-x: hidden;
	font-family: 'Roboto Condensed', sans-serif;
	line-height: 22px;
    font-weight: 400;
    font-style: normal;
	font-size:16px;
	padding-top: 80px;
 }
p {
    margin: 0 0 10px;
}
h1,h2,h3,h4,h5,h6{
	font-family: 'Roboto Condensed', sans-serif;
    font-weight: normal;
    font-style: normal;
}

a, a:hover, a:focus{outline:none;}
 
h3.title {
    margin: 25px 0 45px;
    font-size: 36px;
	text-transform:uppercase;
	letter-spacing:0.5px;
    color: #333;
    position: relative;
    font-weight: normal;
	text-align: center;
}

h3.title:before {
    background: #b0b0b0;
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: -20px;
    width: 250px;
    height: 1px;
    margin: auto;
    display: block;
    content: "";
}
h3.title:after {
    background: url(../images/hr.png) no-repeat center center #fff;
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: -23px;
    width: 50px;
    height: 7px;
    margin: auto;
    display: block;
    content: "";
}

div.scrollup {
  position: fixed;
  color: #fff;
  background-color: #295697;
  right: 20px;
  bottom: 0px;
  padding: 6px 20px;
  font-size: 18px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  cursor: pointer;
  display: none;
  text-align: center;
  z-index:9999;
}
div.scrollup:hover {
  background-color: #000;
}

.fonten{
    background-color: rgba(0,0,0,0.7);
	height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}


.navbar-nav {
    margin: 25px 0 10px;
}

/*.navbar-inverse {
    background-color: #030F20;
    border-color: #030F20;
}*/
.navbar-inverse {
    background-color: #fff;
    border-color: #f2f2f2;
}
.navbar-inverse .navbar-nav>.active>a, .navbar-inverse .navbar-nav>.active>a:focus, .navbar-inverse .navbar-nav>.active>a:hover {
    color: #333;
    background-color: #fff;
}

.navbar-brand {
    float: left;
    height: auto;
    padding: 15px 15px 10px;
    font-size: 26px;
    line-height: 20px;
    font-weight: bold;
}

.navbar-brand .logos{
	position:relative;
	display:table;
}

.navbar-brand .logos:before{
	background: url(../images/logo.png) no-repeat;
    position: relative;
    display: inline-block;
    content: '';
    width: 75px;
    height: 55px;
	margin-right:15px;
    background-size: 100%;
	
}

.navbar-brand .logos .logo-box {
	display: table-cell;
    vertical-align: middle;
    position: relative;
}


.navbar-brand .logos .logo-box .tema{
	color: #12a2e1;
    text-transform: uppercase;
	letter-spacing: 1px;
    font-size: 30px;
    line-height: 36px;
}

.navbar-brand .logos .logo-box .slogan{
	color: #333;
    font-size: 13px;
	font-weight: 300;
    line-height: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.navbar-inverse .navbar-nav>li>a {
    color: #333;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.navbar-inverse .navbar-nav>li>a:hover, .navbar-inverse .navbar-nav>li>a:focus, .navbar-inverse .navbar-nav>li>a.phone:hover, .navbar-inverse .navbar-nav>li.current.active a,.navbar-inverse .navbar-nav>li.active a{color:#000;}
.navbar-inverse .navbar-nav>li>a.phone {
    color: #000;
	font-size: 22px;
    font-weight: 600;
}


.navbar a.btn-bron{
	display: inline-block;
    background: #019bdf;
	color: #fff;
    text-decoration: none;
    border-radius: 25px;
    border: 1px solid #019bdf;
    padding: 10px 35px;
    position: relative;
	
}
.navbar a.btn-bron i {
	margin-right:5px;
}
.navbar a.btn-bron:hover{
	background: #0787bf;
	color: #fff;
}


.slider {
    background: url('../images/banner.jpg') center center no-repeat scroll;
    background-size: cover;
    width: 100%;
    height: 100%;
    display: table;
	background-color:#f5f5f5;
}

.slider .mouse-icon {
  position: absolute;
  left: 50%;
  bottom: 40px;
  border: 2px solid #fff;
  border-radius: 16px;
  height: 40px;
  width: 24px;
  margin-left: -15px;
  display: block;
  z-index: 10;
  opacity: 0.7;
}
.slider .mouse-icon .wheel {
  -webkit-animation-name: drop;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
  -webkit-animation-name: drop;
          animation-name: drop;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.slider .mouse-icon .wheel {
  position: relative;
  border-radius: 10px;
  background: #fff;
  width: 2px;
  height: 6px;
  top: 4px;
  margin-left: auto;
  margin-right: auto;
}
@-webkit-keyframes drop {
  0% {
    top: 5px;
    opacity: 0;
  }
  30% {
    top: 10px;
    opacity: 1;
  }
  100% {
    top: 25px;
    opacity: 0;
  }
}
@keyframes drop {
  0% {
    top: 5px;
    opacity: 0;
  }
  30% {
    top: 10px;
    opacity: 1;
  }
  100% {
    top: 25px;
    opacity: 0;
  }
}

.slider a.btn-bron{
	display: inline-block;
    background: #019bdf;
	color: #fff;
    text-decoration: none;
    border-radius: 25px;
    border: 1px solid #019bdf;
    padding: 10px 35px;
    position: relative;
	
}
.slider a.btn-bron i {
	margin-right:5px;
}
.slider a.btn-bron:hover{
	background: #0787bf;
	color: #fff;
}


.v-center, .v-center img {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
.v-center h1{color:#fff; font-size:44px; margin:0px; font-weight:700; text-align:center; text-transform:uppercase;}
.v-center p{color:#fff; font-size:18px; margin:25px 0 40px; text-align:center;}

.wrap{margin:15px 0 45px;}

.breadcrumbus{
	position:relative;
	display:block;
	margin:15px -15px 5px;
}
.breadcrumb {
    padding: 8px 0;
    margin-bottom: 0px;
    list-style: none;
    background-color: #fff;
    border-radius: 0;
	font-size: 14px;
}
.breadcrumb a.pathway{color:#019bdf;}

.wrap .page-header {
    padding-bottom: 0;
    margin: 10px 0 15px;
    border-bottom: none;
}

.wrap .page-header h2, .wrap .blog h2, .wrap .page-header h1{text-align:center;font-size: 30px;}
.wrap .items-row  .page-header h2, .wrap .items-row .page-header h1{text-align:left;font-size: 22px;}
.wrap .items-row .page-header h2 a, .wrap .items-row .page-header h1 a{color:#333;}
.blog .items-row {border-bottom:1px solid #ccc; padding-bottom: 15px;}

.blog .items-row .item-image img{
	width: 280px;
    margin-right: 30px;
	border:1px solid #ccc;
}
.item-page .pull-left {float:none!important;margin-bottom: 25px;}
.item-page .item-image img{width:100%;}

.blog .items-row .item .article-info .published{font-size: 14px;}
.blog .items-row .item  .readmore a{
	display: inline-block;
    color: #333;
    text-decoration: none;
    border-radius: 25px;
    border: 1px solid #333;
    padding: 8px 35px;
    position: relative;
	margin-top:10px;
	
}

.blog .items-row .item  .readmore a:hover{
	background: #019bdf;
	color: #fff;
	border: 1px solid #019bdf;
}

#abouts{
	position:relative;
	display:block;
	padding:50px 0 50px;
}

#personal{
	background:#fefefe;
	position:relative;
	display:block;
	padding:50px 0 50px;
}

#personal .box-personal{
	position:relative;
	display:block;
	margin-bottom:15px;
}

#personal .box-personal img{
	margin:20px auto;
	width: 300px;
}

#personal .box-personal h4{
	font-size:18px;
	font-weight:bold;
	text-align:center;
	text-transform:uppercase;
	letter-spacing:0.5px
}

#personal .box-personal .box-personal-text {
	padding:15px;
	background:#f7f9fd;
	font-size:14px;
}

#personal .box-personal .box-personal-text ul {
    list-style-image: url(../images/check.png);
}

#personal .box-personal .box-personal-text ul li {
    padding: 8px 0;
    font-size: 18px;
}


#personal .box-personal .box-personal-text .blocks{
    position: relative;
    min-height:200px;
	height:250px;
    overflow: hidden;
}




#preim{
	background:#f5f5f5;
	position:relative;
	display:block;
	padding:50px 0 30px;
}

#preim h3.title:after {
    background: url(../images/hr.png) no-repeat center center #f5f5f5;
}

#preim ul {
    list-style-image: url(../images/check.png);
	margin-top: 30px;
}

#preim ul li {
    padding: 20px 0;
    font-size: 18px;
}

#preim img{
	width:380px;
	margin:0 auto;
}

#clients{
	position:relative;
	display:block;
	padding:50px 0 50px;
}


#zakaz{
	position:relative;
	display:block;
	padding:40px 0;
	background: url('../images/fon_zakaz.jpg') center center no-repeat fixed;
    background-size: cover;
    width: 100%;
    height: 180px;
    display: table;
}
#zakaz h4{
	color: #fff;
    font-size: 22px;
    font-weight: bold;
    margin: 10px 0;
    letter-spacing: 1px;
}

#zakaz a.btn-phone{
	display: block;
    font-size: 26px;
    color: #333;
    font-weight: 600;
	margin:0 0 5px;
	text-decoration:none;
}
#zakaz a.btn-bron{
	display: inline-block;
	background:#019bdf;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    border: 1px solid #019bdf;
    padding: 10px 35px;
    position: relative;
	
}
#zakaz a.btn-bron i {
	margin-right:5px;
}
#zakaz a.btn-bron:hover{
	background: #0787bf;
	color: #fff;
}

.footer{
	background:#f8f8f8;
	padding: 45px 0;
	position:relative;
	display:block;
}
.footer .box-place{
	position:relative;
	display:block;
	text-align:left;
}
.footer .box-place h3{
	margin:0 0 15px;
}
.footer .box-place a{
	color:#019bdf;
	border-bottom:1px dashed #019bdf;
	text-decoration:none;
}
.footer .box-place a:hover{
	color:#333;
	border-bottom:1px dashed #333;
	text-decoration:none;
}
.footer .box-phone-bron{
	position:relative;
	display:block;
	text-align:center;
}
.footer .box-phone-bron h3{
	margin:0 0 15px;
	text-transform:uppercase;
}

.footer .box-phone-bron a.btn-phone{
	display: block;
    font-size: 26px;
    color: #333;
    font-weight: 600;
	margin:5px 0 15px;
	text-decoration:none;
}
.footer .box-phone-bron a.btn-bron{
	display: inline-block;
    color: #019bdf;
    text-decoration: none;
    border-radius: 25px;
    border: 1px solid #019bdf;
    padding: 10px 35px;
    position: relative;
	
}
.footer .box-phone-bron a.btn-bron i {
	margin-right:5px;
}
.footer .box-phone-bron a.btn-bron:hover{
	background: #019bdf;
	color: #fff;
}
.footer .box-soc-seti{
	position:relative;
	display:block;
	text-align:right;
}
.footer .box-soc-seti h3{
	margin:0 0 15px;
	text-transform:uppercase;
}
.footer .box-soc-seti a{
	color: #f2f2f2;
    background: #333;
    width: 35px;
    height: 35px;
    position: relative;
    display: inline-block;
    text-align: center;
    line-height: 37px;
    border-radius: 100%;
	margin-left: 5px;
}
.footer .box-soc-seti a:hover{
	color: #e6e6e6;
    background: #019bdf;
}
.footer .box-soc-seti a i{
	font-size:18px;
}
.copy{
	background:#f2f2f2;
	padding:25px 0 10px;
	position:relative;
	display:block;
}

/*.contactmap{margin-top:-25px;}*/

#map {
    width: 100%; height: 600px; padding: 0; margin: 0;
}

body.nomap .wrap{display:none;}
/*body.nomap .wrap{margin: 15px 0 0;}*/



/*forms*/
.popup form input[type="submit"]{
	display: block;
    color: #019bdf;
    text-decoration: none;
    border-radius: 25px;
    padding: 8px 35px;
    position: relative;
	text-align:center;
	width: 200px;
    margin: 0 auto;
	background: #ffffff;
	border: 1px solid #019bdf;
	outline:none;
	
}
.popup form input[type="submit"]:disabled{
    opacity: .3;
}

.popup form input[type="submit"]:hover{
	background: #019bdf;
	color: #fff;
	border: 1px solid #019bdf;
	outline:none;
}

.popup form .checkbox{
	font-size: 12px;
    text-align: left;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.7);
    bottom: 0;
    cursor: default;
    left: 0;
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden;
    z-index: 99999;
    -webkit-transition: opacity .5s;
    -moz-transition: opacity .5s;
    -ms-transition: opacity .5s;
    -o-transition: opacity .5s;
    transition: opacity .5s;
}
.popup, .popup2{
    display: inline-block;
    left: 50%;
    opacity: 0;
    position: fixed;
    text-align: justify;
    top: 50%;
    visibility: hidden;
    z-index: 999999;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: opacity .5s, top .5s;
    -moz-transition: opacity .5s, top .5s;
    -ms-transition: opacity .5s, top .5s;
    -o-transition: opacity .5s, top .5s;
    transition: opacity .5s, top .5s;
}
.popup form {
    padding: 0 27px 20px;
    right: 0;
    width: 350px;
    background: #ffffff;
    border-radius: 5px;
    border: 1px solid #000;
}
.popup2 .window {
    padding: 0 27px 27px;
    right: 0;
    width: 373px;
    background: #ffffff;
    border-radius: 5px;
    border: 1px solid #000;
}

.popup .close_modal,
.popup2 .close_modal  {
    position: absolute;
    padding: 1px 9px 4px 9px;
    top: -15px;
    right: -15px;
    cursor: pointer;
    color: #fff;
	font-size:20px;
	border-radius:100%;
    background: #019bdf;
    text-align: center;
}
.insText{text-align: center;}



#mediabanner .close {
    float: right;
    font-size: 40px;
    font-weight: 700;
    line-height: 0;
    position: absolute;
    color: #797979;
    right: -10px;
    text-shadow: 0 1px 0 #000;
    filter: alpha(opacity=20);
    opacity: 1;
    top: -20px;
    background: #FFF;
    border-radius: 100%;
    width: 30px;
    height: 30px;
	outline:none;
}

.pagination-list>li>a, .pagination-list>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #626c7d;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

@media(min-width:992px) and (max-width:1199px){
body{padding-top: 65px;}
.navbar-inverse .navbar-nav>li>a {font-weight: bold; padding: 8px 12px;}
.navbar-brand>img {width: 200px; padding: 10px 0;}
.navbar-inverse .navbar-nav>li>a.phone {font-size: 16px;}
.banners{height: auto;}
#map {height: 350px;}
.footer .box-phone-bron a.btn-bron{padding: 10px 15px;}
}
@media(min-width:768px) and (max-width:991px){
body{padding-top: 60px;}
.navbar-nav {
    margin: 30px 0 10px;
}
.navbar-inverse .navbar-nav>li>a {font-weight: normal; padding: 4px;}
.navbar-brand>img {width: 170px; padding: 10px 0;}
.navbar-inverse .navbar-nav>li>a.phone {
    font-size: 16px;
    display: none;
}
.banners{height: auto;}
.v-center h1 {font-size: 40px;}
#preim {padding: 30px 0;}
#map {height: 350px;}
.footer .box-phone-bron a.btn-bron{padding: 10px 15px;}
}
@media(max-width:767px) {
body{padding-top: 70px;}
.banners{height: auto;}
.fonbron{padding: 50px 15px;}
.popup form {width: 280px;}
.popup2 .window {width: 280px;}
.popup form h3.title, .popup2 .window h3.title{font-size: 24px;}
.navbar-inverse {padding: 10px 0;}
.navbar-brand>img {width: 200px; padding: 5px 0;}
.navbar-inverse .navbar-toggle {border-color: #333;}
.navbar-inverse .navbar-toggle .icon-bar {background-color: #000;}
.footer .box-place, .footer .box-soc-seti {text-align: center;}
.footer .box-phone-bron{margin: 25px 0;}
#map {height: 250px;}
.menubar ul.menubar ul.nav li a	{width: 200px; margin-bottom: 15px;}
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th{width: 50%;}
.v-center h1 {font-size: 40px;}
#preim {padding: 30px 0 0;}
}

@media(max-width:460px) {
	.navbar-brand {padding: 10px 15px 10px;}
	.navbar-brand .logos:before {width: 60px; height: 60px; margin-right: 10px;}
	.navbar-brand .logos .logo-box .tema {font-size: 24px; line-height: 26px;}
	.navbar-brand .logos .logo-box .slogan {font-size: 11px; line-height: 22px;}
	.navbar-toggle {
		position: relative;
		float: right;
		padding: 9px 10px;
		margin-top: 18px;
		margin-right: 15px;
		margin-bottom: 8px;
		background-color: transparent;
		background-image: none;
		border: 1px solid transparent;
		border-radius: 4px;
	}
	.navbar-inverse {padding: 0; }
	.v-center h1 {font-size: 26px;}
	.v-center p {font-size: 16px;}
	h3.title {font-size: 26px;}
	#abouts {padding: 30px 0;}
}