@font-face {
  font-family: "Museo";
  src: url("/static/fonts/Museo/Museo300-Regular.otf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Museo";
  src: url("/static/fonts/Museo/Museo500-Regular.otf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Museo";
  src: url("/static/fonts/Museo/Museo700-Regular.otf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Museo";
  src: url("/static/fonts/Museo/Museo900-Regular.otf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BebasNeue";
  src: url("/static/fonts/BebasNeue/BebasNeue-Book.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BebasNeue";
  src: url("/static/fonts/BebasNeue/BebasNeue-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BebasNeue";
  src: url("/static/fonts/BebasNeue/BebasNeue-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Skript";
  src: url("/static/fonts/Mynerve/Mynerve-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  text-decoration: none;
}
.size_1-1 {
  width: 100%;
}
.size_1-2 {
  width: 50%;
}
.size_1-4 {
  width: 25%;
}
.size_3-4 {
  width: 75%;
}
body {
  font-family: 'Museo';
}
#wrapper {
  margin: 0 auto;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  max-width: 1200px;
  background-color: #023059;
  color: white;
}
/* Typographie */
h1 {
  font-weight: normal;
  font-size: 2.5rem;
  margin-bottom: 10px;
}
h2 {
  font-weight: bold;
  font-size: 1.5rem;
  margin: 20px 0 10px;
}
a.button {
  color: white;
  background-color: #f7931e;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 5px;
  padding: 5px 10px;
  text-decoration: none;
}
a.button:hover {
  background-color: #bfa089;
}
a {
  color: white;
  text-decoration: underline;
}
a:visited {
  color: white;
}
#tinymce a {
  color: black;
}
.contentelement p,
#tinymce p,
.contentelement li,
#tinymce li {
  font-size: 1.1rem;
  line-height: 150%;
}
.contentelement p strong,
#tinymce p strong,
.contentelement li strong,
#tinymce li strong {
  font-weight: 700;
}
.contentelement p,
#tinymce p {
  margin-bottom: 0.5em;
}
.contentelement ul,
#tinymce ul,
.contentelement ol,
#tinymce ol {
  list-style-type: none;
  margin-bottom: 10px;
}
.contentelement ul li,
#tinymce ul li,
.contentelement ol li,
#tinymce ol li {
  padding-left: 15px;
  margin-bottom: 7px;
  position: relative;
}
.contentelement ul li::before,
#tinymce ul li::before,
.contentelement ol li::before,
#tinymce ol li::before {
  content: "";
  display: block;
  position: absolute;
}
.contentelement ul li,
#tinymce ul li {
  padding-left: 15px;
  margin-bottom: 7px;
}
.contentelement ul li::before,
#tinymce ul li::before {
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: #bfa089;
  border-radius: 50%;
}
.contentelement ol,
#tinymce ol {
  counter-reset: ordered-list;
}
.contentelement ol li,
#tinymce ol li {
  padding-left: 20px;
  counter-increment: ordered-list;
}
.contentelement ol li::before,
#tinymce ol li::before {
  content: counter(ordered-list) ". ";
  text-align: right;
  color: #bfa089;
  font-weight: 700;
  position: absolute;
  left: 0;
}
header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}
header #mood {
  width: 100%;
}
header #logo {
  margin-left: 20px;
  position: absolute;
  z-index: 20;
}
header #logo img {
  width: 250px;
}
nav {
  flex-grow: 1;
  justify-content: flex-end;
  display: flex;
}
nav#menuMain {
  margin-right: 40px;
}
.menu .menu__list {
  display: flex;
  list-style-type: none;
}
.menu .menu__list--level-2 {
  position: absolute;
  flex-direction: column;
  display: none;
  background-color: white;
  z-index: 100;
  border-radius: 0 0 10px 10px;
}
.menu .menu__item:hover .menu__list,
.menu .menu__item:focus-within .menu__list {
  display: flex;
  justify-content: flex-end;
}
.menu .menu__item--level-1 + li {
  margin-left: 2px;
}
.menu .menu__link {
  display: block;
  padding: 5px 10px;
  font-size: 1rem;
  color: white;
  background-color: #f7931e;
  position: relative;
  text-decoration: none;
}
.menu .menu__link:hover,
.menu .menu__link:focus,
.menu .menu__link--active {
  background-color: white;
  color: #f7931e;
}
#menuIcon {
  display: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  position: absolute;
  right: 30px;
  top: 5px;
  z-index: 110;
}
#menuIcon span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  top: 6px;
  left: 0;
  background-color: white;
  transition: all 0.5s;
}
#menuIcon span:nth-of-type(2) {
  top: 24px;
  transition: all 0.4s;
}
#menuIcon span:nth-of-type(3) {
  top: 42px;
}
#menuIcon:hover span {
  background-color: #f7931e;
}
#menuIcon.open span {
  background-color: #f7931e;
}
#menuIcon.open span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 24px;
}
#menuIcon.open span:nth-of-type(2) {
  left: 20px;
  opacity: 0;
  width: 0;
}
#menuIcon.open span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 25px;
}
.skip-navigation {
  background-color: black;
  padding: 0.5em 0.75em;
  color: white;
  transition: 500ms;
  transform: translateY(-120%);
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 0 0 15px 15px;
  position: absolute;
  width: max-content;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1000;
}
.skip-navigation:focus {
  transform: translateY(0);
  background-color: red;
  outline: none;
}
#content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  /*justify-content: space-between;*/
  justify-content: flex-start;
  margin: 20px 0px;
  padding: 0 40px;
}
#content .contentelement {
  margin-bottom: 30px;
}
#content .contentbild {
  margin-right: 50px;
}
#content .contentbild img {
  display: block;
  margin-bottom: 10px;
}
#content .contentbild:first-of-type {
  width: 100%;
  margin: 0 -40px;
  margin-bottom: 50px;
}
#content .contentbild:first-of-type img {
  width: calc(100% + 80px);
  height: auto;
}
#content .contenttext {
  width: 100%;
}
#content .bild_polaroid {
  width: 220px;
  padding: 20px;
  background-color: white;
  align-self: flex-start;
  margin-right: -5px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#content .bild_polaroid img {
  width: 180px;
  height: auto;
  margin-bottom: 10px;
}
#content .bild_polaroid .bu {
  text-align: center;
  color: #023059;
  font-family: "Skript", sans-serif;
}
#content .bild_polaroid:nth-of-type(3n+1) {
  rotate: -2deg;
}
#content .bild_polaroid:nth-of-type(3n+2) {
  rotate: 3deg;
}
#content .bild_polaroid:nth-of-type(3n+2) {
  rotate: 5deg;
}
#content .bild_karte {
  border: 8px solid #f7931e;
  border-radius: 10px;
  background-color: white;
  width: 216px;
  margin-right: 10px;
}
#content .bild_karte img {
  width: 180px;
  height: auto;
  margin: 10px;
}
#content .bild_karte h3 {
  font-size: 1rem;
  color: #f7931e;
}
#content .bild_karte .bu {
  margin: 10px;
  padding-bottom: 35px;
}
#content .bild_karte p {
  color: #42210B;
  position: relative;
}
#content .bild_karte p em {
  position: absolute;
  right: 0;
  font-variant: normal;
  display: inline;
  color: white;
  background-color: #f7931e;
  text-align: right;
  border-radius: 10px;
  padding: 2px 10px;
  margin-top: 10px;
}
#content .zweispaltig {
  width: 45%;
  margin-right: 5%;
}
#content #spendenbalken {
  margin: 10px 0 50px 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}
