/*ANIMACION FLOTAR*/

.logo_animacion_flotando {
    margin-top: 5px;
    width: 250px;
    height: 84px;
    animation: flotar 2s linear infinite alternate;
}
 @keyframes flotar {
    to {
           margin-top: 50px;
       }
 }
 
 @media (max-width: 500px) {

	.logo_animacion_flotando {
	    justify-self: center;
	    animation: none !important;
	}
    
}