
/*------------  ANIMATION DES BLOCS GUTENBERG EN BACK OFFICE AVEC LA LIBRAIRIE AOS ------------*/

/*
Pour que l'animation soit effective en back office j'ai établi le fichier
asset/css/aos-admin.css qui est une modification du fichier aos.css 
ou j'ai ajouté des keyframes.
Ce fichier est chargé dans l'editeur Gutenberg via le hook enqueue_block_editor_assets
Source Librairie AOS: https://github.com/michalsnik/aos/tree/v2#-animations
Pour les keyframes je me suis aidé de fichier CSS d'autres extensions:

Blocks Animation: CSS Animations for Gutenberg Blocks:
https://github.com/animate-css/animate.css/tree/main/source

Animate It!:
https://plugins.trac.wordpress.org/browser/animate-it/tags/3.0.3/assets/css/animate-animo.css


/***********************************************************************************************************
*
*	Régles pour les différents effets d'animation
*	Durée de l'animation
*   Retard d'animation
*   Assouplissement transition d'animation
*	  		
*************************************************************************************************************/

/*---------------------------------------------------  
    Régles pour les différents effets d'animation
----------------------------------------------------*/

@keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* la double notation [data-aos=fade][data-aos=fade]
   est pour éviter le !important */
.editor-styles-wrapper [data-aos=fade][data-aos=fade]{
  animation-name: fade;
}

@keyframes fade-up {
  0% {
    opacity: 0;
	transition-property:opacity,transform;
    transform:translate3d(0,100px,0);
  }

  100% {
    opacity: 1;
	transform:translateZ(0);
  }
}

.editor-styles-wrapper [data-aos=fade-up][data-aos=fade-up]{
    animation-name: fade-up;
}

@keyframes fade-down {
  0% {
    opacity: 0;
	transition-property:opacity,transform;
    transform: translate3d(0,-100px,0);
  }

  100% {
    opacity: 1;
	transform:translateZ(0);
  }
}

.editor-styles-wrapper [data-aos=fade-down][data-aos=fade-down]{
    animation-name: fade-down;
}

@keyframes fade-right {
  0% {
    opacity: 0;
	transition-property:opacity,transform;
    transform:translate3d(-100px,0,0);
  }

  100% {
    opacity: 1;
	transform:translateZ(0);
  }
}


.editor-styles-wrapper [data-aos=fade-right][data-aos=fade-right] {
    animation-name: fade-right;
}

@keyframes fade-left {
  0% {
    opacity: 0;
	transition-property:opacity,transform;
    transform:translate3d(100px,0,0);
  }

  100% {
    opacity: 1;
	transform:translateZ(0);
  }
}

.editor-styles-wrapper [data-aos=fade-left][data-aos=fade-left] {
    animation-name: fade-left;
}

@keyframes fade-up-right {
  0% {
    opacity: 0;
	transition-property:opacity,transform;
    transform:translate3d(-100px,100px,0);
  }

  100% {
    opacity: 1;
	transform:translateZ(0);
  }
}

.editor-styles-wrapper [data-aos=fade-up-right][data-aos=fade-up-right] {
    animation-name: fade-up-right;
}

@keyframes fade-up-left {
  0% {
    opacity: 0;
	transition-property:opacity,transform;
    transform:translate3d(100px,100px,0);
  }

  100% {
    opacity: 1;
	transform:translateZ(0);
  }
}

.editor-styles-wrapper [data-aos=fade-up-left][data-aos=fade-up-left] {
    animation-name: fade-up-left;
}

@keyframes fade-down-right {
  0% {
    opacity: 0;
	transition-property:opacity,transform;
    transform:translate3d(-100px,-100px,0);
  }

  100% {
    opacity: 1;
	transform:translateZ(0);
  }
}

.editor-styles-wrapper [data-aos=fade-down-right][data-aos=fade-down-right] {
    animation-name: fade-down-right;
}

@keyframes fade-down-left {
  0% {
    opacity: 0;
	transition-property:opacity,transform;
    transform:translate3d(100px,-100px,0);
  }

  100% {
    opacity: 1;
	transform:translateZ(0);
  }
}

.editor-styles-wrapper [data-aos=fade-down-left][data-aos=fade-down-left] {
    animation-name: fade-down-left;
}


