.GaleriaFotos{
  margin-top: 150px;
  width: 50%;
}

/*ESTILOS DE GALERIA*/
.galeria{
  width: 90%;
  margin: auto;
  list-style: none;
  padding: 20px;
  box-sizing: border-box;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.galeria li{
  margin:5px;
}


/*ESTILOS DE MODAL*/
.modal{
  display: none;
}


.modal:target{
  margin-top: 90px;
  display: block;
  position: fixed;
  background: rgba(0,0,0,0.8);
  top: 0;
  left: 0;
  width: 100%;
  width: 100%;
  z-index: 1;
}

.imagen{
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imagen a{
  color:#fff;
  font-size: 40px;
  text-decoration: none;
  margin: 0 10px;
  flex-shrink: 2;
}

.imagen a:nth-child(2){
  margin: 0;
  height: 100%;
}

.imagen img{
  width: 500px;
  height: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.cerrar{
  display: block;
  background: #fff;
  width: 25px;
  height: 25px;
  margin: 15px auto;
  text-align: center;
  text-decoration: none;
  font-size: 25px;
  color:#000;
  padding: 5px;
  border-radius: 50%;
  line-height: 25px;
}

/*Efecto Acordeon*/

@media (max-width:1024px){
  .acordeon input{
  display:none;
}

.acordeon__titulo{
  display: block;
  text-align: center;
  width:100%;
  padding:25px;
  background: #007FC0;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  margin-top: 10px;
  font-weight: bolder;
}

.acordeon__titulo:hover{
  background: #0287C9;
}


.acordeon__contenido{
  height: 0;
  overflow: hidden;
  transition:  all 0.5s;
  padding-left: 10%;
  padding-right: 10%;
  font-size: 8px;
  font-weight: bolder;
  background: #DFDEDE;
}

.acordeon input:checked ~ .acordeon__contenido{
  height: auto;
  padding-top: 50px;
  padding-bottom: 50px;
  background: #DFDEDE;
}  
}

@media(min-width:1024px){
    .acordeon input{
  display:none;
}

.acordeon__titulo{
  display: block;
  text-align: center;
  width:100%;
  padding:25px;
  background: #007FC0;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  margin-top: 10px;
  font-weight: bolder;
}

.acordeon__titulo:hover{
  background: #0287C9;
}


.acordeon__contenido{
  height: 0;
  overflow: hidden;
  transition:  all 0.5s;
  padding-left: 22%;
  padding-right: 22%;
  font-size: 14px;
  font-weight: bolder;
  background: #DFDEDE;
}

.acordeon input:checked ~ .acordeon__contenido{
  height: auto;
  padding-top: 50px;
  padding-bottom: 50px;
  background: #DFDEDE;
}
}
