/*
Theme Name: ECOTEK Ltd Theme
Author: JTF Web Design & Development
Version: 1.0
*/

.review-card {
  transition: all 1.2s ease-out;
  -webkit-transition: all 1.2s ease-out;
  -moz-transition: all 1.2s ease-out;
  -ms-transition: all 1.2s ease-out;
  -o-transition: all 1.2s ease-out;
}

#lightbox-overlay {
  transition: opacity 0.5s ease;
  opacity: 0;
}
#lightbox-overlay.show {
  opacity: 1;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroBgZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

.hero-bg {
  animation: heroBgZoom 1.6s ease-out forwards;
}

.hero-animate {
  opacity: 0;
  animation: heroFadeUp 0.9s ease-out forwards;
}

.hero-delay-1 {
  animation-delay: 0.2s;
}
.hero-delay-2 {
  animation-delay: 0.4s;
}
.hero-delay-3 {
  animation-delay: 0.6s;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cff-header-hero {
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}

.cff-wrapper-ctn {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}
