@media only screen and (min-width: 1200px) {
  .mxd-hero-00__top {
    padding-top: 12.9rem;
    padding-bottom: 0rem;
  }
}
@media only screen and (min-width: 1400px) {
  .mxd-hero-00__top {
    padding-top: 12.9rem;
  }
}
@media only screen and (min-width: 1600px) {
  .mxd-hero-00__top {
    padding-top: 12.9rem;
  }
}
.mxd-section.padding-pre-title {
  padding-bottom: 0rem;
}

canvas {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
}

/* === Ripple Effect === */
.ripple {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(173, 216, 230, 0.5); /* Light blue water color */
  border-radius: 50%;
  pointer-events: none;
  transform: scale(0);
  animation: pulse-animation 1.5s ease-out forwards;
  box-shadow: 0 0 20px rgba(0, 150, 255, 0.7);
  z-index: 2;
}

@keyframes pulse-animation {
  0% {
    transform: scale(0.3);
    opacity: 1;
  }
  50% {
    transform: scale(2);
    opacity: 0.6;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

.mxd-divider__image img {
  object-fit: contain;
}