@keyframes flip-left {
  0% {
    backface-visibility:hidden;
    transition-property:transform;
	transform:perspective(2500px) rotateY(-100deg);
  }

  100% {
    transform:perspective(2500px) rotateY(0);
  }
}

.editor-styles-wrapper [data-aos=flip-left][data-aos=flip-left] {
    animation-name: flip-left;
}

@keyframes flip-right {
  0% {
    backface-visibility:hidden;
    transition-property:transform;
	transform:perspective(2500px) rotateY(100deg);
  }

  100% {
    transform:perspective(2500px) rotateY(0);
  }
}

.editor-styles-wrapper [data-aos=flip-right][data-aos=flip-right] {
    animation-name: flip-right;
}

@keyframes flip-up {
  0% {
    backface-visibility:hidden;
    transition-property:transform;
	transform:perspective(2500px) rotateX(-100deg);
  }

  100% {
    transform:perspective(2500px) rotateX(0);
  }
}

.editor-styles-wrapper [data-aos=flip-up][data-aos=flip-up] {
    animation-name: flip-up;
}

@keyframes flip-down {
  0% {
    backface-visibility:hidden;
    transition-property:transform;
	transform:perspective(2500px) rotateX(100deg);
  }

  100% {
    transform:perspective(2500px) rotateX(0);
  }
}

.editor-styles-wrapper [data-aos=flip-down][data-aos=flip-down] {
    animation-name: flip-down;
}


@keyframes reveal-curtain {
	from {
		opacity: 0;
		clip-path: inset(45% 20% 45% 20%);
	}
	to {
		opacity: 1;
		clip-path: inset(0% 0% 0% 0%);
	}
}
.editor-styles-wrapper [data-aos=reveal-curtain][data-aos=reveal-curtain] {
    animation-name: reveal-curtain;
}


@keyframes reveal-wipe {
	from { 
		clip-path: inset(-50% 100% -50% 0); /* right=100%: fully hidden */ 
	} 
	to   { 
		clip-path: inset(-50%   0% -50% 0); /* right=  0%: fully revealed */
	} 
}
.editor-styles-wrapper [data-aos=reveal-wipe][data-aos=reveal-wipe] {
    animation-name: reveal-wipe;
}


@keyframes roll-in {
  0% {
    opacity:0;
    transform:translate3d(-100%,0,0) rotate(-120deg);
  }

  100% {
	 opacity: 1;
     transform:translateZ(0);
  }
}

.editor-styles-wrapper [data-aos=roll-in][data-aos=roll-in] {
    animation-name: roll-in;
}


@keyframes rotate {
  0% {
    opacity:0;
    transform:rotate(-200deg);
  }

  100% {
	 opacity: 1;
     transform:translateZ(0);
  }
}

.editor-styles-wrapper [data-aos=rotate][data-aos=rotate] {
    animation-name: rotate;
	transform-origin:center;
}


@keyframes rotate-down-left {
  0% {
    opacity:0;
    transform:rotate(-45deg);
  }

  100% {
	 opacity:1;
     transform:translateZ(0);
  }
}

.editor-styles-wrapper [data-aos=rotate-down-left][data-aos=rotate-down-left] {
    animation-name: rotate-down-left;
	transform-origin:left bottom;
}

@keyframes rotate-down-right {
  0% {
    opacity: 0;
	transform:rotate(45deg);
  }

  100% {
	 opacity:1;
     transform:translateZ(0);
  }
}

.editor-styles-wrapper [data-aos=rotate-down-right][data-aos=rotate-down-right] {
    animation-name: rotate-down-right;
	transform-origin:right bottom;
}

@keyframes rotate-up-left {
  0% {
    opacity: 0;
	transform:rotate(45deg);
  }

  100% {
	 opacity:1;
     transform:translateZ(0);
  }
}

.editor-styles-wrapper [data-aos=rotate-up-left][data-aos=rotate-up-left] {
    animation-name: rotate-up-left;
	transform-origin:left bottom;
}

@keyframes rotate-up-right {
  0% {
    opacity: 0;
	transform:rotate(-90deg);
  }

  100% {
	 opacity:1;
     transform:translateZ(0);
  }
}

.editor-styles-wrapper [data-aos=rotate-up-right][data-aos=rotate-up-right] {
    animation-name: rotate-up-right;
	transform-origin:right bottom;
}


