.logo-animation{
  animation: animationFrames linear 1.5s;
  animation-iteration-count: 1;
  transform-origin: 0% 100%;
  animation-fill-mode:forwards; /*when the spec is finished*/
  -webkit-animation: animationFrames linear 1.5s;
  -webkit-animation-iteration-count: 1;
  -webkit-transform-origin: 0% 100%;
  -webkit-animation-fill-mode:forwards; /*Chrome 16+, Safari 4+*/ 
  -moz-animation: animationFrames linear 1.5s;
  -moz-animation-iteration-count: 1;
  -moz-transform-origin: 0% 100%;
  -moz-animation-fill-mode:forwards; /*FF 5+*/
  -o-animation: animationFrames linear 1.5s;
  -o-animation-iteration-count: 1;
  -o-transform-origin: 0% 100%;
  -o-animation-fill-mode:forwards; /*Not implemented yet*/
  -ms-animation: animationFrames linear 1.5s;
  -ms-animation-iteration-count: 1;
  -ms-transform-origin: 0% 100%;
  -ms-animation-fill-mode:forwards; /*IE 10+*/
}

@keyframes animationFrames{
  0% {
    opacity:0.23;
    transform:  translate(103px,-55px)  rotate(-23deg) scaleX(0.70) scaleY(0.70) ;
  }
  20% {
    opacity:0.51;
    transform:  translate(42px,-52px)  rotate(-21deg) scaleX(0.88) scaleY(0.88) ;
  }
  40% {
    opacity:1;
    transform:  translate(-1px,-22px)  rotate(-31deg) scaleX(1.00) scaleY(1.00) ;
  }
  60% {
    transform:  translate(1px,1px)  rotate(-23deg) ;
  }
  80% {
    transform:  translate(0px,1px)  rotate(-10deg) ;
  }
  100% {
    opacity:1;
    transform:  translate(0px,1px)  rotate(0deg) scaleX(1.00) scaleY(1.00) ;
  }
}

@-moz-keyframes animationFrames{
  0% {
    opacity:0.23;
    -moz-transform:  translate(103px,-55px)  rotate(-23deg) scaleX(0.70) scaleY(0.70) ;
  }
  20% {
    opacity:0.51;
    -moz-transform:  translate(42px,-52px)  rotate(-21deg) scaleX(0.88) scaleY(0.88) ;
  }
  40% {
    opacity:1;
    -moz-transform:  translate(-1px,-22px)  rotate(-31deg) scaleX(1.00) scaleY(1.00) ;
  }
  60% {
    -moz-transform:  translate(1px,1px)  rotate(-23deg) ;
  }
  80% {
    -moz-transform:  translate(0px,1px)  rotate(-10deg) ;
  }
  100% {
    opacity:1;
    -moz-transform:  translate(0px,1px)  rotate(0deg) scaleX(1.00) scaleY(1.00) ;
  }
}

@-webkit-keyframes animationFrames {
  0% {
    opacity:0.23;
    -webkit-transform:  translate(103px,-55px)  rotate(-23deg) scaleX(0.70) scaleY(0.70) ;
  }
  20% {
    opacity:0.51;
    -webkit-transform:  translate(42px,-52px)  rotate(-21deg) scaleX(0.88) scaleY(0.88) ;
  }
  40% {
    opacity:1;
    -webkit-transform:  translate(-1px,-22px)  rotate(-31deg) scaleX(1.00) scaleY(1.00) ;
  }
  60% {
    -webkit-transform:  translate(1px,1px)  rotate(-23deg) ;
  }
  80% {
    -webkit-transform:  translate(0px,1px)  rotate(-10deg) ;
  }
  100% {
    opacity:1;
    -webkit-transform:  translate(0px,1px)  rotate(0deg) scaleX(1.00) scaleY(1.00) ;
  }
}

