.slideshow-glimpses {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  margin: 0px;
  padding: 0px;
}

/* slides */
.slide-gl {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow: hidden;
}

.slide-gl img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1); /* base zoom */
  will-change: transform;
}

/* overlay */
.overlay-gl {
  position: absolute;
  bottom: 60px;
  left: 60px;
  color: #fff;
  z-index: 3;
}

.overlay-gl h2 {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: "Roboto", sans-serif;
}

/* text animation mask */
.reveal-text {
    color: #fff;
}
.reveal-text span {
  display: inline-block;
}

/* gradient */
.slideshow-glimpses::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 101, 153, 1), transparent);
    z-index: 2;
    height: 30%;
    display: flex;
    align-self: flex-end;
}

/* dots */
.dots {
  position: absolute;
  bottom: 30px;
  right: 50px;
  display: flex;
  gap: 10px;
  z-index: 4;
}

.dot {
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.5;
}

.dot.active {
  background: #fff;
  opacity: 1;
}