If you just want to do the DeMorgan's law portion of the simplification, (using your notation)
!((!A * B) * !((!B + C) * (!C * !D)))
<==> !(!A*B) + !!((!B + C) * (!C * !D)) (first round of DeMorgan's law usage)
<==> (A + !B) + !!((!B + C) * (!C * !D)) (second round of DeMorgan's law usage)
Now, if we want to finish simplifying,
(A + !B) + !!((!B + C) * (!C * !D))
<==> A + !B + (!B + C) * (!C * !D) (simplifying the !!)
<==> A + !B + (!B * !C * !D) + (!C * C * !D) (distribution)
<==> A + !B + (!B * !C * !D) + 0 (!C * C * !D is equivalent to 0)
<==> A + !B + (!B * !C * !D)
<==> A + !B (using the unavailable absorption law you mentioned)