You can try to split your String into two parts and manage their case separately.
{{ (Name.charAt(0) | uppercase) + "" + (Name.slice(1, element.length) | lowercase) }}
or
{{ Name.charAt(0) | uppercase }} {{ Name.slice(1, element.length) | lowercase }}