/* Montserrat lokal (vormals Google Fonts wght@400;500) */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    url('../fonts/Montserrat-Regular.woff2') format('woff2'),
    url('../fonts/Montserrat-Regular.woff') format('woff');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src:
    url('../fonts/Montserrat-Medium.woff2') format('woff2'),
    url('../fonts/Montserrat-Medium.woff') format('woff');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src:
    url('../fonts/Montserrat-Bold.woff2') format('woff2'),
    url('../fonts/Montserrat-Bold.woff') format('woff');
}

:root {
    --nav-offset: 88px;
    /* Einmal beim ersten JS-Messlauf gesetzt; Hero nutzt nur diesen Wert → kein Scroll-Feedback-Loop */
    --nav-offset-init: 88px;
    /* Abstand rechts wie .site-navbar .container-fluid (Hamburger ↔ fixed Close-Button) */
    --site-nav-toggler-edge: 1rem;
    --apricot: #ed6f60;
    --body-gray: #494441;
    --turquoise: #43a5b9;
    --turquoise-hover: #3a94a6;
    --beige: #f5f3ee;
    --bs-body-font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    --bs-body-color: var(--body-gray);
    --bs-body-font-weight: 400;
    --bs-heading-color: var(--apricot);
    --bs-primary: var(--turquoise);
    --bs-primary-rgb: 67, 165, 185;
    --bs-link-color: var(--turquoise);
    --bs-link-hover-color: var(--turquoise-hover);
  }

  html { scroll-behavior: smooth; }
  body { overflow-x: hidden; }
  /* Seitenränder & Abschnittsabstände (ersetzt py-*/px-* auf Hauptflächen) */
  .site-navbar .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .site-navbar .navbar-nav {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  #mainNav .site-nav-cta {
    padding-bottom: 1rem;
  }

  /* Mobile: Vollbild-Offcanvas von rechts, Menü linksbündig */
  #mainNav.offcanvas {
    --bs-offcanvas-bg: rgba(255, 255, 255, 0.9);
    --bs-offcanvas-border-width: 0;
  }

  .site-nav-toggler-wrap {
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
  }

  .site-nav-toggler {
    position: relative;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--body-gray);
    border-color: var(--body-gray) !important;
  }

  .site-nav-toggler:focus-visible {
    box-shadow: 0 0 0 0.2rem rgba(67, 165, 185, 0.35);
  }

  .site-nav-toggler-bars {
    position: relative;
    display: block;
    width: 1.25rem;
    height: 0.875rem;
  }

  .site-nav-toggler-bar {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transform-origin: center;
    transition:
      transform 0.22s ease,
      opacity 0.18s ease,
      top 0.22s ease,
      bottom 0.22s ease;
  }

  .site-nav-toggler-bar:nth-child(1) {
    top: 0;
  }

  .site-nav-toggler-bar:nth-child(2) {
    top: 50%;
    margin-top: -1px;
  }

  .site-nav-toggler-bar:nth-child(3) {
    bottom: 0;
  }

  .site-nav-toggler.is-open .site-nav-toggler-bar:nth-child(1) {
    top: 50%;
    margin-top: -1px;
    transform: rotate(45deg);
  }

  .site-nav-toggler.is-open .site-nav-toggler-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .site-nav-toggler.is-open .site-nav-toggler-bar:nth-child(3) {
    bottom: 50%;
    margin-bottom: -1px;
    transform: rotate(-45deg);
  }

  .site-nav-drawer-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding-top: 0.5rem;
  }

  #hero .hero-row > .col-lg-6:first-child {
    padding: 3rem 1.5rem;
  }

  .services,
  .quote-section,
  .section,
  #kontakt {
    padding: 3rem 1rem;
  }


  .two-col .row > .col-lg-6:last-child {
    padding: 3rem 1.5rem;
  }

  body.has-service-cta-visible {
    padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
  }

  .service-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1020;
    padding: 0.65rem 1rem max(0.65rem, env(safe-area-inset-bottom));
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    will-change: transform, opacity;
    transition:
      transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.32s ease;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    display: inline-table;
  }

  .service-cta-bar-inner {
    align-items: stretch;
  }

  .service-cta-bar-inner .btn {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
    margin: 0 0.5rem 0 0;
  }

  p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--body-gray);
    margin: 0 0 1rem 0;
  }
  a { color: var(--turquoise); }
  a:hover { color: var(--apricot); }
  /* p:last-child {
    margin-bottom: 0;
  } */

  .multiCol {
    column-count: 2;
    column-gap: 2rem;
    margin: 2rem 0;
  }

  .multiCol > * {
    break-inside: avoid;
  }
  ul { padding-left: 20px; }
  p + ul { margin-top: -1rem; }
  .hero-section p {
    max-width: 30rem;
  }
  .hero-themen-item-text .hero-themen-copy {
    max-width: calc(100% - 5vw) !important;
  }
  
  .services .col-lg-4 > p {
    flex-grow: 1;
  }

  .location-bar {
    font-size: 0.875rem;
    color: var(--body-gray);
    padding: 1.5rem 1rem;
  }

  .site-footer {
    font-size: 0.875rem;
    color: #000;
    background-color: #e8e5db;
    padding: 3rem 1rem;
    border-bottom: 1px solid var(--body-gray);
  }

  .site-footer address {
    margin-bottom: 0;
    line-height: 1.75;
    font-style: normal;
  }

  .kontakt-illustration {
    max-width: 320px;
  }

  .site-footer .footer-bottom {
    font-size: 0.75rem;
    padding-top: 1.5rem;
    border-top-color: rgba(255, 255, 255, 0.25);
  }

  h1, h2, h3, h4, h5, h6,
  .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    color: var(--apricot);
  }
