/* =====  1 Globals und Variablen  ===================================== */
/* -----  1.1 Fonts  --------------------------------------------------- */
/* -----  1.2 Reset & Normalization  ----------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: none;
  box-sizing: border-box;
  list-style: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  /* Add correct display for IE 9- and some newer browsers */
  display: block;
}
nav ul,
nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}
::-moz-selection {
  background: #9e9e9e;
  color: #fff;
}
::selection {
  background: #9e9e9e;
  color: #fff;
}
/* -----  1.3 General Typography  ------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
pre {
  /* Reset font-sizes and normalize margins */
  font-size: inherit;
  line-height: inherit;
  margin: 0 0 1.5rem;
}
/* Headings */
h1 {
  font-size: 2.5rem;
  line-height: 1.25;
  color: #94c11f;
}
h2 {
  font-size: 1.75rem;
  line-height: 2.2rem;
}
h3 {
  font-size: 1.25em;
  line-height: 1.2;
}
h4 {
  font-size: 1em;
}
h1 small,
h2 small,
h3 small,
h4 small {
  display: block;
  font-size: 0.7em;
}
/* Links */
a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color ease-in-out 0.1s;
  -o-transition: color ease-in-out 0.1s;
  transition: color ease-in-out 0.1s;
}
a:not(.without-decoration) {
  border-bottom: 2px solid #94c11f;
}
a:hover,
a:focus,
a:active {
  color: #37aae1;
}
/* Misc */
hr {
  font-size: 1.25rem;
  font-weight: 500;
  height: 1.5rem;
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: #94c11f;
}
hr::before {
  content: "";
  position: relative;
  display: block;
  background: currentColor;
  height: 2px;
  top: calc(50% + 1px);
}
h1 + hr,
.intro + hr {
  /* Shift a <hr> right after an `.intro`
or <h1> block one line up. */
  margin-top: -1.5rem;
}
mark {
  padding: 0.1em 0.05em;
  margin: -0.1em 0;
  color: #fff;
  background: #fdf9ea;
}
/* -----  1.4 Images & Figures  --------------------------------------------- */
img {
  border-style: none;
  width: 100%;
  height: auto;
}
figcaption {
  font-size: 0.75rem;
  line-height: 1.5rem;
}
/* =====  2 Layout Helpers & Reusable Components  =========================== */
/* The Clearfix™: A classic … */
.cf::after {
  content: "";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
/* -----  2.1 Grid & Layout  ------------------------------------------------ */
.wrap {
  position: relative;
  box-sizing: content-box;
  margin: 0 auto;
  padding-left: 0rem;
  padding-right: 0rem;
  max-width: 48rem;
}
.wrap.wide {
  max-width: 64rem;
}
@media all and (min-width: 31.5em) {
  .wrap {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
@media all and (min-width: 54em) {
  .wrap {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media all and (min-width: 60em) {
  .wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
/* =====  3 Site Layout  ==================================================== */
html {
  background: #f0f0f0;
  color: #383838;
  font: normal 400 1.1rem/1.7 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  /* Always show the vertical scrollbar to prevent `jumps`
     of page content after navigating from a very short page
     that does not scroll to a long pager */
  overflow-y: scroll;
  /* Setting this to `default` prevents the cursors from
     changing when hovering blocks of text or whitespace,
     which is less distracting */
  cursor: default;
  /* Neccessary for sticks footer. */
  position: relative;
  min-height: 100%;
  /* Prevent adjustments of font size after orientation
     changes in IE and iOS. */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* Highlight color for WebKit-bases touch devices. */
  -webkit-tap-highlight-color: rgba(113, 239, 172, 0.5);
}
@media all and (max-width: 30em) {
  html {
    /* We decrease the font-size a little-bit for tiny
       screens. Because this stylesheet uses relative units
       everywhere, everything scales nicely. */
    font-size: 1em;
  }
}
body {
  /* space for sticky footer */
  margin-bottom: 4.5rem;
  position: relative;
}
/* ----- 3.1  Header  ------------------------------------------------------- */
.header {
  background: #fff;
  color: #5e5e5e;
  box-shadow: 2px 0 4px rgba(133, 133, 133, 0.3);
}
@media all and (min-width: 54em) {
  .header {
    position: fixed;
    width: 16rem;
    top: 0;
    left: 0;
    bottom: 0;
  }
}
.header-scroll {
  height: 100%;
  width: 100%;
  overflow: auto;
}
.header-logo {
  margin: 1.5rem 0.75rem;
  text-align: center;
  position: relative;
}
.header-logo img {
  display: block;
  width: 14rem;
}
@media all and (min-width: 54em) {
  .header-logo {
    margin: 1.5rem 0;
  }
  .header-logo img {
    width: 100%;
  }
}
.header-navigation {
  margin: 0 1.5rem;
}
.header-navigation > ul {
  max-height: 0;
  overflow-y: scroll;
  -webkit-transition: max-height ease-in-out 0.5s;
  -o-transition: max-height ease-in-out 0.5s;
  transition: max-height ease-in-out 0.5s;
}
@media all and (min-width: 54em) {
  .header-navigation > ul {
    max-height: 100%;
    overflow-y: auto;
  }
}
.header-navigation.header-navigation-show > ul {
  max-height: 300px;
}
.header-navigation li {
  border-bottom: 2px solid #dedede;
}
.header-navigation li:last-of-type {
  border-bottom: none;
}
.header-navigation li.is-active > a {
  color: #94c11f;
}
.header-navigation li.is-active > a:before {
  content: "\232A";
  font-weight: bold;
  padding-right: 0.5rem;
}
.header-navigation ul ul {
  display: block;
  margin-left: 1rem;
  margin-bottom: 2rem;
}
.header-navigation ul ul li {
  border-bottom: none;
}
.header-navigation ul ul li.is-active > a {
  color: #37aae1;
}
.header-navigation ul ul li.is-active > a:before {
  content: "";
  padding-right: 0;
}
.header-navigation ul ul a {
  text-transform: none;
  padding: 0.2rem 0;
}
.header-navigation a {
  display: block;
  padding: 0.5rem 0;
  text-transform: uppercase;
  font-weight: bold;
  border-bottom: none;
}
.header-navigation-toggle {
  width: 4rem;
  height: 3rem;
  display: block;
  position: absolute;
  top: 50%;
  right: 1rem;
  margin-top: -1.5rem;
  border-bottom: none;
}
@media all and (min-width: 54em) {
  .header-navigation-toggle {
    display: none;
  }
}
.header-navigation-toggle span {
  display: block;
  height: 0.5rem;
  background: #9e9e9e;
  margin-bottom: 0.75rem;
}
.header-navigation-toggle span:last-of-type {
  margin-bottom: 0;
}
/* ----- 3.2 Content  ------------------------------------------------------- */
.content {
  margin-top: 2rem;
  padding: 0 1rem;
}
@media all and (min-width: 54em) {
  .content {
    margin-top: 0;
    margin-left: 16rem;
    padding: 0;
  }
}
.content h1 {
  background: #94c11f;
  color: #fff;
  padding: 0.5rem 1.5rem;
  font-size: 2rem;
  transform: rotate(-2deg);
}
@media all and (min-width: 60em) {
  .content h1 {
    margin: 0 -2rem 2rem;
    font-size: 2.5rem;
  }
}
.content h2 {
  border-left: 1rem solid #37aae1;
  padding: 0.5rem 0 0.5rem 1rem;
  background: #fff;
}
@media all and (min-width: 60em) {
  .content h2 {
    margin-left: -2rem;
  }
}
.content h3 {
  border-left: 1rem solid #9e9e9e;
  padding: 0.5rem 0 0.5rem 1rem;
  background: #fff;
}
@media all and (min-width: 60em) {
  .content h3 {
    margin-left: -2rem;
  }
}
.content ul {
  margin-left: 1.5rem;
}
.content ul li {
  list-style: square;
}
.content ol li {
  list-style: decimal;
}
.content-header {
  display: none;
  max-height: 12rem;
  margin-bottom: -3rem;
  overflow: hidden;
}
@media all and (min-width: 54em) {
  .content-header {
    display: block;
  }
}
.content-header img {
  display: block;
}
/* ----- 3.3  Footer  ------------------------------------------------------- */
.footer {
  margin-top: 6rem;
  border-top: 4px solid #9e9e9e;
  padding-top: 4rem;
  padding-bottom: 5rem;
  text-align: center;
}
@media all and (min-width: 60em) {
  .footer--upper {
    display: flex;
  }
  .footer--newsletter,
  .footer--facebook {
    width: 50%;
  }
}
/* =====  4 Modules  ==================================================== */
.module--download {
  border-bottom: none !important;
  display: block;
  background: #37aae1;
  color: #fff;
  margin: 0;
  padding: 0.3rem 0.7rem;
}
.module--download:hover {
  color: #fff;
  background: #7ac6eb;
}
.module--download:before {
  content: "\232A";
  font-weight: bold;
  padding-right: 0.5rem;
}
.module--downloads-list {
  margin-bottom: 2rem;
}
.module--downloads-list .module--download {
  margin-bottom: 0.5rem;
}
.module--members {
  column-count: 3;
}
.module--cta {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.module--cta-link {
  padding: 0.5rem;
  width: 50%;
}
.module--cta-link a {
  display: block;
  text-align: center;
  color: #fff;
  font-weight: bold;
  border: none;
  background: #37aae1;
  padding: 2rem 0.5rem;
  -webkit-transition: background ease-in-out 0.1s;
  -o-transition: background ease-in-out 0.1s;
  transition: background ease-in-out 0.1s;
}
.module--cta-link a span {
  display: inline-block;
  -webkit-transition: transform ease-in-out 0.1s;
  -o-transition: transform ease-in-out 0.1s;
  transition: transform ease-in-out 0.1s;
}
.module--cta-link a:hover {
  background: #7ac6eb;
}
.module--cta-link a:hover span {
  transform: rotate(-5deg);
}
@media all and (min-width: 60em) {
  .module--workinggroups {
    display: flex;
  }
}
.module--workinggroup {
  margin: 0.5rem;
  border: 1rem solid #fff;
}
.module--workinggroup img {
  display: block;
}
.module--workinggrouppage-logo {
  width: 16rem;
  margin: 0 auto 1rem auto;
  border: 1rem solid #fff;
}
.module--workinggrouppage-logo img {
  display: block;
}
@media all and (min-width: 60em) {
  .module--workinggrouppage-logo {
    float: right;
    margin: 0 1rem 0 0;
  }
}
.module--article-meta {
  color: #9e9e9e;
  font-weight: bold;
  font-style: italic;
  text-align: right;
}
.module--article-meta-category {
  float: left;
}
.module--article-image-vertical {
  float: left;
  width: 220px;
  margin-right: 1rem;
}
.module--article-more {
  text-align: center;
}
.module--article-more a {
  display: inline-block;
  background: #37aae1;
  color: #fff;
  padding: 0.2rem 0.5rem;
  border: none;
  -webkit-transition: background ease-in-out 0.1s;
  -o-transition: background ease-in-out 0.1s;
  transition: background ease-in-out 0.1s;
}
.module--article-more a:hover {
  background: #7ac6eb;
}
.module--articlelist-article {
  background: #fff;
  font-weight: bold;
  padding: 0.2rem 0.5rem;
  margin-bottom: 0.5rem;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.module--articlelist-article:hover {
  background: #fafafa;
}
.module--articlelist-article:hover .module--articlelist-article-date {
  background: #7ac6eb;
}
.module--articlelist-article-date {
  background: #37aae1;
  color: #fff;
  display: inline-block;
  width: 7rem;
  padding: 0.2rem 0.5rem;
  margin: -0.2rem 1rem -0.2rem -0.5rem;
}
.module--pagination {
  margin-top: 2rem;
}
.module--pagination-button {
  border-bottom: none !important;
  background: #37aae1;
  color: #fff;
  padding: 0.2rem 0.5rem;
  display: inline-block;
}
.module--pagination-button:hover {
  color: #fff;
  background: #7ac6eb;
}
.module--pagination-prev {
  float: right;
}
.module--gallery {
  display: flex;
}
.module--gallery-image {
  max-width: 250px;
  position: relative;
}
.module--gallery-image:before {
  content: "Anklicken zum vergrößen";
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 44% 0 0 0;
  background: rgba(158, 158, 158, 0.7);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity ease-in-out 0.3s;
  -o-transition: opacity ease-in-out 0.3s;
  transition: opacity ease-in-out 0.3s;
}
.module--gallery-image:hover:before {
  opacity: 1;
}
.module--contact .module--contact-form,
.module--contact .module--contact-address {
  margin-bottom: 1rem;
}
@media all and (min-width: 60em) {
  .module--contact {
    display: flex;
  }
  .module--contact .module--contact-form {
    width: 60%;
    margin-right: 10%;
  }
  .module--contact .module--contact-address {
    width: 30%;
  }
}
.module--placeholder {
  padding: 1rem 0;
}
.module--form label {
  display: block;
}
.module--form input,
.module--form textarea,
.module--form select {
  display: block;
  width: 100%;
  height: 2rem;
  line-height: 1rem;
  font-size: 1rem;
  padding: 0.2rem 0.4rem;
  background: #fff;
  border-radius: 0;
  font-family: inherit;
}
.module--form textarea {
  height: 8rem;
  padding: 0.4rem;
}
.module--form input[type=submit] {
  background: #94c11f;
  color: #fff;
  font-weight: bold;
}
.module--form-group {
  margin-bottom: 1rem;
}
.module--form-inline {
  text-align: right;
  margin-bottom: 1rem;
}
.module--form-inline select {
  display: inline-block;
  max-width: 350px;
}
.uniform-errors__item {
  background: rgba(226, 0, 26, 0.2);
  border-left: 1rem solid #e2001a;
  padding: 1rem;
  margin-bottom: 1rem;
}
.uniform-success {
  background: rgba(148, 193, 31, 0.2);
  border-left: 1rem solid #94c11f;
  padding: 1rem;
  margin-bottom: 1rem;
}
/* =====  5 Overrides  ==================================================== */
@media all and (min-width: 54em) {
  .mobile-only {
    display: none !important;
    visibility: hidden !important;
  }
}
.uniform__potty {
  position: absolute;
  left: -9999px;
}
