.elementor-61490 .elementor-element.elementor-element-3b23365{--display:flex;--background-transition:0.3s;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS */@keyframes floating {
  0% { transform: translateY(0); }
  50% { transform: translateY(10px); }
  100% { transform: translateY(0); }
}

/* Apply animation with different delays to create randomness */
.floating-element {
  animation: floating 5s ease-in-out infinite;
}

/* Assign random delays to different elements */
.floating-element:nth-child(1) { animation-delay: 0s; }
.floating-element:nth-child(2) { animation-delay: 1s; }
.floating-element:nth-child(3) { animation-delay: 1.5s; }
.floating-element:nth-child(4) { animation-delay: 2s; }
.floating-element:nth-child(5) { animation-delay: 2.5s; }
.floating-element:nth-child(6) { animation-delay: 3s; }
.floating-element:nth-child(7) { animation-delay: 3.5s; }
.floating-element:nth-child(8) { animation-delay: 4s; }
.floating-element:nth-child(9) { animation-delay: 4.5s; }
.floating-element:nth-child(10) { animation-delay: 5s; }/* End custom CSS */