In AEM workflow participant step, if a single assignee in a group completes the task then the task is considered completed. This is the default behavior.
You will have to build a custom solution for this requirement. One approach is to dynamically create a temporary group after each approval and assign all the remaining users who have not approved to that group. This will continue in loop until all users approve. This solution works but it is very messy because of the complexity and temporary groups getting created at each approval step.
If you have less number of users in a group then you can implement a sequential approval by implementing a process step which you can add after the approval step. The process step will track the number of approvals done. In case all approvals are done it will complete and move to the next step else it will route the workflow backwards to the approval step. The assignee of the approval step will have to be calculated dynamically as well. This works but again is complex and also it will slow down the overall business process of approvals. Since the approvals in this case can not happen in parallel but only in sequential mode.
You should check with your customer whether they can implement this as part of offline business process rather than doing it in AEM workflow. Like they can approve it offline and one of them can approve it in the system.