
/*Float Effect*/
@keyframes float {
	0% {
		
		transform: translatey(0px);
	}
	50% {
		
		transform: translatey(-20px);
	}
	100% {
		
		transform: translatey(0px);
	}
}



.avatar-1 {
	transform: translatey(0px);
	animation: float 6s ease-in-out infinite;
}

.avatar-2 {
	transform: translatey(0px);
	animation: float 7s ease-in-out infinite;
}

.avatar-3 {
	transform: translatey(0px);
	animation: float 8s ease-in-out infinite;
}

.avatar-4 {
	transform: translatey(0px);
	animation: float 4s ease-in-out infinite;
}


/*ripple effect*/


.ripple,.ripple:before,.ripple:after {
  display:block;
  border-radius:2px;
  width:2px;
  height:2px;
  -webkit-animation:rip 6s ease-out infinite;
  -moz-animation:rip 6s ease-out infinite ;
}
.ripple {
  position:absolute;
  z-index:-1;
  top:40px;
  left:15px;
}
.ripple:before,.ripple:after {
  content:'';
 
}
.ripple:before {-webkit-animation-delay:.2s;-moz-animation-delay:.2s;top:5px;left:25px;}
.ripple:after {-webkit-animation-delay:.8s;-moz-animation-delay:.8s;top:25px;left:0;}
@-webkit-keyframes rip 
{
  0%  {
    box-shadow:0 0 0 0 transparent,
               0 0 0 0 transparent,
               0 0 0 0 transparent,
               0 0 0 0 transparent;
  }
  15%  {
    box-shadow:
               0 0 0 0 rgba(255,255,255,0.4),
            
               0 0 0 0 rgba(0,0,0,0.08);
  }
  100% {
    box-shadow:
               0 0 10px 400px transparent,
              
               0 0 5px 450px transparent;
  }
}

/*Pulse Effect*/
.pulse {
  margin:100px;
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 100%;
 

  cursor: pointer;
  box-shadow: 0 0 0 rgba(12,128,253, 0.8);
  animation: pulse 2s infinite;
}
.pulse:hover {
  animation: none;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(12,128,253, 0.8);
  }
  70% {
      -webkit-box-shadow: 0 0 0 20px rgba(12,128,253, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(12,128,253, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(12,128,253, 0.8);
    box-shadow: 0 0 0 0 rgba(12,128,253, 0.8);
  }
  70% {
      -moz-box-shadow: 0 0 0 20px rgba(12,128,253, 0);
      box-shadow: 0 0 0 20px rgba(12,128,253, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(12,128,253, 0);
      box-shadow: 0 0 0 0 rgba(12,128,253,0);
  }
}



