Split header menu also split mega menu items (Dawn Theme) - Help!

Currently working on a website for a client and I managed to split the header menu items so the logo is in the center, but now the problem I’m having is that the 4th mega menu dropdown item is also split weird and doesn’t align with the other menu items (see below).

Been trying to figure this for hours.. please help!

Store is https://the-popcorn-professor.myshopify.com/

PW: popcorn

@bossbabecreativ your css selector targeting the menu elements after the logo is overly broad so it’s going to hit every list element:

#shopify-section-sections–23064234295616__header .list-menu–inline li:nth-child(4)

You’ll need to increase the specificity somehow, or try and use :not pseudo selector to exclude items in submenus, etc

*edit: bad duplicate