 
#cgob{
    position: absolute ;
    top: 3%;
    left: 0%;
    

}

.cgob {
    -webkit-animation: girocgob 10s infinite; /* Safari 4+ */
    -moz-animation:    girocgob 10s infinite; /* Fx 5+ */
    -o-animation:      girocgob 10s infinite; /* Opera 12+ */
    animation:         girocgob 10s infinite; /* IE 10+, Fx 29+ */
    animation-timing-function: linear;

}



@-moz-keyframes girocgob {
    to {
        transform:rotate(0deg);
    }
    from {
        transform:rotate(360deg);
    }    
}
@-webkit-keyframes girocgob {
    to {
        transform:rotate(0deg);
    }
    from {
        transform:rotate(360deg);
    }    
}
@keyframes girocgob{
    to {
        transform:rotate(0deg);
    }
    from {
        transform:rotate(360deg);
    }    
}



@media (max-width: 991px) {

    #cgob{
        position: absolute ;
        top: -2%;
        left: 0%;
        
    }

    @keyframes girocgob{
        to {
            transform:rotate(-2deg);
        }
        from {
            transform:rotate(358deg);
        }    
    }

}


@media (max-width: 767px) {  

    #cgob{
        position: absolute ;
        top: 8%;
        left: 0%;
        
    }

    @keyframes girocgob{
        to {
            transform:rotate(-2deg);
        }
        from {
            transform:rotate(358deg);
        }    
    }


}


@media (max-width: 426px) {


    #cgob{
        position: absolute ;
        top: 7%;
        left: 0%;
        
    }

    @keyframes girocgob{
        to {
            transform:rotate(0deg);
        }
        from {
            transform:rotate(360deg);
        }    
    }

}



@media (max-width: 376px) {

    #cgob{
        position: absolute ;
        top: 6%;
        left: 0%;
        
    }

    @keyframes girocgob{
        to {
            transform:rotate(0deg);
        }
        from {
            transform:rotate(360deg);
        }    
    }

}













