the number of combinations for each hand is the binomial coefficient $$\left( \begin{array}{c} \text{nb cards remaining in deck} \\ \text{nb cards in hand} \end{array} \right)$$
As this accounts for an ordering of the hands, to disregard the ordering, We'll later divide the product of all hands combinations by the number of permutations of h hands, which is $h!$.
If we note $H_{i}$ the number of cards in hand $i$, we can see that the product of all hands combinations simplifies itself :
$$\dbinom{d}{H_{1}} \times \dbinom{d}{H_{2}} \times ... \times \dbinom{d}{H_{i}}$$
$$=\frac{d!}{H_{1}!\times(d-H_{1})!}\times\frac{(d-H_{1})!}{H_{2}!\times(d-H_{1}-H_{2})!}...$$
$$=\frac{d!}{\prod{H_i !}}$$
And we divide this by $h!$ as explained before :
$$\frac{d!}{h! \times \prod{H_i !}}$$
In your case, for 5 hands and a deck of 37 cards, that'd be
$$\frac{37!}{5!\times8!^2 \times 7!^3}$$
which is $551,090,558,931,404,263,200$ combinations $(\approx 5\times 10^{20})$.