*{font-family: 'Lato', sans-serif;}
.azulfondo{background-color: #066bc7;}
.azultexto{color:#066bc7;}
.textobold{font-weight: 600;}
.fondogris{background-color: #a2a2a2;}
.textogris{color: #a2a2a2;}

/******* HEADER ********/

.navbar{
	box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.08);
	}

.nav-link{
	font-size: 0.8rem;
	font-weight: 600;
	}

.nav-item a{
	position: relative;
	}

.nav-item a:after {
	content: "";
	display: block;
	height: 2px;
	width: 0px;
	background: #066bc7;
	transition: all .3s;
	}

.nav-item a:hover:after {
	width: 50%;
	}

/******* FORMULARIO ********/

#envio_ok {
	color:white;
	font-size: 18px;
    line-height: 70px;
    font-weight: 300;
	text-align:center;
	margin:20px auto;
	background-color: green;
	border-radius: 4px;
	}

#error_nombre,#error_empresa,#error_provincia,#error_email,#error_captcha {
	color:#d9261f;
	font-size: 15px;
    line-height: 30px;
    font-weight: 500;
	text-align:center;
	margin:0px auto;
	}

div.g-recaptcha {
  margin: 0 auto;
  width: 304px;
	}

.form-control{
	border-radius:5px;
	border:0px;
	border:1px solid #066bc7;
	}

.form-control:focus{
	color:black;
	background-color:white;
	border-color:#066bc7;
	box-shadow:0 0 white;
	}

/******* FOOTER ********/

.link-blanco, .link-blanco:hover{
	text-decoration: none;
	font-weight: 600;
	color: #fff;
}

@media only screen and (min-width: 768px){
/* For desktop: */
	#banner-carousel,#contacto,#nosotros{
  		margin-top: 100px;
  		}
	#banner-carousel .carousel-inner{
		height: 550px;
		}
	.texto-fondo-nosotros {
  		text-align: left;
  		position: absolute;
  		top: 40%;
  		left: 75%;
  		transform: translate(-50%, -50%);
  		color: #fff;
		}
}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  	#banner-carousel,#contacto,#nosotros{
  		margin-top: 133px;
  	}
  	.texto-fondo-nosotros {
  		text-align: left;
  		position: absolute;
  		top: 30%;
  		left: 75%;
  		transform: translate(-50%, -50%);
  		color: #fff;
		}
	.texto-fondo-nosotros h3{
		font-size:3.3vw;
		}
	#nosotros .texto-fondo-nosotros h3{
		font-size:2vw;
		}
  }