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

:root {
  --fafafa: #fafafa;
  --blau: #1456aa;
  --grün: #74c365;
  --schwarz: #333;
  --weiß: white;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.body {
  background-color: var(--fafafa);
  background-image: linear-gradient(#1456aa08 1px, #0000 1px), linear-gradient(90deg, #1456aa08 1px, #0000 1px);
  background-repeat: repeat;
  background-size: 120px 120px;
  padding-top: 70px;
  font-family: Worksans Variablefont Wght, Arial, sans-serif;
}

.section-a {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 10rem 4rem;
  display: flex;
  overflow: clip;
}

.section-a.blau {
  background-color: var(--blau);
  color: var(--fafafa);
  justify-content: center;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-a._100vh {
  height: 100vh;
}

.consulting-section {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  align-items: center;
  padding: 0 4rem 10rem;
  display: flex;
}

.consulting-section.is-reversed {
  padding-top: 0;
}

.consulting-image-wrap {
  border-top-left-radius: 80px;
  border-bottom-right-radius: 80px;
  width: 50%;
  overflow: clip;
}

.consulting-image-wrap.is-animated {
  animation: imageSlideIn 1s ease-out both;
}

.consulting-image {
  object-fit: cover;
  object-position: center 18%;
  width: 100%;
  height: 680px;
  display: block;
}

.consulting-content {
  width: 50%;
}

.consulting-heading, .consulting-text {
  width: 100%;
}

.text-fade-in {
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity .75s ease-out, transform .75s ease-out;
}

.text-fade-in.is-delayed {
  transition-delay: .18s;
}

.text-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-section {
  interpolate-size: allow-keywords;
  padding: 10rem 4rem;
}

.faq-intro {
  width: 70%;
  margin-bottom: 3rem;
}

.faq-list {
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.faq-item {
  background-color: #fafafacc;
  border: 1px solid #1456aa14;
  border-top-left-radius: 28px;
  border-bottom-right-radius: 28px;
  padding: 1.5rem 2rem;
  transition: border-color .25s ease-in-out, transform .25s ease-in-out;
}

.faq-item:hover {
  border-color: #1456aa40;
  transform: translateY(-2px);
}

.faq-item::details-content {
  block-size: 0;
  overflow: hidden;
  transition: block-size .42s cubic-bezier(.22, 1, .36, 1), content-visibility .42s allow-discrete;
}

.faq-item[open]::details-content {
  block-size: auto;
}

.faq-question {
  color: var(--blau);
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  display: flex;
  cursor: pointer;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:after {
  content: "";
  background-image: linear-gradient(var(--blau), var(--blau)), linear-gradient(var(--blau), var(--blau));
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 2px, 2px 100%;
  flex: none;
  width: 1.4rem;
  height: 1.4rem;
  margin-left: 2rem;
  transition: background-size .28s ease-in-out, transform .28s ease-in-out;
}

.faq-item[open] .faq-question:after {
  background-size: 100% 2px, 2px 0%;
  transform: rotate(180deg);
}

.faq-answer {
  width: 82%;
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 1.2rem;
  line-height: 1.5;
}

.faq-item[open] .faq-answer {
  animation: faqAnswerReveal .32s ease-out both;
}

@keyframes faqAnswerReveal {
  from {
    opacity: 0;
    transform: translateY(-.35rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-grid-section {
  padding-bottom: 10rem;
}

.contact-grid {
  grid-column-gap: 4rem;
  grid-row-gap: 3rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  width: 100%;
  display: grid;
}

.contact-content {
  width: 100%;
}

.contact-map-card {
  border-top-left-radius: 150px;
  border-bottom-right-radius: 150px;
  width: 100%;
  min-height: 520px;
  overflow: clip;
  animation: contactMapFadeUp .7s ease-out .18s both;
}

.contact-map {
  border: 0;
  width: 100%;
  height: 520px;
  display: block;
}

.site-footer {
  color: #333;
  background-color: var(--weiß);
  padding: 2rem 4rem;
}

.site-footer-inner {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.site-footer-copy {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.4;
}

.site-footer-links {
  grid-column-gap: 1.5rem;
  grid-row-gap: .75rem;
  display: flex;
}

.site-footer-link {
  color: #333;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .25s ease-in-out;
}

.site-footer-link:hover {
  color: var(--blau);
}

@keyframes contactMapFadeUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar {
  z-index: 2000;
  background-color: #fafafa;
  height: 70px;
  padding-left: 4rem;
  padding-right: 4rem;
  position: fixed;
  inset: 0% 0% auto;
}

.container {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  display: flex;
}

.image {
  height: 50px;
}

.quick-stack {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  padding: 0;
}

.form-f {
  background-color: var(--blau);
  border-top-left-radius: 150px;
  border-bottom-right-radius: 150px;
  border-bottom-left-radius: 0;
  width: 100%;
  height: 330px;
  padding: 3.5rem;
  transform: skew(-7deg);
}

.div-block {
  width: 100%;
  height: 100%;
  position: static;
  top: -5rem;
}

.div-block._2 {
  position: static;
}

.heading {
  z-index: 1000;
  width: 80%;
  color: var(--blau);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 5em;
  line-height: 4.5rem;
  position: relative;
}

.heading._2 {
  font-size: 4em;
  line-height: 3.5rem;
}

.heading._2.wei {
  color: var(--fafafa);
}

.heading._2._100 {
  width: 100%;
}

.heading._2.dunkel {
  color: #333;
  width: 100%;
}

.heading._2.dunkel._3 {
  text-align: right;
}

.heading.wei {
  color: var(--fafafa);
}

.paragraph {
  width: 80%;
  margin-bottom: 1.5rem;
  font-size: 1.5em;
  line-height: 1.5em;
}

.paragraph._2 {
  margin-bottom: 0;
  font-size: 1.2em;
  line-height: 1.3em;
}

.paragraph.wei {
  color: #fafafa;
}

.paragraph.wei._50 {
  width: 50%;
  margin-bottom: 0;
}

.paragraph._100 {
  width: 100%;
}

.paragraph._3 {
  margin-bottom: 0;
}

.paragraph.rechts {
  text-align: right;
}

.paragraph.rechts-copy {
  text-align: right;
  width: 60%;
}

.paragraph.copy {
  width: 60%;
}

.project-overview-section {
  padding: 0 4rem 10rem;
}

.work-preview-section {
  padding-top: 0;
}

.project-overview-grid {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  display: grid;
}

.project-card {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #1456aa14;
  border-top-left-radius: 28px;
  border-bottom-right-radius: 28px;
  padding: 1rem 1rem 1.5rem;
  text-decoration: none;
  display: block;
  overflow: clip;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), background-color .3s ease-in-out, color .3s ease-in-out;
}

.project-card:hover {
  color: var(--fafafa);
  background-color: var(--blau);
  transform: scale(1.035);
}

.project-card-image, .project-feature-image {
  background-color: #e9edf2;
  background-position: center;
  background-size: cover;
  width: 100%;
}

.project-card-image {
  border-top-left-radius: 18px;
  border-bottom-right-radius: 18px;
  height: 290px;
  margin-bottom: 1.25rem;
  transition: opacity .3s ease-in-out;
}

.project-card:hover .project-card-image {
  opacity: .82;
}

.project-card-title {
  margin-top: 0;
  margin-bottom: .75rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.15;
}

.project-card-text {
  width: 92%;
  margin-bottom: 0;
  font-size: 1.2rem;
  line-height: 1.45;
}

.project-feature-card {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #1456aa14;
  border-top-left-radius: 42px;
  border-bottom-right-radius: 42px;
  max-width: 1120px;
  margin: 7rem auto 0;
  padding: 1.4rem 1.4rem 2.4rem;
  text-decoration: none;
  display: block;
  overflow: clip;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), background-color .3s ease-in-out, color .3s ease-in-out;
}

.project-feature-card:hover {
  color: var(--fafafa);
  background-color: var(--blau);
  transform: scale(1.025);
}

.project-feature-image {
  border-top-left-radius: 28px;
  border-bottom-right-radius: 28px;
  height: 560px;
  margin-bottom: 2rem;
  transition: opacity .3s ease-in-out;
}

.project-feature-card:hover .project-feature-image {
  opacity: .84;
}

.project-feature-title {
  margin-top: 0;
  margin-bottom: 1.25rem;
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1.1;
}

.project-feature-text {
  width: 76%;
  margin-bottom: 0;
  font-size: 2rem;
  line-height: 1.5;
}

.project-detail-hero {
  padding: 8rem 4rem 5rem;
}

.project-back-link {
  color: var(--blau);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}

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

.project-detail-grid {
  grid-column-gap: 4rem;
  grid-row-gap: 3rem;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  align-items: center;
  display: grid;
}

.project-detail-copy {
  width: 100%;
}

.project-detail-heading {
  width: 100%;
}

.project-detail-lead {
  width: 100%;
}

.project-detail-map {
  width: 100%;
  margin-top: 3rem;
}

.project-detail-map-image {
  width: 100%;
  height: auto;
  display: block;
  border-top-left-radius: 80px;
  border-bottom-right-radius: 80px;
}

.project-detail-image {
  background-color: #e9edf2;
  background-position: center;
  background-size: cover;
  border-top-left-radius: 80px;
  border-bottom-right-radius: 80px;
  width: 100%;
  min-height: 560px;
  animation: imageSlideIn 1s ease-out both;
}

.project-detail-section {
  padding: 0 4rem 10rem;
}

.project-detail-content {
  max-width: 980px;
}

.project-detail-facts {
  grid-row-gap: .75rem;
  flex-flow: column;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-left: 1.35rem;
  font-size: 1.3rem;
  line-height: 1.5;
  display: flex;
}

.project-card-image.is-grand-quest, .project-detail-image.is-grand-quest, .project-feature-image.is-grand-quest {
  background-image: url('../images/Grand-Quest-Frankfurt.png');
}

.project-card-image.is-ostforum, .project-detail-image.is-ostforum {
  background-image: url('../images/Adler-Group-Consus-2.jpg');
}

.project-card-image.is-bauhaus, .project-detail-image.is-bauhaus {
  background-image: url('../images/Bauhaus-Symbol.png');
  background-size: 52%;
  background-repeat: no-repeat;
}

.project-card-image.is-edeka, .project-detail-image.is-edeka {
  background-image: url('../images/Logo_Edeka.svg.webp');
  background-size: 56%;
  background-repeat: no-repeat;
}

.project-card-image.is-midstad, .project-detail-image.is-midstad {
  background-image: url('../images/MIDSTAD%20ESSEN%20Fischer.jpg');
}

.project-card-image.is-goldstein, .project-detail-image.is-goldstein {
  background-image: url('../images/GOLDSTEIN-STUDIOS.jpg');
}

.project-card-image.is-sahle, .project-detail-image.is-sahle {
  background-image: url('../images/Sahle-Wohnen.jpg');
}

.project-card-image.is-intower, .project-detail-image.is-intower {
  background-image: url('../images/in_tower_fischer.jpg');
}

.project-feature-image.is-wilhelm, .project-detail-image.is-wilhelm, .project-card-image.is-wilhelm {
  background-image: url('../images/Adler-Group-Consus.jpg');
}

.focus-intro-section {
  padding-bottom: 3rem;
}

.focus-detail-section {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  align-items: center;
  padding: 10rem 4rem;
  display: flex;
}

.focus-detail-content {
  width: 50%;
}

.focus-detail-image-wrap {
  border-top-left-radius: 80px;
  border-bottom-right-radius: 80px;
  width: 50%;
  overflow: clip;
  animation: imageSlideIn 1s ease-out both;
}

.focus-detail-image {
  object-fit: cover;
  width: 100%;
  height: 560px;
  display: block;
}

.sr-only {
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(0 0 0 0);
}

.tga-model-section {
  min-height: 720vh;
  margin-top: -2rem;
  padding: 0 clamp(.5rem, 1.5vw, 1.5rem) 10rem;
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, 0.85fr)
    minmax(380px, 820px)
    minmax(300px, 460px)
    minmax(0, 0.85fr);
  column-gap: clamp(1rem, 2vw, 1.75rem);
  align-items: start;
  overflow: visible;
}

.tga-model-sticky {
  grid-column: 1 / 3;
  grid-row: 1;
  width: 100%;
  height: calc(100vh - 90px);
  position: sticky;
  top: 90px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  pointer-events: none;
  z-index: 4;
  overflow: visible;
}

.tga-model-scene {
  width: min(820px, 78vw);
  max-width: none;
  height: calc(100vh - 72px);
  min-height: 720px;
  overflow: visible;
  pointer-events: auto;
  isolation: isolate;
}

.tga-model-scene canvas {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.tga-model-copy {
  grid-column: 3;
  grid-row: 1;
  width: 100%;
  max-width: 460px;
  padding-top: 100vh;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.tga-model-panel {
  min-height: 82vh;
  align-content: center;
  display: grid;
  opacity: .28;
  transition: opacity .35s ease-in-out, transform .35s ease-in-out;
  transform: translateY(1rem);
  max-width: 100%;
}

.tga-model-panel.is-active {
  opacity: 1;
  transform: translateY(0);
}

.tga-model-eyebrow {
  color: var(--blau);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .75rem;
  font-size: .9rem;
  font-weight: 800;
}

.tga-model-heading.heading._2 {
  width: 100%;
  max-width: 100%;
  font-size: clamp(1.75rem, 2.4vw, 2.65rem);
  line-height: 1.12;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.tga-model-text {
  width: 100%;
  max-width: 34ch;
  margin-bottom: 0;
  line-height: 1.6;
}

.tga-model-button {
  margin-top: 1.5rem;
  width: fit-content;
  max-width: 100%;
}

.tga-plan-section {
  gap: 5rem;
  justify-content: space-between;
  align-items: center;
  padding: 8rem 4rem;
  display: flex;
}

.tga-plan-content {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding-right: 1rem;
  box-sizing: border-box;
}

.tga-plan-heading {
  width: 100%;
}

.tga-plan-text {
  width: 100%;
  margin-bottom: 0;
}

.cooling-tool {
  color: var(--fafafa);
  background-color: var(--blau);
  border: 1px solid var(--blau);
  border-top-left-radius: 18px;
  border-bottom-right-radius: 18px;
  padding: .75rem 1rem;
  font-family: Worksans Variablefont Wght, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: grab;
}

.cooling-tool:active {
  cursor: grabbing;
}

.cooling-tool.is-air {
  background-color: var(--grün);
  border-color: var(--grün);
}

.cooling-toolbar {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: wrap;
  justify-content: center;
  margin-top: 1.5rem;
  display: flex;
}

.tga-plan-hint {
  color: #333333b3;
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.4em;
}

.tga-plan-visual {
  background-color: #fafafacc;
  border: 1px solid #1456aa14;
  border-top-left-radius: 80px;
  border-bottom-right-radius: 80px;
  flex: 1 1 0;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 0;
  min-height: 420px;
  padding: .75rem 1.5rem 1rem;
  display: flex;
  position: relative;
  overflow: visible;
}

.tga-model-stage {
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: .35rem;
  position: relative;
  z-index: 1;
}

.tga-model-stage .tga-floor-plan {
  width: 100%;
  min-width: 0;
}

.tga-floor-plan.has-model {
  max-width: none;
}

.tga-model-playback {
  color: var(--schwarz);
  background-color: var(--weiß);
  border: 1.5px solid #1456aa20;
  border-radius: 999px;
  flex: 0 0 auto;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  display: flex;
  position: relative;
  box-shadow: 0 10px 28px #1456aa12;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease, background-color .2s ease;
}

.tga-model-playback::before {
  content: "Pausieren";
  color: var(--fafafa);
  white-space: nowrap;
  background-color: #333;
  border-radius: 4px;
  padding: .45rem .65rem;
  font-family: Worksans Variablefont Wght, Arial, sans-serif;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  bottom: calc(100% + .65rem);
  left: 50%;
  transform: translate(-50%, .35rem);
  transition: opacity .2s ease-in-out, transform .2s ease-in-out;
}

.tga-model-playback.is-paused::before {
  content: "Starten";
}

.tga-model-playback:hover::before,
.tga-model-playback:focus-visible::before {
  opacity: 1;
  transform: translate(-50%, 0);
}

.tga-model-playback:hover {
  transform: translateY(-1px);
  border-color: #1456aa40;
  box-shadow: 0 14px 32px #1456aa18;
}

.tga-model-playback.is-paused {
  color: var(--weiß);
  background-color: var(--blau);
  border-color: var(--blau);
}

.tga-model-playback-icon {
  display: block;
}

.tga-model-playback .icon-play {
  display: none;
  margin-left: 2px;
}

.tga-model-playback.is-paused .icon-pause {
  display: none;
}

.tga-model-playback.is-paused .icon-play {
  display: block;
}

.tga-floor-plan {
  width: 100%;
  max-width: 520px;
  position: relative;
  cursor: default;
  user-select: none;
}

.tga-inline-model-scene {
  width: 100%;
  height: clamp(480px, 54vh, 640px);
  overflow: visible;
  cursor: grab;
  touch-action: pan-y;
  position: relative;
  z-index: 2;
}

.tga-inline-model-scene:active {
  cursor: grabbing;
}

.tga-inline-model-scene canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.tga-floor-plan.is-drawing {
  cursor: crosshair;
}

.tga-building-graphic {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

.new-room-preview {
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  transition: opacity .25s ease-in-out;
  position: absolute;
  inset: 0%;
}

.new-room-preview rect {
  fill: rgb(229, 233, 241);
}

.new-room-preview path {
  fill: none;
  stroke: rgb(145, 166, 207);
  stroke-linecap: square;
  stroke-width: 4px;
}

.tga-floor-plan:has(.new-room-hotspot:hover) .new-room-preview {
  opacity: .25;
}

.tga-floor-plan.has-new-room .new-room-preview {
  opacity: 1;
}

.new-room-hotspot {
  z-index: 4;
  color: var(--blau);
  background-color: var(--fafafa);
  border: 1px solid #1456aa26;
  border-radius: 999px;
  padding: .65rem .9rem;
  font-family: Worksans Variablefont Wght, Arial, sans-serif;
  font-size: .9rem;
  font-weight: 700;
  opacity: 0;
  position: absolute;
  left: 29%;
  top: 80%;
  transform: translate(-50%, -50%) translateY(.4rem);
  transition: opacity .25s ease-in-out, transform .25s ease-in-out;
  cursor: pointer;
}

.new-room-hotspot:before {
  content: "";
  position: absolute;
  inset: -4rem -5rem;
}

.new-room-hotspot:hover {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.tga-floor-plan.has-new-room .new-room-hotspot {
  display: none;
}

.plan-toolbar {
  --tool-size: 56px;
  --tool-gap: .4rem;
  --active-tool-width: 0px;
  grid-column-gap: var(--tool-gap);
  grid-row-gap: var(--tool-gap);
  background-color: #ffffffb8;
  border: 1px solid #1456aa17;
  border-radius: 999px;
  flex-flow: nowrap;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  margin-top: 1.5rem;
  padding: .35rem;
  display: flex;
  position: relative;
  overflow-x: auto;
  box-shadow: 0 18px 60px #1456aa14;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  scrollbar-width: none;
}

.plan-toolbar::-webkit-scrollbar {
  display: none;
}

.plan-toolbar:after {
  content: "";
  background-color: #333;
  border-radius: 999px;
  width: var(--active-tool-width);
  height: var(--tool-size);
  position: absolute;
  top: .35rem;
  left: .35rem;
  transform: translateX(var(--active-tool-offset, 0px));
  transition: transform .36s cubic-bezier(.22, 1, .36, 1), background-color .25s ease-in-out;
}

.plan-toolbar.is-delete-active:after, .plan-toolbar.is-facade-active:after {
  background-color: #333;
  box-shadow: none;
}

.plan-tool {
  z-index: 1;
  color: #333;
  background-color: transparent;
  border: 0;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  width: auto;
  min-width: var(--tool-size);
  height: var(--tool-size);
  padding: 0 .9rem;
  font-family: Worksans Variablefont Wght, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  gap: .45rem;
  position: relative;
  cursor: pointer;
  transition: color .25s ease-in-out, opacity .25s ease-in-out, transform .25s ease-in-out;
}

.plan-tool:before {
  content: attr(data-tool-label);
  color: var(--fafafa);
  white-space: nowrap;
  background-color: #333;
  border-radius: 4px;
  padding: .45rem .65rem;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  bottom: calc(100% + .65rem);
  left: 50%;
  transform: translate(-50%, .35rem);
  transition: opacity .2s ease-in-out, transform .2s ease-in-out;
}

.plan-tool:hover:before {
  opacity: 1;
  transform: translate(-50%, 0);
}

.plan-tool svg {
  display: none;
}

.plan-tool-text {
  white-space: nowrap;
  font-size: .78rem;
  line-height: 1;
}

.plan-tool path, .plan-tool rect {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.95;
}

.plan-tool.is-air-duct, .plan-tool.is-air-device, .plan-tool.is-socket, .plan-tool.is-water-pair, .plan-tool.is-secondary, .plan-tool.is-facade {
  color: #333;
  opacity: 1;
}

.plan-tool:hover {
  transform: translateY(-1px);
}

.plan-tool.is-active {
  color: var(--fafafa);
}

.plan-tool.is-secondary.is-active {
  color: var(--fafafa);
}

.plan-toolbar--compact {
  --tool-size: 34px;
  --tool-gap: .14rem;
  width: 100%;
  max-width: 680px;
  margin-top: .85rem;
  padding: .22rem;
  gap: var(--tool-gap);
  justify-content: center;
}

.plan-toolbar--compact:after {
  top: .22rem;
  left: .22rem;
  height: var(--tool-size);
}

.plan-toolbar--compact .plan-tool {
  min-width: auto;
  height: var(--tool-size);
  padding: 0 .38rem;
  gap: .2rem;
  font-size: .68rem;
}

.plan-toolbar--compact .plan-tool-text {
  font-size: .56rem;
  letter-spacing: -.01em;
}

.plan-toolbar--compact .plan-tool:before {
  font-size: .72rem;
  padding: .35rem .5rem;
}

.plan-toolbar--trades {
  --trade-sec: #d94040;
  --trade-elt: #ef9f27;
  --trade-rlt: #1d9e75;
  --trade-flt: #e8682a;
  --trade-san: #378add;
  --trade-hzt: #c0392b;
  --trade-klt: #0099cc;
  --trade-all: var(--blau);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .45rem;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  width: 100%;
  max-width: none;
  margin-top: 1.35rem;
  padding: 0;
  display: grid;
  overflow: visible;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  position: relative;
  z-index: 3;
}

.plan-toolbar--trades:after {
  display: none;
}

.plan-toolbar--trades .plan-tool {
  --trade-color: var(--schwarz);
  color: var(--schwarz);
  background-color: transparent;
  border: 1.5px solid #1456aa28;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: .15rem;
  width: 100%;
  min-width: 0;
  height: auto;
  min-height: 56px;
  padding: .55rem .6rem;
  font-size: .62rem;
  text-align: left;
  box-shadow: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background-color .22s ease, border-color .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.plan-toolbar--trades .plan-tool:before {
  display: none;
}

.plan-toolbar--trades .plan-tool:hover {
  transform: translateY(-2px);
  background-color: #ffffffb8;
  box-shadow: 0 8px 20px #1456aa10;
}

.plan-toolbar--trades .plan-tool-num {
  color: var(--trade-color);
  opacity: .85;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
}

.plan-toolbar--trades .plan-tool-text {
  font-size: .62rem;
  font-weight: 600;
  line-height: 1.2;
  hyphens: auto;
}

.plan-toolbar--trades .plan-tool.is-trade-sec {
  --trade-color: var(--trade-sec);
}

.plan-toolbar--trades .plan-tool.is-trade-elt {
  --trade-color: var(--trade-elt);
}

.plan-toolbar--trades .plan-tool.is-trade-rlt {
  --trade-color: var(--trade-rlt);
}

.plan-toolbar--trades .plan-tool.is-trade-flt {
  --trade-color: var(--trade-flt);
}

.plan-toolbar--trades .plan-tool.is-trade-san {
  --trade-color: var(--trade-san);
}

.plan-toolbar--trades .plan-tool.is-trade-hzt {
  --trade-color: var(--trade-hzt);
}

.plan-toolbar--trades .plan-tool.is-trade-klt {
  --trade-color: var(--trade-klt);
}

.plan-toolbar--trades .plan-tool.is-trade-all {
  --trade-color: var(--trade-all);
  justify-content: center;
  align-items: center;
}

.plan-toolbar--trades .plan-tool.is-active {
  color: var(--weiß);
  background-color: var(--trade-color);
  border-color: var(--trade-color);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--trade-color) 35%, transparent);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.plan-toolbar--trades .plan-tool.is-active .plan-tool-num {
  color: var(--weiß);
  opacity: .72;
}

.drawing-lines {
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.socket-wall-highlight {
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  transition: opacity .2s ease-in-out;
  position: absolute;
  inset: 0%;
}

.socket-wall-highlight path {
  fill: none;
  stroke: var(--grün);
  stroke-linecap: square;
  stroke-width: 4;
}

.socket-wall-highlight .new-room-wall-highlight {
  display: none;
}

.tga-floor-plan.has-new-room .socket-wall-highlight .new-room-wall-highlight {
  display: block;
}

.tga-floor-plan.is-socket-dragging .socket-wall-highlight {
  opacity: 1;
}

.drawing-lines line {
  stroke: var(--blau);
  stroke-linecap: round;
  stroke-width: 2;
}

.drawing-lines line.is-air {
  stroke: #d93cff;
  stroke-width: 4;
}

.drawing-lines line.is-water-cold {
  stroke: var(--blau);
  stroke-width: 3;
}

.drawing-lines line.is-water-hot {
  stroke: #d94d4d;
  stroke-width: 3;
}

.drawing-lines polygon {
  fill: #1456aa1a;
  stroke: none;
}

.drawing-lines circle {
  fill: var(--fafafa);
  stroke: var(--blau);
  stroke-width: 2;
}

.drawing-lines circle.is-air {
  stroke: #d93cff;
}

.drawing-lines circle.is-water-cold {
  stroke: var(--blau);
}

.drawing-lines circle.is-water-hot {
  stroke: #d94d4d;
}

.air-duct-icon {
  overflow: visible;
  transform: translate(-14px, -14px);
}

.air-duct-icon circle {
  fill: var(--fafafa);
  stroke: #d93cff;
  stroke-width: 2;
}

.air-duct-icon path {
  fill: none;
  stroke: #d93cff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.socket-object {
  z-index: 3;
  background-color: var(--fafafa);
  border: 1.5px solid var(--grün);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 22px;
  height: 22px;
  padding: 0;
  display: flex;
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: grab;
}

.socket-object:active {
  cursor: grabbing;
}

.socket-object span {
  background-color: var(--grün);
  border-radius: 999px;
  width: 3px;
  height: 7px;
  display: block;
}

.airflow-lines {
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  transition: opacity .3s ease-in-out;
  position: absolute;
  inset: 0%;
}

.airflow-lines path {
  fill: none;
  stroke: var(--grün);
  stroke-dasharray: 10 12;
  stroke-linecap: round;
  stroke-opacity: .65;
  stroke-width: 4;
  animation: airflow 1.4s linear infinite;
}

.tga-floor-plan.has-airflow .airflow-lines {
  opacity: 1;
}

@keyframes airflow {
  to {
    stroke-dashoffset: -44;
  }
}

.cooling-object {
  z-index: 2;
  color: var(--fafafa);
  background-color: var(--blau);
  border: 1px solid #ffffff80;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: default;
  box-shadow: 0 10px 24px #1456aa26;
}

.cooling-object[data-tga-object="Raumlufttechnik"] {
  background-color: var(--grün);
}

.nav-link {
  padding: 10px 15px;
  font-size: 1.2em;
  font-weight: 500;
  transition: all .4s ease-in-out;
}

.nav-link:hover {
  color: var(--blau);
  font-style: normal;
  transform: skew(-15deg);
}

.nav-link.w--current {
  color: var(--blau);
  transform: skew(-15deg);
}

.button {
  background-color: var(--blau);
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  margin-right: 15px;
  padding: 10px 25px;
  font-size: 1.2em;
  line-height: 1.3em;
  transform: none;
}

.button.blau {
  border: 1px solid var(--blau);
  margin-right: 15px;
  font-size: 1.3em;
  transition: all .4s ease-in-out;
  transform: none;
}

.button.blau:hover {
  color: var(--blau);
  background-color: #1456aa00;
}

.button-row {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 1rem;
}

.button-row .button.blau {
  margin-right: 0;
}

.button.blau.umrandet {
  background-color: var(--fafafa);
  color: var(--blau);
  margin-right: 15px;
}

.button.blau.umrandet:hover {
  background-color: var(--blau);
  color: var(--fafafa);
}

.button.gr-n {
  border: 1px solid var(--grün);
  background-color: var(--grün);
}

.button.wei {
  border: 1px solid var(--fafafa);
  background-color: var(--fafafa);
  color: var(--blau);
  margin-right: 25px;
  transition: all .4s ease-in-out;
}

.button.wei:hover {
  border-color: var(--fafafa);
  color: var(--fafafa);
  background-color: #1456aa00;
}

.quick-stack-2 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  padding: 0;
}

.form {
  background-color: #fafafa;
  border: 1px solid #e1e1e1;
  border-radius: 25px 0;
  width: 100%;
  height: 100%;
  padding: 2rem;
  transition: all .4s ease-in-out;
  position: static;
  top: 80px;
}

.form:hover {
  border-color: var(--blau);
  transform: scale(1.05);
}

.form._2 {
  top: 0;
}

.form._3 {
  top: -70px;
}

.form._4 {
  top: -120px;
}

.about-glow {
  filter: blur(140px);
  width: 200px;
  height: 200px;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.about-glow.is-one {
  z-index: -1;
  background-color: var(--grün);
  filter: blur(150px);
  display: none;
  inset: auto 0% 0% auto;
}

.about-glow.is-one._2 {
  position: absolute;
  inset: auto auto 20vh 0%;
}

.text-block {
  color: var(--blau);
  margin-bottom: 1rem;
  font-size: 2em;
  font-weight: 500;
  line-height: 1em;
}

.cell {
  justify-content: flex-start;
  align-items: center;
  display: block;
}

.div-block-2 {
  background-color: #e1e1e1;
  width: 1px;
  height: 50%;
  margin-left: 150px;
}

.div-block-2._2 {
  z-index: -1;
  width: 250px;
  height: 1px;
  margin-left: -100px;
  position: relative;
  inset: 50% 0% 50% 0;
}

.div-block-3 {
  text-align: center;
}

.quick-stack-3 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  padding: 0;
}

.divblock {
  width: 100%;
  padding-bottom: 0;
}

.divblock.mittig {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.divblock.lr {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.link-block {
  color: #333;
  height: 100%;
  text-decoration: none;
}

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

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

.section-b {
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
}

.section-b.blau {
  background-color: var(--blau);
  justify-content: center;
  align-items: center;
}

.section-st-rer {
  justify-content: flex-start;
  align-items: flex-start;
  padding: 10rem 3rem;
  display: flex;
}

.section-st-rer.blau {
  background-color: var(--blau);
  justify-content: center;
  align-items: center;
}

.collection-list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.work-tile-row {
  --work-tile-width: calc((100vw - 2rem) / 3);
  --work-tile-offset: 3;
  box-sizing: border-box;
  width: 100vw;
  margin-left: -50vw;
  padding: 6rem 0 3rem;
  position: relative;
  left: 50%;
  overflow-x: hidden;
  overflow-y: visible;
}

.work-tile-arrow {
  z-index: 5;
  color: var(--blau);
  background-color: var(--fafafa);
  border: 1px solid #1456aa26;
  border-top-left-radius: 18px;
  border-bottom-right-radius: 18px;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  font-size: 2.4rem;
  line-height: 1;
  display: flex;
  position: absolute;
  top: 1rem;
  cursor: pointer;
  transition: opacity .25s ease-in-out, background-color .25s ease-in-out;
}

.work-tile-arrow.is-prev {
  right: 5rem;
}

.work-tile-arrow.is-next {
  right: 1rem;
}

.work-tile-arrow:hover {
  color: var(--fafafa);
  background-color: var(--blau);
}

.work-tile-arrow.is-disabled {
  opacity: .35;
  cursor: default;
}

.work-tile-arrow.is-disabled:hover {
  color: var(--blau);
  background-color: var(--fafafa);
}

.work-tile-track {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  width: max-content;
  display: flex;
  transform: translateX(calc(-1 * var(--work-tile-offset) * (var(--work-tile-width) + 1rem)));
  transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}

.work-tile {
  background-color: var(--blau);
  background-position: center;
  background-size: cover;
  border-top-left-radius: 28px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 28px;
  border-bottom-left-radius: 0;
  flex: none;
  justify-content: center;
  align-items: flex-end;
  text-decoration: none;
  width: var(--work-tile-width);
  aspect-ratio: 1;
  height: auto;
  padding: 1rem;
  display: flex;
  position: relative;
  overflow: clip;
  transform-origin: center;
  animation: workTileFadeIn .6s ease-out both;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1), margin .55s cubic-bezier(.22, 1, .36, 1), filter .35s ease-in-out;
}

.work-tile:nth-child(1) {
  animation-delay: 0ms;
}

.work-tile:nth-child(2) {
  animation-delay: 200ms;
}

.work-tile:nth-child(3) {
  animation-delay: 400ms;
}

.work-tile:nth-child(4) {
  animation-delay: 600ms;
}

.work-tile:nth-child(5) {
  animation-delay: 800ms;
}

.work-tile:nth-child(6) {
  animation-delay: 1000ms;
}

.work-tile:nth-child(7) {
  animation-delay: 1200ms;
}

.work-tile:nth-child(8) {
  animation-delay: 1400ms;
}

.work-tile:nth-child(9) {
  animation-delay: 1600ms;
}

.work-tile:nth-child(10) {
  animation-delay: 1800ms;
}

.work-tile:nth-child(11) {
  animation-delay: 2000ms;
}

.work-tile:nth-child(12) {
  animation-delay: 2200ms;
}

@keyframes workTileFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.work-tile:hover {
  z-index: 2;
  transform: scale(1.18);
}

.work-tile:has(+ .work-tile:hover) {
  margin-right: 1.5rem;
}

.work-tile:hover + .work-tile {
  margin-left: 1.5rem;
}

.work-tile-track:hover .work-tile {
  filter: brightness(.72);
}

.work-tile-track:hover .work-tile:hover {
  filter: brightness(1);
}

.work-tile:before {
  content: "";
  background-image: linear-gradient(180deg, #0000 35%, #00000080);
  position: absolute;
  inset: 0%;
}

.work-tile-name {
  z-index: 1;
  color: var(--fafafa);
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.15em;
  position: relative;
}

.work-tile.is-sahle {
  background-image: url('../images/Sahle-Wohnen.jpg');
}

.work-tile.is-grand-quest {
  background-image: url('../images/Grand-Quest-Frankfurt.png');
}

.work-tile.is-ostforum {
  background-image: url('../images/Adler-Group-Consus-2.jpg');
}

.work-tile.is-bauhaus {
  background-color: #e9edf2;
  background-image: url('../images/Bauhaus-Symbol.png');
  background-size: 50%;
  background-repeat: no-repeat;
}

.work-tile.is-edeka {
  background-color: #e9edf2;
  background-image: url('../images/Logo_Edeka.svg.webp');
  background-size: 54%;
  background-repeat: no-repeat;
}

.work-tile.is-midstad {
  background-image: url('../images/MIDSTAD%20ESSEN%20Fischer.jpg');
}

.work-tile.is-goldstein {
  background-image: url('../images/GOLDSTEIN-STUDIOS.jpg');
}

.work-tile.is-intower {
  background-image: url('../images/in_tower_fischer.jpg');
}

.work-tile.is-wilhelm {
  background-image: url('../images/Adler-Group-Consus.jpg');
}

.work-tile.is-adler {
  background-image: url('../images/Adler-Group-Consus.jpg');
}

.work-tile.is-consus {
  background-image: url('../images/Adler-Group-Consus-2.jpg');
}

.work-tile.is-quartier {
  background-image: url('../images/MICHAEL-FISCHER.jpg');
}

.work-tile.is-sanierung {
  background-image: url('../images/51318.jpg');
}

.work-tile.is-planung {
  background-image: url('../images/53777.jpg');
}

.div-block-4 {
  border-radius: 100px 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  bottom: -5rem;
  overflow: clip;
  transform: skew(-10deg);
}

.cell-2 {
  justify-content: flex-start;
  align-items: flex-end;
}

.link-block-2 {
  text-align: left;
  width: 100%;
  height: 100%;
  padding: 0;
  font-size: 1.3rem;
  line-height: 1.8rem;
  text-decoration: none;
  transition: all .4s ease-in-out;
}

.link-block-2:hover {
  background-color: var(--fafafa);
  transform: scale(1.05);
}

.div-block-5 {
  justify-content: center;
  align-items: flex-start;
  height: 300px;
  display: flex;
  overflow: clip;
}

.div-block-6 {
  padding: 1rem;
}

.text-block-2 {
  color: var(--blau);
  font-family: Worksans Variablefont Wght, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2rem;
}

.text-block-3 {
  color: #333;
  font-size: .9rem;
  line-height: 1.4rem;
}

.image-2 {
  max-width: 110%;
}

.abstandt-4rem {
  width: 100%;
  height: 4rem;
}

.quick-stack-4 {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  padding: 0;
}

.quick-stack-4.is-image-left {
  gap: 5rem;
}

.is-image-left .cell-3 {
  align-items: flex-start;
  padding-left: 1rem;
  box-sizing: border-box;
}

.section {
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  display: flex;
}

.section.bild {
  justify-content: center;
  align-items: center;
  height: 90vh;
  padding: 0;
}

.hero-content {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  display: flex;
}

.hero-heading {
  width: 100%;
  text-align: center;
}

.hero-paragraph {
  text-align: center;
  margin-bottom: 0;
}

.div-block-7 {
  border-top-left-radius: 100px;
  border-bottom-right-radius: 100px;
  justify-content: flex-start;
  align-items: flex-end;
  width: 90%;
  height: 60vh;
  padding-left: 0;
  display: flex;
  position: relative;
  overflow: clip;
  transform: skew(-10deg);
}

.image-3 {
  max-width: 120%;
  position: absolute;
  left: auto;
  transform: none;
}

.heading-copy {
  z-index: 1000;
  color: var(--fafafa);
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 1rem;
  font-size: 4em;
  line-height: 1em;
  position: relative;
}

.heading-copy._2 {
  font-size: 3em;
}

.heading-copy._2.wei, .heading-copy.wei {
  color: var(--fafafa);
}

.div-block-8 {
  z-index: 999;
  background-image: linear-gradient(#00000040, #00000040);
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.section-c {
  justify-content: flex-start;
  align-items: flex-start;
  padding: 3rem;
  display: flex;
}

.section-c.blau {
  background-color: var(--blau);
  color: var(--fafafa);
  justify-content: center;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-c.gr-n {
  background-color: var(--grün);
  color: var(--fafafa);
}

.section-1 {
  justify-content: center;
  align-items: center;
  height: 50vh;
  display: flex;
  position: relative;
  overflow: clip;
}

.image-4 {
  position: relative;
}

.image-5 {
  max-width: 110%;
}

.collection-list-wrapper, .div-block-9 {
  width: 100%;
}

.quick-stack-5 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  padding: 0;
}

.div-block-10 {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 350px;
  display: flex;
}

.div-block-11 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
}

.projekt-heading {
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 2.5rem;
}

.projekt-heading._2 {
  color: var(--blau);
}

.div-block-12 {
  justify-content: center;
  align-items: center;
  height: 310px;
  display: flex;
  overflow: clip;
}

.div-block-13 {
  background-color: var(--fafafa);
  padding: 1rem;
}

.slider {
  width: 100%;
  height: 100%;
}

.div-block-14 {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  overflow: clip;
}

.image-6 {
  position: relative;
}

.div-block-15 {
  background-image: linear-gradient(0deg, #000, #fff0 30%);
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 4rem;
  display: flex;
  position: absolute;
}

.text-block-header {
  color: var(--fafafa);
  margin-bottom: .5rem;
  font-size: 3em;
  font-weight: 700;
  line-height: 2.5rem;
}

.slide-nav {
  display: none;
}

.right-arrow {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  margin-right: 10px;
  inset: auto 0% 0% auto;
}

.left-arrow {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  margin-right: 70px;
  inset: auto 0% 0% auto;
}

.div-block-16 {
  border-top-left-radius: 28px;
  border-bottom-right-radius: 28px;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: clip;
  animation: imageSlideIn 1s ease-out both;
}

.div-block-16 img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@keyframes imageSlideIn {
  from {
    opacity: 0;
    transform: translateX(48px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.person-marker {
  z-index: 2;
  background-color: var(--fafafa);
  border: 2px solid var(--blau);
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  padding: 0;
  font-family: Worksans Variablefont Wght, Arial, sans-serif;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  box-shadow: 0 8px 18px #1456aa33;
  animation: markerFadeIn .35s ease-out 1s both, markerPulse 1.8s ease-in-out 1.35s infinite;
  transition: transform .25s ease-in-out, background-color .25s ease-in-out;
}

.person-marker:hover {
  background-color: var(--fafafa);
  transform: translate(-50%, -50%) scale(1.15);
}

.person-marker:after {
  content: attr(data-person-name);
  color: var(--blau);
  white-space: nowrap;
  background-color: var(--fafafa);
  border: 1px solid #1456aa26;
  border-radius: 999px;
  padding: .55rem .8rem;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  bottom: calc(100% + .7rem);
  left: 50%;
  transform: translate(-50%, .35rem);
  transition: opacity .25s ease-in-out, transform .25s ease-in-out;
  box-shadow: 0 8px 18px #1456aa1f;
}

.person-marker:hover:after {
  opacity: 1;
  transform: translate(-50%, 0);
}

@keyframes markerFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.7);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes markerPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.22);
  }
}

.person-marker.is-michael {
  top: 63%;
  left: 38%;
}

.person-marker.is-team {
  top: 47%;
  left: 62%;
}

.div-block-16.is-standing-team .person-marker.is-michael {
  top: 58%;
  left: 39%;
}

.div-block-16.is-standing-team .person-marker.is-team {
  top: 55%;
  left: 61%;
}

.div-block-16.is-standing-team {
  width: 100%;
  min-height: 580px;
}

.div-block-16.is-standing-team img {
  min-height: 580px;
  object-position: center 15%;
}

.div-block-16.is-michael-portrait .person-marker.is-michael {
  top: 44%;
  left: 54%;
}

.cell-3 {
  justify-content: center;
  align-items: flex-start;
}

.cell-4 {
  justify-content: center;
  align-items: flex-end;
}

.is-image-left .cell-4 {
  align-items: flex-start;
}

.section-d {
  justify-content: center;
  align-items: flex-start;
  padding: 0 0 5rem;
  display: flex;
}

.section-d.bild {
  height: 90vh;
  padding: 0;
}

.quick-stack-6 {
  grid-column-gap: 0px;
  grid-row-gap: 5rem;
  width: 100%;
  padding: 0;
}

.div-block-17 {
  background-color: #1456aa00;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50vh;
  display: flex;
  overflow: clip;
}

.div-block-18 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-left: 2rem;
  display: flex;
}

.image-7 {
  max-width: 120%;
}

.div-block-19 {
  position: relative;
}

.image-8 {
  position: absolute;
}

.div-block-20 {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80vh;
  display: flex;
  position: relative;
}

.image-9 {
  position: absolute;
}

.div-block-21 {
  position: absolute;
  inset: 0% auto auto 0%;
}

.div-block-22 {
  z-index: 1000;
  background-color: var(--fafafa);
  width: 100%;
  height: 100%;
  margin-bottom: 2rem;
  padding-bottom: 15px;
  position: sticky;
  top: 70px;
}

.image-9-gr-n, .image-9-blau, .image-9-gelb, .image-9-rot {
  position: absolute;
}

@media screen and (min-width: 1440px) {
  .section-a, .navbar {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .tga-inline-model-scene {
    height: clamp(540px, 58vh, 720px);
  }

  .section-b, .section-st-rer {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .section-c {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .div-block-12 {
    height: 450px;
  }

  .div-block-15 {
    padding-left: 8rem;
    padding-right: 8rem;
  }
}

@media screen and (min-width: 1920px) {
  .section-a {
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .about-glow {
    width: 300px;
    height: 300px;
  }

  .section-b, .section-st-rer, .section-c {
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .div-block-12 {
    height: 550px;
  }
}

@media screen and (max-width: 991px) {
  .about-glow {
    filter: blur(100px);
    width: 150px;
    height: 80px;
  }

  .about-glow.is-one {
    left: -3%;
  }

  .navbar.w-nav {
    background-color: #fff;
  }

  .navbar .w-nav-button {
    background-color: #fff;
    color: #000;
  }

  .navbar .w-nav-button.w--open {
    background-color: #fff;
    color: #000;
  }

  .navbar [data-nav-menu-open] {
    background-color: #fff;
    text-align: left;
  }

  .navbar .w-nav-link.nav-link {
    color: #000;
  }

  .navbar .w-nav-link.nav-link.w--current {
    color: #000;
  }
}

@media screen and (max-width: 767px) {
  .body {
    overflow-x: hidden;
  }

  .heading, .heading._2, .paragraph {
    width: 100%;
  }

  .heading {
    line-height: 1.05;
  }

  .heading._2 {
    line-height: 1.08;
  }

  .section.bild {
    height: auto;
    min-height: calc(100vh - 70px);
    padding: 5rem 1rem;
  }

  .hero-content {
    width: 100%;
    align-items: flex-start;
  }

  .hero-heading, .hero-paragraph {
    text-align: left;
  }

  #w-node-_6e852308-fe9e-d05b-bfac-5024a9f663ad-15ec0523, #w-node-_6e852308-fe9e-d05b-bfac-5024a9f663ad-dfcad24b {
    grid-template-columns: 1fr;
  }

  .cell-4 {
    align-items: flex-start;
  }

  .div-block-16 {
    width: 100%;
    min-height: 420px;
  }

  .div-block-16.is-standing-team {
    min-height: 460px;
  }

  .div-block-16.is-standing-team img {
    min-height: 460px;
  }

  .tga-plan-section {
    flex-flow: column;
    align-items: flex-start;
  }

  .tga-plan-content, .tga-plan-visual {
    width: 100%;
  }

  .plan-toolbar {
    justify-content: flex-start;
    width: 100%;
  }

  .focus-detail-section {
    flex-flow: column;
    align-items: flex-start;
  }

  .focus-detail-content, .focus-detail-image-wrap {
    width: 100%;
  }

  .consulting-section {
    flex-flow: column;
    align-items: flex-start;
  }

  .consulting-image-wrap, .consulting-content {
    width: 100%;
  }

  .faq-intro, .faq-answer {
    width: 100%;
  }

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

  .site-footer-inner {
    flex-flow: column;
    align-items: flex-start;
  }

  .project-overview-grid {
    grid-template-columns: 1fr;
  }

  .project-detail-grid {
    grid-template-columns: 1fr;
  }

  .project-detail-image {
    min-height: 420px;
  }

  .project-feature-text {
    width: 100%;
  }

  .tga-model-section {
    min-height: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    display: block;
    overflow: visible;
  }

  .tga-model-sticky {
    position: static;
    height: auto;
    pointer-events: auto;
  }

  .tga-model-scene {
    transform: none;
    width: 100%;
    max-width: none;
  }

  .tga-model-copy {
    width: 100%;
    max-width: none;
    padding-top: 0;
  }

  .tga-model-panel {
    min-height: auto;
    margin-bottom: 4rem;
  }

  .tga-model-heading.heading._2 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .tga-model-text {
    max-width: none;
  }

  .about-glow {
    width: 110px;
  }

  .about-glow.is-one {
    left: -15%;
  }
}

@media screen and (max-width: 479px) {
  .section-a {
    padding: 5rem 1rem;
  }

  .section-a.blau {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .section.bild {
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

  .hero-heading {
    font-size: 2.65em;
  }

  .hero-paragraph, .paragraph {
    font-size: 1.15em;
  }

  .div-block-16 {
    min-height: 320px;
  }

  .div-block-16.is-standing-team {
    min-height: 360px;
  }

  .div-block-16 img {
    height: 320px;
  }

  .div-block-16.is-standing-team img {
    height: 360px;
    min-height: 360px;
  }

  .consulting-section {
    padding: 0 1rem 5rem;
  }

  .faq-section {
    padding: 5rem 1rem;
  }

  .faq-item {
    padding: 1.1rem;
  }

  .faq-question {
    font-size: 1.05rem;
  }

  .faq-question:after {
    width: 1.1rem;
    height: 1.1rem;
    margin-left: 1rem;
  }

  .faq-answer {
    font-size: 1rem;
  }

  .contact-grid-section {
    padding-bottom: 5rem;
  }

  .contact-map-card {
    border-top-left-radius: 80px;
    border-bottom-right-radius: 80px;
    min-height: 360px;
  }

  .contact-map {
    height: 360px;
  }

  .site-footer {
    padding: 2rem 1rem;
  }

  .site-footer-links {
    flex-flow: column;
  }

  .project-overview-section {
    padding: 0 1rem 5rem;
  }

  .project-detail-hero {
    padding: 5rem 1rem 3rem;
  }

  .project-detail-section {
    padding: 0 1rem 5rem;
  }

  .project-detail-image {
    border-top-left-radius: 48px;
    border-bottom-right-radius: 48px;
    min-height: 280px;
  }

  .project-detail-map {
    margin-top: 2rem;
  }

  .project-detail-map-image {
    border-top-left-radius: 48px;
    border-bottom-right-radius: 48px;
  }

  .project-detail-facts {
    font-size: 1.05rem;
  }

  .project-overview-grid {
    grid-row-gap: 3rem;
  }

  .project-card-image {
    height: 220px;
  }

  .project-card-title {
    font-size: 1.6rem;
  }

  .project-card-text {
    width: 100%;
    font-size: 1rem;
  }

  .project-feature-card {
    margin-top: 4rem;
  }

  .project-feature-image {
    height: 260px;
  }

  .project-feature-title {
    font-size: 2.3rem;
  }

  .project-feature-text {
    font-size: 1.15rem;
  }

  .focus-intro-section {
    padding-bottom: 2rem;
  }

  .tga-model-section {
    margin-top: -1rem;
    padding: 0 1rem 5rem;
  }

  .tga-model-scene {
    height: 420px;
    min-height: 360px;
  }

  .consulting-image {
    height: 420px;
    object-position: center 15%;
  }

  .tga-plan-section {
    padding: 5rem 1rem;
  }

  .focus-detail-section {
    padding: 5rem 1rem;
  }

  .focus-detail-image {
    height: 360px;
  }

  .focus-detail-image-wrap {
    border-top-left-radius: 48px;
    border-bottom-right-radius: 48px;
  }

  .tga-plan-visual {
    min-height: 320px;
    padding: 1rem;
  }

  .tga-model-playback {
    width: 40px;
    height: 40px;
  }

  .tga-inline-model-scene {
    height: clamp(340px, 46vh, 460px);
  }

  .plan-toolbar--trades {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .plan-toolbar--trades .plan-tool {
    min-height: 48px;
    padding: .5rem .55rem;
  }

  .work-tile-row {
    --work-tile-width: calc(100vw - 2rem);
    margin-left: -50vw;
  }

  .work-tile:hover {
    transform: none;
  }

  .work-tile:has(+ .work-tile:hover), .work-tile:hover + .work-tile {
    margin-left: 0;
    margin-right: 0;
  }

  .navbar {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .container {
    width: 100%;
  }

  .heading {
    font-size: 2.75em;
  }

  .heading._2 {
    font-size: 2.45em;
  }

  .quick-stack-2 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .about-glow.is-one {
    left: -25%;
  }

  .section-b, .section-st-rer {
    padding: 5rem 1rem;
  }

  .heading-copy {
    font-size: 3em;
  }

  .section-c {
    padding: 5rem 1rem;
  }
}

#w-node-_6e852308-fe9e-d05b-bfac-5024a9f663ad-15ec0523, #w-node-_6e852308-fe9e-d05b-bfac-5024a9f663ad-dfcad24b {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 767px) {
  #w-node-_6e852308-fe9e-d05b-bfac-5024a9f663ad-15ec0523, #w-node-_6e852308-fe9e-d05b-bfac-5024a9f663ad-dfcad24b {
    grid-template-columns: 1fr;
  }
}

html.site-loader-pending {
  overflow: hidden;
}

html.site-loader-pending body > :not(#site-loader) {
  opacity: 0;
  visibility: hidden;
}

html.site-loader-pending body > :not(#site-loader) * {
  animation-play-state: paused !important;
}

html.site-loader-ready body > :not(#site-loader) {
  visibility: visible;
  animation: siteLoaderPageIn .85s linear forwards;
}

html.site-loader-ready body > :not(#site-loader) * {
  animation-play-state: running !important;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
}

.site-loader.is-exiting {
  pointer-events: none;
}

.site-loader__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, #ffffff 0%, #f7f9fb 48%, #eef2f6 100%);
  opacity: 1;
  animation: siteLoaderBackdropOut .85s linear 2.15s forwards;
}

.site-loader__content {
  position: relative;
  z-index: 1;
  width: min(82vw, 460px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-loader__logo {
  width: 100%;
  opacity: 1;
  transform: scale(1) translateY(0);
  transform-origin: 50% 50%;
  animation: siteLoaderLogoExit .85s linear 2.15s forwards;
}

.site-loader__logo svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.site-loader .loader-shape-move {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  opacity: 0;
  animation: siteLoaderShapeSettle 1.35s cubic-bezier(.22, 1, .36, 1) forwards;
}

.site-loader .loader-shape-move--2 {
  animation-delay: .05s;
  animation-name: siteLoaderShapeSettle2;
}

.site-loader .loader-shape-move--4 {
  animation-delay: .12s;
  animation-name: siteLoaderShapeSettle4;
}

.site-loader .loader-shape-move--3 {
  animation-delay: .2s;
  animation-name: siteLoaderShapeSettle3;
}

.site-loader .loader-shape-move--1 {
  animation-delay: .28s;
  animation-name: siteLoaderShapeSettle1;
}

.site-loader .loader-layer-one path {
  fill: var(--blau);
  animation: siteLoaderLayerOneFill .7s ease 1.55s forwards;
}

@keyframes siteLoaderShapeSettle {
  0% {
    opacity: 0;
    transform: translate(0, -12%) scale(1.2);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes siteLoaderShapeSettle1 {
  0% {
    opacity: 0;
    transform: translate(-11%, -10%) scale(1.22);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes siteLoaderShapeSettle2 {
  0% {
    opacity: 0;
    transform: translate(11%, -10%) scale(1.22);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes siteLoaderShapeSettle3 {
  0% {
    opacity: 0;
    transform: translate(0, 13%) scale(1.2);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes siteLoaderShapeSettle4 {
  0% {
    opacity: 0;
    transform: translate(5%, -14%) scale(1.18);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes siteLoaderLayerOneFill {
  0% {
    fill: var(--blau);
  }

  100% {
    fill: var(--grün);
  }
}

@keyframes siteLoaderLogoExit {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0);
  }
}

@keyframes siteLoaderBackdropOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes siteLoaderPageIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.site-loader-pending {
    overflow: auto;
  }

  html.site-loader-pending body > :not(#site-loader) {
    opacity: 1;
    visibility: visible;
    animation: none;
  }

  html.site-loader-pending body > :not(#site-loader) * {
    animation-play-state: running !important;
  }

  .site-loader {
    display: none;
  }
}


@font-face {
  font-family: 'Worksans Variablefont Wght';
  src: url('../fonts/WorkSans-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}