.header-3 .mega-menu-wrapper .header-main .main-menu ul li a,
.header-3 .mega-menu-wrapper .header-main .main-menu ul li a i {
  color: rgb(255, 255, 255) !important;
}
/* Lightbox */
.gallery h2 {
  color: #fc5a11;
  text-align: center;
  margin-bottom: 12px;
}
.gallery p {
  text-align: center;
  max-width: 650px;
  margin: auto;
  font-weight: 500;
  margin-bottom: 20px;
}

.lightbox_img_wrap {
  padding-top: 65%;
  position: relative;
  overflow: hidden;
}

.lightbox-enabled {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  object-fit: cover;
  cursor: pointer;
  transition: 0.3s;
}
.lightbox-enabled:hover {
  transform: scale(1.1);
}

.lightbox-container {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease-in-out;
}

.lightbox-container.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-image-wrapper {
  transform: scale(0);
  transition: 0.4s ease;
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.lightbox-container.active .lightbox-image-wrapper {
  transform: scale(1);
}

.lightbox-image {
  width: 100%;
  max-height: 80vh;
  object-fit: cover;
}

/* Navigation buttons */
.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 55px;
  color: white;
  cursor: pointer;
  z-index: 999999;
  padding: 10px;
  user-select: none;
}

.left {
  left: 40px;
}
.right {
  right: 40px;
}

#close {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 50px;
  color: white;
  cursor: pointer;
  z-index: 999999;
}

/* Animations */
@keyframes slideleft {
  33% {
    transform: translateX(-300px);
    opacity: 0;
  }
  66% {
    transform: translateX(300px);
    opacity: 0;
  }
}
.slideleft {
  animation: slideleft 0.5s ease;
}

@keyframes slideright {
  33% {
    transform: translateX(300px);
    opacity: 0;
  }
  66% {
    transform: translateX(-300px);
    opacity: 0;
  }
}
.slideright {
  animation: slideright 0.5s ease;
}

.lightbox-caption {
  color: #fff;
  text-align: center;
  margin-top: 15px;
  font-size: 18px;
  opacity: 0.9;
  font-weight: 500;
  max-width: 90vw;
}

@media (max-width:575px) {
  .right {
    right: 0;
}
.left{
  left: 0;
}
#close {
  top: 0;
  right: 0;
}

}