#content #spendenbalken p {
  width: 100%;
}
#content #spendenbalken div {
  display: inline-block;
  background-color: #507CA2;
  font-size: 1.3rem;
  padding: 10px 20px;
  margin-bottom: 20px;
  margin-right: 10px;
}
#content #spendenbalken div#spendenfortschritt {
  box-sizing: border-box;
  width: 100%;
  border: 2px solid #bfa089;
  background-color: #023059;
  margin-bottom: 0;
  padding: 0;
}
#content #spendenbalken div#spendenfortschritt span {
  width: 45%;
  background-color: #507CA2;
  text-align: right;
  display: inline-block;
  padding: 5px;
  border-right: 2px #bfa089;
}
#content #spendenbalken div#spendenfortschritt_legende {
  background-color: #023059;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  border-left: 2px solid #bfa089;
  border-right: 2px solid #bfa089;
  padding: 5px 10px 0 10px;
  width: 100%;
}
#content #spendenbalken div#spendenfortschritt_legende span {
  display: inline-block;
}
footer {
  margin: 50px 40px 0px 20px;
  border-top: 1px solid white;
  padding-bottom: 25px;
}
footer img {
  width: 120px;
  height: auto;
  background-color: white;
  margin-right: 50px;
  display: inline-block;
}
footer div {
  display: flex;
  align-items: flex-end;
  padding-top: 25px;
}
@media (max-width: 800px) {
  header nav {
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    min-height: 100vh;
    background-color: #eee;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.4s, left 0.4s;
    /*display: flex;
		flex-direction: column;
		align-items: center;*/
  }
  header nav #menuMain {
    margin-left: 0;
    order: 1;
    padding: 30px 0;
  }
  header nav.visible {
    left: 0;
    opacity: 0.9;
    height: 100vh;
    overflow: scroll;
  }
  header nav .menu {
    max-width: 600px;
  }
  header nav .menu__list {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    margin: 0 auto;
    padding: 50px 20px;
  }
  header nav .menu__list--level-2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: unset;
    position: relative;
  }
  header nav .menu__item--level-1 + li {
    margin-left: unset;
  }
  header nav .menu__link {
    text-align: center;
  }
  header nav .menu__link--level-1 {
    font-size: 1.6rem;
    margin-top: 0.7em;
  }
  #menuIcon {
    display: block;
    top: 5px;
  }
  header #logo img {
    width: 30vw;
  }
}
@media (max-width: 720px) {
  #content .zweispaltig {
    margin: 0;
    width: 100%;
  }
}
