Generally speaking, clustering in RabbitMq helps with scalability and high availability. It is important to make a distinction between replication (mirrored queues, high-availability,...) and distribution of different queues between different nodes. There is a great blog post about Clusters & scalability.
To answer the OP question, you can't scale up your configuration as is. Having a single queue usually means that you want messages in it to be processed in order. At the same time, you are mentioning that you have multiple parallel consumers which might suggest (not necessarily) that you want to parallel process your messages.
Assuming it is indeed parallel processing you're after, then you should split the queue into multiple queues that will then be distributed (scaled out) in the cluster and increase throughput. You can also use rabbitmq-sharding which does a similar thing under the hood but is not necessarily more convenient (ref).
And finally multiple clusters is a big no for this case (for most cases). It is synonym to deploying two completely independent messaging services.