It's been a while since I worked with iOS, so my answer may be outdated, but here goes...
From what I can see, your problem is probably that application/vnd.openxmlformats-officedocumrent.wordprocessingml.document
is not supported on Apple platforms by default. Unless you have an application that has associated itself with that mime type you probably won't be able to open it at all on an iPad. You say that it works fine on laptop/pc, but does that include apple laptop/desktop? I suspect it won't work there either. If you are successfully opening it on a mac, then you probably have a program installed (outside of the base OS) that handles that type and has registered itself with the operating system.
My iPad/iPhone are getting elderly, and it's been a while since I developed for iOS, but unless they've added something in newer versions there's no generic "save to disk" function. You either have an application that handles it or you can't browse it.
However, given that you are dealing with the world of MS formats, and a great many folks screw up the mime types for these when serving them, one thing I would try before you give up is serving it with the wrong mime/type (application/msword). It's entirely possible that the existing handler for the old mime type has been updated to handle incorrectly served newer versions of the doc (this might be done to avoid bad user experience some of the time without officially committing to full support for the new type). The web (especially web browsers) is full of "makeup code"
If that works, it may not be reliable, and if you still feel like supporting apple platforms, it's probably still best to choose a secondary format with well established apple support like pdf, or the older .doc format. You can serve that instead when you detect an iPad or other apple device. Alternately you can advise your users that they will require a 3rd party app for Mac/iPad use.