.mockfondo-contacto {
  overflow: hidden;
  max-width: 1900px;
  margin: auto;
	background-image: url(../img/banner-contacto.jpg);
	background-size: cover;
  height: 400px;
  object-fit: cover;
  position: relative;
}
.mockfondo-contacto:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
	background: #000;
  opacity: 0.5;
}

/*ESTILOS DEL FORMULARIO*/
#contacto {
	max-width: 1900px;
	margin: auto;
	overflow: hidden;
  background: #eee;
}
.contacto-titulo {
  font-size: 1.6em;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  color: #333;
}
.contacto-subtitulo {
  font-size: 2em;
  font-weight: 800;
  text-align: center;
  color: #333;
}
form {
  width: 100%;
  margin: auto;
  padding: 20px;
}
form p {
	padding: 10px 0;
}
input, textarea {
  font-family: sans-serif;
  font-size: 0.9em;
  width: 100%;
  padding: 15px;
	border: none;
	border-radius: 10px;
}
textarea {
  min-height: 100px;
  max-height: 200px;
  max-width: 100%;
}
#contacto-boton {
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
  width: 30%;
  margin: 15px auto;
  background: #E2232B;
  font-weight: 800;
  color: #fff;
  padding: 10px;
  text-align: center;
	cursor: pointer;
}
.contactodatos-subtitulo {
	display: flex;
	align-items: center;
}
.contacto-datos [class^="icon-"] {
	padding-right: 10px;
	font-size: 1.8em;
	color: #E2232B;
}

/*GOOGLE MAPS*/
#mapa {
  max-width: 1900px;
  margin: auto;
  background: #fff;
}
.grupo-mapa {
  max-width: 960px;
  margin: auto;
	padding: 10px;
}
.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) {
/*BANNER*/
.mockfondo-contacto {
  height: 600px;
}
.grupo-contacto {
  max-width: 1500px;
  margin: auto;
  display: flex;
  justify-content: center;
	align-items: center;
  flex-wrap: wrap;
}
.columna-contacto {
  width: 50%;
	padding: 20px;
	border-right: 1px dashed #999;
}
	.datos {
		width: 30%;
	}
	.columna-contacto:last-child {
	border-right: none;
	}
}

@media (min-width: 1024px) {

}