.elementor .opa-floating-dot3{.opa-floating-dot3 {
  position: absolute;
  height: 140px;
  width: 140px;

  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 6px 0px inset, rgba(0, 0, 0, 0.09) 0px 3px 6px 0px;
  border-radius: 50%;
  border-width: 25px;
  border-style: solid;
  border-color: rgb(255, 255, 255);
  border-image: initial;
  animation: float-animation 3s ease-in-out 1s infinite; 
}


.opa-floating-dot3:nth-child(even) {
  animation-delay: 1s;
  animation-duration: 5s;
}

@keyframes float-animation {
  0% {
      transform: translateY(0px);
  }
  50% {
      transform: translateY(-15px); 
  }
  100% {
      transform: translateY(0px);
  }
}\n}