@charset "UTF-8";
/* CSS Document */

@media (max-width: 768px){
	
        #wrapperindex{
    background-image: url(../images/indeximg/logo2.1.png);
	background-size:contain;
	background-repeat:no-repeat;
	background-attachment: fixed;
	background-position:center;

}

    }


.floating {  
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
 
}
 
@keyframes floating {
    0% { transform: translate(0,  0px); }
    50%  { transform: translate(0, 15px); }
    100%   { transform: translate(0, -0px); }  
	
}