@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;
}

#content-container {
  grid-area: content;
}
@media only screen and (min-width: 1130px) {
  #content-container {
    position: relative;
    left: -40px;
    top: 40px;
  }
}

#content-shape {
  box-shadow: 0px 0px 2px -1px #000000;
  background-color: #252732;
  width: 100%;
  height: 25px;
  margin-top: 30px;
  clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
  max-width: 864px;
}

#content {
  box-shadow: 0px 0px 2px -1px #000000;
  grid-area: content;
  min-height: 600px;
  background-color: #252732;
  padding: 32px;
  padding-top: 2.8rem;
  max-width: 800px;
}

@media only screen and (max-width: 1130px) {
  #content {
    margin-bottom: 2em;
    margin-top: -1px;
  }
  .content h1 {
    margin-top: 1em;
  }
}
.content {
  color: #f9f9f9;
}
.content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
  font-family: blok-pro;
}
.content h1 {
  font-size: 2.8rem;
}
.content h2 {
  font-size: 2rem;
}
.content h3 {
  font-size: 1.4rem;
}
.content h4 {
  font-size: 23px;
}
.content h5 {
  font-size: 20px;
}
.content h6 {
  font-size: 17px;
}
.content a {
  color: #f9f9f9;
  text-decoration: underline dotted silver;
  text-underline-offset: 2px;
}
.content a:hover {
  color: #f9f9f9;
}
.content img {
  background-color: white;
  padding: 2px;
}
.content img.left {
  float: left;
  margin: 17px 17px 17px 0px;
  max-width: 100%;
  height: auto;
}
.content img.right {
  float: right;
  margin: 17px 0px 17px 17px;
  max-width: 100%;
  height: auto;
}
.content img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 17px;
  margin-bottom: 17px;
  width: 100%;
  max-width: 800px;
  height: auto;
}
.content img.leftAlone {
  display: block;
  margin-top: 17px;
  margin-bottom: 17px;
  width: 100%;
  max-width: 800px;
  height: auto;
}
.content img.rightAlone {
  display: block;
  margin-top: 17px;
  margin-bottom: 17px;
  margin-left: auto;
  width: 100%;
  max-width: 800px;
  height: auto;
}
.content.faq ul {
  padding-left: 18px;
}
.content.faq li {
  margin-bottom: 12px;
}
.content.faq > ul > li {
  list-style-type: none;
  font-family: blok-pro;
  font-size: 24px;
}
.content.faq > ul > li::before {
  content: ">";
  font-size: 26px;
  margin-right: 8px;
}
.content.faq > ul > li ul > li {
  display: none;
  font-family: "asap";
  font-size: 18px;
  list-style: none;
}
.content.faq > ul > li.visible::before {
  display: inline-block;
  transform: rotate(90deg);
}
:is(.content.faq > ul > li.visible) ul > li {
  display: block;
}

#address-container {
  position: absolute;
  margin-top: 3px;
  background: #dddddd;
  clip-path: circle(50% at 50% 50%);
}
@media only screen and (max-width: 1130px) {
  #address-container {
    width: 138px;
    height: 138px;
    top: 45px;
    right: 25px;
    font-size: 10px;
  }
  #address-container img {
    width: 70px;
    height: 60px;
    position: relative;
    margin-top: 10px;
  }
}
@media only screen and (min-width: 1130px) {
  #address-container {
    width: 245px;
    height: 245px;
    top: -140px;
    right: -50px;
    font-size: 17px;
  }
  #address-container img {
    width: 120px;
    height: 100px;
    position: relative;
    margin-top: 25px;
  }
}

.close--impressum {
  width: 100%;
  margin: 0;
  text-align: right;
  font-size: 2.8rem;
  color: white;
  height: 4rem;
  position: relative;
  z-index: 20;
}

.show--impressum {
  position: relative;
  z-index: 0;
  top: -4rem;
}

#pages {
  width: 80%;
  max-width: 1200px;
  display: grid;
}
@media only screen and (max-width: 1130px) {
  #pages {
    width: 95%;
    display: grid;
    grid-template-rows: 1fr;
    grid-template-areas: "content";
  }
}
@media only screen and (min-width: 1130px) {
  #pages {
    margin-top: 100px;
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 330px 1fr;
    grid-template-areas: "navigation content";
  }
}

#opening-container-normal {
  width: 190px;
  height: 190px;
  position: relative;
  top: -50px;
  right: -97px;
  background: #dddddd;
  clip-path: circle(50% at 50% 50%);
}
#opening-container-normal div {
  padding-top: 25px;
  font-family: blok-pro;
  font-size: 40px;
  color: #252732;
}

@font-face {
  font-family: "blok-pro";
  src: url("../fonts/blok_pro-webfont.woff") format("woff");
}
@font-face {
  font-family: "asap";
  src: url("../fonts/asap-regular-webfont.woff") format("woff");
}
html, body {
  margin: 0;
  height: 100%;
}

body {
  background-image: url("../images/background.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

#site {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  font-family: "asap";
}
@media only screen and (max-width: 1130px) {
  #site {
    grid-template-rows: 45px 1fr;
    grid-template-areas: "header" "main";
  }
}
@media only screen and (min-width: 1130px) {
  #site {
    grid-template-rows: 1fr;
    grid-template-areas: "main";
  }
}
#site main {
  grid-area: main;
  display: flex;
  justify-content: center;
}
#site .language-container {
  width: 5.8rem;
  height: 3.4rem;
  position: fixed;
  left: 0px;
  top: 0px;
}
#site .language-container .shape {
  height: 100%;
  width: 100%;
  transform: rotate(-4deg);
  position: absolute;
  top: -5px;
  left: -3px;
  background-color: #96a4ad;
}
#site .language-container .language {
  font-family: blok-pro;
  text-decoration: none;
  color: #252732;
  font-size: 1.8rem;
  position: absolute;
  top: 6px;
  left: 20px;
}
#site .language-container .language a, #site .language-container .language a:hover, #site .language-container .language a:focus, #site .language-container .language a:active {
  text-decoration: none;
  color: inherit;
}
#site .language-container .language a:hover, #site .language-container .language a:hover:hover, #site .language-container .language a:focus:hover, #site .language-container .language a:active:hover {
  color: #f9f9f9;
}
#site #impressum {
  width: 100%;
  height: 0%;
  position: fixed;
  bottom: 0px;
  background-color: rgba(37, 39, 50, 0.9882352941);
  transition: height 0.5s;
  overflow: auto;
  display: grid;
  grid-template-columns: auto 60% auto;
}
#site #impressum.open {
  height: 100%;
}
#site .impressum-link {
  width: 200px;
  height: 80px;
  position: fixed;
  right: 0px;
  bottom: 0px;
}
#site .impressum-link .shape {
  height: 100%;
  width: 100%;
  transform: rotate(-6deg);
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #96a4ad;
}
#site .impressum-link a {
  font-size: 30px;
  position: absolute;
  top: 32px;
  left: 50px;
}

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