/***** ANIMATIONS *****/


@keyframes slideInRight {
  0%{
    transform: translate3d(5%, 0, 0);
    visibility: visible;
  }
  
  50%{
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }




  100%{
    transform: translate3d(5%, 0, 0);
  }
}


.slideInRight {
  animation-name: slideInRight;
  animation-delay: 1s; 
  animation-duration: 10s;  
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  
  -webkit-animation-name: slideInRight;
  -webkit-animation-delay: 1s; 
  -webkit-animation-duration: 10s; 
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
}


@keyframes slideInLeft {
  0%{
    transform: translate3d(-5%, 0, 0);
    visibility: visible;
  }
  
  50%{
    transform: translate3d(0, 0, 0);
  }


  100%{
    transform: translate3d(-5%, 0, 0);
  }
}


.slideInLeft {
  animation-name: slideInLeft;
  animation-delay: 1s; 
  animation-duration: 10s;  
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  
  -webkit-animation-name: slideInLeft;
  -webkit-animation-delay: 1s; 
  -webkit-animation-duration: 10s; 
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
 }




@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }


  0% {
    opacity: 0;
    transform: translate3d(-200px, 0, 0);
  }


  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }


  75% {
    opacity: 1;
    transform: translate3d(-10px, 0, 0);
  }


  90% {
    opacity: 1;
    transform: translate3d(5px, 0, 0);
  }


  to {
    opacity: 1;
    transform: none;
  }
}


.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}


.hidden {
    opacity: 0
}
.visible {
    opacity: 1
}


@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideInLeft2 {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }


  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight2 {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }


  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }


  50% {
    opacity: 1;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }


  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }


  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes justeFade {
  from {
    opacity: 0;
  }


  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}



/* --- */


.wrap_titre_home h1,
.wrap_titre_home h2,
.first-groupe,
.wrap_metier,
.wpcf7,
.section1_home{
	animation: slideInUp ease-in-out 1s;
}

.section1_home .wp-block-column{
	animation: fadeInLeft ease-in-out 1.3s;
}

.section1_home img,
#contenu_page_base h2{
	animation: fadeInLeft ease-in-out 1s;
}

.wrap_chiffres{
	animation: justeFade ease-in-out .6s;
}

.top_carriere .wp-block-column:nth-child(1){
	animation: slideInUp ease-in-out 1s;
}

.top_carriere .wp-block-column:nth-child(2){
	animation: slideInUp ease-in-out 1.3s;
}

.top_carriere .wp-block-column:nth-child(3){
	animation: slideInUp ease-in-out 1.6s;
}

.bg_top_page h1{
	animation: justeFade ease-in-out 1.6s;
}

.bg_top_page .wrap_title_base .filarianne{
	animation: justeFade ease-in-out 1s;
}

.list-frise__item {
    -webkit-animation-delay: 1000ms;
    -moz-animation-delay: 1000ms;
    -o-animation-delay: 1000ms;
    animation-delay: 1000ms;
}

.list-frise__item:nth-of-type(1) {
    -webkit-animation-delay: 500ms;
    -moz-animation-delay: 500ms;
    -o-animation-delay: 500ms;
    animation-delay: 500ms;
}

.list-frise__item:nth-of-type(2) {
    -webkit-animation-delay: 1000ms;
    -moz-animation-delay: 1000ms;
    -o-animation-delay: 1000ms;
    animation-delay: 1000ms;
}

.list-frise__item:nth-of-type(3) {
    -webkit-animation-delay: 1500ms;
    -moz-animation-delay: 1500ms;
    -o-animation-delay: 1500ms;
    animation-delay: 1500ms;
}

.list-frise__item:nth-of-type(4) {
    -webkit-animation-delay: 2000ms;
    -moz-animation-delay: 2000ms;
    -o-animation-delay: 2000ms;
    animation-delay: 2000ms;
}

.list-frise__item:nth-of-type(5) {
    -webkit-animation-delay: 2500ms;
    -moz-animation-delay: 2500ms;
    -o-animation-delay: 2500ms;
    animation-delay: 2500ms;
}
