#contacto {
  background-color: #8dc5fd;
  border: none;
  border-radius: 5px;
}


#contacto-formulario {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
}


#contacto-formulario p {
  margin-top: 20px;
  font-size: 1.2rem;
  color: #F5FFFA;
  font-weight: bolder;
}


#contacto-formulario span {
  width: 90%;
  text-align: left;
  font-size: 1rem;
  color: #1570b7;
  font-weight: bold;
}


#contacto-formulario input, #contacto-formulario textarea {
  width: 90%;
  padding: 10px;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: left;
  background-color: #F5FFFA;
}


#contacto-formulario input:focus, #contacto-formulario textarea:focus {
  outline: none;
}



#contacto-formulario textarea {
  border-radius: 20px;
}


#contacto-formulario #enviar {
  padding: 10px;
  margin: 30px 0 0 0;
  width: 250px;
  font-size: 1.2rem;
	font-weight: 500;
	color: #1570b7;
  text-align: center;
	border-width: 2px;
	border-radius: 50px;
	border-style: solid;
	border-color: #F5FFFA;
	background-color: #F5FFFA;
  cursor: pointer;
	transition: .2s ease-in-out 0s;
	box-shadow: 0px 0px 7px #333333;
}

#contacto-formulario #enviar:hover {
	color: #F5FFFA;
	background-color: #1570b7;
	transform: scale(1.2);
}


#contacto-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: top;
  margin: 30px 10px;
}


#contacto-info h3 {
  margin: 30px 0;
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: #1570b7;
}


#contacto-info span {
  display: block;
  margin: 15px 0;
  font-size: 1rem;
  font-weight: bold;
  color: #333333;
}


#contacto-info img {
  width: 45px;
  height: 45px;
}


.contacto-info-medio, .contacto-info-medio a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
}


.contacto-info-medio a {
  cursor: pointer;
  transition: .2s ease-in-out 0s;
  filter: drop-shadow(0px 0px 7px #333333);
}

.contacto-info-medio a:hover {
  transform: scale(1.2);
}



@media (max-width: 1300px) { 

  #contacto-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 50px;
  }

  #contacto-formulario p {
    font-size: 1rem;
  }
  
  
  #contacto-formulario span {
    font-size: .9rem;
  }
  
  
  #contacto-formulario input, #contacto-formulario textarea {
    font-size: .9rem;
  }


  #contacto-formulario #enviar {
    width: 200px;
    font-size: 1rem;
  }

  
  /* #contacto-info h3 {
    margin: 10px 0;

  

    font-size: rem;

  } */



  #contacto-info span {  

    font-size: .9rem;

  }  

}