@font-face {
  font-family: Muli;
  src: url('../fonts/Muli-Black.ttf') format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Muli;
  src: url('../fonts/Muli-BlackItalic.ttf') format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Muli;
  src: url('../fonts/Muli-Bold.ttf') format("truetype"), url('../fonts/Muli-ExtraBold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Muli;
  src: url('../fonts/Muli-LightItalic.ttf') format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Muli;
  src: url('../fonts/Muli-SemiBoldItalic.ttf') format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Muli;
  src: url('../fonts/Muli-BoldItalic.ttf') format("truetype"), url('../fonts/Muli-ExtraBoldItalic.ttf') format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Muli;
  src: url('../fonts/Muli-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Muli;
  src: url('../fonts/Muli-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Muli;
  src: url('../fonts/Muli-ExtraLight.ttf') format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Muli;
  src: url('../fonts/Muli-ExtraLightItalic.ttf') format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Muli;
  src: url('../fonts/Muli-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Muli;
  src: url('../fonts/Muli-Italic.ttf') format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --gainsboro: #adc1c8;
  --white: white;
  --gainsboro-2: #7797a3;
  --lightblue: #697ea0;
  --dark-blue: #082c65;
  --grey: #757575;
  --dim-grey: #a7a7a7;
  --dark-grey: #393939;
}

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

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

body {
  background-color: var(--gainsboro);
  color: #393939;
  font-family: Muli, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 35px;
}

h2 {
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 50px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
}

p {
  margin-bottom: 0;
}

a {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: inline-block;
}

strong {
  font-weight: bold;
}

.main-content-wrapper {
  background-color: var(--white);
  width: 80%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding: 48px 3vw 220px;
  position: relative;
  box-shadow: 0 0 40px #00000036;
}

.body {
  background-color: var(--white);
  background-image: linear-gradient(#dfdfdf8a, #dfdfdf8a), url('../images/toothbrush.svg');
  background-position: 0 0, 0 0;
  background-size: auto, 60px;
  background-attachment: scroll, fixed;
}

.nav-container {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: none;
  display: flex;
}

.navbar {
  background-color: #0000;
}

.brand {
  width: 90%;
  max-width: 300px;
}

.nav-menu {
  border-top: 1px solid var(--gainsboro-2);
  border-bottom: 1px solid var(--gainsboro-2);
  justify-content: center;
  width: 90%;
  max-width: 960px;
  margin-top: 32px;
  display: flex;
}

.nav-link {
  color: #082c65;
  text-transform: uppercase;
  margin: 16px 18px;
  padding: 0;
}

.nav-link:hover {
  color: #a7a7a7;
}

.nav-link.w--current {
  color: var(--lightblue);
}

.nav-link.w--current:hover {
  color: #a7a7a7;
}

.section {
  width: 90%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.start-img-wrapper {
  object-fit: cover;
  width: 100%;
}

.start-img {
  object-fit: cover;
  width: 100%;
  display: block;
}

.container {
  text-align: center;
  padding-bottom: 90px;
}

.container.galerie {
  display: none;
}

.heading {
  border-bottom: 1px solid var(--dark-blue);
  color: var(--dark-blue);
  margin-top: 0;
  margin-bottom: 36px;
  font-weight: 700;
}

.paragraph {
  width: 100%;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  line-height: 36px;
}

.team-tile {
  width: 85%;
  margin-bottom: 27px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.team-tile-img {
  width: 140px;
  height: 174px;
  margin-right: 40px;
}

.team-tile-text {
  flex: 1;
}

.team-tile-text-heading {
  text-align: left;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 17px;
  line-height: 28px;
}

.team-tile-text-paragraph {
  text-align: left;
  margin-bottom: 12px;
  line-height: 28px;
}

.team-tile-img-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.form-section {
  flex: 0 auto;
}

.form-section.fs-r {
  flex-direction: column;
  flex: 1;
  align-items: flex-end;
  padding-right: 0;
  display: flex;
}

.form {
  justify-content: space-between;
  display: flex;
}

.input {
  border: 1px solid var(--dark-blue);
  text-align: left;
  width: 300px;
  height: 50px;
  margin-bottom: 20px;
  padding: 10px 20px;
  font-size: 17px;
  line-height: 50px;
}

.input::placeholder {
  color: var(--grey);
}

.input.textarea {
  width: 100%;
  height: 250px;
  margin-bottom: 0;
  padding-top: 0;
  line-height: 40px;
}

.form-block {
  width: 90%;
  max-width: 770px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}

.submit-button {
  background-color: var(--dark-blue);
  color: var(--white);
  width: 140px;
  height: 50px;
  font-size: 17px;
  transition: opacity .1s;
}

.submit-button:hover {
  background-color: var(--dim-grey);
  opacity: .8;
}

.checkbox-label {
  text-align: justify;
  font-size: 11px;
  line-height: 14px;
}

.pflichtfeld {
  text-align: left;
  max-width: 300px;
  margin-bottom: 0;
  font-size: 11px;
  line-height: 18px;
}

.checkbox-field {
  max-width: 300px;
  margin-bottom: 1px;
  padding-left: 25px;
}

.map-wrapper {
  width: 90%;
  max-width: 770px;
  height: 268px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.checkbox {
  margin-left: -25px;
}

.columns {
  color: var(--dark-blue);
  padding-bottom: 40px;
}

.map-placeholder {
  background-image: url('../images/maps-holder.png');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: relative;
}

.map-placeholder-content {
  width: 81%;
  max-width: 750px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.map-text {
  margin-bottom: 28px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6em;
}

.google {
  color: #00f;
  text-decoration: none;
}

.google:hover {
  text-decoration: underline;
}

.button {
  background-color: var(--dark-blue);
  color: var(--white);
  width: 100px;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  transition: opacity .1s;
}

.button:hover {
  background-color: var(--dim-grey);
  opacity: .8;
}

.map {
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0%;
}

.html-embed {
  width: 100%;
  height: 100%;
}

.contact-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  width: 90%;
  max-width: 770px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.info-box {
  text-align: left;
  font-weight: 400;
  line-height: 32px;
}

.info-box.info-box-bold {
  font-weight: 700;
}

.link {
  color: var(--dark-grey);
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

.link.nounderline {
  text-decoration: none;
}

.footer {
  background-color: var(--dark-blue);
  padding-top: 72px;
  padding-bottom: 62px;
  position: absolute;
  inset: auto 0% 0%;
}

.to-top {
  background-color: var(--gainsboro-2);
  width: 40px;
  height: 40px;
  padding-left: 10px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.to-top.w--current {
  background-color: var(--white);
}

.up-arrow {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translate(-50%);
}

.footer-content {
  text-align: center;
}

.footer-link {
  color: var(--white);
  margin-left: 7px;
  margin-right: 7px;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.form-grid {
  grid-row-gap: 0px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1.25fr;
  width: 100%;
}

.mobile-menu {
  border-top: 1px solid var(--gainsboro-2);
  border-bottom: 1px solid var(--gainsboro-2);
  width: 90%;
  display: none;
}

.mobile-nav-menu {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 4px;
  padding-bottom: 4px;
  display: flex;
}

.mobile-nav-link {
  text-transform: uppercase;
  margin: 0 18px;
  padding: 0;
  font-size: 18px;
}

.burger-open, .burger {
  width: 30px;
}

.imprint-text {
  padding-top: 100px;
}

.imprint-text h3 {
  color: var(--dark-blue);
  font-size: 2em;
}

.imprint-text p {
  font-size: 1em;
  line-height: 1.7rem;
}

.imprint-text h4 {
  color: var(--dark-grey);
  margin-top: 22px;
  margin-bottom: 0;
  font-size: 1em;
}

.imprint-text a {
  color: var(--dark-grey);
  font-weight: 400;
  text-decoration: none;
}

.text-span {
  height: 60px;
}

.text-span-2 {
  line-height: 50px;
}

.moremarge {
  margin-top: 20px;
  display: inline-block;
}

.column {
  padding-left: 0;
  padding-right: 0;
}

.column.first {
  padding-right: 10px;
}

.column.last {
  padding-left: 10px;
}

.column.mid {
  padding-left: 5px;
  padding-right: 5px;
}

.section-heading {
  position: absolute;
  inset: 50% auto auto -60px;
  transform: translate(-50%)translate(0, -50%)rotate(-90deg);
}

.top-img {
  margin-bottom: 16px;
}

.side-heading-span {
  color: #6eefea;
  font-weight: 600;
}

.rotated-heading {
  color: #c1c1c1;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 55px;
  font-weight: 400;
  line-height: 1.1;
}

.columns-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  display: flex;
}

.columns-2.show-mobile {
  display: none;
}

.container-2 {
  background-color: #fff;
  flex-direction: column;
  align-items: center;
  width: 80%;
  max-width: 1300px;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  position: relative;
}

.hidden {
  opacity: 0;
  background-color: #ffffff82;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin-left: auto;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.image-5 {
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.grid-wrapper {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  flex-flow: column;
  padding-top: 64px;
  display: flex;
}

.grid-row {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  border-bottom: 1px solid var(--gainsboro-2);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-bottom: 64px;
  display: grid;
}

.grid-tile {
  color: var(--grey);
}

.grid-tile.gt-mobile {
  display: none;
}

.grid-tile-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.tile-heading {
  color: var(--dark-blue);
  text-transform: none;
  margin-top: 0;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.1;
}

.lightbox-link-top {
  width: 100%;
}

.lightbox-link-full {
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 500px;
}

.team-img-wrapper {
  object-fit: cover;
  width: 100%;
  display: none;
}

.heading-2 {
  border-bottom: 1px solid #d9d9d9;
  margin-top: 0;
  margin-bottom: 36px;
  font-weight: 700;
}

.coop-logos-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  display: grid;
}

.coop-logo {
  max-height: 50px;
}

.image-7 {
  object-fit: contain;
  width: 20px;
  height: 20px;
  display: block;
}

.popup-inner1 {
  background-color: #fff;
  padding: 20px;
  display: flex;
  position: relative;
}

.heading-popup {
  opacity: .8;
  margin-top: 0;
  font-weight: 600;
}

.popup-p {
  margin-top: 30px;
}

.text-wf {
  color: #726f6f;
  text-align: center;
  background-color: #fffc;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  line-height: 1.5;
  display: flex;
}

.popup-cb {
  z-index: 1001;
  object-fit: cover;
  background-color: #000000a6;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.popup-align-text {
  text-align: left;
}

.popup-fenster {
  z-index: 1;
  flex-direction: column;
  width: 90%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  inset: 50% auto auto 50%;
  overflow: visible;
  transform: translate(-50%, -50%);
}

.close-wrapper {
  background-color: var(--dark-blue);
  cursor: pointer;
  padding: 10px;
  transition: background-color .2s;
}

.close-wrapper:hover {
  background-color: #3c484e;
}

.inhalt {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 4px solid var(--dark-blue);
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 40px;
  display: grid;
  position: relative;
  overflow: visible;
}

.close-cb {
  z-index: 1;
  justify-content: flex-end;
  margin-bottom: -20px;
  margin-right: -20px;
  display: flex;
  position: relative;
}

.popup-list {
  opacity: .8;
  margin-top: 20px;
  padding-left: 22px;
}

.popup-button {
  background-color: var(--dark-blue);
  margin-top: 40px;
  padding: 9px 25px 8px;
  font-size: 20px;
  line-height: 26px;
  transition: background-color .2s;
}

.popup-button:hover {
  background-color: var(--dim-grey);
  text-decoration: none;
}

.close-bg {
  z-index: 0;
  position: fixed;
  inset: 0%;
}

.heading-link {
  color: var(--dark-blue);
  text-decoration: none;
  transition: background-color .2s;
}

.heading-link:hover {
  color: var(--dim-grey);
}

.hero-container {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
  margin-bottom: 4rem;
  display: flex;
}

.jobs-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: grid;
  position: relative;
  overflow: visible;
}

.jobs-text {
  color: #726f6f;
  text-align: center;
  background-color: #fffc;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  font-size: 18px;
  line-height: 1.5;
  display: flex;
}

.leistung-link {
  color: var(--dark-blue);
  font-weight: 700;
  text-decoration: none;
}

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

.member-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center stretch;
  margin-bottom: 32px;
  display: grid;
}

.column-link-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.impressum-text {
  letter-spacing: 1px;
  max-width: 960px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  line-height: 25px;
}

@media screen and (max-width: 991px) {
  .main-content-wrapper {
    width: 90%;
  }

  .nav-menu {
    flex-flow: wrap;
  }

  .start-img-wrapper {
    max-width: 280px;
  }

  .form {
    flex-direction: column;
  }

  .input {
    width: 100%;
  }

  .pflichtfeld, .checkbox-field {
    max-width: none;
  }

  .contact-wrapper {
    flex-wrap: wrap;
  }

  .form-grid {
    grid-row-gap: 16px;
    grid-template: "."
                   "."
                   "."
                   "."
                   "."
                   / 1fr;
    grid-auto-flow: column;
    width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .div-block {
    width: 100%;
  }

  .column-top {
    margin-bottom: 26px;
  }

  .section-heading {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }

  .top-img {
    margin-top: 60px;
  }

  .rotated-heading {
    font-size: 35px;
  }

  .container-2 {
    width: 100%;
    max-width: none;
  }

  .image-5 {
    margin-top: 0;
  }

  .lightbox-link-full {
    height: 300px;
  }

  .coop-logos-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .heading-popup {
    font-size: 20px;
    line-height: 1.1;
  }

  .popup-p {
    margin-top: 20px;
  }

  .text-wf {
    width: 95%;
  }

  .popup-align-text {
    font-size: 20px;
  }

  .popup-fenster {
    max-width: 620px;
  }

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

  .popup-img {
    display: none;
  }

  .hero-container {
    flex-flow: column-reverse;
  }

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

  .jobs-text {
    width: 95%;
  }
}

@media screen and (max-width: 767px) {
  .main-content-wrapper {
    width: 100%;
    padding-top: 50px;
  }

  .body {
    font-size: 16px;
    line-height: 28px;
  }

  .nav-container {
    width: 90%;
  }

  .brand {
    max-width: 200px;
  }

  .nav-menu {
    display: none;
  }

  .section {
    width: 100%;
    padding-top: 20px;
  }

  .start-img-wrapper {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .start-img {
    height: 300px;
  }

  .container {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .paragraph {
    line-height: 28px;
  }

  .team-tile {
    flex-direction: column;
    align-items: center;
  }

  .team-tile-img {
    margin-right: 0;
  }

  .team-tile-text {
    margin-top: 20px;
  }

  .team-tile-text-heading {
    text-align: center;
    margin-bottom: 0;
    font-size: 16px;
  }

  .team-tile-text-paragraph {
    text-align: center;
  }

  .map-text {
    font-size: 14px;
    line-height: 1.2em;
  }

  .contact-wrapper {
    flex-direction: column;
    place-content: center flex-start;
    align-items: center;
  }

  .info-box {
    text-align: center;
    font-size: 14px;
    line-height: 20px;
  }

  .form-grid {
    max-width: 100%;
  }

  .column-top {
    margin-bottom: 16px;
  }

  .menu-button {
    border-top: 1px solid var(--gainsboro-2);
    border-bottom: 1px solid var(--gainsboro-2);
    width: 100%;
    margin-top: 23px;
    padding: 8px 7px;
  }

  .icon {
    text-align: right;
    font-size: 34px;
  }

  .mobile-menu {
    height: 50px;
    margin-top: 60px;
    padding: 10px 5px;
    display: block;
    position: relative;
    overflow: hidden;
  }

  .mobile-nav-menu {
    z-index: 1;
    width: 100%;
    display: none;
  }

  .mobile-trigger {
    z-index: 2;
    align-self: flex-end;
    position: absolute;
    top: 24px;
    right: 10px;
    transform: translate(0%, -50%);
  }

  .burger-open {
    margin-top: 0;
    margin-bottom: 0;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .burger {
    width: 22px;
    height: 22px;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
  }

  .burger-close {
    width: 30px;
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .imprint-text {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }

  .imprint-text h3 {
    font-weight: 700;
  }

  .hidden {
    width: 100%;
  }

  .image-5 {
    margin-top: 0;
  }

  .grid-wrapper {
    padding-top: 20px;
  }

  .grid-row {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .grid-tile.gt-mobile {
    max-width: 250px;
    display: block;
  }

  .grid-tile.gt-hide-mobile {
    display: none;
  }

  .team-img-wrapper {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .image-7 {
    width: 16px;
  }

  .popup-inner1 {
    padding: 10px;
  }

  .popup-p {
    margin-top: 10px;
    font-size: 18px;
    line-height: 25px;
  }

  .text-wf {
    font-size: 20px;
    line-height: 29px;
  }

  .close-wrapper {
    padding: 8px;
  }

  .inhalt {
    padding: 24px;
  }

  .close-cb {
    margin-bottom: -14px;
    margin-right: 0;
  }

  .popup-button {
    font-size: 16px;
  }

  .jobs-grid {
    padding: 24px;
  }

  .jobs-text {
    font-size: 20px;
    line-height: 29px;
  }
}

@media screen and (max-width: 479px) {
  .top-img {
    margin-bottom: 8px;
  }

  .rotated-heading {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .columns-2 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .columns-2.show-desktop {
    display: none;
  }

  .columns-2.show-mobile {
    display: block;
  }

  .image-5 {
    margin-top: 0;
  }

  .lightbox-link-full {
    height: 200px;
  }

  .heading-popup, .popup-align-text {
    font-size: 18px;
    line-height: 1.3;
  }
}

#w-node-ef3774a0-efa2-1da8-e66a-82768636d9ab-0dd3c418 {
  place-self: center;
}

#w-node-_81770067-9f7f-a597-068f-3cfea9397b6a-0dd3c418 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c4f3edf8-09ad-8a63-6845-f780a61a5476-0dd3c418 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_40962f90-73f1-2da1-ada4-0a5c94b9d8ff-0dd3c418 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: end;
}

#w-node-_45a57876-4693-977b-8850-5eeed1b7ff96-fcb93620, #w-node-b01c2eff-3e9f-0929-9aa6-1b88c1193279-fcb93620 {
  align-self: start;
}

#w-node-b67d8234-dbcc-cd3f-10de-f7e8dadb0d5e-fcb93620 {
  place-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-_81770067-9f7f-a597-068f-3cfea9397b6a-0dd3c418 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-c4f3edf8-09ad-8a63-6845-f780a61a5476-0dd3c418 {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-ee8a224d-7206-3985-d2be-966b4e2e91f9-0dd3c418, #w-node-_40962f90-73f1-2da1-ada4-0a5c94b9d8ff-0dd3c418 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_45a57876-4693-977b-8850-5eeed1b7ff96-fcb93620 {
    justify-self: center;
  }
}


@font-face {
  font-family: 'Muli';
  src: url('../fonts/Muli-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Muli';
  src: url('../fonts/Muli-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Muli';
  src: url('../fonts/Muli-Bold.ttf') format('truetype'), url('../fonts/Muli-ExtraBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Muli';
  src: url('../fonts/Muli-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Muli';
  src: url('../fonts/Muli-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Muli';
  src: url('../fonts/Muli-BoldItalic.ttf') format('truetype'), url('../fonts/Muli-ExtraBoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Muli';
  src: url('../fonts/Muli-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Muli';
  src: url('../fonts/Muli-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Muli';
  src: url('../fonts/Muli-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Muli';
  src: url('../fonts/Muli-ExtraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Muli';
  src: url('../fonts/Muli-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Muli';
  src: url('../fonts/Muli-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}