@font-face {
  font-family: Oswald Variablefont Wght;
  src: url('../fonts/Oswald-VariableFont_wght.ttf') format("truetype");
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Opensans Variablefont Wdth Wght;
  src: url('../fonts/OpenSans-Italic-VariableFont_wdthwght.ttf') format("truetype");
  font-weight: 300 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Opensans Variablefont Wdth Wght;
  src: url('../fonts/OpenSans-VariableFont_wdthwght.ttf') format("truetype");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --organize-rot: #e52318;
  --organize-blau: #006e8c;
  --organize-gruen: #78b428;
  --transparent: #fff0;
  --color: #be0000;
  --white: white;
  --black: black;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: #333;
  font-family: Opensans Variablefont Wdth Wght, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55em;
}

h1 {
  letter-spacing: .015ch;
  text-underline-offset: 4px;
  text-decoration: underline;
  -webkit-text-decoration-color: var(--organize-rot);
  text-decoration-color: var(--organize-rot);
  margin-top: 40px;
  margin-bottom: 40px;
  font-family: Oswald Variablefont Wght, Arial, sans-serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.4em;
  text-decoration-thickness: 5px;
}

h2 {
  border-bottom: 2px solid var(--organize-blau);
  letter-spacing: .025em;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-bottom: 3px;
  font-family: Oswald Variablefont Wght, Arial, sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3em;
}

h3 {
  font-variation-settings: "wght" 440;
  letter-spacing: .05ch;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Oswald Variablefont Wght, Arial, sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3em;
}

h4 {
  letter-spacing: .02ch;
  margin-top: 2px;
  margin-bottom: 2px;
  font-family: Oswald Variablefont Wght, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4em;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
}

p {
  max-width: 100ch;
  margin-bottom: 10px;
}

a {
  color: var(--organize-blau);
  text-decoration: none;
}

ul {
  padding-left: 20px;
  list-style-type: square;
}

li {
  list-style-type: disc;
}

blockquote {
  border-left: 5px solid #78b42880;
  max-width: 100ch;
  margin-bottom: 10px;
  padding: 10px 20px;
}

.master-section {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 20px;
  display: flex;
}

.master-section.last {
  padding-bottom: 60px;
}

.master-container {
  flex-flow: column;
  width: 80%;
  max-width: 100ch;
  display: flex;
}

