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

body{
  font-family: 'Open Sans', sans-serif;
}


.contenedor{
  width: 100%;
  max-width: 1170px;
  margin: auto;
}

/*barra alt*/
.barra-alt{
  width: 100%;
  height: 35px;
  background-color: #096A9E;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  color: white;
  padding-top: 5px;
  padding-bottom: 5px;
  justify-content: center;
}

.barra-alt a{
  padding-left: 5px;
  padding-right: 5px;
  }

.barra-alt img{
  width: 25px;
}

/*Fin barra alt*/

  /*Cabecera*/
header{
  width: 100%;
  height: 220px;
  background-color: white;

}

.barra-alt{
  width: 100%;
  height: 30px;
  background-color: #096A9E;
  display: flex;
  color: white;
  padding: 10px:
}

.barra-alt a{
  color: white;
  text-decoration: none;
  margin-left: 20px;
}

.logo{
  padding: 10px 0;
  justify-content: flex-start;
}
.logo img{
  width:300px;
  display: block;
  margin: auto;
}

.menu{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;

  justify-content: space-between;
  max-width: 450px;
  margin: auto;
  }
.menu a{
  text-decoration: none;
  color: 	#6666ff;
}
.menu a:hover{
  color: #A9A9A9
}
/* Fin de cabecera*/

/*span*/
.linea{
  width: 100%;
  height: 4px;
  display: block;
  margin-top: 15px;
  background: #6666ff;
}
/*galeria*/

.galeria{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  width: 95%;
  margin: auto;
  grid-gap: 10px;
  padding-bottom: 20px;
  overflow: hidden;
}

.galeria > a{
  display: block;
  position: relative;
  overflow: hidden;
}

.galeria img{
  width: 100%;
  vertical-align: top;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s;
}

.galeria a:hover img{
  filter: blur(1px);
  transform: rotate(8deg) scale(1.2);
}

.light-box{
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0);
}

.light-box img{
  width: 75vw;
  max-height: 90vh;
}

.light-box:target{
  transform: scale(1);
}

.close{
  display: block;
  position: absolute;
  top: 30px;
  right: 60px;
  background: #096A9E;
  color: white;
  text-decoration: none;
  font-size: 30px;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
}

.next{
  display: block;
  background: #096A9E;
  color: white;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50px;
  justify-content: center;
}

/*fin de galeria*/

.boton{
  padding-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.boton a{
  text-decoration: none;
}

/* pie de pagina*/
.top-footer{
  background-color: #085985;
  height: 25px;
}

.center-footer{
  background-color: #063F5E;
}

.center-footer .contenedor{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.center-footer .widget{
text-align: center;
padding-top: 20px;
padding-bottom: 35px;
color: white;

max-width: 270px;
margin: 0 auto;
}

.center-footer .widget img{
  width: 200px;
}

.center-footer .widget1{
text-align: center;
padding-top: 20px;
padding-bottom: 35px;
color: white;

max-width: 270px;
margin: 0 auto;
}

.center-footer .widget1 h4{
  font-size: 18px;
  padding-top: 20px;
  padding-bottom: 20px;
  color: white;
}

.center-footer .widget1 p{
  font-size: 14px;
}

.center-footer .widget1 a{
  text-decoration: none;
  color: white;

}

.center-footer .widget1 img {
  width: 20px;
  margin-right: 15px;
  margin-top: 10px;
}

.center-footer .widget a:hover{
  color: #A9A9A9;
}

.center-footer .widget2{
text-align: center;
padding-top: 20px;
padding-bottom: 35px;
color: white;

max-width: 270px;
margin: 0 auto;
}

.center-footer .widget2 h4{
  font-size: 18px;
  padding-top: 20px;
  padding-bottom: 20px;
  color: white;
}

.center-footer .widget2 p{
  font-size: 14px;
}

.center-footer .widget2 img {
  width: 25px;
  margin-right: 15px;
  margin-top: 10px;
}


.bottom-footer{
  background-color: #085985;
  height: 25px;
}

.bottom-footer p{
font-size: 14px;
  color: white;
  text-align: center;
}
/*Pie de pagina*/
