/*ESTILOS DEL FORMULARIO*/
#contacto {
	max-width: 1500px;
	margin: auto;
	overflow: hidden;
  background: #eee;
	text-align: center;
}
form {
  width: 90%;
  margin: auto;
  padding: 10px;
}
form p {
	padding: 10px 0;
	color: #333;
}
input, textarea {
  font-family: sans-serif;
  font-size: 1em;
  width: 100%;
  padding: 10px;
	border: none;
  border-bottom: 3px solid rgba(0,0,0,0.2);
}
textarea {
  min-height: 100px;
  max-height: 200px;
  max-width: 100%;
}
#contacto-boton {
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
  width: 60%;
  margin: 15px auto;
  background: #BE0201;
  font-weight: 800;
  color: #fff;
  padding: 10px;
  text-align: center;
	cursor: pointer;
}

.columna-indicativos span {
	font-size: 1.6em;
	margin-right: 10px;
	position: relative;
	top: 5px;
	color: #1d1d1d;
}

/*-------------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;
}
.resena-txt {
	text-align: left;
	}
}

@media (min-width: 1024px) {

}