/*ESTILOS DEL FORMULARIO*/
#contacto {
	overflow: hidden;
  background: #fff;
	background-image: url(../img/about-bg.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
form {
  width: 90%;
  margin: auto;
  padding: 10px;
}
form p {
	padding: 10px 0;
	color: #999;
}
input, textarea {
  font-family: sans-serif;
  font-size: 1em;
  width: 100%;
  padding: 10px;
  border: 2px solid rgba(0,0,0,0.1);
	border-radius: 15px;
}
textarea {
  min-height: 100px;
  max-height: 200px;
  max-width: 100%;
}
#contacto-boton {
  font-size: 1em;
  width: 40%;
  margin: 15px auto;
  background: #102A4F;
  color: #fff;
  padding: 10px;
  text-align: center;
	cursor: pointer;
}
.contacto-img {
	width: 260px;
	height: 260px;
	object-fit: cover;
	border-radius: 50%;
}
.contacto-txt {
	text-align: center;
}

/*GOOGLE MAPS*/
#mapa {
  background: #52A807;
}
#mapa .presentacion-titulo {
	color: #fff;
}
#mapa .presentacion-subtitulo {
	color: #fff;
	text-align: center;
}
.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%;
}
.grupo-mapa {
  max-width: 1100px;
  margin: auto;
}
.columna-mapa {
  width: 90%;
  margin: auto;
}

#registros {
	overflow: hidden;
  background: #fff;
	text-align: center;
	border-top: 1px dashed #999;
}
.grupo-registros {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.columna-registros {
	width: 48%;
	margin: 1%;
}

/*-------------ESTILOS RESPONSIVE WEB DESIGN-------------*/
@media (min-width: 768px) {
.grupo-contacto {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.columna-contacto {
  width: 50%;
	padding: 20px;
}
.columna-registros {
	width: 20%;
}
}

@media (min-width: 1024px) {
.contacto-img {
	width: 360px;
	height: 360px;
}
}