.floating {
  -webkit-animation-name: floating;
  animation-name: floating;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes floating {
  0% {
    -webkit-transform: translatey(0);
    transform: translatey(0);
  }

  50% {
    -webkit-transform: translatey(-10px);
    transform: translatey(-10px);
  }

  100% {
    -webkit-transform: translatey(0);
    transform: translatey(0);
  }
}

@keyframes floating {
  0% {
    -webkit-transform: translatey(0);
    transform: translatey(0);
  }

  50% {
    -webkit-transform: translatey(-10px);
    transform: translatey(-10px);
  }

  100% {
    -webkit-transform: translatey(0);
    transform: translatey(0);
  }
}

/* -------------------------------------------------- */
.ping {
  -webkit-animation-name: ping;
  animation-name: ping;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes ping {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes ping {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

/* -------------------------------------------------- */
.bounce {
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@keyframes bounce {

  0%,
  30%,
  50%,
  100% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(-30px);
  }

  40% {
    transform: translateY(-20px);
  }

  60% {
    transform: translateY(-10px);
  }

  80% {
    transform: translateY(-5px);
  }
}

/* -------------------------------------------------- */

.circle-custom-1 {
  background-color: var(--primary-color);
  z-index: 10;
  width: 3rem;
  height: 3rem;
  bottom: -2rem;
  right: 10rem;
  position: absolute;
  border-radius: 50%;
  animation: ping 1.2s cubic-bezier(0, 0, .2, 1) infinite;
}

.circle-custom-1-2 {
  background-color: var(--primary-color);
  z-index: 10;
  width: 6rem;
  height: 6rem;
  bottom: -1.5rem;
  right: -1rem;
  position: absolute;
  border-radius: 50%;
  animation: ping 1s cubic-bezier(0, 0, .2, 1) infinite;
}

.circle-custom-2 {
  background-color: var(--primary-color);
  z-index: 10;
  width: 8rem;
  height: 8rem;
  left: -0.75rem;
  top: -0.75rem;
  position: absolute;
  border-radius: 50%;
  animation: ping .8s cubic-bezier(0, 0, .2, 1) infinite;
}

.circle-text {
  background-color: #f48c06;
  z-index: -1;
  width: 5rem;
  height: 5rem;
  top: -1.75rem;
  left: -1rem;
  position: absolute;
  border-radius: 50%;
  animation: bounce 3s cubic-bezier(0, 0, .2, 1) infinite;
}