@keyframes slide-up {
  0% {
    transform:translate3d(0,100%,0);
  }

  100% {
     transform: translate3d(0, 0, 0);
  }
}

.editor-styles-wrapper [data-aos=slide-up][data-aos=slide-up] {
    animation-name: slide-up;
}

@keyframes slide-down {
  0% {
    transform:translate3d(0,-100%,0);
  }

  100% {
	 transform: translate3d(0, 0, 0);
  }
}


.editor-styles-wrapper [data-aos=slide-down][data-aos=slide-down] {
    animation-name: slide-down;
}

@keyframes slide-right {
  0% {
	transform: translate3d(-2000px, 0, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.editor-styles-wrapper [data-aos=slide-right][data-aos=slide-right] {
    animation-name: slide-right;
}

@keyframes slide-left {
  0% {
	transform: translate3d(2000px, 0, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.editor-styles-wrapper [data-aos=slide-left][data-aos=slide-left] {
    animation-name: slide-left;
}

.editor-styles-wrapper [data-aos=twirl-out][data-aos=twirl-out] {
    animation-name: twirl-out;
}


@keyframes zoom-in {
  0% {
    opacity: 0;
    transform:scale(.6);
	transition-property:opacity,transform
  }

  50% {
    opacity:1;
    transform:translateZ(0) scale(1);
  }
}

.editor-styles-wrapper [data-aos=zoom-in][data-aos=zoom-in] {
    animation-name: zoom-in;
}


@keyframes zoom-in-up {
  0% {
    opacity: 0;
    transform:translate3d(0,100px,0) scale(.6);
  }

  60% {
    opacity: 1;
    transform:translateZ(0) scale(1);
  }
}

.editor-styles-wrapper [data-aos=zoom-in-up][data-aos=zoom-in-up] {
    animation-name: zoom-in-up;
}

@keyframes zoom-in-down {
  0% {
    opacity: 0;
    transform:translate3d(0,-100px,0) scale(.6);
  }

  60% {
    opacity: 1;
    transform:translateZ(0) scale(1);
  }
}

.editor-styles-wrapper [data-aos=zoom-in-down][data-aos=zoom-in-down] {
    animation-name: zoom-in-down;
}

@keyframes zoom-in-right {
  0% {
    opacity: 0;
    transform:translate3d(-100px,0,0) scale(.6);
  }

  60% {
    opacity: 1;
    transform:translateZ(0) scale(1);
  }
}

.editor-styles-wrapper [data-aos=zoom-in-right][data-aos=zoom-in-right] {
    animation-name: zoom-in-right;
}

@keyframes zoom-in-left {
  0% {
    opacity: 0;
    transform:translate3d(100px,0,0) scale(.6);
  }

  60% {
    opacity: 1;
    transform:translateZ(0) scale(1);
  }
}

.editor-styles-wrapper [data-aos=zoom-in-left][data-aos=zoom-in-left] {
    animation-name: zoom-in-left;
}

@keyframes zoom-out {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
    transform: scale(1.2);
  }

  100% {
    opacity: 1;
  }
}

.editor-styles-wrapper [data-aos=zoom-out][data-aos=zoom-out] {
    animation-name: zoom-out;
}

@keyframes zoom-out-up {
  0% {
    opacity: 0;
  }
  
  40% {
    opacity: 0;
    transform:translate3d(0,100px,0) scale(1.2);
  }

  100% {
    opacity: 1;
    transform: translateZ(0) scale(1);
  }
}

.editor-styles-wrapper [data-aos=zoom-out-up][data-aos=zoom-out-up] {
    animation-name: zoom-out-up;
}

@keyframes zoom-out-down {
  0% {
    opacity: 0;
  }

  40% {
    opacity: 0;
    transform:translate3d(0,-100px,0) scale(1.2);
  }

  100% {
    opacity: 1;
    transform: translateZ(0) scale(1);
  }
}

.editor-styles-wrapper [data-aos=zoom-out-down][data-aos=zoom-out-down] {
    animation-name: zoom-out-down;
}

@keyframes zoom-out-left {
  0% {
    opacity: 0;
  }
  
  40% {
    opacity: 0;
    transform:translate3d(100px,0,0) scale(1.2);
  }

  100% {
    opacity: 1;
    transform: translateZ(0) scale(1);
  }
}

.editor-styles-wrapper [data-aos=zoom-out-left][data-aos=zoom-out-left] {
    animation-name: zoom-out-left;
}

@keyframes zoom-out-right {
  0% {
    opacity: 0;
  }
  
  40% {
    opacity: 0;
    transform:translate3d(-100px,0,0) scale(1.2)
  }

  100% {
    opacity: 1;
    transform: translateZ(0) scale(1);
  }
}

.editor-styles-wrapper [data-aos=zoom-out-right][data-aos=zoom-out-right] {
    animation-name: zoom-out-right;
}




/*----------------------------------  
        Durée de l'animation
------------------------------------*/

.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="100"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="100"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="100"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="100"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="100"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="100"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="100"]{
	animation-duration: .1s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="200"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="200"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="200"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="200"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="200"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="200"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="200"]{
	animation-duration: .2s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="300"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="300"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="300"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="300"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="300"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="300"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="300"]{
	animation-duration: .3s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="400"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="400"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="400"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="400"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="400"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="400"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="400"]{
	animation-duration: .4s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="500"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="500"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="500"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="500"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="500"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="500"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="500"]{
	animation-duration: .5s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="600"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="600"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="600"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="600"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="600"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="600"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="600"]{
	animation-duration: .6s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="700"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="700"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="700"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="700"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="700"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="700"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="700"]{
	animation-duration: .7s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="800"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="800"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="800"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="800"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="800"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="800"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="800"]{
	animation-duration: .8s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="900"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="900"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="900"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="900"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="900"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="900"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="900"]{
	animation-duration: .9s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="1000"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="1000"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="1000"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="1000"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="1000"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="1000"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="1000"]{
	animation-duration: 1s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="1100"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="1100"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="1100"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="1100"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="1100"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="1100"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="1100"]{
	animation-duration: 1.1s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="1200"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="1200"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="1200"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="1200"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="1200"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="1200"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="1200"]{
	animation-duration: 1.2s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="1300"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="1300"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="1300"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="1300"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="1300"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="1300"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="1300"]{
	animation-duration: 1.3s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="1400"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="1400"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="1400"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="1400"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="1400"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="1400"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="1400"]{
	animation-duration: 1.4s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="1500"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="1500"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="1500"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="1500"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="1500"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="1500"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="1500"]{
	animation-duration: 1.5s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="1600"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="1600"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="1600"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="1600"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="1600"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="1600"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="1600"]{
	animation-duration: 1.6s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="1700"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="1700"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="1700"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="1700"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="1700"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="1700"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="1700"]{
	animation-duration: 1.7s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="1800"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="1800"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="1800"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="1800"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="1800"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="1800"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="1800"]{
	animation-duration: 1.8s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="1900"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="1900"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="1900"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="1900"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="1900"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="1900"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="1900"]{
	animation-duration: 1.9s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="2000"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="2000"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="2000"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="2000"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="2000"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="2000"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="2000"]{
	animation-duration: 2s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="2100"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="2100"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="2100"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="2100"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="2100"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="2100"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="2100"]{
	animation-duration: 2.1s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="2200"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="2200"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="2200"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="2200"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="2200"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="2200"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="2200"]{
	animation-duration: 2.2s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="2300"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="2300"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="2300"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="2300"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="2300"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="2300"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="2300"]{
	animation-duration: 2.3s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="2400"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="2400"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="2400"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="2400"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="2400"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="2400"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="2400"]{
	animation-duration: 2.4s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="2500"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="2500"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="2500"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="2500"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="2500"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="2500"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="2500"]{
	animation-duration: 2.5s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="2600"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="2600"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="2600"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="2600"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="2600"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="2600"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="2600"]{
	animation-duration: 2.6s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="2700"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="2700"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="2700"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="2700"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="2700"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="2700"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="2700"]{
	animation-duration: 2.7s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="2800"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="2800"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="2800"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="2800"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="2800"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="2800"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="2800"]{
	animation-duration: 2.8s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="2900"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="2900"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="2900"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="2900"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="2900"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="2900"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="2900"]{
	animation-duration: 2.9s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="3000"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="3000"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="3000"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="3000"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="3000"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="3000"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="3000"]{
	animation-duration: 3s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="3100"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="3100"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="3100"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="3100"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="3100"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="3100"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="3100"]{
	animation-duration: 3.1s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="3200"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="3200"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="3200"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="3200"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="3200"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="3200"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="3200"]{
	animation-duration: 3.2s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="3300"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="3300"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="3300"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="3300"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="3300"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="3300"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="3300"]{
	animation-duration: 3.3s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="3400"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="3400"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="3400"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="3400"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="3400"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="3400"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="3400"]{
	animation-duration: 3.4s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="3500"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="3500"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="3500"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="3500"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="3500"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="3500"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="3500"]{
	animation-duration: 3.5s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="3600"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="3600"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="3600"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="3600"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="3600"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="3600"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="3600"]{
	animation-duration: 3.6s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="3700"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="3700"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="3700"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="3700"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="3700"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="3700"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="3700"]{
	animation-duration: 3.7s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="3800"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="3800"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="3800"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="3800"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="3800"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="3800"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="3800"]{
	animation-duration: 3.8s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="3900"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="3900"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="3900"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="3900"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="3900"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="3900"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="3900"]{
	animation-duration: 3.9s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-duration="4000"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-duration="4000"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-duration="4000"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-duration="4000"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-duration="4000"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-duration="4000"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-duration="4000"]{
	animation-duration: 4s;
}
 
/*----------------------------------  
        Retard d'animation
------------------------------------*/

.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="100"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="100"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="100"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="100"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="100"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="100"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="100"]{
	animation-duration: .1s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="200"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="200"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="200"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="200"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="200"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="200"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="200"]{
	animation-duration: .2s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="300"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="300"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="300"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="300"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="300"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="300"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="300"]{
	animation-delay: .3s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="400"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="400"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="400"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="400"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="400"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="400"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="400"]{
	animation-delay: .4s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="500"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="500"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="500"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="500"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="500"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="500"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="500"]{
	animation-delay: .5s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="600"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="600"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="600"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="600"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="600"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="600"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="600"]{
	animation-delay: .6s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="700"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="700"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="700"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="700"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="700"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="700"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="700"]{
	animation-delay: .7s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="800"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="800"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="800"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="800"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="800"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="800"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="800"]{
	animation-delay: .8s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="900"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="900"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="900"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="900"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="900"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="900"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="900"]{
	animation-delay: .9s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="1000"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="1000"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="1000"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="1000"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="1000"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="1000"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="1000"]{
	animation-delay: 1s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="1100"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="1100"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="1100"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="1100"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="1100"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="1100"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="1100"]{
	animation-delay: 1.1s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="1200"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="1200"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="1200"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="1200"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="1200"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="1200"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="1200"]{
	animation-delay: 1.2s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="1300"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="1300"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="1300"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="1300"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="1300"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="1300"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="1300"]{
	animation-delay: 1.3s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="1400"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="1400"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="1400"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="1400"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="1400"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="1400"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="1400"]{
	animation-delay: 1.4s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="1500"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="1500"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="1500"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="1500"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="1500"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="1500"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="1500"]{
	animation-delay: 1.5s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="1600"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="1600"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="1600"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="1600"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="1600"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="1600"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="1600"]{
	animation-delay: 1.6s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="1700"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="1700"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="1700"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="1700"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="1700"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="1700"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="1700"]{
	animation-delay: 1.7s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="1800"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="1800"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="1800"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="1800"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="1800"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="1800"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="1800"]{
	animation-delay: 1.8s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="1900"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="1900"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="1900"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="1900"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="1900"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="1900"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="1900"]{
	animation-delay: 1.9s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="2000"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="2000"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="2000"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="2000"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="2000"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="2000"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="2000"]{
	animation-delay: 2s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="2100"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="2100"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="2100"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="2100"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="2100"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="2100"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="2100"]{
	animation-delay: 2.1s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="2200"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="2200"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="2200"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="2200"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="2200"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="2200"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="2200"]{
	animation-delay: 2.2s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="2300"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="2300"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="2300"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="2300"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="2300"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="2300"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="2300"]{
	animation-delay: 2.3s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="2400"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="2400"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="2400"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="2400"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="2400"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="2400"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="2400"]{
	animation-delay: 2.4s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="2500"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="2500"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="2500"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="2500"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="2500"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="2500"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="2500"]{
	animation-delay: 2.5s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="2600"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="2600"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="2600"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="2600"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="2600"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="2600"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="2600"]{
	animation-delay: 2.6s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="2700"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="2700"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="2700"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="2700"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="2700"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="2700"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="2700"]{
	animation-delay: 2.7s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="2800"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="2800"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="2800"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="2800"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="2800"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="2800"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="2800"]{
	animation-delay: 2.8s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="2900"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="2900"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="2900"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="2900"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="2900"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="2900"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="2900"]{
	animation-delay: 2.9s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="3000"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="3000"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="3000"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="3000"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="3000"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="3000"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="3000"]{
	animation-delay: 3s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="3100"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="3100"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="3100"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="3100"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="3100"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="3100"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="3100"]{
	animation-delay: 3.1s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="3200"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="3200"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="3200"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="3200"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="3200"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="3200"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="3200"]{
	animation-delay: 3.2s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="3300"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="3300"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="3300"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="3300"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="3300"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="3300"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="3300"]{
	animation-delay: 3.3s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="3400"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="3400"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="3400"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="3400"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="3400"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="3400"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="3400"]{
	animation-delay: 3.4s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="3500"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="3500"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="3500"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="3500"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="3500"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="3500"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="3500"]{
	animation-delay: 3.5s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="3600"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="3600"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="3600"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="3600"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="3600"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="3600"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="3600"]{
	animation-delay: 3.6s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="3700"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="3700"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="3700"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="3700"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="3700"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="3700"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="3700"]{
	animation-delay: 3.7s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="3800"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="3800"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="3800"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="3800"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="3800"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="3800"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="3800"]{
	animation-delay: 3.8s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="3900"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="3900"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="3900"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="3900"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="3900"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="3900"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="3900"]{
	animation-delay: 3.9s;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-delay="4000"],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-delay="4000"],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-delay="4000"],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-delay="4000"],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-delay="4000"],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-delay="4000"],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-delay="4000"]{
	animation-delay: 4s;
}

