/* Container for main navigation */
#superfish-main {
  display: flex;
  width: 90%; /* Ensure the container spans the full width */
  margin:0 auto;
  align-items:center;
}

/* Menu item styling */
#superfish--main li {
  list-style: none;
  flex: 1 1 12.5%; /* Each item gets 12.5% of the total width (100% / 8 items) */
  text-align: center; /* Center text within each menu item */
  display: flex; /* Make the list item a flex container */
  align-items: center; /* Vertically align text inside the list item */
  justify-content: center; 
}

#superfish-main li a {
	color:#232d4b;
}

#superfish-main li li a {
	color:white;
}

#superfish-main li ul {
	margin-top:15px;
}



@media (min-width: 768px) {
	#block-global-theme-mainmenu {
		display:none;
	}
	#block-global-theme-mainmenu-2 {
		display:block;
	}
}

@media (max-width: 768px) {
	#block-global-theme-mainmenu {
		display:block;
	}
	#block-global-theme-mainmenu-2 {
		display:none;
	}
}