#planr-avantages-scene {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}
#planr-avantages-scene.active .avantage {
  transition: top 3s cubic-bezier(0.15, 0.9, 0.86, 0.09);
  -webkit-animation-name: opacityAvantage;
          animation-name: opacityAvantage;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  top: 0%;
}
@-webkit-keyframes opacityAvantage {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes opacityAvantage {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#planr-avantages-scene .avantage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 40%;
  position: absolute;
  opacity: 0;
}
#planr-avantages-scene .avantage:nth-of-type(2) {
  transition-delay: 3s;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
#planr-avantages-scene .avantage:last-of-type {
  transition-delay: 6s;
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}
#planr-avantages-scene .avantage img {
  width: 60px;
  height: 60px;
}
#planr-avantages-scene .avantage h4 {
  width: 300px;
  font-size: 20px;
  margin: 4px;
  font-weight: lighter;
}/*# sourceMappingURL=avantages.css.map */