/*-----------------------------------------  
   Assouplissement transition d'animation
-------------------------------------------*/

.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-easing=ease],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-easing=ease],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-easing=ease],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-easing=ease],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-easing=ease],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-easing=ease],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-easing=ease]{
	animation-timing-function:ease;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-easing=ease-in],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-easing=ease-in],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-easing=ease-in],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-easing=ease-in],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-easing=ease-in],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-easing=ease-in],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-easing=ease-in]{
	animation-timing-function:ease-in;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-easing=ease-out],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-easing=ease-out],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-easing=ease-out],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-easing=ease-out],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-easing=ease-out],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-easing=ease-out],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-easing=ease-out]{
	animation-timing-function:ease-out;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-easing=ease-in-out],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-easing=ease-in-out],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-easing=ease-in-out],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-easing=ease-in-out],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-easing=ease-in-out],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-easing=ease-in-out],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-easing=ease-in-out]{
	animation-timing-function:ease-in-out;
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-easing=ease-in-back],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-easing=ease-in-back],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-easing=ease-in-back],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-easing=ease-in-back],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-easing=ease-in-back],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-easing=ease-in-back],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-easing=ease-in-back]{
	animation-timing-function:cubic-bezier(.6,-.28,.735,.045);
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-easing=ease-out-back],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-easing=ease-out-back],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-easing=ease-out-back],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-easing=ease-out-back],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-easing=ease-out-back],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-easing=ease-out-back],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-easing=ease-out-back]{
	animation-timing-function:cubic-bezier(.175,.885,.32,1.275);
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-easing=ease-in-out-back],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-easing=ease-in-out-back],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-easing=ease-in-out-back],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-easing=ease-in-out-back],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-easing=ease-in-out-back],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-easing=ease-in-out-back],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-easing=ease-in-out-back]{
	animation-timing-function:cubic-bezier(.68,-.55,.265,1.55);
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-easing=ease-in-sine],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-easing=ease-in-sine],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-easing=ease-in-sine],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-easing=ease-in-sine],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-easing=ease-in-sine],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-easing=ease-in-sine],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-easing=ease-in-sine]{
	animation-timing-function:cubic-bezier(.47,0,.745,.715);
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-easing=ease-out-sine],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-easing=ease-out-sine],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-easing=ease-out-sine],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-easing=ease-out-sine],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-easing=ease-out-sine],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-easing=ease-out-sine],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-easing=ease-out-sine]{
	animation-timing-function:cubic-bezier(.39,.575,.565,1);
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-easing=ease-in-out-sine],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-easing=ease-in-out-sine],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-easing=ease-in-out-sine],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-easing=ease-in-out-sine],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-easing=ease-in-out-sine],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-easing=ease-in-out-sine],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-easing=ease-in-out-sine]{
	animation-timing-function:cubic-bezier(.445,.05,.55,.95);
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-easing=ease-in-quad],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-easing=ease-in-quad],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-easing=ease-in-quad],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-easing=ease-in-quad],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-easing=ease-in-quad],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-easing=ease-in-quad],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-easing=ease-in-quad]{
	animation-timing-function:cubic-bezier(.55,.085,.68,.53);
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-easing=ease-out-quad],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-easing=ease-out-quad],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-easing=ease-out-quad],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-easing=ease-out-quad],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-easing=ease-out-quad],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-easing=ease-out-quad],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-easing=ease-out-quad]{
	animation-timing-function:cubic-bezier(.25,.46,.45,.94);
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-easing=ease-in-out-quad],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-easing=ease-in-out-quad],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-easing=ease-in-out-quad],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-easing=ease-in-out-quad],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-easing=ease-in-out-quad],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-easing=ease-in-out-quad],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-easing=ease-in-out-quad]{
	animation-timing-function:cubic-bezier(.455,.03,.515,.955)
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-easing=ease-in-cubic],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-easing=ease-in-cubic],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-easing=ease-in-cubic],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-easing=ease-in-cubic],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-easing=ease-in-cubic],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-easing=ease-in-cubic],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-easing=ease-in-cubic]{
	animation-timing-function:cubic-bezier(.55,.085,.68,.53);
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-easing=ease-out-cubic],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-easing=ease-out-cubic],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-easing=ease-out-cubic],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-easing=ease-out-cubic],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-easing=ease-out-cubic],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-easing=ease-out-cubic],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-easing=ease-out-cubic]{
	animation-timing-function:cubic-bezier(.25,.46,.45,.94);
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-easing=ease-in-out-cubic],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-easing=ease-in-out-cubic],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-easing=ease-in-out-cubic],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-easing=ease-in-out-cubic],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-easing=ease-in-out-cubic],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-easing=ease-in-out-cubic],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-easing=ease-in-out-cubic]{
	animation-timing-function:cubic-bezier(.455,.03,.515,.955);
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-easing=ease-in-quart],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-easing=ease-in-quart],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-easing=ease-in-quart],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-easing=ease-in-quart],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-easing=ease-in-quart],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-easing=ease-in-quart],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-easing=ease-in-quart]{
	animation-timing-function:cubic-bezier(.55,.085,.68,.53);
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-easing=ease-out-quart],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-easing=ease-out-quart],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-easing=ease-out-quart],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-easing=ease-out-quart],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-easing=ease-out-quart],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-easing=ease-out-quart],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-easing=ease-out-quart]{
	animation-timing-function:cubic-bezier(.25,.46,.45,.94);
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-easing=ease-in-out-quart],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-easing=ease-in-out-quart],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-easing=ease-in-out-quart],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-easing=ease-in-out-quart],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-easing=ease-in-out-quart],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-easing=ease-in-out-quart],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-easing=ease-in-out-quart]{
	animation-timing-function:cubic-bezier(.455,.03,.515,.955);
}
.editor-styles-wrapper [data-aos^=fade][data-aos^=fade][data-aos-easing=linear],
.editor-styles-wrapper [data-aos^=zoom][data-aos^=zoom][data-aos-easing=linear],
.editor-styles-wrapper [data-aos^=flip][data-aos^=flip][data-aos-easing=linear],
.editor-styles-wrapper [data-aos^=reveal][data-aos^=reveal][data-aos-easing=linear],
.editor-styles-wrapper [data-aos^=roll][data-aos^=roll][data-aos-easing=linear],
.editor-styles-wrapper [data-aos^=rotate][data-aos^=rotate][data-aos-easing=linear],
.editor-styles-wrapper [data-aos^=slide][data-aos^=slide][data-aos-easing=linear]{
	animation-timing-function:cubic-bezier(.25,.25,.75,.75);
}