/*
Theme Name:     Neves Media
Theme URI:      n/a
Template:       kadence
Author:         Pro Author
Author URI:     n/a
Description:    Child Theme Description
Version:        1.0
License:        GNU General Public License v3.0 (or later)
License URI:    https://www.gnu.org/licenses/gpl-3.0.html
*/
.float-animation {
	animation: floatMotion 6s ease-in-out infinite;
}

.float-animation-subtle {
	animation: floatMotionSubtle 6s ease-in-out infinite;
}

.float-animation-inverted {
	animation: floatMotionInverted 6s ease-in-out infinite;
}

@keyframes floatMotion {
  0% {
    transform: translate(0px, 0px);
  }
  25% {
    transform: translate(15px, -15px);
  }
  50% {
    transform: translate(0px, -30px);
  }
  75% {
    transform: translate(-15px, -15px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}

@keyframes floatMotionSubtle {
  0% {
    transform: translate(0px, 0px);
  }
  25% {
    transform: translate(7px, -7px);
  }
  50% {
    transform: translate(0px, -14px);
  }
  75% {
    transform: translate(-7px, -7px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}

@keyframes floatMotionInverted {
  0% {
    transform: translate(0px, 0px);
  }
  25% {
    transform: translate(-15px, 15px);
  }
  50% {
    transform: translate(0px, 30px);
  }
  75% {
    transform: translate(15px, 15px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
