@keyframes float {}

@keyframes pulse {}

@keyframes orbit {}

@keyframes glow {}

@keyframes fadeUp {}

@keyframes rotate {}

.animate-float {}

.animate-pulse {}


/*==============================================================
    KNOWLEDGE NETWORK
==============================================================*/

@keyframes pulse{

    0%{

        transform:scale(1);

        opacity:.7;

    }

    100%{

        transform:scale(1.8);

        opacity:0;

    }

}

.pulse-1{

    animation:pulse 3s infinite;

}

.pulse-2{

    animation:pulse 3s infinite 1.5s;

}