* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



#load-transition {
    position: fixed; /* Fixed position to cover the entire viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff; /* Background color 46A29F */
    z-index: 1000; /* Ensure it's on top of everything */
	animation: slideOut 1s cubic-bezier(.64,.96,.64,.98) .5s forwards;
   /* Animation properties */
	 
}

/*#rev-lig {position:absolute; left:50%; transform:translate(-50%, 0%); z-index:999999; animation:fadeOut 0.25s linear forwards; opacity:0;}*/



/* Keyframes for sliding out from top to bottom */
@keyframes slideOut {
    0% {
        opacity:1; /* Start at the top */
		
    }
    100% {
        opacity: 0;
		/* Slide out to the bottom */
		
    }
}

@keyframes fadeOut {
    0% {
      
		opacity:1;
    }
 
    
	100% { opacity:0;
	
	}
}
