@keyframes move-lr {
  10% {
    left: -50px;
    top: -200px;
  }
  0% {
    left: 0px;
    top: 0px;
  }
  25% {
    left: -200px;
    top: 200px;
  }
  50% {
    left: 700px;
    top: 200px;
  }
  75% {
    left: 0px;
    top: 600px;
  }
  100% {
    left: -50px;
    top: -200px;
  }
}
@keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}

.move-circle-grp {
  position: relative;
  animation-delay: 1s;
  animation-name: move-lr;
  animation-duration: 30s;
  animation-iteration-count: infinite;
}

/*  animate hero title */

.i-bounce {
  color: #fff;
  position: relative;
}
.i-bounce::before {
  /* content: '';  
    box-sizing: border-box;
    position: absolute;
    right: 70px;
    bottom: 10px;
    height: 24px;
    width: 5.15px;
    background: currentColor; */
}
.i-bounce {
  font-size: 50px;
}
.i-bounce::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 2px;
  top: -5px;
  border-radius: 50%;
  border: solid 2.5px rgb(var(--primary));
  box-sizing: border-box;
  animation: animloader 2s ease-in infinite;
}
@media (max-width: 768px) {
  .i-bounce {
    font-size: 40px;
  }
  .i-bounce::after {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    left: 2px;
    top: -7px;
    border-radius: 50%;
    background-color: rgb(var(--primary));
    box-sizing: border-box;
    animation: animloader 2s ease-in infinite;
  }
}

@keyframes animloader {
  0% {
    transform: translateY(8px) scaleY(1) scaleX(1.1);
  }
  25%,
  75% {
    transform: translateY(-5px) scaleY(1.1) scaleX(1);
  }
  50% {
    transform: translateY(-10px) scaleY(1) scaleX(1);
  }
  100% {
    transform: translateY(8px) scaleY(0.8) scaleX(0.8);
  }
}

/* scoll animation */
.animate-show {
  opacity: 1 !important;
  filter: blur(0) !important;
  transform: translateX(0%) !important;
  transform: translateY(0%) !important;
  background-position:left bottom !important;
}
@media (prefer-reduced-motion) {
  .animate-hidden {
    transition: none;
  }
}
.animate-slide-up {
  opacity: 0;
  transition: all 0.5s;
  transform: translatey(100%);
  filter: blur(5px);
}
.animate-slide-left {
  opacity: 0;
  transition: all 0.5s;
  transform: translateX(-100%);
  filter: blur(5px);
}
.animate-slide-right {
  opacity: 0;
  transition: all 0.5s;
  transform: translateX(100%);
  filter: blur(5px);
}

.animate-fill-bg-right {
  background: transparent;
  /* Old browsers */
  background: linear-gradient(to right,  rgb(var(--neon), 1) 50%, transparent 50%);
  background-size: 200% 100%;
  background-position:right bottom;
  margin-left:10px;
  transition:all 1s ease;
}

/* nav link animation */

.animate-link{
  display: block;
  color: white;
  text-decoration: none;
  position: relative;
}

.animate-link::after{
  content: "";
  width: 0%;
  height: 1.5px;
  bottom:4px;
  bottom: 4px;
  position: absolute;
  background:rgb(var(--primary));
  left: 50%;
	transition: all .3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  border-radius: 50%;
}

.animate-link:hover::after{
  left: 0%;
  width: 95%;
}

/* The End */
