* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
  background-color: #fefefe;
  font-family: 'Open Sans', sans-serif;
}

header {
  position: relative;
  display: flex;
  align-items: center;
}

nav{
  position: absolute;
  float: left;
  left: 64%;
  top: 60%;
  bottom: 10%;
  right: 0%;
}

nav ul {
  list-style: none;
  overflow: hidden;
}

nav ul li {
  float: left;
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
}

nav ul li a {
  display: block;
  padding: 10px;
  color: #fff;
  text-decoration: none;
}

nav ul li:hover {
  background: #0d7eda;
}

@media (max-width:700px){
  
  nav{
    left: 55%;
  }
  nav ul{
    margin-right: 0;
  }  
}

@media (max-width:525px){
  
  nav{
    left: 55%;
  }
  nav ul li {
    font-size: 6px;
  }
  .texto{
    font-size: 10px;
  }
}

@media (max-width:770px){
  .bloques{
    flex-direction: column;
    margin-top: 0px !important;
  }
  .imgbloques{
    min-width: 96%;
    padding: 10px;
  }
}
main{
  display: flex;
  flex-direction: column;
}

.titulos {
	display: flex;
	justify-content: space-around;
	background-color: #fefefe;
	align-items: center;
  font-size: larger;
}

hr {
  width: 48%;
  height: 3px;
  background-color: #004680;
  border: none;
}

.bloques {
  margin-top: 30px;
  display: flex;
	justify-content: center;
	
}


.imgbloques {
  width: 16%;
  margin: 0 10px;

}

.texto{
  display: flex;
  justify-content: center;
  
}

.col1{
  padding: 0 3% 0 16%;
  font-size: larger;
}

.col2{
  padding-right: 16%;
  font-size: larger;
}

footer{
  
}

.mapa{
  position: absolute;
  left: 51%;
  top: 35%;
  bottom: 15%;
  right: 15%;
  border-width: 5px;
  border-style: solid;
  border-color: #008095;
  border-radius: 4px;
}

.pie{
  position: relative;
}