@-o-keyframes animationFrames {
  0% {
    opacity:0.23;
    -o-transform:  translate(103px,-55px)  rotate(-23deg) scaleX(0.70) scaleY(0.70) ;
  }
  20% {
    opacity:0.51;
    -o-transform:  translate(42px,-52px)  rotate(-21deg) scaleX(0.88) scaleY(0.88) ;
  }
  40% {
    opacity:1;
    -o-transform:  translate(-1px,-22px)  rotate(-31deg) scaleX(1.00) scaleY(1.00) ;
  }
  60% {
    -o-transform:  translate(1px,1px)  rotate(-23deg) ;
  }
  80% {
    -o-transform:  translate(0px,1px)  rotate(-10deg) ;
  }
  100% {
    opacity:1;
    -o-transform:  translate(0px,1px)  rotate(0deg) scaleX(1.00) scaleY(1.00) ;
  }
}

@-ms-keyframes animationFrames {
  0% {
    opacity:0.23;
    -ms-transform:  translate(103px,-55px)  rotate(-23deg) scaleX(0.70) scaleY(0.70) ;
  }
  20% {
    opacity:0.51;
    -ms-transform:  translate(42px,-52px)  rotate(-21deg) scaleX(0.88) scaleY(0.88) ;
  }
  40% {
    opacity:1;
    -ms-transform:  translate(-1px,-22px)  rotate(-31deg) scaleX(1.00) scaleY(1.00) ;
  }
  60% {
    -ms-transform:  translate(1px,1px)  rotate(-23deg) ;
  }
  80% {
    -ms-transform:  translate(0px,1px)  rotate(-10deg) ;
  }
  100% {
    opacity:1;
    -ms-transform:  translate(0px,1px)  rotate(0deg) scaleX(1.00) scaleY(1.00) ;
  }
}

.logo-hover-animation:hover{
  animation: animationFramesHover linear 0.6s;
  animation-iteration-count: 1;
  transform-origin: 0% 100%;
  animation-fill-mode:forwards; /*when the spec is finished*/
  -webkit-animation: animationFramesHover linear 0.6s;
  -webkit-animation-iteration-count: 1;
  -webkit-transform-origin: 0% 100%;
  -webkit-animation-fill-mode:forwards; /*Chrome 16+, Safari 4+*/ 
  -moz-animation: animationFramesHover linear 0.6s;
  -moz-animation-iteration-count: 1;
  -moz-transform-origin: 0% 100%;
  -moz-animation-fill-mode:forwards; /*FF 5+*/
  -o-animation: animationFramesHover linear 0.6s;
  -o-animation-iteration-count: 1;
  -o-transform-origin: 0% 100%;
  -o-animation-fill-mode:forwards; /*Not implemented yet*/
  -ms-animation: animationFramesHover linear 0.6s;
  -ms-animation-iteration-count: 1;
  -ms-transform-origin: 0% 100%;
  -ms-animation-fill-mode:forwards; /*IE 10+*/
}

@keyframes animationFramesHover{
  0% {
    transform:  rotate(0deg) ;
  }
  51% {
    transform:  rotate(-26deg) ;
  }
  100% {
    transform:  rotate(0deg) ;
  }
}

@-moz-keyframes animationFramesHover{
  0% {
    -moz-transform:  rotate(0deg) ;
  }
  51% {
    -moz-transform:  rotate(-26deg) ;
  }
  100% {
    -moz-transform:  rotate(0deg) ;
  }
}

@-webkit-keyframes animationFramesHover {
  0% {
    -webkit-transform:  rotate(0deg) ;
  }
  51% {
    -webkit-transform:  rotate(-26deg) ;
  }
  100% {
    -webkit-transform:  rotate(0deg) ;
  }
}

@-o-keyframes animationFramesHover {
  0% {
    -o-transform:  rotate(0deg) ;
  }
  51% {
    -o-transform:  rotate(-26deg) ;
  }
  100% {
    -o-transform:  rotate(0deg) ;
  }
}

@-ms-keyframes animationFramesHover {
  0% {
    -ms-transform:  rotate(0deg) ;
  }
  51% {
    -ms-transform:  rotate(-26deg) ;
  }
  100% {
    -ms-transform:  rotate(0deg) ;
  }
}