/*-----------------------------  Ripple ---------------------------------*/
[class^="marvy-ripples-section-"] {
  position: absolute;
  margin: 0 auto;
  padding: 0 auto;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
[class^="marvy-ripples-circle-"] {
  -webkit-animation: circle-small-scale 3s ease-in-out infinite alternate;
  animation: circle-small-scale 3s ease-in-out infinite alternate;
  animation-timing-function: cubic-bezier(.6, 0, .4, 1);
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  z-index: -1;
}
@-webkit-keyframes circle-small-scale {
  0% { -webkit-transform: scale(1.0); }
  100% { -webkit-transform: scale(1.25); }
}
@keyframes circle-small-scale {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.25); }
}
.elementor-section.marvy-custom-ripples-animation-section {
  background-color: #151D24;
}
.elementor-section.marvy-custom-ripples-animation-section .elementor-container{
  z-index:99
}