Data exporting on multiple lines

Hello
Im Im trying to extract date from https://directory.klosetraining.com/ from multiple page but each column is exporting on a new line. I have followed your video on this topic but it seems I am missing something.
Any help will be appreaciated.
My sitemap is
{"_id":"klosetraining","startUrl":["Therapist Directory - Klose Training > div","type":"SelectorElement"},{"id":"Name1","multiple":true,"parentSelectors":["Ellement-Wrapper"],"regex":"","selector":"div.p-3","type":"SelectorText"},{"id":"Hospital","multiple":true,"parentSelectors":["Ellement-Wrapper"],"regex":"","selector":"div.pt-3","type":"SelectorText"},{"id":"Address","multiple":true,"parentSelectors":["Ellement-Wrapper"],"regex":"","selector":"div.pb-3","type":"SelectorText"}]}

Hi, the problem was the wrapper element, which should target every element separately. Subsequently, all child elements have to be with Multiple option unchecked.

{"_id":"klosetraining","startUrl":["https://directory.klosetraining.com/"],"selectors":[{"id":"Pages","paginationType":"auto","parentSelectors":["_root","Pages"],"selector":"li:nth-of-type(5) svg","type":"SelectorPagination"},{"id":"Ellement-Wrapper","multiple":true,"parentSelectors":["Pages"],"selector":"[class*=\"listing-row\"]","type":"SelectorElement"},{"id":"Name1","multiple":false,"parentSelectors":["Ellement-Wrapper"],"regex":"","selector":"div.p-3","type":"SelectorText"},{"id":"Hospital","multiple":false,"parentSelectors":["Ellement-Wrapper"],"regex":"","selector":"div.pt-3","type":"SelectorText"},{"id":"Address","multiple":false,"parentSelectors":["Ellement-Wrapper"],"regex":"","selector":"div.pb-3","type":"SelectorText"}]}

Thank you very much!