 @import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
.mycontainer{
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.mywrapper{
  position: absolute;
  top: -35px;
  transform: scale(1.5);
}
.myloader{
 height: 29px;
 width: 2px;
 position: absolute;
 animation: rotate 3.5s linear infinite;
}
.myloader .dot{
  top: 40px;
 height: 7px;
 width: 7px;
 background: #f4f037;
 border-radius: 50%;
 position: relative;
}
.mytext{
  position: absolute;
  bottom: -85px;
  font-size: 29px;
  font-weight: 500;
  font-family: 'Poppins',sans-serif;
  color: #4cfb4c;
}
@keyframes rotate {
  30%{
    transform: rotate(220deg);
  }
  40%{
  transform: rotate(450deg);
    opacity: 1;
 }
 75%{
  transform: rotate(720deg);
  opacity: 1;
 }
 76%{
  opacity: 0;
 }
 100%{
  opacity: 0;
  transform: rotate(0deg);
 }
}
.myloader:nth-child(1){
  animation-delay: 0.15s;
}
.myloader:nth-child(2){
  animation-delay: 0.3s;
}
.myloader:nth-child(3){
  animation-delay: 0.45s;
}
.myloader:nth-child(4){
  animation-delay: 0.6s;
}
.myloader:nth-child(5){
  animation-delay: 0.75s;
}
.myloader:nth-child(6){
  animation-delay: 0.9s;
}