.global__gallery {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.imgen_gallery {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.imgen_gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.global__gallery > .container {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.info_gallery {
  color: #fff;
  text-align: left;
  width: 100%;
  pointer-events: auto;

  transition: opacity 0.4s ease;
  border-radius: 0.5rem;
}
.info_gallery h2 {
  margin: 0;
  font-size: 3.8rem;
  line-height: 1.2;
  width: 40%;
  word-wrap: break-word;
  color: var(--white);
}
.image-galery-custom {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media screen and (max-width: 768px) {
  .info_gallery h2 {
    font-size: 1.8rem;
    line-height: 1.2;
    width: 100%;
    word-wrap: break-word;
  }
}
