/*  CSS navbar
-------------------------------------------------- */
html{
  height: 100%;
  width: 100%;
}

.pic-head{
  position: absolute;
  left: 0;
  width: 100%;
  height: 400px;
  overflow:hidden;
  text-align: center;
}

.navbar-toggler{
  color: white !important;
}
#title-space{
  left: 0;
  width: 100%;
  height: 150px;
}
.navbar-brand{
  font-weight: bold;
  font-size: 1.5rem;
}

.navbar{
  background-color: rgba(255, 255, 255, 0.4);
  box-shadow: 10px 10px 10px black;
  border-radius: 12px;
  margin-bottom: 25px;
}

.nav-link{
  color: white;
  cursor: pointer;
}

.active-item{
  color: rgb(166, 200, 252);
}

/*  DROPDWON MODELLE */
.dropdown-content-modelle  {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content-modelle  a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content-modelle  a:hover {background-color: #ddd;}

.modelle:hover .dropdown-content-modelle {display: block;}

/*  ############################################################### */
/*  ############################################################### */


/*  DROPDWON RATGEBER */
.dropdown-content-ratgeber  {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content-ratgeber  a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content-ratgeber  a:hover {background-color: #ddd;}

.ratgeber:hover .dropdown-content-ratgeber {display: block;}
/*  ############################################################### */
/*  ############################################################### */

.dropdown-content-modelle .active-item{
  color: rgb(166, 200, 252);
}

.dropdown-content-ratgeber .active-item{
  color: rgb(166, 200, 252);
}