.header {
  background-color: #ffffff;
  background-image: none;
}

.grid-child.container-nav {
  background-color: #ffffff;
}

.mod-menu {
  color: #e60005;
}

.card-header {
  color: #e60005;
}

.mod-menu li a {
  color: #e60005;
}

.container-header .mod-menu {
  color: #e60005;
}

/* In Joomla most buttons have the class btn-primary - in the element inspector you can check if the button you want to color really has this color.
*/

.btn-primary {
    background: #e60005;
}

/* If you want to color something, only if you move the mouse over it then write :hover after it
*/

.btn-primary:hover {
    background: #eb8264;
}