.flex-center-preloader {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   flex-direction: column;
   gap:45px;
}

.preloader {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: var(--primary-color);
   z-index: 99999999999999999999999999999999999;
}

.preloader img{
   width:320px;

}
.loader-container{
   position: relative;
   width: 100%;
   display: flex;
   justify-content: center;
}
.wrapper{
   top: -35px;
   transform: scale(1.5);
}
.text-loader{
   font-size: 25px;
   font-weight: 400;
   font-family: sans-serif;
   color: #fff;
}
.loader-n{
   height: 25px;
   width: 1px;
   position: absolute;
   animation: rotate 3.5s linear infinite;
}
.loader-n .dot-n{
   top: 30px;
   height: 7px;
   width: 7px;
   background: #fff;
   border-radius: 50%;
   position: relative;
}
@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);
   }
}
.loader-n:nth-child(1){
   animation-delay: 0.15s;
}
.loader-n:nth-child(2){
   animation-delay: 0.3s;
}
.loader-n:nth-child(3){
   animation-delay: 0.45s;
}
.loader-n:nth-child(4){
   animation-delay: 0.6s;
}
.loader-n:nth-child(5){
   animation-delay: 0.75s;
}
.loader-n:nth-child(6){
   animation-delay: 0.9s;
}