.master-container.module {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.master-container.module.begleitung {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.master-container.start {
  max-width: 1400px;
}

.master-container.start.team {
  display: block;
}

.link-gro {
  margin-bottom: 10px;
  padding-left: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6em;
}

.link-gro:hover {
  color: var(--organize-gruen);
}

.link-gro.download.first {
  margin-right: 20px;
}

.link-gro.back {
  background-image: url('../images/icon-back.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: auto 1.4em;
  margin-top: 10px;
  padding-left: 30px;
  font-size: 17px;
}

.link-gro.back.w--current {
  background-position: 0 2px;
}

.link-gro.back.start {
  background-image: url('../images/icon-link.svg');
  display: block;
}

.link-gro.back.start.no-margin {
  background-image: url('../images/icon-download.svg');
  margin-top: 0;
  margin-bottom: 5px;
}

.grid-container {
  flex-flow: column;
  display: flex;
}

.accordion {
  width: 100%;
  overflow: hidden;
}

.accordion-toggle {
  align-items: center;
  height: 100px;
  display: flex;
}

.accordion-heading {
  margin-top: 0;
}

.accordion-content {
  background-color: var(--transparent);
  padding: 20px;
  display: block;
  position: static;
}

.accordion-timeline {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 5fr;
  grid-auto-columns: 1fr;
  padding-top: 16px;
  display: grid;
}

.accordion-timeline-text {
  max-width: 80ch;
  margin-bottom: 0;
}

.kommentare {
  color: var(--color);
}

.block-quote-2 {
  border-left-width: 8px;
  font-size: 15px;
  font-style: italic;
  font-weight: 400;
}

.heading-3-start {
  text-transform: none;
  margin-top: 0;
  font-size: 24px;
}

.lead-text {
  margin-top: auto;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6em;
}

.heading {
  font-weight: 500;
}

.heading-2 {
  border-bottom: 1px solid #333;
}

.text-span {
  letter-spacing: -.25em;
}

.link-list {
  margin-top: 10px;
  padding-left: 0;
  list-style-type: none;
}

.link-list-item {
  background-image: url('../images/icon-link.svg');
  background-position: 0 2px;
  background-repeat: no-repeat;
  background-size: auto 1.3em;
  margin-bottom: 7px;
  padding-left: 29px;
  list-style-type: none;
}

.link-list-item.download {
  background-image: url('../images/icon-download.svg');
}

.inhalt {
  text-transform: none;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 28px;
}

.list-blank {
  padding-left: 0;
  list-style-type: none;
}

.list-item-blank {
  list-style-type: none;
}

.link {
  word-break: break-all;
}

.divider {
  background-color: #333;
  height: 2px;
  margin-top: 12px;
  margin-bottom: 10px;
}

.start-link {
  margin-top: auto;
}

.start-link.double {
  flex-flow: column;
  display: flex;
}

.heading-2-start {
  border-bottom-width: 3px;
  margin-bottom: 40px;
  font-size: 32px;
}

.grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.grid.begleitung {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.grid-2 {
  grid-template-rows: auto;
}

.image {
  border: 1px solid #333;
  border-radius: 1px;
  align-self: flex-start;
  max-width: 40%;
  max-height: 250px;
  margin-top: 5px;
  margin-bottom: 20px;
  margin-right: 8px;
}

.div-block {
  display: flex;
}

.credit {
  width: 40%;
  margin-top: auto;
  margin-bottom: 15px;
  font-size: 10px;
}

.teamfoto {
  float: left;
  width: 50%;
  max-width: 500px;
  margin-top: 6px;
  margin-bottom: 12px;
  margin-right: 25px;
}

.div-block-2 {
  margin-top: 29px;
}

.wrap-center {
  max-width: 100ch;
  margin-left: auto;
  margin-right: auto;
}

.heading-6 {
  line-height: 1.4em;
}

.heading-8 {
  margin-top: 40px;
}

@media screen and (max-width: 991px) {
  body {
    font-size: 15px;
  }

  h1 {
    margin-top: 30px;
  }

  h2 {
    margin-bottom: 15px;
  }

  .master-section.last {
    padding-bottom: 50px;
  }

  .master-container.start {
    width: 90%;
  }

  .link-gro {
    font-size: 15px;
  }

  .link-gro.back {
    padding-left: 28px;
    font-size: 16px;
  }

  .link-gro.back.start {
    background-position: 0 1px;
  }

  .heading-3-start {
    font-size: 22px;
  }

  .lead-text {
    font-size: 16px;
  }

  .link-list-item {
    margin-bottom: 6px;
    padding-left: 26px;
  }

  .heading-2-start {
    margin-bottom: 30px;
    font-size: 28px;
  }

  .grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
  }

  .grid.begleitung {
    grid-template-columns: 1fr;
  }

  .image {
    max-width: 100%;
  }

  .image.fortbildung {
    max-width: 49%;
    margin-right: 2%;
  }

  .image.credits {
    margin-bottom: 0;
  }

  .image.hidden {
    display: none;
  }

  .div-block.credits {
    flex-flow: column;
  }

  .credit {
    width: auto;
  }

  .heading-8 {
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    margin-top: 15px;
    margin-bottom: 15px;
    padding-bottom: 2px;
    font-size: 25px;
  }

  h3 {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 20px;
  }

  h4 {
    font-size: 17px;
  }

  .master-section.last {
    padding-bottom: 40px;
  }

  .link-gro {
    font-size: 14px;
  }

  .link-gro.back {
    font-size: 15px;
  }

  .heading-3-start {
    margin-bottom: 10px;
    font-size: 25px;
  }

  .lead-text {
    font-size: 15px;
  }

  .link-list-item {
    margin-bottom: 5px;
    padding-left: 24px;
  }

  .inhalt {
    font-size: 25px;
  }

  .heading-3 {
    font-size: 40px;
  }

  .heading-5 {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .heading-2-start {
    margin-bottom: 20px;
    font-size: 30px;
  }

  .grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
    margin-top: 10px;
  }

  .teamfoto {
    float: none;
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 13px;
  }

  h1 {
    text-underline-position: auto;
    margin-top: 25px;
    margin-bottom: 20px;
    font-size: 28px;
    text-decoration-thickness: 3px;
  }

  h2 {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-bottom: 2px;
    font-size: 21px;
  }

  h3 {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 18px;
  }

  h4 {
    font-size: 15px;
  }

  .master-section {
    padding-bottom: 10px;
  }

  .master-section.last {
    padding-bottom: 30px;
  }

  .link-gro {
    font-size: 13px;
  }

  .link-gro.back {
    padding-left: 26px;
    font-size: 14px;
  }

  .block-quote-2 {
    border-left-width: 6px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 15px;
    font-size: 13px;
  }

  .heading-3-start {
    font-size: 22px;
  }

  .lead-text {
    font-size: 14px;
  }

  .link-list-item {
    margin-bottom: 4px;
  }

  .inhalt {
    font-size: 23px;
  }

  .heading-4 {
    word-break: break-all;
    font-size: 34px;
  }

  .body {
    font-size: 13px;
  }

  .divider {
    height: 1px;
  }

  .heading-2-start {
    border-bottom-width: 3px;
    margin-top: 15px;
    font-size: 24px;
  }

  .image {
    max-height: 200px;
  }

  .teamfoto {
    width: 100%;
  }

  .heading-7 {
    font-size: 20px;
  }

  .heading-8 {
    margin-top: 20px;
  }

  .heading-9 {
    font-size: 32px;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_4fce822c-fe05-aa8b-b459-1c294da0d33d-2527ac3d {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_4fce822c-fe05-aa8b-b459-1c294da0d33d-2527ac3d {
    grid-column: span 1 / span 1;
  }
}


@font-face {
  font-family: 'Oswald Variablefont Wght';
  src: url('../fonts/Oswald-VariableFont_wght.ttf') format('truetype');
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Opensans Variablefont Wdth Wght';
  src: url('../images/') format('truetype');
  font-weight: 300 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Opensans Variablefont Wdth Wght';
  src: url('../images/') format('truetype');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}