@media only screen and (max-width: 1130px) {
  .screen-normal {
    display: none;
  }
}
@media only screen and (min-width: 1130px) {
  .screen-small {
    display: none;
  }
}
header {
  height: 45px;
  width: 100%;
  position: fixed;
  display: grid;
  grid-template-columns: 45px auto auto;
  gap: 8px;
  align-items: center;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.4);
  color: #252732;
  background-color: #96a4ad;
  font-size: 18px;
  font-family: blok-pro;
}
header a, header a:hover, header a:focus, header a:active {
  text-decoration: none;
  color: inherit;
}
header a:hover, header a:hover:hover, header a:focus:hover, header a:active:hover {
  color: #f9f9f9;
}
header #menu-icon {
  background: url("../images/menu.svg");
  background-size: cover;
  display: block;
  width: 45px;
  height: 45px;
}
header #menu-icon:hover {
  display: block;
  width: 45px;
  height: 45px;
  background: url("../images/menu-active.svg");
  background-size: cover;
}
header .opening-link {
  justify-self: end;
  padding-right: 10px;
}

#opening-container-small {
  min-width: 100px;
  height: 0;
  position: fixed;
  top: 45px;
  right: 0px;
  padding-right: 10px;
  padding-left: 10px;
  overflow: hidden;
  text-align: right;
  background-color: #96a4ad;
  transition: height 0.5s;
  font-size: 15px;
}
#opening-container-small.open {
  height: auto;
  padding-top: 10px;
  padding-bottom: 10px;
}

#navigation-container-small {
  min-width: 300px;
  height: 0px;
  position: absolute;
  top: 45px;
  left: 0px;
  overflow: hidden;
  background-color: #96a4ad;
  transition: height 0.5s;
}
#navigation-container-small.open {
  height: 100%;
}

#navigation-container-normal {
  grid-area: navigation;
}
#navigation-container-normal .navigation-shape {
  box-shadow: 0px 0px 1px 0px #000000;
  width: 100%;
  height: 25px;
  clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
}

.navigation {
  box-shadow: 0px 0px 2px -1px #000000;
  padding: 30px 70px 60px 0px;
  background-color: #96a4ad;
  font-family: blok-pro;
  font-size: 2.8rem;
}
.navigation ul {
  list-style-type: none;
  text-align: right;
}
.navigation > ul {
  margin-top: 0;
}
.navigation > ul > li > details > summary::before {
  content: ">";
}
.navigation > ul > li > details[open] > summary::before {
  display: inline-block;
  transform: rotate(90deg);
}
.navigation > ul > li > details > summary {
  list-style: none;
}
.navigation > ul > li > details > ul {
  margin: 0px;
  padding: 0px;
}
.navigation > ul > li > details > ul > li {
  margin: 0px;
  padding: 0px;
}
.navigation > ul > li > details > ul > li > a {
  margin: 0px;
  padding: 0px;
  font-size: 2rem;
}
.navigation :is(li.current, li.section) > details > summary a {
  color: #f9f9f9;
}
.navigation :is(li.current, li.section) > a {
  color: #f9f9f9;
}

.navigation-shape {
  background-color: #96a4ad;
}

.navigation-link {
  font-family: blok-pro;
  text-decoration: none;
  color: #252732;
}
.navigation-link:hover {
  color: #f9f9f9;
}

/*# sourceMappingURL=navigation.css.map */
