To center the header menu like the above image, you can follow steps below.
Solution
Step 1
Go to file Assets > base.css
Step 2
Add the following code at the bottom of the file
@media (min-width: 990px) {
.header .header__inline-menu {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
.header .list-menu--inline {
display: flex;
justify-content: center;
}
}