@charset "UTF-8";
/* Scroll horizontal */
.scroll {
  position: relative;
  width: 100vw;
  background-color: black;
  overflow: hidden;
  z-index: 1;
  margin: 0;
  padding: 0;
}
.scroll .m-scroll {
  overflow: hidden;
  height: 100%;
  display: flex;
  justify-content: space-between;
  white-space: nowrap;
  width: fit-content;
  margin: 0;
  font-size: 0;
  animation: scrollText 10s linear infinite;
}
.scroll .m-scroll span {
  display: inline-block;
  margin: 0;
  padding: 0;
  color: white;
}

@keyframes scrollText {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
/* Animación hover de galería */
img.gallery-item:hover {
  animation: leaves 0.25s ease forwards;
}

@keyframes leaves {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}
/* Texto de imagen expandida */
#imgtext {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  font-size: 20px;
}

/* Botón de cierre */
.closebtn {
  position: absolute;
  top: 10px;
  right: 15px;
  color: white;
  font-size: 35px;
  cursor: pointer;
}

/* Carousel de thumbnails */
#thumbnail-carousel img {
  width: 90px;
  height: 60px;
  opacity: 0.6;
}
#thumbnail-carousel .is-active img {
  opacity: 1;
}

/*# sourceMappingURL=gallery.css.map */
