/*Banner Link*/
.container-header .navbar-brand a {
	color: black;
  	font-size: 40px;
  	font-weight: 700;
}

/*Banner Link ohne Unterstrich*/
.container-header .navbar-brand a:link,
.container-header .navbar-brand a:visited,
.container-header .navbar-brand a:hover,
.container-header .navbar-brand a:active {
	text-decoration: none; 
}
/*.container-header .navbar-brand a:visited {
	text-decoration: none; 
}
.container-header .navbar-brand a:hover {
	text-decoration: none; 
}
.container-header .navbar-brand a:active {
	text-decoration: none; 
}*/

/* Banner Image */
.mybanner {
  min-width: 100%;
}

/* Menu */

/* Override the lila background with white */
.container-header {
  background-color: white;
  background-image: none;
}

/* Text should now be blue */
.container-header .mod-menu {
  color: #0088cc;
}

/* We add padding and radius so that on hover there is a nice background */
.container-header .mod-menu a {
  -webkit-border-radius: 6px 6px 6px 6px;
  -moz-border-radius: 6px 6px 6px 6px;
  border-radius: 6px 6px 6px 6px;
  padding: 3px 15px;
  color: #0088cc;
}

/* On hover there should be a gray background*/
.container-header .mod-menu a:hover {
  background-color: #eee;
}

/* On active there should be a gray background*/
.container-header .mod-list li.active>a {
  color: white;
  background-color: blue;
}


/* On current there should be a gray background*/
.container-header .mod-menu a:current {
  color: white;
  background-color: blue;
}

/* We need to change the color of the Hamburger Menu because white on white is not good */
.container-header .navbar-toggler {
  color: #0088cc;
  border: 1px solid #0088cc;
}

/*Reduce the padding of nav container*/
.container-header .container-nav {
  padding-bottom: 4px;
}

/*Footer settings*
.footer div.mod-footer {
  display: flex;
  flex; 1 1 0%;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.footer .grid-child {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}

@media (min-width: 768px) {
  footer div.mod-footer {
    flex-direction: row;
  }
}
*/