@charset "utf-8";
/* CSS Document */

/*Seenus Codes */
@keyframes floatDynamic {
  0%   { transform: translateY(0px) translateX(0px); }
  25%  { transform: translateY(-15px) translateX(5px); }
  50%  { transform: translateY(-30px) translateX(-5px); }
  75%  { transform: translateY(-10px) translateX(3px); }
  100% { transform: translateY(0px) translateX(0px); }
}

.mover-1 {
  animation: floatDynamic 18s ease-in-out infinite;
}

.mover-2 {
  animation: floatDynamic 14s ease-in-out infinite;
}

.mover-3 {
  animation: floatDynamic 22s ease-in-out infinite;
}

.mover-4 {
  animation: floatDynamic 16s ease-in-out infinite;
}

.mover-1 { animation-delay: 0s; }
.mover-2 { animation-delay: 2s; }
.mover-3 { animation-delay: 4s; }
.mover-4 { animation-delay: 1s; }