h2 {
    font-weight: 400;
}
  h3 {
    font-size: 1.75rem;
    line-height: 1.35;
    margin-top: 0.75rem;
    margin-bottom: 2rem;
    margin-top: 1rem;
  }
  h4 {
    margin-bottom: 1.5rem;
  }
  .services h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .text-accent { color: var(--apricot) !important; }

  .btn {
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    font-weight: 500;
    letter-spacing: 0.04em;
    --bs-btn-border-radius: 0;
    --bs-btn-padding-y: 0.75rem;
    --bs-btn-padding-x: 1.625rem;
    margin: 1rem 0;
  }

  .btn-sm {
    --bs-btn-padding-y: 0.55rem;
    --bs-btn-padding-x: 1.25rem;
    --bs-btn-border-radius: 0;
  }

  .btn-lg {
    --bs-btn-border-radius: 0;
  }

  .btn-primary,
  .btn-info {
    --bs-btn-color: #fff;
    --bs-btn-hover-color: #fff;
    --bs-btn-active-color: #fff;
    --bs-btn-disabled-color: #fff;
    --bs-btn-bg: var(--turquoise);
    --bs-btn-border-color: var(--turquoise);
    --bs-btn-hover-bg: var(--turquoise-hover);
    --bs-btn-hover-border-color: var(--turquoise-hover);
    --bs-btn-active-bg: var(--turquoise-hover);
    --bs-btn-active-border-color: var(--turquoise-hover);
    --bs-btn-padding-y: 0.55rem;
    --bs-btn-padding-x: 1.25rem;
    --bs-btn-font-size: 0.875rem;
  }

  .site-navbar .btn-primary,
  .site-navbar .btn-info {
    align-self: auto;
    transition-property: color, background-color, border-color, box-shadow;
    transition-duration: 0.2s;
  }

  .btn-outline-dark {
    --bs-btn-color: var(--body-gray);
    --bs-btn-border-color: var(--body-gray);
    --bs-btn-hover-bg: var(--body-gray);
    --bs-btn-hover-border-color: var(--body-gray);
    --bs-btn-hover-color: #fff;
    --bs-btn-active-bg: var(--body-gray);
    --bs-btn-active-border-color: var(--body-gray);
    --bs-btn-active-color: #fff;
    --bs-btn-padding-y: 0.55rem;
    --bs-btn-padding-x: 1.25rem;
    --bs-btn-font-size: 0.875rem;
  }

  .navbar .nav-link {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--body-gray);
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    /* Nicht font-size transitionieren: bei .navbar-scrolled sonst Layout/Paint-Flattern */
    transition: color 0.2s ease;
  }
  .navbar-nav .nav-link.active, 
  .navbar-nav .nav-link.show,
  .navbar .nav-link:hover,
  .navbar .nav-link:focus {
    color: var(--turquoise);
    color: var(--turquoise);
  }
  .navbar-brand {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .site-navbar {
    /* transition: padding-top 0.28s ease, padding-bottom 0.28s ease; */
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: 3px solid var(--body-gray);
  }
  .navbar-scrolled .btn-primary, 
  .navbar-scrolled .btn-info,
  .navbar-scrolled .nav-link {
    font-size: 0.875rem;
  }

  .site-navbar .navbar-brand img {
    width: auto;
    height: 48px;
    height: 80px;
    /* Kurz: lange Höhen-Transition + Klassenwechsel = sichtbares „Kämpfen“ */
    transition: height 0.14s ease;
  }
  .navbar-scrolled .navbar-brand {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
  }
  .navbar-scrolled .navbar-brand img {
    height: 48px; padding: 0;
  }
  .hero-section {
    min-height: calc(100svh - var(--nav-offset-init));
  }

  .hero-section .hero-row {
    min-height: calc(100svh - var(--nav-offset-init));
  }

  .hero-img-col {
    min-height: 280px;
  }

  .hero-img-col img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    object-position: center top;
  }

  /* lb.php: Themen-Spalte rechts im Hero */
  .hero-themen-col {
    background-color: #f5f3ee;
    position: relative;
  }

  .hero-themen {
    padding: 2rem 1.5rem 2.5rem;
  }

  .hero-themen-title {
    font-size: 1.15rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--body-gray);
    font-weight: 500;
    margin: 0 0 2.5rem;
  }

  .hero-themen-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    column-gap: 1.25rem;
    row-gap: 1rem;
    flex: 1 1 auto;
    min-height: 0;
  }

  .hero-themen-copy {
    min-width: 0;
  }

  .hero-themen-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .hero-themen-item {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }

  .hero-themen-item:last-child {
    margin-bottom: 0;
  }

  .hero-themen-num {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--apricot);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1;
    margin-top: -5px;
  }

  .hero-themen-item-heading {
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 600;
    color: var(--body-gray);
    margin: 0 0 0.5rem;
  }

  .hero-themen-bullets {
    margin: 0;
    padding-left: 0;
    /* font-size: 0.875rem; */
    line-height: 1.65;
    color: var(--body-gray);
    list-style: none;
  }

  .hero-themen-bullets li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.35rem;
  }

  .hero-themen-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0.7em;
    transform: translateY(-50%);
    font-size: 1rem;
    line-height: 1;
  }

  .hero-themen-bullets li:last-child {
    margin-bottom: 0;
  }

  .hero-themen-item-text .hero-themen-copy {
    margin: 0;
    line-height: 1.65;
    color: var(--body-gray);
  }

  .hero-themen-diagram {
    line-height: 0;
    justify-self: end;
    position: absolute;
    top: 2rem;
    right: 2rem;
  }

  .hero-themen-diagram img {
    display: block;
    width: min(50vw, 12rem);
    height: auto;
    max-width: 100%;
  }

  #hero .hero-text-inner {
    min-height: 0;
    /* Illustration an der ganzen Spalte ausrichten, nicht an der zentrierten Textbox */
    background-image: url("../images/Illu_Lebensberatung.svg");
    background-repeat: no-repeat;
    background-position: right bottom;
    /* vh statt %-Höhe: skaliert nicht mit Spaltenhöhe (Hero nutzt --nav-offset-init) */
    background-size: auto min(50svh, 28rem);
  }

  #hero .hero-text-main {
    flex: 1 1 auto;
    max-width: 36rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    align-self: center;
    text-align: left;
    /* min-height: 70%; */
  }
  .display-6 { font-size: 3rem; margin-bottom: 2rem; font-weight: 400 !important; }
  .service-ilu-wrap {
    line-height: 0;
    max-width: 100%;
  }

  .service-ilu {
    display: block;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 2px;
  }

  .service-card-rule {
    padding-top: 1rem;
    border-bottom: 2px solid var(--body-gray);
    width: 100%;
    align-self: stretch;
  }

  .services-tagline {
    font-size: 1rem;
    letter-spacing: 0.12em;
    margin-bottom: 3rem;
  }

  p.zitat {
    color: var(--apricot);
    font-size: 3rem;
    line-height: 1.25;
    font-weight: 400;
    text-align: left;
    margin-left: 0;
    margin-right: auto;
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
  }
  footer p.zitat,
  p.zitat_small {
    font-size: 2rem;
  }
  footer p.zitat { margin-bottom: 0; }

  .about-sub {
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: var(--body-gray) !important;
  }

  footer .footer-logo img {
    height: 48px;
    width: auto;
  }

  footer .footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    flex-wrap: nowrap;
    text-decoration: none;
    color: var(--body-gray);
    transition: color 0.2s;
    font-size: 1rem;
  }

  footer .footer-contact a:hover {
    color: var(--turquoise);
  }

  footer .footer-contact img {
    width: 2.75rem;
    height: 2.75rem;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
  }

  footer .footer-contact a span {
    white-space: nowrap;
  }

  .footer-nav a {
    text-decoration: none;
    transition: color 0.2s;
    color: var(--body-gray);
  }

  .footer-nav a:hover {
    color: var(--turquoise);
  }

  .footer-bottom a {
    color: var(--body-gray);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-bottom a:hover {
    color: var(--turquoise);
  }

  .meta-links {
    background-color: #fff;
    padding: 0.875rem 0;
    font-size: 1rem;
    line-height: 1.4;
  }

  .meta-links .container {
    display: flex;
    justify-content: flex-end;
  }

  .meta-links-inner {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .meta-links-inner ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
  }

  .meta-links-inner li {
    display: inline-flex;
    align-items: center;
  }

  .meta-links-inner li + li::before {
    content: "|";
    color: var(--body-gray);
    padding: 0 0.5rem;
    user-select: none;
  }

  .meta-links a {
    color: var(--body-gray);
    text-decoration: none;
    transition: color 0.15s ease;
  }

  .meta-links .nav-link {
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: normal;
    color: inherit;
  }

  .meta-links a:hover {
    color: var(--turquoise);
  }

  .meta-links-sep {
    color: var(--body-gray);
    padding: 0 0.5rem;
    user-select: none;
  }

  .two-col img {
    object-position: left center;
  }

  .about-img-col {
    min-height: 280px;
  }

  .about-img {
    min-height: 280px;
  }

  .bg-beige {
    background-color: var(--beige);
  }
  .section-1col .col-inner {
    padding: 2rem 2rem 0;
  }
  .section-2col .col-inner:last-child {
    padding: .5rem 2rem 2rem;
  }
  .bg-beige .text-editor {
    padding: 1rem 2rem .5rem;
    background-color: #fff !important;
  } 
  .alert-primary {
      --bs-alert-color: var(--turquoise);
      --bs-alert-bg: var(--turquoise);
      --bs-alert-border-color: var(--turquoise);
      --bs-alert-link-color: var(--turquoise);
      color: #fff !important;
  }
  /* --- Media queries: min-width (lg+) → max-width (Ausnahmen) → prefers-reduced-motion --- */

  .erster_schritt {
    margin: 3rem 0 2rem;
  }
  .schmal { width: 50%; }
  @media (min-width: 992px) {
    :root {
      --site-nav-toggler-edge: 3rem;
    }

    .site-navbar .container-fluid {
      padding-left: 3rem;
      padding-right: 3rem;
    }

    #hero .hero-row > .col-lg-6:first-child {
      padding-left: 3rem;
      padding-right: 3rem;
    }

    .services,
    .quote-section,
    .section,
    #kontakt {
      padding-left: 3rem;
      padding-right: 3rem;
    }

    .two-col .row > .col-lg-6:last-child {
      padding-left: 3rem;
      padding-right: 3rem;
    }

    .service-cta-bar {
      padding-left: 3rem;
      padding-right: 3rem;
    }

    .location-bar {
      padding-left: 3rem;
      padding-right: 3rem;
    }

    .site-footer {
      padding-left: 3rem;
      padding-right: 3rem;
    }

    /* Volle Sichtfläche minus Header: feste Mindesthöhe pro Spalte (lg+),
       damit h-100 / %-Höhen nicht zusammenbrechen */
    #hero .hero-text-col,
    #hero .hero-img-col,
    #hero .hero-themen-col {
      min-height: calc(100svh - var(--nav-offset-init));
    }

    #hero .hero-text-inner {
      flex: 1 1 auto;
      min-height: 0;
    }

    .hero-img-col {
      min-height: 0;
    }

    .hero-img-col img {
      min-height: 0;
    }

    .hero-themen {
      padding: 2.5rem 2rem 2.5rem 2.5rem;
    }

    .hero-themen-diagram img {
      width: 7vw;
    }

    .about-img-col,
    .about-img {
      min-height: 460px;
    }
  }

  /* Navbar horizontal wie Bootstrap navbar-expand-xl (≥1200px) */
  @media (min-width: 1200px) {
    .site-navbar .navbar-nav {
      margin-top: 0;
      margin-bottom: 0;
    }

    #mainNav .site-nav-cta {
      padding-bottom: 0;
    }

    #mainNav .site-nav-drawer-body {
      flex-direction: row;
      align-items: center;
      flex-wrap: nowrap;
      align-self: stretch;
      padding-top: 0;
      gap: 0;
      margin-left: auto;
      width: auto;
    }
  }

  @media (max-width: 1500px) {
    .navbar .nav-link {
      padding-left: 1rem !important;
      padding-right: 1rem !important;
    }
  }

  @media (max-width: 1300px) {
    .navbar .nav-link {
      padding-left: .5rem !important;
      padding-right: .5rem !important;
    }
  }
  @media (max-width: 1200px) {
    .site-navbar .btn-info {
      margin: 0;
    }
    .site-navbar .navbar-nav {
        margin-bottom: 0;
    }
  }
  @media (max-width: 1050px) {
    .display-6 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
        font-weight: 400 !important;
    }
  }

  /* iPad quer / Tablet-Landscape:
     Höhe nicht auf Viewport kappen, sondern beide Hero-Spalten auf gleiche (Inhalts-)Höhe strecken */
  @media (min-width: 800px) and (max-width: 1050px) {
    .hero-section,
    .hero-section .hero-row,
    #hero .hero-text-col,
    #hero .hero-themen-col {
      min-height: 0;
      height: auto;
    }

    .hero-section .hero-row {
      align-items: stretch;
    }

    #hero .hero-text-col {
      display: flex;
      align-self: stretch;
      height: auto !important;
    }

    #hero .hero-text-inner {
      flex: 1 1 auto;
      height: 100%;
      min-height: 100%;
      display: block !important;
    }

    /* Rechte Seite darf in diesem Range natürlich wachsen (kein h-100 Clipping/Overflow) */
    #hero .hero-themen {
      height: auto !important;
      min-height: 0;
      justify-content: flex-start !important;
    }

    #hero .hero-themen-layout {
      flex-grow: 1;
    }
  }

  @media (max-width: 992px) {
    #hero .hero-text-main {
      flex: 1 1 auto;
      max-width: inherit;
      width: 100%;
      margin-left: inherit;
      margin-right: inherit;
      align-self: inherit;
    }
  }

  @media (max-width: 1199.98px) {
    .site-nav-drawer-body .navbar-nav .nav-link {
      padding-left: 0;
      padding-right: 0;
    }
    .site-nav-drawer-body {
      padding-top: 5rem;
    }
    /* Toggler bleibt über dem Vollbild-Offcanvas; Position wie geschlossener Hamburger (Padding + vertikal in Nav) */
    .site-navbar .site-nav-toggler.is-open {
      position: fixed;
      z-index: 1085;
      top: calc(
        env(safe-area-inset-top, 0px) + max(0px, (var(--nav-offset) - 2.75rem) / 2)
      );
      right: max(var(--site-nav-toggler-edge), env(safe-area-inset-right, 0px));
    }
  }

  @media (max-width: 991.98px) {
    /* .hero-text-inner-mobile {
      background-image: url("../images/Illu_Lebensberatung.svg");
      background-repeat: no-repeat;
      background-position: right bottom;
      background-size: auto min(50svh, 28rem);
    } */
    #hero .hero-text-inner {
      min-height: 0;
      background-image: none;
    }
  }

  @media (max-width: 768px) {
    .multiCol {
      column-count: 1;
    }

    .hero-themen-diagram img {
      width: 5rem;
    }

    .service-cta-bar--visible {
      display: none;
    }
    .schmal { width: 100%; }
    body.has-service-cta-visible {
      padding-bottom: 0.5rem;
    }
    footer p.zitat {
      font-size: 1.3rem;
    }
    footer .col-12 {
      margin-bottom: 2rem;
    }
    .service-cta-bar { display: none; }
    .services h3,
    p.zitat,
    .display-6 {
        font-size: 1.75rem;
    }
    #hero .hero-row > .col-lg-6:first-child {
        padding: 3rem 1.5rem 0;
    }
    .erster_schritt {
        margin: 0 0 2rem;
    }
    section.zitat { padding-top: 0; }
    .vcard {
      margin-bottom: 0 !important;
    }
    .telefon {
      margin-top: 0 !important;
    }
    .hero-themen-col {
      margin-top: 2rem;
    }
    .hero-themen-diagram {
      position: relative;
      top: auto;
      right: auto;
      left: auto;
      margin: 1.5rem 1.5rem 0;
      display: flex;
      justify-content: flex-end;
    }
    .hero-themen-diagram + .hero-themen { padding-top: 0 !important; display: block !important;}
    .multiCol h4 { margin-top: 4rem; }
    .multiCol h4:first-child { margin-top: 0; }
    .offcanvas-header {
      padding: 3rem 1.7rem 0;
    }
    
  }

  @media (prefers-reduced-motion: reduce) {
    .service-cta-bar {
      transition-duration: 0.01ms;
    }

    .site-nav-toggler-bar {
      transition-duration: 0.01ms;
    }
  }
