@import "slick.css";

@import "swiper.min.css";

@import "icofont.css";

@import "animate.css";

@import "magnific-popup.css";



/* PRELOADER WAVE STYLE */

#preloader-wrapper {

    background: linear-gradient(to right, #00c9fd 0%, #81ee8e 100%);

    height: 100%;

    left: 0;

    position: fixed;

    right: 0;

    text-align: center;

    top: 0;

    width: 100%;

    z-index: 9999999;

}



.preloader-wave-effect {

    height: 50px;

    left: 50%;

    margin: 0 -25px;

    position: absolute;

    right: 0;

    text-align: center;

    top: 50%;

    transform: translate(-50%, -50%);

    width: 50px;

}



.preloader-wave-effect::before,

.preloader-wave-effect::after {

    animation: 1.6s linear 0s normal none infinite running preloader-wave;

    background: #fff none repeat scroll 0 0;

    border-radius: 100%;

    content: "";

    height: 50px;

    position: absolute;

    width: 50px;

}



.preloader-wave-effect::after {

    animation-delay: -0.8s;

}



@keyframes preloader-wave {

    0% {

        opacity: 1;

        transform: scale(0, 0);

    }

    100% {

        opacity: 0;

        transform: scale(1, 1);

    }

}


.loader {
  position: relative;
  width: 80px;
  margin: 0 auto;
}

.duo {
  height: 20px;
  width: 50px;
  background: hsla(0, 0%, 0%, 0.0);
  position: absolute;
  
}

.duo, .dot {
  animation-duration: 0.8s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.duo1 {
  left: 0;
}

.duo2 {
  left: 30px
}


.dot {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: #01c9fc;
  position: absolute;
}

.dot-a {
  left: 0px;  
}

.dot-b {
  right: 0px;
}


@keyframes spin {
    0% { transform: rotate(0deg) }
   50% { transform: rotate(180deg) }
  100% { transform: rotate(180deg) }
}

@keyframes onOff {
    0% { opacity: 0; }
   49% { opacity: 0; }
   50% { opacity: 1; }
  100% { opacity: 1; }
}

.duo1 {
  animation-name: spin;
}

.duo2 {
  animation-name: spin;
  animation-direction: reverse;
}

.duo2 .dot-b {
  animation-name: onOff;
}

.duo1 .dot-a {
  opacity: 0;
  animation-name: onOff;
  animation-direction: reverse;
}


