ヘッダーのロゴとグローバルメニューをそれぞれCSSをいじって中央寄せにしています。
どのように実現しているのかわかりませんので上記も含めたコードを書きます。
@media (min-width: 992px) {
	.container.siteHeadContainer {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		padding-bottom: 0px;
	}
	.navbar-header {
		width: 100%;
		order: 0;
		float: none;
	}
	.siteHeader_logo {
		float: none;
		width: 100%;
		text-align: center;
	}
	.siteHeader_logo img {
		margin: 0 auto;
	}
	.gMenu_outer {
		width: 100%;
		order: 1;
		float: none;
		min-height: unset;
		clear: both;
	}
	ul.gMenu {
		float: none;
		display: flex;
		justify-content: center;
		float: none;
		display: flex;
	}
		
	.gMenu_outer nav {
		width: 960px;
		max-width: 960px;
		margin-left: auto;
		margin-right: auto;
		display: block;
	}
	.gMenu>li {
		width: 50%;
		border-left: 1px solid #f5f5f5;
	}
	.gMenu>li:last-child {
		border-right: 1px solid #f5f5f5;
	}
}
@media (min-width: 1200px) {
	.gMenu_outer nav {
		width: 1140px;
		max-width: 1140px;
	}
}