Python 3, 148 143 140 132 100100 99 bytes
cn,n=[]*c=0,0 for x in input()+'1': if'`'<x.lower()<'{':n+=1 elif n:c+=n,;n=0 print(max(c,key=c.count)) Uses regex to check if character is a letter of the English alphabet and adds the count of all consecutive alphabets to a list and finds the mode of that list.
-3 bytes thanks to Rahul Verma
-32 bytes thanks to ovs
-1 byte thanks to DLosc