.mapa,
.info{
	width: 100%;
	height: 450px;
}

.mapa iframe{
	width: 100%;
	height: 100%;
}

.info{
	background: #a9dafec4;
	color: #fff;
	text-align: center;
}

.info ul{
	margin: 0;
	height: 100%;
	display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.info li{
	padding: 0;
	width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.info i{
	display: inline-block;
	margin: 0 auto 5px;
  font-size: 32px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  color: #4A71B1;
}

.info span{
    display: block;
    height: auto;
    line-height: normal;
    position: relative;
    color: #4A71B1;
    font-weight: 500;
}

.contactUs{
	background-size: cover;
	background-position: top;
	padding: 100px 0;
	position: relative;
}

.contactUs h3{
	color: #4A71B1;
	font-size: 36px;
}

#contacto{
	position: relative;
}

.shadow{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.65);
	z-index: 3;
}

#contacto .container{
	position: relative;
	z-index: 4;
}

#contacto form{
	width: 100%;
	max-width: 600px;
	position: relative;
	z-index: 4;
}

#contacto form ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #4A71B1;
  font-weight: 400;
}

#contacto form ::-moz-placeholder { /* Firefox 19+ */
  color: #4A71B1;
  font-weight: 400;
}

#contacto form :-ms-input-placeholder { /* IE 10+ */
  color: #4A71B1;
  font-weight: 400;
}

#contacto :-moz-placeholder { /* Firefox 18- */
  color: #4A71B1;
  font-weight: 400;
}

#contacto input,
#contacto textarea{
	color: #4A71B1;
	border: none;
	padding: 10px;
	height: 50px;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 500;
    transition: .3s background ease;
    background: #fff;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.1), 0 4px 8px 0 rgba(0,0,0,0.2);
}

#contacto input:focus,
#contacto textarea:focus{
	outline: none;
	border-bottom: none;
	/*box-shadow: none;
	background: rgba(25,25,25,0.25);*/
}

#contacto form button{
	width: 100%;
	background: #4A71B1;
	border: none;
	height: 50px;
	color: #fff;
	font-weight: 500;
	font-size: 16px;
	cursor: pointer;
	margin-top: 10px;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.1), 0 4px 8px 0 rgba(0,0,0,0.2);
}

#contacto form .input-field{
	margin-top: 10px;
	margin-bottom: 10px;
}

#contacto form textarea{
	height: 100px;
	resize: none;
}

@media screen and (min-width: 601px){
	.mapa,
	.info{
		float: left;
	}

	.mapa{		
		width: 65%;
	}

	.info{
		width: 35%;
	}
}

@media screen and (min-width: 993px){
	.mapa{		
		width: 70%;
	}

	.info{
		width: 30%;
	}
}