@charset "UTF-8";
header {
  position: relative;
  box-shadow: 0px 3px 14px rgba(0, 0, 0, 0.1607843137);
}
header .header-inner {
  position: relative;
}
header .header-inner .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
header .header-inner .top-bar .lang-switch {
  display: flex;
  gap: 12px;
  flex-direction: row;
}
header .header-inner .top-bar .lang-switch li.active {
  text-decoration: underline;
  color: #009790;
}
header .header-inner .top-bar .contact-info {
  text-align: right;
}
header nav {
  text-transform: uppercase;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  height: 134px;
  width: fit-content;
  margin: auto;
}
header nav ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
header nav ul.menu {
  gap: 60px;
  margin: auto;
}
header nav ul.menu li {
  font-size: 18px;
}
header nav ul.menu li a:not(.logo) {
  display: block;
  min-width: 61px;
  text-align: right;
  font-weight: 600;
  letter-spacing: 1.6px;
}
header nav ul.menu li#logo {
  margin-bottom: -136px;
  width: 200px;
  height: 100px;
  text-align: center;
  background-color: white;
  border-radius: 0 0 100px 100px;
}
header nav ul.menu li#logo img {
  width: 50px;
  margin-top: -40px;
}
header nav ul.menu li.active a,
header nav ul.menu a[aria-current=page] {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #009790;
  border-color: #009790;
}
header nav .menu-close {
  display: none;
}
header .mobile-menu-toggle {
  display: none;
}
@media (min-width: 1000px) {
  header .logo-mobile {
    display: none;
  }
  header .mobile-header {
    display: none;
  }
  header .top-bar {
    padding: 0 70px;
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: white;
  }
  header .top-bar li {
    color: #777C7F;
  }
  header .top-bar .contact-info {
    flex-direction: column;
  }
}
@media (max-width: 1000px) {
  header .header-inner .mobile-header {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    background: white;
    position: relative;
  }
  header .header-inner #logo {
    display: none;
  }
  header .header-inner nav.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    bottom: 0;
    background: #ffffff;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    height: 100vh;
    padding-top: 110px;
    justify-content: flex-start;
    overflow-y: auto;
    width: 85vw;
    max-width: 360px;
    box-shadow: 2px 0 24px rgba(0, 0, 0, 0.15);
  }
  header .header-inner nav.site-nav .menu-close {
    display: block;
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    font-size: 32px;
    line-height: 1;
    color: #333;
    cursor: pointer;
    z-index: 30;
  }
  header .header-inner nav.site-nav ul.menu {
    flex-direction: column;
    gap: 28px;
  }
  header .header-inner .logo-mobile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  header .header-inner .logo-mobile img {
    height: 50px;
  }
  header .header-inner nav.site-nav.open {
    transform: translateX(0);
  }
  header .header-inner .top-bar {
    background: #009790;
    font-size: 11px;
    padding: 0 25px;
  }
  header .header-inner .top-bar li {
    color: white;
  }
  header .header-inner .top-bar .contact-info {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    font-size: 0.85rem;
  }
  header .header-inner .top-bar .lang-switch {
    display: flex;
  }
  header .header-inner .top-bar .lang-switch li.active {
    color: white;
  }
  header .header-inner .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    margin-left: auto;
    cursor: pointer;
  }
  header .header-inner .mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    display: block;
  }
}
@media (max-width: 450px) {
  header .header-inner .top-bar {
    padding: 15px 25px;
  }
  header .header-inner .top-bar .contact-info {
    flex-direction: column;
    gap: 5px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  font-family: "peridotpe", sans-serif;
  font-weight: 400;
  color: #001F1E;
  line-height: 1.8;
}
* a {
  text-decoration: none;
  color: unset;
}
* ul {
  list-style: none;
}
* p {
  margin-bottom: 30px;
  max-width: 525px;
}
* address {
  font-style: normal;
  line-height: 1.4;
}

h1.logo-title {
  text-transform: uppercase;
  font-weight: 600;
  color: #777C7F;
  letter-spacing: 7px;
  line-height: 1.3;
  margin-bottom: 50px;
}
h1.logo-title span {
  display: block;
  letter-spacing: 1.8px;
  color: #777C7F;
  max-width: 400px;
  font-size: 18px;
  font-weight: 600;
}

h2, h3 {
  text-transform: uppercase;
  color: #009790;
  margin-bottom: 10px;
  line-height: 1.4;
  letter-spacing: 1.6px;
  font-weight: 600;
}
h2.small, h3.small {
  font-size: 20px;
}
h2.headline, h3.headline {
  font-weight: 600;
  font-size: 20px;
  color: #009790;
  margin-bottom: 10px;
}

h4 {
  margin-bottom: 20px;
  font-weight: 600;
}

h1 {
  font-size: 68px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

.logo {
  width: 70px;
  margin-bottom: 20px;
}

.subhead {
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #009790;
}
.subhead span {
  font-size: 16px;
  display: block;
  font-weight: 600;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 10px;
  width: 476px;
}
.image-grid img {
  width: 100%;
  object-fit: cover;
  display: block;
  height: -webkit-fill-available;
}
.image-grid img:nth-of-type(1) {
  grid-column: 1/4;
  grid-row: 1;
  height: 222px;
}
.image-grid img:nth-of-type(2) {
  grid-column: 1;
  grid-row: 2;
}
.image-grid img:nth-of-type(3) {
  grid-column: 2;
  grid-row: 2;
}
.image-grid img:nth-of-type(4) {
  grid-column: 3;
  grid-row: 2;
}

.no-scroll {
  overflow: hidden;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  background: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: #001F1E;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

@media (max-width: 600px) {
  .lightbox-content img {
    max-width: 95vw;
    max-height: 75vh;
  }
}
.approach .main-content > h2 {
  margin-top: 0;
}
.approach .head-banner {
  background-image: url("../img/jahanzeb-ahsan-LgW5HDnVgvs-unsplash@2x.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 238px;
}
.approach .head-banner div {
  background-color: unset;
  height: auto;
  width: fit-content;
  border-radius: unset;
  padding: unset;
  margin-bottom: -10px;
}

.about-us .head-banner {
  background-image: url("../img/pexels-mart-production-7088834@2x.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.about-us .head-banner h1.logo-title {
  font-size: 49px;
  margin-bottom: 0;
}
.about-us .main-content .two-col {
  margin-bottom: 0;
  margin-top: 140px;
}
.about-us .main-content .two-col:not(:has(.image-grid, .map-wrapper)) {
  gap: 35px;
}
.about-us .main-content .two-col:not(:has(.image-grid, .map-wrapper)) div:has(img) {
  margin-top: 105px;
}
.about-us .main-content .two-col:not(:has(.image-grid, .map-wrapper)) div:has(img) img {
  width: 320px;
}

.faq .head-banner {
  background: transparent linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(54, 119, 117, 0.06) 100%);
  padding-top: 0;
  height: 526px;
  display: flex;
  align-items: center;
}
.faq .head-banner div {
  padding-top: 45px;
  background-color: unset;
}
.faq .faq-container {
  margin-top: 100px;
}
.faq .faq-container h2 {
  color: #777C7F;
  font-size: 24px;
  margin-bottom: 36px;
}
.faq .contact-boxes {
  margin-top: 80px;
}
.faq .contact-boxes .map-wrapper img {
  max-width: unset;
}

.service .head-banner {
  background-image: unset;
}
.service .head-banner > div {
  padding: 20px 90px 0px 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.service .head-banner > div h1 {
  font-size: 28px;
  font-weight: 600;
  color: #019891;
}
.service .main-content {
  display: block;
}
.service .main-content h2 {
  margin-top: 0;
  text-align: left;
  margin-bottom: 20px;
}
.service .main-content h3 {
  font-weight: 600;
  margin-top: 40px;
  text-align: left;
  color: black;
  font-size: 18px;
}
.service .main-content p {
  text-align: left;
  margin-bottom: 10px;
}

body {
  background-color: #f0f0f0;
  color: #333;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.button {
  box-shadow: -8px -10px 0px -1px #009790;
  margin-left: 8px;
  margin-top: 8px;
  height: fit-content;
  width: fit-content;
  border: 1px solid #009790;
  background-color: white;
  color: #009790;
  text-decoration: underline;
  padding: 7px 50px;
  font-weight: 600;
  letter-spacing: 2px;
}
.button.max-width {
  width: 95%;
  padding: 7px 47px;
  margin-top: 30px;
}
.button:hover {
  background-color: #00B7A5;
  color: white;
}
.button:hover a:after {
  background: url("../img/icons8-right-arrow-50-long.png");
  background-repeat: no-repeat;
  background-size: 100%;
}
.button a {
  position: relative;
  padding-right: 40px;
  font-size: 18px;
  font-weight: 600;
}
.button a:after {
  content: "";
  background: url("../img/icons8-arrow-right-50.png");
  background-repeat: no-repeat;
  background-size: 100%;
  display: inline-block;
  height: 30px;
  width: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.main-content {
  max-width: 795px;
  margin: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.main-content > h2, .main-content > h3 {
  margin-top: 200px;
}
.main-content > address {
  color: #4A4A4A;
  font-weight: 600;
  font-size: 18px;
}

.head-banner, .head-banner#start-banner {
  background-image: url("../img/icons-bilder/heros/Hero_Startseite.webp");
  background-position-y: center;
  background-size: cover;
  padding-top: 403px;
}
.head-banner div, .head-banner#start-banner div {
  background-color: #F9F9F9;
  width: 438px;
  margin: auto;
  text-align: center;
  border-radius: 230px 230px 0 0;
  height: 215px;
  padding: 70px 60px 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.head-banner div p, .head-banner#start-banner div p {
  text-align: center;
}

section {
  background: linear-gradient(180deg, rgb(249, 249, 249) 0%, rgb(237, 241, 241) 100%);
  padding: 100px 0 150px 0;
}

.two-col {
  display: flex;
  margin: 50px 0;
  gap: 90px;
}
.two-col.button-bottom > div {
  display: flex;
  flex-direction: column;
  height: auto;
}
.two-col.button-bottom > div .button {
  margin-top: auto;
}
.two-col.button-bottom > div .button.max-width {
  margin-top: auto;
}
.two-col.button-bottom > div p:last-of-type {
  margin-bottom: 0;
}
.two-col h4 {
  font-weight: 600;
}
.two-col div:has(p) {
  text-align: left;
}
.two-col div:not(.image-grid, .map-wrapper) img {
  width: 398px;
}
.two-col.img {
  gap: 18px;
  margin-bottom: 44px;
  margin-top: 0;
}
.two-col.img div {
  text-align: center;
}
.two-col.img div h3 {
  margin-bottom: 0;
}
.two-col.img img {
  width: 398px;
}

.small-banner {
  width: 100%;
  padding: 50px;
  margin: 50px 0;
}
.small-banner ul {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}
.small-banner ul li {
  line-height: 1.4;
}
.small-banner:not(.borderless) {
  border: 1px solid #777C7F;
  background-color: #FFFFFF;
}
.small-banner:not(.borderless) ul li {
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #777C7F;
  max-width: 236px;
}
.small-banner:not(.borderless) ul li:before {
  content: "";
  display: block;
  width: 87px;
  height: 43px;
  margin: 0 auto 15px auto;
  border-radius: 0 0 43px 43px;
  background: linear-gradient(180deg, #00B7A5 0%, #009790 100%) 0% 0% no-repeat padding-box;
}
.small-banner.borderless {
  margin-top: 50px;
  padding: 0;
  margin-bottom: 0;
}
.small-banner.borderless ul li {
  position: relative;
  margin-top: 40px;
}
.small-banner.borderless ul li h4 {
  color: #009790;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: 20px;
}
.small-banner.borderless ul li p {
  font-weight: 600;
  color: #4A4A4A;
  letter-spacing: 1.6px;
}
.small-banner.borderless ul li:before {
  content: "";
  width: 34px;
  height: 34px;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background-size: 100%;
}
.small-banner.borderless ul li:nth-of-type(1):before {
  background-image: url("../img/icons-bilder/Lunge.svg");
}
.small-banner.borderless ul li:nth-of-type(2):before {
  background-image: url("../img/icons-bilder/Brain.svg");
}
.small-banner.borderless ul li:nth-of-type(3):before {
  background-image: url("../img/icons-bilder/Radioaktiv.svg");
}

.contact-boxes {
  margin: 265px auto 100px auto;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.contact-boxes > div {
  max-width: 800px;
  width: 730px;
  background-color: #FFFFFF;
  border: 1px solid #777C7F;
  padding: 65px 75px;
}
.contact-boxes .contact-wrapper ul {
  margin-left: 113px;
}
.contact-boxes .contact-wrapper ul li {
  position: relative;
  padding-left: 50px;
  margin-bottom: 20px;
}
.contact-boxes .contact-wrapper ul li:nth-of-type(1):before {
  content: "";
  position: absolute;
  background-image: url("../img/icons-bilder/Mail_Icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px;
  width: 32px;
  height: 32px;
  top: -1px;
  left: 0;
  border-radius: 20px;
}
.contact-boxes .contact-wrapper ul li:nth-of-type(2):before {
  content: "";
  position: absolute;
  background-image: url("../img/icons-bilder/Phone_Icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px;
  width: 32px;
  height: 32px;
  top: -1px;
  left: 0;
  border-radius: 20px;
}
.contact-boxes .contact-wrapper ul li:nth-of-type(3):before {
  content: "";
  position: absolute;
  background-image: url("../img/icons-bilder/Brief_Icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px;
  width: 32px;
  height: 32px;
  top: 39px;
  left: 0;
  border-radius: 20px;
}
.contact-boxes .map-wrapper {
  display: grid;
}
.contact-boxes .map-wrapper h3 {
  grid-area: 1/1/2/2;
  margin-bottom: 0;
  min-width: 150px;
}
.contact-boxes .map-wrapper p {
  grid-area: 2/1/3/2;
}
.contact-boxes .map-wrapper .button {
  grid-area: 1/2/3/3;
  justify-self: end;
  padding: 10px 30px;
}
.contact-boxes .map-wrapper iframe, .contact-boxes .map-wrapper img, .contact-boxes .map-wrapper .gmaps-iframe-placeholder {
  grid-area: 3/1/4/3;
}
.contact-boxes .map-wrapper img {
  background: linear-gradient(180deg, #00B7A5 0%, #009790 100%) 0% 0% no-repeat padding-box;
  width: 100%;
}

.hint {
  font-size: 14px;
  font-weight: 600;
  color: #009790;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-top: 20px;
  display: block;
  max-width: 400px;
  /*
    &.orange {
      color: #FC6D6D;
    }*/
}

.timeline-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
}
.timeline-wrapper .timeline-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 100px 0;
}
.timeline-wrapper .timeline-container::before {
  content: "";
  position: absolute;
  top: -40px;
  width: 2px;
  height: 104%;
  background: #009790;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
.timeline-wrapper .timeline-container .timeline-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 480px;
  min-height: 80px;
  position: relative;
}
.timeline-wrapper .timeline-container .timeline-row:nth-child(1) .timeline-item span {
  width: 200px;
  height: 100px;
  font-size: 64px;
  border-radius: 0 0 150px 150px;
}
.timeline-wrapper .timeline-container .timeline-row:nth-child(2) .timeline-item span {
  width: 134px;
  height: 134px;
  font-size: 52px;
  background: #08BCAB;
  border-radius: 50%;
}
.timeline-wrapper .timeline-container .timeline-row:nth-child(3) .timeline-item span {
  width: 117px;
  height: 117px;
  font-size: 46px;
  background: #03AAA2;
  border-radius: 50%;
}
.timeline-wrapper .timeline-container .timeline-row:nth-child(4) .timeline-item span {
  width: 99px;
  height: 99px;
  font-size: 42px;
  background: #009790;
  border-radius: 50%;
}
.timeline-wrapper .timeline-container .timeline-row:nth-child(5) .timeline-item span {
  width: 84px;
  height: 84px;
  font-size: 34px;
  background: #428B89;
  border-radius: 50%;
}
.timeline-wrapper .timeline-container .timeline-row:nth-child(6) .timeline-item span {
  width: 70px;
  height: 70px;
  font-size: 30px;
  background: #367775;
  border-radius: 50%;
}
.timeline-wrapper .timeline-container .timeline-row .timeline-label {
  font-size: 18px;
  font-weight: 500;
  color: #1f2937;
  width: 100%;
  text-align: left;
}
.timeline-wrapper .timeline-container .timeline-row .timeline-label.right {
  text-align: right;
  padding-right: 0;
}
.timeline-wrapper .timeline-container .timeline-row .timeline-label.empty {
  visibility: hidden;
}
.timeline-wrapper .timeline-container .timeline-row .timeline-item span {
  position: relative;
  z-index: 1;
  background: #00B7A5;
  color: white;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.process .head-banner {
  background-image: url("../img/icons-bilder/heros/Hero_ablauf.webp");
  background-position-y: 40%;
}
.process .timeline-wrapper .timeline-container:before {
  top: -112px;
}
.process .timeline-wrapper .timeline-container .timeline-row {
  width: 1200px;
}
.process .timeline-wrapper .timeline-container .timeline-row:nth-child(1) .timeline-item span {
  width: 350px;
  height: 175px;
  border-radius: 0 0 175px 175px;
}
.process .timeline-wrapper .timeline-container .timeline-row:nth-child(2) .timeline-item span {
  width: 220px;
  height: 220px;
  border-radius: 50%;
}
.process .timeline-wrapper .timeline-container .timeline-row:nth-child(3) .timeline-item span {
  width: 194px;
  height: 194px;
  border-radius: 50%;
}
.process .timeline-wrapper .timeline-container .timeline-row:nth-child(4) .timeline-item span {
  width: 163px;
  height: 163px;
  border-radius: 50%;
}
.process .timeline-wrapper .timeline-container .timeline-row:nth-child(5) .timeline-item span {
  width: 139px;
  height: 139px;
  border-radius: 50%;
}
.process .timeline-wrapper .timeline-container .timeline-row:nth-child(6) .timeline-item span {
  width: 116px;
  height: 116px;
  border-radius: 50%;
}
.process .timeline-wrapper .timeline-container .timeline-row .timeline-label {
  text-align: left !important;
  margin-right: 60px;
  max-width: 371px;
}
.process .timeline-wrapper .timeline-container .timeline-row .timeline-label h4 {
  font-weight: 600;
  margin-bottom: 15px;
}
.process .timeline-wrapper .timeline-container .timeline-row:nth-of-type(even) .timeline-label {
  margin-left: 60px;
}

.questions-head {
  font-size: 24px;
  color: #009790;
  margin-bottom: 30px;
  font-weight: 600;
  position: relative;
  padding-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.questions-head:before {
  content: "";
  background-image: url("../img/icons-bilder/FAQ_Icon_new.svg");
  width: 100px;
  height: 100px;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.faq-container {
  width: 100%;
  margin-top: 150px;
}
.faq-container > p {
  margin: 70px auto 0 auto;
  font-weight: 600;
  letter-spacing: 1.4px;
  font-size: 18px;
  max-width: 414px;
}
.faq-container ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 536px;
  margin: auto;
}
.faq-container ul li.question {
  border: 1px solid #777C7F;
  padding: 15px 25px;
  text-align: left;
  background-color: white;
  cursor: pointer;
}
.faq-container ul li.question h3 {
  margin: 0;
  font-size: 16px;
  color: #000000;
  text-transform: unset;
}
.faq-container ul li.question p {
  margin: 0;
}
.faq-container ul li.question div {
  display: none;
}
.faq-container ul li.question.active {
  border-color: #009790;
}
.faq-container ul li.question.active div {
  display: block;
}
.faq-container ul li.question.active h3 {
  position: relative;
  color: #009790;
  padding-right: 25px;
  margin-bottom: 10px;
}
.faq-container ul li.question.active h3:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../img/icons8-arrow-up-48.png");
  background-size: contain;
  position: absolute;
  right: 0;
  top: 0;
}

@media (min-width: 768px) {
  .contact-wrapper h3 {
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  container {
    padding: 0 10px;
  }
  br {
    display: none;
  }
  .head-banner {
    display: flex;
  }
  .head-banner div {
    max-width: 355px;
    width: 100%;
    height: 100%;
    border-radius: 999px 999px 0 0;
  }
  .main-content {
    width: 90%;
  }
  .main-content .timeline-wrapper {
    margin-left: -111%;
  }
  .main-content .timeline-wrapper .timeline-container::before {
    width: 4px;
  }
  .main-content .timeline-wrapper .timeline-container .timeline-row {
    width: 550px;
  }
  .main-content .timeline-wrapper .timeline-container .timeline-row:nth-child(odd) {
    flex-direction: row-reverse;
  }
  .main-content .timeline-wrapper .timeline-container .timeline-row .timeline-label, .main-content .timeline-wrapper .timeline-container .timeline-row .timeline-label.right {
    margin-left: 50px;
    text-align: left;
  }
  .main-content .timeline-wrapper .timeline-container .timeline-row .timeline-item span {
    padding-left: 4%;
  }
  .faq-container ul {
    width: 90%;
  }
  .container:not(.process) .main-content .timeline-wrapper {
    margin-left: -54%;
  }
  .container:not(.process) .main-content .timeline-wrapper .timeline-container .timeline-row {
    width: 110%;
  }
  .container:not(.process) .main-content .timeline-wrapper .timeline-container .timeline-row:nth-of-type(even) > div:nth-of-type(3) {
    padding-left: 30px;
  }
  .container:not(.process) .main-content .timeline-wrapper .timeline-container .timeline-row:nth-of-type(odd) > div:nth-of-type(1) {
    padding-left: 30px;
  }
  .container:not(.process) .main-content .timeline-wrapper .timeline-container .timeline-row > div {
    width: 33%;
  }
  .container:not(.process) .main-content .timeline-wrapper .timeline-container .timeline-row .timeline-label, .container:not(.process) .main-content .timeline-wrapper .timeline-container .timeline-row .timeline-label.right {
    color: #7C8284;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.6px;
    margin-left: 0;
  }
  .container:not(.process) .main-content .timeline-wrapper .timeline-container .timeline-row .timeline-item {
    display: flex;
    justify-content: center;
  }
  .container:not(.process) .main-content .timeline-wrapper .timeline-container .timeline-row .timeline-item span {
    padding: 0;
    font-size: 29px;
  }
  .image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .image-grid img {
    grid-column: 1;
  }
  .image-grid img:nth-of-type(1) {
    grid-row: 1;
  }
  .image-grid img:nth-of-type(2) {
    grid-row: 2;
  }
  .image-grid img:nth-of-type(3) {
    grid-row: 3;
  }
  .image-grid img:nth-of-type(4) {
    grid-row: 4;
  }
  .about-us .image-grid {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 10px;
    width: 100%;
    padding-bottom: 6px;
  }
  .about-us .image-grid img {
    flex: 0 0 85%;
    width: 85%;
    height: auto;
    scroll-snap-align: center;
    border-radius: 6px;
  }
  .about-us .image-grid::-webkit-scrollbar {
    height: 6px;
  }
  .about-us .image-grid::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
  }
  .process .timeline-wrapper .timeline-container .timeline-row {
    width: 100%;
  }
  /* Alternative mobil version für timeline element Anfahrt */
  .process .timeline-wrapper {
    margin-left: -18px;
  }
  .process .timeline-wrapper .timeline-container {
    gap: 130px;
  }
  .process .timeline-wrapper .timeline-container:before {
    left: 100px;
    transform: none;
    height: 90%;
    top: -106px;
  }
  .process .timeline-wrapper .timeline-container .timeline-row {
    padding-left: 135px;
    width: 100%;
    position: relative;
  }
  .process .timeline-wrapper .timeline-container .timeline-row .timeline-item {
    align-self: flex-start;
    line-height: normal;
    position: absolute;
    top: -130px;
    left: 0;
    width: 200px;
  }
  .process .timeline-wrapper .timeline-container .timeline-row .timeline-item span {
    margin: auto;
    padding: 0;
  }
  .process .timeline-wrapper .timeline-container .timeline-row .timeline-label {
    margin: 0 !important;
  }
  .process .timeline-wrapper .timeline-container .timeline-row .timeline-label.empty {
    display: none;
  }
  .process .timeline-wrapper .timeline-container .timeline-row:nth-of-type(1) .timeline-item span {
    width: 200px;
    height: 100px;
  }
  .process .timeline-wrapper .timeline-container .timeline-row:nth-of-type(2) .timeline-item span {
    width: 134px;
    height: 134px;
  }
  .process .timeline-wrapper .timeline-container .timeline-row:nth-of-type(3) .timeline-item span {
    width: 117px;
    height: 117px;
  }
  .process .timeline-wrapper .timeline-container .timeline-row:nth-of-type(4) .timeline-item span {
    width: 99px;
    height: 99px;
  }
  .process .timeline-wrapper .timeline-container .timeline-row:nth-of-type(5) .timeline-item span {
    width: 84px;
    height: 84px;
  }
  .process .timeline-wrapper .timeline-container .timeline-row:nth-of-type(6) .timeline-item span {
    width: 70px;
    height: 70px;
  }
  .about-us .two-col {
    flex-direction: column;
  }
  .two-col {
    flex-direction: column-reverse;
  }
  .two-col > div {
    display: block;
  }
  .two-col > div .button {
    margin-top: 30px;
  }
  .two-col img {
    width: 100% !important;
  }
  .two-col.contact-boxes {
    flex-direction: column;
    gap: 35px;
  }
  .two-col.contact-boxes > div {
    width: 90%;
    padding: 40px;
  }
  .two-col.contact-boxes .contact-wrapper {
    margin-right: auto;
    margin-left: 0;
  }
  .two-col.contact-boxes .contact-wrapper ul {
    margin: 0;
  }
  .two-col.contact-boxes .map-wrapper {
    margin-right: 0;
    margin-left: auto;
  }
  .two-col.contact-boxes .map-wrapper .button {
    grid-area: 4/1/5/3;
    justify-self: auto;
    width: auto;
    text-align: center;
  }
  .two-col.contact-boxes .map-wrapper iframe, .two-col.contact-boxes .map-wrapper img, .two-col.contact-boxes .map-wrapper .gmaps-iframe-placeholder {
    width: 100%;
    margin-bottom: 25px;
  }
  .small-banner {
    max-width: 300px;
  }
  .small-banner ul {
    flex-direction: column;
  }
  .approach .head-banner div iframe {
    width: 100%;
  }
}
@font-face {
  font-family: "peridotpe";
  src: url("../fonts/peridotpe-regular-webfont.woff2") format("woff2"), url("../fonts/peridotpe-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "peridotpe";
  src: url("../fonts/peridotpe-semibold-webfont.woff2") format("woff2"), url("../fonts/peridotpe-semibold-webfont.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
.site-footer .footer-content {
  background: #00B7A5;
  background: linear-gradient(180deg, rgb(0, 183, 165) 0%, rgb(0, 151, 144) 100%);
  padding: 165px 150px;
  display: flex;
  gap: 150px;
  flex-wrap: wrap;
  letter-spacing: 1.4px;
}
.site-footer .footer-content a, .site-footer .footer-content p, .site-footer .footer-content h3 {
  color: white;
}
.site-footer .footer-content h3 {
  font-size: 13px;
  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin: 0;
}
.site-footer .footer-content div, .site-footer .footer-content ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.site-footer .footer-content div li, .site-footer .footer-content ul li {
  text-transform: uppercase;
  letter-spacing: 1.6px;
}
.site-footer .footer-content div li.dummy, .site-footer .footer-content ul li.dummy {
  visibility: hidden;
}
.site-footer .footer-content div img, .site-footer .footer-content ul img {
  height: 160px;
}
.site-footer .copyright {
  margin: 20px auto;
}
.site-footer .copyright p {
  max-width: unset;
  color: #009790;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}
.site-footer .copyright p span {
  font-size: 14px;
  color: #009790;
}

@media screen and (max-width: 768px) {
  br {
    display: block;
  }
  .site-footer .footer-content {
    padding: 60px;
    gap: 58px;
    display: grid;
    text-align: center;
  }
  .site-footer .footer-content #contact {
    grid-row: 1;
    flex-direction: column-reverse;
    gap: 35px;
  }
  .site-footer .footer-content #contact p {
    max-width: 200px;
    margin: auto;
  }
  .site-footer .footer-content #footer-nav {
    flex-wrap: wrap;
    flex-direction: row;
    row-gap: 30px;
  }
  .site-footer .footer-content #footer-nav li {
    width: 50%;
  }
  .site-footer .footer-content #logo img {
    max-width: 245px;
    width: 100%;
    margin: auto;
    height: auto;
  }
  .site-footer #service-nav {
    display: flex;
    flex-direction: column;
    gap: 7px;
    text-align: center;
    margin-bottom: 25px;
  }
  .site-footer #service-nav .dummy {
    display: none;
  }
  .site-footer #service-nav li a {
    color: #009790;
    text-transform: uppercase;
  }
}

/*# sourceMappingURL=styles.css.map */
