@charset "UTF-8";
/* CSS Document */
  
.box-scroll-animate {
	opacity: 0; /* Initially hidden */
	transform: translateY(30%); /* Move element outside the viewport vertically */
	transition: opacity 1s ease, transform 1s ease; /* Smooth transition for opacity and transform */
}

.box-scroll-animate.show {
	opacity: 1; /* Fade in effect */
	transform: translateY(0); /* Move element to its original position */
  }