/* ==========================================================
   3D PRINTING ANIMATIONS

   Purpose:
   - Store animations used only by the 3D Printing service.

   Dependencies:
   - hero.css
   - materials.css
========================================================== */

@keyframes printerFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes glowPulse {
    0% {
        transform: scale(.96);
        opacity: .70;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(.96);
        opacity: .70;
    }
}

@keyframes materialFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}
