/* AERO TOUCH DOWN — ANIMATIONS */
@media (prefers-reduced-motion:no-preference){
  .ecosystem-orbit{animation:orbitBreathe 7s ease-in-out infinite;}
  .orbit-two{animation-delay:-2.2s;}
  .orbit-three{animation-delay:-4.4s;}
  .floating-notification{animation:notificationFloat 5s ease-in-out infinite;}
}
@keyframes orbitBreathe{
  0%,100%{opacity:.45;}
  50%{opacity:1;}
}
@keyframes notificationFloat{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-9px);}
}
