.fadeIn {
  opacity: 0;
  transition: all 0.8s ease-out;
  transition-delay: 0.6s; 
}

.fadeIn.show {
  opacity: 1;
  transform: translate(0, 0);
}


.fadeIn-left {
  transform: translateX(-40px);
}

.fadeIn-left.show {
  transform: translateX(0);
  transition-delay: 0.6s;
}


.fadeIn-right {
  transform: translateX(40px);
  transition-delay: 0.6s;
}

.fadeIn-right.show {
  transform: translateX(0);
}


.fadeIn-top {
  transform: translateY(-40px);
    transition-delay: 0.6s; 
}

.fadeIn-top.show {
  transform: translateY(0);
}


.fadeIn-bottom {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease-out;
  transition-delay: 0.6s; 
}

.fadeIn-bottom.show {
  opacity: 1;
  transform: translateY(0);
}