
/* ---------------------------------------- */
/*          GALERIA DE IMAGENES             */
/* ---------------------------------------- */

/* Opcion galeria__content */

/* ----------------------------------------- */
/* ----------------------------------------- */

/* .galeria_titulo {
  display: flex;
  justify-content: center;
  background-color: var(--color-azulClaro);
  padding: 5px;  
  text-decoration: underline;
  text-decoration-thickness: 20%;
  font-size: 2.5rem;
  text-shadow: 2px 2px #F0F0F0;

} */

/* Opcion galeria__content */

.desc {
  /* margin: 20px; */
  margin: 5%;
  /* background-color: #ffffff; */
  /* border: 1px solid black; */
  color: #000000;
  font-weight: bold;
  opacity: 0.5;
}

.galeria__content-img {
  /* border: 1px solid #ccc; */
}

.galeria__content-img {
  /* display: none; */
  /* position: absolute; */
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  /* z-index: 1; */
}

.galeria__content-img:hover {
  /* margin: 7%; */
  /* padding: 7%; */
  /* width: 100%; */
  /* border: 1px solid #777; */

}

.galeria__content-img img {
  width: 100%;
  height: auto;
}

.galeria__content {
  padding: 0 6px;
  float: left;
  width: 24.99999%;
}


.img-gallery{
  width: 100%;
  margin: 50px auto 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 30px;
  
}
.img-gallery img{
  width: 100%;
  cursor: pointer;
  transition: 1s;
}
.img-gallery img:hover{
  transform: scale(1.3);
  /* transform-origin: 20%; */
  /* float: right;
  text-align: center;
  vertical-align: middle; */
  
}
/* .expand-img:fullscreen{ */
  /* text-align: center;
  display: block;

  */
  
/* } */
.ful-img{
  width: 150%;
  height: 100vh;
  background-color: rgba(0, 0,0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99;
}
.ful-img span{
  position: absolute;
  top: 5%;
  right: 5%;
  /* font-size: 30px; */


  color: #fff;
  cursor: pointer;
}
.ful-img img{
  width: 90%;
  max-width: 600px;
}
@media screen and (max-width:400px){
  h1{
      text-decoration: underline;
  }
  h1::before{
      display: none;
  }
  h1 span{
      padding: 0;
  }
}
