@font-face {
  font-family: 'Raleway';
  font-weight: 200;
  src: url("/static/fonts/Raleway-ExtraLight.ttf");
}
@font-face {
  font-family: 'Raleway';
  font-weight: 200;
  font-style: italic;
  src: url("/static/fonts/Raleway-ExtraLightItalic.ttf");
}
@font-face {
  font-family: 'Raleway';
  font-weight: 300;
  src: url("/static/fonts/Raleway-Light.ttf");
}
@font-face {
  font-family: 'Raleway';
  font-weight: 300;
  font-style: italic;
  src: url("/static/fonts/Raleway-LightItalic.ttf");
}
@font-face {
  font-family: 'Raleway';
  font-weight: 700;
  src: url("/static/fonts/Raleway-Bold.ttf");
}
@font-face {
  font-family: 'Raleway';
  font-weight: 700;
  font-style: italic;
  src: url("/static/fonts/Raleway-BoldItalic.ttf");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
  border: none;
  text-decoration: none;
  list-style-type: none;
}
#page {
  background: black;
  color: white;
  font-family: 'Raleway', sans-serif;
}
header #mood {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
header #mood img {
  max-width: 100%;
  height: auto;
}
header #mood .headerbild {
  background-size: cover;
  background-position: center center;
}
header #mood .headerbild img {
  width: 100%;
  height: auto;
  display: block;
}
header #mood #logo {
  z-index: 100;
  text-align: center;
  margin: 40px 0 0;
}
header #mood #logo img {
  width: 200px;
  height: auto;
  margin-bottom: 10px;
  display: inline-block;
}
header #mood #logo p {
  font-size: 18px;
  font-weight: 200;
}
header #mood #logo p a {
  color: white;
}
header #mood #logo p a:hover {
  text-decoration: underline;
}
header #mood .logo {
  z-index: 100;
  text-align: center;
  position: absolute;
}
header #mood .logo img {
  width: 200px;
  height: auto;
  margin-bottom: 10px;
  display: inline-block;
}
header #mood .logo .bu h1 {
  font-size: 18px;
  font-weight: 200;
}
header #mood .logo .bu ul {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
header #mood .logo .bu ul li a {
  color: white;
  padding: 10px 10px;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
}
header #mood .logo .bu ul li a:hover {
  text-decoration: underline;
}
header #mood .logo.links_oben {
  top: 50px;
  left: 50px;
}
header #mood .logo.rechts_oben {
  right: 50px;
  top: 50px;
}
header #mood .logo.links_unten {
  bottom: 50px;
  left: 50px;
}
header #mood .logo.rechts_unten {
  right: 50px;
  bottom: 50px;
}
#content {
  padding: 0 30px 30px;
}
@media screen and (max-width: 600px) {
  #content {
    padding: 0 10px 30px;
  }
}
section {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
section h1 {
  background: black;
  position: relative;
  z-index: 20;
  padding: 40px 15px 0px;
  display: table;
  font-size: 40px;
  margin: 0 auto 50px;
  font-weight: 700;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  section h1 {
    font-size: 30px;
  }
}
section hr {
  content: "";
  width: 100%;
  background: white;
  height: 2px;
  position: absolute;
  left: 0;
  top: 65px;
  z-index: 10;
  border-right: 10px solid black;
  border-left: 10px solid black;
}
@media screen and (max-width: 1024px) {
  section hr {
    top: 57px;
  }
}
section .contenttext {
  max-width: 600px;
  width: 100%;
  margin: 50px auto;
  text-align: center;
}
section .contenttext p {
  margin-bottom: 10px;
  line-height: 150%;
}
section .contenttext a {
  color: white;
}
section .contenttext a:hover {
  text-decoration: underline;
}
section .contentbild {
  padding: 10px;
}
section .contentbild .bu {
  margin-top: 10px;
}
section #sammlung {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
section #sammlung .galerie {
  height: auto;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  transition: background-size 1s;
  position: relative;
  border: 10px solid black;
  cursor: pointer;
}
section #sammlung .galerie img {
  max-width: 500px;
  max-height: 500px;
  width: auto;
  height: auto;
  opacity: 0;
}
@media screen and (max-width: 1600px) {
  section #sammlung .galerie img {
    max-width: 400px;
    max-height: 400px;
  }
}
@media screen and (max-width: 1024px) {
  section #sammlung .galerie img {
    max-width: 300px;
    max-height: 300px;
  }
}
@media screen and (max-width: 600px) {
  section #sammlung .galerie img {
    max-width: 100%;
    max-height: none;
  }
}
section #sammlung .galerie .info {
  opacity: 0;
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.5s;
}
@media screen and (min-width: 1025px) {
  section #sammlung .galerie:hover {
    background-size: 110% 110%;
  }
  section #sammlung .galerie:hover .info {
    opacity: 1;
  }
}
section #sammlung .galeriebox {
  display: none;
}
section #serie {
  opacity: 0;
  max-height: 0;
  overflow-y: hidden;
  transition: max-height 1s;
}
section #serie .description {
  padding: 30px 60px 0 10px;
  font-size: 30px;
  font-weight: 300;
}
section #serie ul {
  padding: 50px 0 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
}
section #serie ul li {
  border: 10px solid black;
  position: relative;
  min-width: 100px;
  min-height: 100px;
}
@media screen and (min-width: 601px) {
  section #serie ul li {
    cursor: zoom-in;
  }
}
section #serie ul li .imagebox {
  opacity: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transition: background-size 1s;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 1025px) {
  section #serie ul li .imagebox:hover {
    background-size: 110% 110%;
  }
}
section #serie ul li .imagebox img {
  max-width: 500px;
  max-height: 500px;
  display: block;
  opacity: 0;
  z-index: 10;
  position: relative;
  width: auto;
  height: auto;
}
@media screen and (max-width: 1600px) {
  section #serie ul li .imagebox img {
    max-width: 400px;
    max-height: 400px;
  }
}
@media screen and (max-width: 1024px) {
  section #serie ul li .imagebox img {
    max-width: 300px;
    max-height: 300px;
  }
}
@media screen and (max-width: 600px) {
  section #serie ul li .imagebox img {
    max-width: 100%;
    max-height: none;
  }
}
.close {
  position: absolute;
  right: 18px;
  top: 150px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  border: 2px solid white;
  background: none;
  display: none;
  z-index: 10000;
}
.close span {
  width: 50px;
  height: 2px;
  background: white;
  position: absolute;
  top: 22px;
  left: -2px;
}
.close span:first-of-type {
  transform: rotate(45deg);
}
.close span:last-of-type {
  transform: rotate(-45deg);
}
.close:hover {
  background: white;
}
.close:hover span {
  background: black;
}
.loading {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 4s linear infinite;
  -moz-animation: spin 4s linear infinite;
  animation: spin 4s linear infinite;
  z-index: 0;
  opacity: 0;
}
.loading span {
  width: 50px;
  height: 2px;
  background: white;
  position: absolute;
  top: 24px;
}
.loading span:nth-of-type(1) {
  transform: rotate(120deg);
}
.loading span:nth-of-type(2) {
  transform: rotate(240deg);
}
.loading span:nth-of-type(3) {
  transform: rotate(0deg);
}
.prev,
.next {
  width: 50px;
  height: 50px;
  position: absolute;
  z-index: 10000;
  cursor: pointer;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
}
.prev:hover,
.next:hover {
  background: white;
}
.prev:hover span,
.next:hover span {
  background: black;
}
.prev {
  left: 5%;
}
.prev span {
  width: 25px;
  height: 2px;
  background: white;
  position: absolute;
  left: 9px;
}
.prev span:nth-of-type(1) {
  transform: rotate(-45deg);
  top: 13px;
}
.prev span:nth-of-type(2) {
  transform: rotate(45deg);
  top: 30px;
}
.next {
  right: 5%;
}
.next span {
  width: 25px;
  height: 2px;
  background: white;
  position: absolute;
  right: 9px;
}
.next span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 13px;
}
.next span:nth-of-type(2) {
  transform: rotate(-45deg);
  top: 30px;
}
#lightbox {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: -1000;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
#lightbox img {
  max-width: 90%;
  width: auto;
  height: auto;
  max-height: 90%;
}
@media screen and (max-width: 1024px) {
  #lightbox img {
    max-width: 100%;
    max-height: 100%;
  }
}
@media screen and (max-width: 1024px) {
  #lightbox {
    padding: 20px;
  }
}
@media screen and (max-width: 600px) {
  #lightbox {
    padding: 10px;
  }
}
#lightbox .close {
  display: block;
  top: 50px;
  right: 50px;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  #lightbox .close {
    top: 20px;
    right: 20px;
  }
}
@media screen and (max-width: 600px) {
  #lightbox .close {
    top: 10px;
    right: 10px;
  }
}
button {
  color: white;
  display: inline-block;
  border: 2px solid white;
  padding: 5px 10px;
  margin-top: 10px;
  background: none;
  font-family: 'Raleway', sans-serif;
  line-height: 150%;
  font-size: 16px;
  cursor: pointer;
}
button:hover {
  background: white;
  color: black;
}
button.back {
  margin: 40px 10px 0;
}
@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
footer {
  padding: 30px;
}
footer ul {
  display: flex;
  justify-content: flex-end;
}
footer ul li a {
  color: white;
  padding: 0 15px;
  font-weight: 300;
}
footer ul li a:hover,
footer ul li a.aktiv {
  text-decoration: underline;
}
#cmsPage ul.cmsMenuButtons.cmsButtonsSpaltenEnde {
  position: relative;
}
.editmode header #mood .headerbild {
  height: auto !important;
  width: 100% !important;
}
