Add navigation menu beside the logo in the header Magento 2

add below lines to default.xml

<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"    xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout  /etc/page_configuration.xsd">
<body>
<move element="catalog.topnav" destination="header-wrapper" />
</body>
</page>

This one work correctly. Even this one did not break the mobile navigation and add after the logo.

<move element="navigation.sections" destination="header-wrapper" />

--

--