/* Start custom CSS for html, class: .elementor-element-d2c24ab */.entry-title{
    visibility: hidden;
}
.title {
    text-align: center;
    font-size: 44px;
    text-transform: uppercase;
}

.fade-gallery {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 500px;
  overflow: hidden;
  margin: 0 auto;
}

.fade-gallery .gallery-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.fade-gallery .gallery-item.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.fade-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fade-gallery .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.4s ease;
  font-size: 20px;
  text-align: center;
  pointer-events: none;
}

.fade-gallery .gallery-item.active:hover .title {
  opacity: 1;
}


/* Lightbox overlay */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 6px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.lightbox .prev,
.lightbox .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 50px;
  font-weight: bold;
  padding: 8px;
  user-select: none;
}

.lightbox .prev { left: 20px; }
.lightbox .next { right: 20px; }

.lightbox .caption {
  color: #fff;
  margin-top: 10px;
  font-size: 18px;
  text-align: center;
}/* End custom CSS */