navbar remove box shadow

You are looking at the wrong element, it is #site-navigation that has the box shadow (and a white background, which also is a problem), so the following worked for me

#site-navigation {
  box-shadow: none;
  background-color: #fdd4ce;
}

A vendor prefix should not be necessary.