/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 02 2025 | 16:33:32 */
@keyframe spin {
	
	0%{
		
		transform: rotate(0deg)
		
	}
	
	100%{
		
		transform: rotate(360deg)
		
	}
	
}

.animCircle {
	
	animation: spin 10s linear infinite;
	
}

.animCircle img {
	
	width: auto !important;
	
}

.animImg {
	
	position: relative;
	z-index: 1;
	transform: translateY(80px);
	opacity: 0;
	transition: transform .3s ease-out, opacity .3s ease-out;
	
}
.animImg.show {
	
	transform: translateY(0);
	opacity: 1;
	
}

.ekit-heading--title div,
.ekit-heading--title span {
  opacity: 0;
  display: inline-block !important;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.ekit-heading--title div.show,
.ekit-heading--title span.show {
  opacity: 1;
  transform: translateY(0);
	 display: inline-block !important;
}

/*@keyframes write {
  to {
    width: 100%;
  }
}
.animWritting h2 {
	

	overflow: hidden;
	display: inline-block;
  white-space: nowrap;
  border-right: 2px solid transparent; /* simule un "curseur" */
  width: 0;
	line-height: 1.3;
	transition: none;
	
}

.animWritting.animate h2 {
  animation: write 2s steps(30) forwards;
}/*