 
 /* Serviços */
 .block{
    -webkit-animation:scaledown 0.9s linear;
    -moz-animation:scaledown 0.6s linear;
    animation:scaledown 0.6s linear;
    transform-origin:50% 50%;
    animation-fill-mode: forwards;
  }
  
  .block:hover{
     z-index:100;
    -webkit-animation:scale 0.9s linear;
    -moz-animation:scale 0.9s linear;
    animation:scale 0.9s linear;
    transform-origin:50% 50%;
    animation-fill-mode: forwards;
    
  }
  

  @keyframes scale{
    0%{
      transform:scale(1.0);
    }
    100%{
      transform:scale(1.02);
      -webkit-box-shadow: 10px 10px 60px 10px rgba(0,0,0,0.1);
  -moz-box-shadow: 10px 10px 60px 10px rgba(0,0,0,0.1);
  box-shadow: 10px 10px 60px 10px rgba(0,0,0,0.1);
    }
  }
  
  @keyframes scaledown{
    0%{
      transform:scale(1.02);
    }
     100%{
      transform:scale(1.0);
    }
  }
  /* FIM SERVIÇOS */
  