
/*
azul: #293952
naranja: #e65e03
*/

/*BANNER CONTACTO*/
.banner-contacto {
	overflow: hidden;
	max-width: 1500px;
	position: relative;
	z-index: -1000;
  margin: auto;
	background-image: url(../img/contacto-banner.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
	background-attachment: fixed;
  height: 360px;
	text-align: center;
}
.banner-contacto:before {
  content: "";
  position: absolute;
	z-index: -90;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.2;
}
/*ESTILOS DEL FORMULARIO*/
#contacto {
	max-width: 1500px;
	margin: auto;
	overflow: hidden;
  background: #eee;
}
.contacto-titulo {
	font-family: 'Open Sans', sans-serif;
	font-size: 2.6em;
  font-weight: 800;
	text-align: center;
	letter-spacing: -1px;
	color: #333;
}
.contacto-txt {
	max-width: 960px;
  margin: auto;
  font-size: 1em;
  color: #333;
  text-align: center;
}

form {
  width: 100%;
  margin: auto;
  padding: 10px;
}
form p {
	padding: 10px 0;
}
input, textarea {
  font-family: sans-serif;
  font-size: 0.9em;
  width: 100%;
  padding: 5px;
	border: none;
  border-bottom: 1px solid #eee;
}
textarea {
  min-height: 100px;
  max-height: 200px;
  max-width: 100%;
}
#contacto-boton {
/*estilos del boton*/
  width: 200px;
  text-align: center;
	font-size: 1em;
	color: #eee;
  background: #333;
  margin-top: 20px;
  cursor: pointer;
}

/*GOOGLE MAPS*/
#mapa {
  max-width: 1500px;
  margin: auto;
  background: #fff;
}
.mapa-datos {
  color: #333;
}
.mapa-google {
    height: 0;
    padding-top: 25px;
    padding-bottom: 56.25%;
    position: relative;
    margin: 20px 0;
    box-shadow: 0 0 0 4px #fff,
                0 0 0 5px rgba(0,0,0,0.2);
}
.mapa-google iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



/*ESTILOS RESPONSIVE*/
@media (min-width: 450px) {

}

@media (min-width: 768px) {
/*BANNER*/
.banner-contacto {
  height: 560px;
}
.grupo-contacto {
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.columna-contacto {
  width: 50%;
	padding: 20px;
}

.grupo-mapa {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: center;
}
.columna-mapa {
  width: 50%;
	padding: 0 20px;
}
}

@media (min-width: 1024px) {

}