.gsapFadeUp_init{
    opacity: 0;
    transform: translateY(-50px) ;
}
.ourClients_card:not(.ourClients_card.gsapFadeUp_init),
.ourServices_card:not(.ourServices_card.gsapFadeUp_init),
.services_card:not(.services_card.gsapFadeUp_init),
.projects_card:not(.projects_card.gsapFadeUp_init),
.advantages_card:not(.advantages_card.gsapFadeUp_init){
    opacity: 0; /* Make sure the element starts as transparent */
    animation: fadeIn 1.5s ease-in-out forwards; /* Animation duration and timing */
}
/* Define the keyframes for the fade-in effect */
@keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

.mask_in_scroll{
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}