/*ESTILOS DEL FORMULARIO*/
#contacto {
	max-width: 1500px;
	margin: auto;
	overflow: hidden;
  background: #eee;
}
.contacto-titulo {
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  padding: 0 10px;
  color: #333;
}
.contacto-subtitulo {
  font-size: 2.4em;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  padding: 0 10px;
  color: #333;
}
/*FORMULARIO de contacto de todos  -  ARCHIVO: CONTACTO*/
form {
  width: 100%;
  margin: auto;
}
input, textarea {
  font-family: sans-serif;
  font-size: 0.9em;
  width: 100%;
  padding: 20px;
  margin-bottom: 15px;
	border: 2px solid rgba(0,0,0,0.2);
	border-radius: 26px;
}
textarea {
  min-height: 100px;
  max-height: 200px;
  max-width: 100%;
}
#boton {
  font-family: 'Open Sans', sans-serif;
  font-size: 1em;
  width: 200px;
  background: rgb(119, 165, 17);
  font-weight: 300;
  color: #fff;
  padding: 15px 5px;
  text-align: center;
	border: none;
}
#boton:hover {
  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 WEB DESIGN-------------*/
@media (min-width: 768px) {
.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) {

}