This command will find all folders in your current directory and deeper where the folder name has the word "tea", and then later followed by "cup" with anything in between. This will also ignore case.

$ find ./ -iname *tea*cup* -type d
    This will match folder names such as
  • tea cup
  • TeA and Cup
  • wickedTeaCUP
  • super.tea.in.my.cup.right.now