
img_r { 
    border:   0;
    
    max-width: 100%;
} 

img.reviewGirl  { 
    width: 44%;
    margin-top: 20px; 
    animation: float-v 3s infinite;
} 

:before,:after { 
    -webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box; 
    box-sizing: border-box;
} 


@keyframes float-v { 
  0%, 50% {  
      -webkit-transform: translateY(0); 
      -webkit-animation-timing-function: cubic-bezier(.2,.25,.55,1); 
      transform: translateY(0px); 
      animation-timing-function: cubic-bezier(0.2, 0.25, 0.55, 1); 
  }  
  25% {  
      -webkit-transform: translateY(-7px); 
      -webkit-animation-timing-function: cubic-bezier(.45,0,.8,.75); 
      transform: translateY(-7px); 
      animation-timing-function: cubic-bezier(0.45, 0, 0.8, 0.75); 
  }  
  75% {  
      -webkit-transform: translateY(7px); 
      -webkit-animation-timing-function: cubic-bezier(.45,0,.8,.75); 
      transform: translateY(7px); 
      animation-timing-function: cubic-bezier(0.45, 0, 0.8, 0.75); 
  }  
  100% {  
      -webkit-transform: translateY(0); 
      transform: translateY(0px); 
  }  

} 






