@keyframes digiBlocksZoomOut {
    from {
        transform: scale3d(1, 1, 1);
    }
    50% {
        transform: scale3d(0.95, 0.95, 0.95);
    }
    to {
        transform: scale3d(1, 1, 1);
    }
}
.digi-animated.animate-zoom-out {
    animation-name: digiBlocksZoomOut;
}
