/* override header background and remove its image*/
.container-header {
  background-color: #244d5f;
  background-image: none;
}

/* override menue add border radius padding and change text color*/
.container-header .mod-menu a {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px 15px;
  /* changing text color (does not take it)
  color: red;
  */
}

/* override manue background on hover*/
.container-header .mod-menu a:hover {
  background-color: #8ab9ed3a;
}

