
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

  
  .trapper {
    height: 100vh;
    width: 100%;
    position: absolute;
    z-index: 0;
  }
  .circle{
    width:30px;
    height: 30px;
    border-radius: 50%;
    background-color: #01a0e1;
    position:absolute;
    left:0;
    top:0;
    transform: translate(-50%,-50%);
    transition: all 0.1s ease;
    z-index:0;
  }
  .trapper>div {
    height: 30px;
    width: 30px;
    /* border: 2px solid rgba(189, 180, 180, 0.7); */
    background: rgba(105, 105, 235, 0.368);
  
    border-radius: 50px;
    position: absolute;
    top: 10%;
    left: 10%;
    animation: 4s linear infinite;
  }
  .trapper>div:nth-child(odd) {
    background: #f365238b;
  }
  
  .trapper>div:nth-child(even) {
    background: #01a1e188;
  }
  div .dot {
    height: 10px;
    width: 10px;
    border-radius: 50px;
    background: rgba(224, 211, 211, 0.5);
    position: absolute;
    top: 20%;
    right: 20%;
  }
  .trapper>div:nth-child(1) {
    top: 20%;
    left: 20%;
    animation: animate 8s linear infinite;
  }
  .trapper>div:nth-child(2) {
    top: 60%;
    left: 80%;
    animation: animate 10s linear infinite;
  }
  .trapper>div:nth-child(3) {
    top: 40%;
    left: 40%;
    animation: animate 3s linear infinite;
  }
  .trapper>div:nth-child(4) {
    top: 66%;
    left: 30%;
    animation: animate 7s linear infinite;
  }
  .trapper>div:nth-child(5) {
    top: 90%;
    left: 10%;
    animation: animate 9s linear infinite;
  }
  .trapper>div:nth-child(6) {
    top: 30%;
    left: 60%;
    animation: animate 5s linear infinite;
  }
  .trapper>div:nth-child(7) {
    top: 70%;
    left: 20%;
    animation: animate 8s linear infinite;
  }
  .trapper>div:nth-child(8) {
    top: 75%;
    left: 60%;
    animation: animate 10s linear infinite;
  }
  .trapper>div:nth-child(9) {
    top: 50%;
    left: 50%;
    animation: animate 6s linear infinite;
  }
  .trapper>div:nth-child(10) {
    top: 45%;
    left: 20%;
    animation: animate 10s linear infinite;
  }
  .trapper>div:nth-child(11) {
    top: 10%;
    left: 90%;
    animation: animate 9s linear infinite;
  }
  .trapper>div:nth-child(12) {
    top: 20%;
    left: 70%;
    animation: animate 7s linear infinite;
  }
  .trapper>div:nth-child(13) {
    top: 20%;
    left: 20%;
    animation: animate 8s linear infinite;
  }
  .trapper>div:nth-child(14) {
    top: 60%;
    left: 5%;
    animation: animate 6s linear infinite;
  }
  .trapper>div:nth-child(15) {
    top: 90%;
    left: 80%;
    animation: animate 9s linear infinite;
  }
  @keyframes animate {
    0% {
      transform: scale(0) translateY(0) rotate(70deg);
    }
    100% {
      transform: scale(1.3) translateY(-100px) rotate(360deg);
    }
  }
  

  /* hero section slogen animation */

  .herosectionheading {
    -webkit-animation: herosectionheading 1.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
            animation: herosectionheading 1.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
  }
  @-webkit-keyframes herosectionheading {
    0% {
      -webkit-filter: blur(12px);
              filter: blur(12px);
      opacity: 0;
    }
    100% {
      -webkit-filter: blur(0px);
              filter: blur(0px);
      opacity: 1;
    }
  }
  @keyframes herosectionheading {
    0% {
      -webkit-filter: blur(12px);
              filter: blur(12px);
      opacity: 0;
    }
    100% {
      -webkit-filter: blur(0px);
              filter: blur(0px);
      opacity: 1;
    }
  }