.elementor-4032 .elementor-element.elementor-element-b6aa9aa{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-4032 .elementor-element.elementor-element-12982a2 > .elementor-widget-container{padding:0px 0px 0px 0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-12982a2 */@keyframes waveMove {
  0% { background-position-x: 0; }
  100% { background-position-x: 1000px; }
}

.wave-top {
  animation: waveMove 8s linear infinite;
}

@keyframes swimBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

h2 {
  animation: swimBob 2.5s ease-in-out infinite;
}

@keyframes slideIn {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}

.badge {
  animation: slideIn 0.6s ease forwards;
  opacity: 0;
}

.badge:nth-child(1) { animation-delay: 0.1s; }
.badge:nth-child(2) { animation-delay: 0.2s; }
.badge:nth-child(3) { animation-delay: 0.3s; }
.badge:nth-child(4) { animation-delay: 0.4s; }
.badge:nth-child(5) { animation-delay: 0.5s; }
.badge:nth-child(6) { animation-delay: 0.6s; }


.bubbles {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.bubble {
  position: absolute;
  bottom: -100px;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: rise 10s linear infinite;
  left: calc(var(--i) * 12%);
  animation-delay: calc(var(--i) * 1.5s);
}

@keyframes rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  100% {
    transform: translateY(-120vh) scale(0.6);
    opacity: 0;
  }
}
.swimmer {
  position: fixed;
  bottom: 20%;
  left: -100px;
  font-size: 32px;
  animation: swimAcross 20s linear infinite;
  z-index: 1;
}

@keyframes swimAcross {
  0% { transform: translateX(0); }
  100% { transform: translateX(110vw); }
}
.award:hover {
  animation: ripplePulse 1.5s infinite;
}

@keyframes ripplePulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.6); }
  70% { box-shadow: 0 0 0 20px rgba(255, 215, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}
.wave-surface {
  position: fixed;
  top: 0;
  left: 0;
  width: 200%;
  height: 150px;
  background: url('https://www.transparenttextures.com/patterns/wave-cut.png');
  background-size: cover;
  opacity: 0.4;
  animation: waveSurface 8s linear infinite;
  z-index: 0;
}

@keyframes waveSurface {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.path {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .path {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */