.grow { -webkit-transition: all .5s ease-out; -moz-transition: all .5s ease-out; -o-transition: all .5s ease-out; transition: all .5s ease-out; }
.grow:hover { transform: scale(1.1); -webkit-transition: all .5s ease-out; -moz-transition: all .5s ease-out; -o-transition: all .5s ease-out; transition: all .5s ease-out;}


@keyframes slide 
{
    0% { margin-bottom: 0px; }
   50% { margin-bottom: 5px; }
  100% { margin-bottom: 0px; }
}