@charset "UTF-8";
body{
	font-family: 'Ubuntu', sans-serif;
	padding-top:90px;
}

.navbar{
	height: 90px;
	background-color: #0154A0;
	background-image: url(images/header-bg.png);
	background-repeat: no-repeat;
	background-position: -650px center;
	-webkit-box-shadow: 0px 1px 15px 1px rgba(0,0,0,0.6);
	-moz-box-shadow: 0px 1px 15px 1px rgba(0,0,0,0.6);
	box-shadow: 0px 1px 15px 1px rgba(0,0,0,0.6);
}

.navbar-brand {
	padding:5px 15px;
}

.navbar-brand img{
	height:80px;
}

.navbar-nav > li > a{
	margin-top:35px;
	padding:0px 15px;
	color:#FFF;
	font-size:16px;
	border-top:0 solid #2854b6;
	text-transform:uppercase;
	text-shadow:1px 1px 0 rgba(0,0,0,0.5);
	transition:0.3s;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.navbar-nav > li > a{
		padding:0px 10px;
		font-size:14px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.navbar-nav > li > a{
		padding:0px 5px;
		font-size:13px;
	}
}

.navbar-nav > li > a:hover{
	margin-top:0;
	padding-top:35px;
	padding-bottom:35px;
	color:#FF7700;
	background:rgba(0,0,0,0.25);
	transition:0.1s;
}

.navbar-nav > .active{
	color:#FF7700;
}

.navbar-nav > li > a:focus{
	color:#FF7700;
	background:none;
}

.navbar-nav > .active > a {
	color:#FF7700;
	background:none;
}

.navbar-toggle{
	margin-top:30px;
	margin-bottom:25px;
	color:#FFF;
	border-color:#FFF;
}

.navbar-toggle .icon-bar {
	background-color:#FFF;
}

@media (max-width: 767px) {
	.navbar-collapse{
		text-align:center;
		background-color: #0154A0;
		background-image: url(images/header-bg.png);
		background-repeat: repeat-y;
		background-position: -650px center;
	}
}

.hero{
	width:100%;
	height:600px;
	overflow:hidden;
	text-align:center;
	background-color:#000;
	position:relative;
}

@media (max-width: 767px) {
	.hero{
		height:400px;
	}
}

.hero-pattern{
	height:100%;
	width:100%;
	background-image: url(images/pattern.png);
	background-repeat: repeat;
	position:relative;
	z-index:1;
}

.hero-img{
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	background-image: url(images/hero-bg.jpg);
	background-repeat: no-repeat;
	background-position: 50% 80%;
	background-size: cover;
	position: absolute;
	bottom: 0;
	opacity: 0.6;
	background-attachment: fixed;
}

.hero-img img{
	display:none;
}

.hero-text{
	width:100%;
	padding-left:10%;
	padding-right:10%;
	color:#fff;
	font-size:24px;
	bottom:35%;
	position:absolute;
	text-align:center;
	z-index:2
}

.hero-text h1{
	margin-bottom:30px;
	font-size:46px;
}

.hero-text p {
	font-weight:300;
}

@media (max-width: 767px) {
	.hero-text{
		top:120;
		bottom: 0;
	}
	
	.hero-text h1{
		font-size:32px;
	}
}

section{
	padding-top:100px;
	padding-bottom:100px;
	background-color:#EFF0F3;
	position:relative;
	z-index:999;
}

section.direccion{
	padding:0;
}

.title{
	margin-bottom:60px;
	color:#666;
	font-weight:900;
	line-height:48px;
	text-align:center;
	text-transform:uppercase;
}

.title small{
	text-transform:none;
	font-weight:300;
}

.experiencia {
	padding-bottom:0;
	color:#FFF;
	background-color:#FF7700;
}

.experiencia .title,
.experiencia .title small{
	color:#FFF;
}

.experiencia .col-sm-4{
	height:220px;
	padding-left:0;
	padding-right:0;
	color:#FFF;
	font-size:24px;
	display: table;
	text-align:center;
}

.experiencia .col-sm-4 span{
	padding:30px 15px;
	display: table-cell;
	vertical-align: middle;
	transition:0.5s;
}

@media (max-width: 767px) {
	.experiencia .col-sm-4{
		height:150px;
		display: block;
	}
	
	.experiencia .col-sm-4 span{
		width:100%;
		margin:0 auto;
		padding:60px 15px;
		display: block;
		vertical-align: middle;
		transition:0.5s;
	}
}

.experiencia .col-sm-4 span:hover{
	background-color:rgba(0,0,0,0.2);
}

.servicios .col-sm-4{
	margin-bottom:30px;
	font-size:16px;
	color:#FFF;
	text-align:center;
	position:relative;
}

.servicios-item span{
	padding:0 30px;
	text-shadow:1px 1px 0 #000;
	position:absolute;
	bottom:15px;
	left:0;
	z-index:9999;
}

.servicios-item{
	height:270px;
	transition:0.3s;
	background-color:#000;
}

.servicios-item img{
	padding-left:15px;
	padding-right:15px;
	position:absolute;
	top:0;
	left:0;
	opacity:0.5;
	transition:0.3s;
}

.servicios-item:hover{
	border:1px solid #FF7700;
	-webkit-box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.3);
	box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.3);
}

.servicios-item:hover img{
	opacity:0.95;
}

.proyectos{
	color:#FFF;
	background-color: #900;
	background-image: url(images/proyectos-bg.png);
	background-repeat: repeat;
	background-position: center center;
}

.proyectos .title{
	color:#FFF;
}

.proyectos .row {
	display: flex;
	flex-wrap: wrap;
}

.proyectos .row > [class*='col-']{
	margin-bottom:60px;
	text-align:center;
	/*display: flex;
	flex-direction: column;*/
}

.proyectos .col-sm-3 img{
	margin:0 auto 15px auto;
	box-shadow: 0px 0px 30px rgba(0,0,0,0.4);
}

.clientes{
	background-image: url(images/clientes-bg.jpg);
	background-repeat: repeat;
	background-position: center top;
	background-size: cover;
	background-attachment: fixed;
}

.clientes .title{
	color:#FFF;
}

.clientes .col-xs-12{
	margin-bottom:30px;
	color:#FFF;
	text-align:center;
}

.clientes .col-xs-12 img{
	width:175px;
	height:175px;
	padding:0;
	border:10px solid #FFF;
	display:block;
}

.historia{
	color:#FFF;
	text-shadow:1px 1px 0 #000;
	background-image: url(images/historia-bg.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:cover;
}

.historia .title{
	color:#FFF;
}

.historia .row{
	font-size:18px;
	line-height:32px;
	text-align:justify;
}

.equipamiento{
	background-color:#FFF;
}

.equipamiento .container{
	max-width:970px;
}

.equipamiento h5{
	height:75px;
	text-align:center;
}

.venta {
}

.venta ul li{
	margin-bottom:20px;
	font-size:18px;
}

.contacto{
	background-color: #333;
	background-image: url(images/contacto-bg.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:cover;
}

.contacto .alert{
	margin-left:15px;
	margin-right:15px;
}

.contacto label{
	width:100%;
	color:#999!important;
}

.contacto .form-group{
	margin-bottom:30px;
}

.contacto .img-captcha{
	margin-top:7px;
	margin-right:15px;
	float:left;
}

.contacto .form-control-captcha{
	width:50%!important;
}

.contacto .btn-lg{
	padding:30px;
	font-weight:900;
	text-transform:uppercase;
}

#map{
	width:100%;
	height:450px;
}

footer{
	padding-top:30px;
	padding-bottom:30px;
	color:#000;
	background-color:#FFF;
}