.box{
    position: relative;
    overflow: hidden !important;
}
.circle{
    display: block;
    /* background: black !important; */
    border-radius: 50%;
    height: 30px;
    width: 30px;
    margin: 0;
    background: radial-gradient(circle at 10px 10px, #5cabff, #000) !important;
    position: relative;
    z-index: 12;
    /* top: 0;
    left:0; */
    animation: moving 4s ease-in-out infinite alternate;
}
.circle2{
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    animation: moving2 4s ease-in-out infinite alternate !important;
}
.circle3{
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    animation: moving3 4s ease-in-out infinite alternate !important;
}
.circle4{
    position: absolute !important;
    bottom: 0 !important;
    right: 0 !important;
    animation: moving4 4s ease-in-out infinite alternate !important;
}
@keyframes moving {
    0% {
        transform: translateX(0%);
      }
    100% {
        transform: translate(100%,100%) rotate(90deg);
      }
}
@keyframes moving2 {
    0% {
        transform: translateX(0%);
      }
    100% {
        transform: translate(-100%,100%) rotate(90deg);
      }
}
@keyframes moving3 {
    0% {
        transform: translateX(0%);
      }
    100% {
        transform: translate(100%,-100%) rotate(90deg);
      }
}
@keyframes moving4 {
    0% {
        transform: translateX(0%);
      }
    100% {
        transform: translate(-100%,-100%) rotate(90deg);
      }
}
.wave_css{
    animation: waving 4s ease-in-out infinite alternate;
    width: 100%;
    height: 50%;
}
@keyframes waving {
    0%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.5);
    }
}
.outer_svg{
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: calc(290px + 80px);
    margin: 5px;
    margin-right: 10px;
    overflow: hidden;
    z-index: 11;
    border-radius: 5px;
}
.outer_outer_svg{
    display: flex;
    justify-content: center;
}
.flex_0473{
    display: flex;
}