#gato {
    background: url('../img/gatito2.svg');
    height: 175px; 
    width: 150.5px;
    position: absolute;
    margin-top: 310px;
    margin-left: 250px;
    bottom: 50px;
    right: 0px;
 }
#gato:hover {  
  -webkit-animation: sprite-animation 6s steps(27,end) infinite; /* steps = number of frames */
  -moz-animation: sprite-animation 6s steps(27,end) infinite; /* steps = number of frames */

   animation: sprite-animation 6s steps(27,end) infinite;
   }
   @-webkit-keyframes sprite-animation {
    from { background-position: 0 0; }
    to { background-position: -4064.89px 0; } 
   }
  @-moz-keyframes sprite-animation {
    from { background-position: 0 0; }
    to { background-position: -4064.89px 0; } 
   }
#mago{
	width: 400px;
	height: 600px;
	position: absolute;
    bottom: 0px;
    right: 50px;
}
#pompa1{
	 -webkit-animation: pompa1 3s Ease infinite;
    }
    @-webkit-keyframes pompa1{
        60%{
            opacity: 0.8;
        }
        100%{
            -webkit-transform: translate(55px,-140px);
            opacity: 0;
        }
    }
#pompa2{
	 -webkit-animation: pompa2 4s Ease infinite;
    }
    @-webkit-keyframes pompa2{
        60%{
            opacity: 0.8;
        }
        100%{
            -webkit-transform: translate(-55px,-130px);
            opacity: 0;
        }
    }
#pompa3{
	 -webkit-animation: pompa3 3.7s 1s Ease infinite;
     }
    @-webkit-keyframes pompa3{
        60%{
            opacity: 0.8;
        }
        100%{
            -webkit-transform: translate(-25px,-110px);
            opacity: 0;
        }
    }
#pompa4{
	 -webkit-animation: pompa1 2.9s 1s Ease infinite;
        }     
#pompa5{
	 -webkit-animation: pompa5 3.4s Ease infinite;
        }
    @-webkit-keyframes pompa5{
        60%{
            opacity: 0.8;
        }
        100%{
            -webkit-transform: translate(75px,-130px);
            opacity: 0;
         }
    }
#pompa6{
	 -webkit-animation: pompa6 2.8s Ease infinite;
        }
    @-webkit-keyframes pompa6{
        60%{
            opacity: 0.8;
        }
        100%{
            -webkit-transform: translate(65px,-100px);
            opacity: 0;
        }
    }
#pompa7{
	 -webkit-animation: pompa7 3.2s 1.5s Ease infinite;
        }
    @-webkit-keyframes pompa7{
        60%{
            opacity: 0.8;
        }
        100%{
            -webkit-transform: translate(85px,-120px);
            opacity: 0;
        }
    }
#pompa8{
	 -webkit-animation: pompa1 3.5s  Ease infinite;
    } 
    @-webkit-keyframes pompa8{
        0%{
            -webkit-transform: translate(0px,0px);
        }
        60%{
            opacity: 0.8;
        }
        100%{
            -webkit-transform: translate(-45px,-120px);
            opacity: 0;
        }
    }
#pompa9{
	 -webkit-animation: pompa9 4s  Ease infinite;
       } 
    @-webkit-keyframes pompa9{
        0%{
            -webkit-transform: translate(0px,0px);
        }
        60%{
            opacity: 0.8;
        }
        100%{
            -webkit-transform: translate(-75px,-90px);
            opacity: 0;
        }
    }
#pompa10{
	 -webkit-animation: pompa10 2.5s  Ease infinite;
    } 
    @-webkit-keyframes pompa10{
        60%{
            opacity: 0.5;
        }
        100%{
        -webkit-transform: translate(5px,-30px);
            opacity: 0;
        }
    }
#pompa11{
	 -webkit-animation: pompa11 2.5s  Ease infinite;
        } 
     @-webkit-keyframes pompa11{
        60%{
            opacity: 0.5;
        }
        100%{
        -webkit-transform: translate(-20px,-60px);
            opacity: 0;
         }
    }
#pompa12{
	 -webkit-animation: pompa12 3.2s Ease infinite;
        } 
		@-webkit-keyframes pompa12{
        40%{
            opacity: 0.7;
        }
        100%{
        -webkit-transform: translate(10px,-80px);
            opacity: 0;
        }
    }
#pompa13{
	 -webkit-animation: pompa13 2.7s Ease infinite;
        } 
		@-webkit-keyframes pompa13{
        40%{
            opacity: 0.7;
        }
        100%{
        -webkit-transform: translate(-50px,-100px);
            opacity: 0;
        }
    }
#derch{
	 -webkit-animation: mano_derch 1s  Ease infinite;
       } 
		@-webkit-keyframes mano_derch{
        0%{
        	transform: rotate(-0.4deg);
        }
        30%{
    		transform: rotate(0.5deg);
        }
        100%{
    		transform: rotate(-0.4deg);
        }
	}
#izq{
    -webkit-animation: mano_izq 1s  Ease infinite;
    } 
		@-webkit-keyframes mano_izq{
        0%{
        	transform: rotate(0.5deg);
        }
        30%{
    		transform: rotate(-0.4deg);
        }
        100%{
    		transform: rotate(0.5deg);
        }
	}
	
@media (max-width: 768px) {
    svg{
           height: 75%; 
            width: 75%;

    }
    #gato{
        background: url('../img/gatito2.svg');
        height: 200px; /* width and height of each frame */
        width: 150.55px;
        margin-top: 300px;
        margin-left: 220px;

    }
    #gato:hover {
    -webkit-animation: sprite-animation 6s steps(27,end) infinite; /* steps = number of frames */
    animation: sprite-animation 6s steps(27,end) infinite;
  }
    @-webkit-keyframes sprite-animation { /* Safari & Chrome */
        from { background-position: 0 0; }
        to { background-position: -4064.89px 0; } /* negative of sprite sheet width */
  }
}


