body {
  margin: 01px auto;
  max-width: 1920px;
  height: auto;
  background: #e6e6e6;
  font-size: 22px;
  line-height: 32px;
  color: #000;

  padding: 0;
  word-wrap: break-word !important;
  font-family: "roboto", sans-serif;
}

a {
  color: #000;
}
/*--------------------------------------------- */
/*    Dropdown  First Tier, second Tier, ...
      id (drop-2, drop-3,.. von checkbox
----------------------------------------------- */
.toggle,
[id^="drop"] {
  display: none;
}

header {
  background-color: #e6e6e6;
  z-index: position 1;
}

nav {
  margin: 0 auto;
  margin: 0;
  padding: 0;
  background-color: #e6e6e6;
}

.sticky {
  max-width: 1200px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

#logo {
  margin-top: 10px;
  display: block;
  padding: 0 5px;
  float: left;
  font-size: 20px;
  line-height: 40px;
  background-color: #e6e6e6;
}

/*******************/
/*   basismenu     */
/*******************/

nav ul {
  background-color: #e6e6e6;
  float: right;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

nav ul li {
  margin: 0px;
  display: inline-block;
  /*float: left;*/
  background-color: #e6e6e6;
}

nav a {
  display: block;
  padding: 0 20px;
  color: #000;
  font-size: 20px;
  line-height: 60px;
  text-decoration: none !important;
}

nav ul li ul li:hover {
  background: #dfe0e2 !important;
}

nav a:hover {
  background-color: #dfe0e2 !important;
}

nav ul ul {
  display: none;
  position: absolute;
  top: 60px;
}

nav ul li:hover > ul {
  display: inherit;
}
/*******************/
/*   untermenu 1   */
/*******************/
nav ul ul li {
  background-color: #e6e6e6;
  width: 270px;
  float: none;
  display: list-item;
  position: relative;
}
/*******************/
/*   untermenu 2   */
/*******************/
nav ul ul ul li {
  background-color: #e6e6e6;
  position: relative;
  top: 0px;
  padding-left: 20px;
}

li > a:after {
  content: " +";
}

li > a:only-child:after {
  content: "";
}
/*--------------------------------------------- */
/*             Media Queries
---------------------------------------------- */

@media all and (max-width: 914px) {
  body {
    width: 100%;
    min-height: 100vh;
  }
  header {
    background-color: #e6e6e6;
    width: 100% !important;
  }
  nav {
    width: 100%;
    background-color: #e6e6e6;
    margin: 0;
  }
  nav ul {
    float: none; /*???*/
  }
  /*--------------------------------------------- */
  /*             Hamburger - Sqirrel
      https://github.com/lashaNoz/Hamburger-Menu
      https://www.youtube.com/watch?v=BN6fH1nRDxA
      Aktivierung durch js
      
      const menuIcon = document.querySelector(".hamburger-menu");
      const navbar = document.querySelector(".navbar");
      menuIcon.addEventListener("click", () => {
        navbar.classList.toggle("change");
      });
 ----------------------------------------------- */
  .navbar {
    position: fixed;
    width: 800px;
    height: 100%;
    top: 0;
    left: -800px;
    display: flex;
  }
  .nav-list {
    top: 65.5px;
    text-align: left;
  }
  /* Wechsel zwischen hamburger und x
     Aktivierung durch js */
  .change {
    opacity: 1;
    left: 0%;
  }

  .hamburger-menu {
    width: 35px;
    height: 30px;
    position: fixed;
    top: 15px;
    right: 5%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }

  .line {
    width: 100%;
    height: 3px;
    background-color: red;
    transition: all 0.8s;
  }
  .change .line-1 {
    transform: rotateZ(-405deg) translate(-8px, 6px);
  }

  .change .line-2 {
    opacity: 0;
  }

  .change .line-3 {
    transform: rotateZ(405deg) translate(-8px, -6px);
  }

  /*--------------------------------------------- */
  /*            hamburger-squirrel Ende
  /*--------------------------------------------- */

  /*.toggle + a,
  .hamburger-menu {
    display: left;
  }*/
  /*+++++++++++*/
  /* Dropdown  */
  /*+++++++++++*/
  .toggle {
    width: 100%;
    display: block;
    background-color: #e6e6e6;
    padding: 0 20px;
    color: #000;
    font-size: 20px;
    line-height: 40px;
    text-decoration: none !important;
    border: solid 0px red;
  }
  nav a {
    line-height: 40px;
  }
  .test {
    display: none;
  }
  .toggle:hover {
    background-color: #dfe0e2 !important;
  }

  [id^="drop"]:checked + ul {
    display: block;
  }

  nav ul li {
    display: block;
    width: 100%;
  }

  nav ul ul .toggle,
  nav ul ul a {
    line-height: 30px;
    padding: 0 30px;
    border: solid 0px green;
  }

  nav ul ul ul a {
    padding: 0 40px;
  }

  nav ul ul ul a {
    background-color: #e6e6e6;
  }

  nav ul li ul li .toggle,
  nav ul ul a {
    background-color: #e6e6e6;
  }

  nav ul ul {
    float: none;
    position: static;
    color: #000;
  }

  nav ul ul li:hover > ul,
  nav ul li:hover > ul {
    display: none;
  }

  nav ul ul li {
    display: block;
    width: 100%;
  }

  nav ul ul ul li {
    position: static;
  }

  /*--------------------------------------------- */
  /*          mobile-menu ohne fotos
  /*            nur Link zu Galerien
  /*--------------------------------------------- */

  .desktop {
    display: none;
    background-color: #e6e6e6;
  }
  .gallery-item .text {
    opacity: 0;
  }
  .mobil {
    background-color: #e6e6e6;
    position: relative;
    top: 40px;
    display: block;
    width: 100vw;
    line-height: 70px;
    padding: 10px 0;
  }
  .mobil a {
    background-color: #e6e6e6;
    font-size: 35px;
    font-weight: 400;
    text-align: center;
  }
}
