@font-face {
   font-family: 'Copperplate Gothic Light';
   font-style: normal;
   font-weight: normal;
   src: url('../fonts/copperplate-gothic-light.woff') format('woff');
 }


 :root {
   --blue-900: #194786;
   --blue-700: #123663;
   --blue-100: #edf3f8;
   --nav-dropdown-bg: #7fa9db;
   --beige-100: #f4f0e8;
   --beige-200: #efe4d0;
   --beige-300: #b0a196;
   /* --beige-100: #f8f3ea; */
   --white: #ffffff;
   --text: #172331;
   --muted: #647383;
   --shadow: 0 20px 45px rgba(25, 71, 134, 0.13);
   --section-shadow: 0 16px 28px rgba(25, 71, 134, 0.08);
   --container: 1000px;
   --container-padding: 22px;
   --slider-height: 496px;
   --font-body: Arial, "Helvetica Neue", Helvetica, sans-serif;
   --bs-font-sans-serif: var(--font-body);
   --bs-body-font-family: var(--font-body);
 }

 * {
   box-sizing: border-box;
 }

 html {
   width: 100%;
   overflow-x: hidden;
   scroll-behavior: smooth;
   scroll-padding-top: 96px;
 }

 body {
   width: 100%;
   overflow-x: hidden;
   margin: 0;
   padding-top: 76px;
   font-family: var(--font-body);
   color: var(--muted);
   background: var(--white);
   line-height: 1.7;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
 }

 html:has(.hero-slider-top) body {
   padding-top: 0;
 }

 a {
   color: inherit;
 }

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

 li {
   font-size: clamp(1.02rem, 1.35vw, 1.16rem);
 }

 [id^="c"],
 #contact {
   scroll-margin-top: 96px;
 }

 .sb-container.frame-nav-anchor[id^="c"] {
   scroll-margin-top: -36px;
 }


 @media screen and (max-width: 820px) {
   .sb-container.frame-nav-anchor[id^="c"] {
     scroll-margin-top: 80px;
   }
 }


 h2,
 h3 {
   font-family: "Copperplate Gothic Light";
 }

 h1,
 h2,
 h3,
 h4 {
   color: var(--blue-900);
 }

 .d-none {
   display: none;
 }

 .container {
   width: min(var(--container), calc(100% - (var(--container-padding) * 2)));
   margin-left: auto;
   margin-right: auto;
 }


 .site-header {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 20;
   background: var(--blue-900);
   border-bottom: 1px solid rgba(25, 71, 134, 0.34);
   transition:
     background-color 0.35s ease,
     border-color 0.35s ease,
     box-shadow 0.35s ease;
 }

 html:has(.hero-slider-top) .site-header {
   background: transparent;
   border-bottom: 0;
   -webkit-backdrop-filter: blur(8px);
   backdrop-filter: blur(8px);
 }

 html:has(.hero-slider-top) .site-header.is-solid {
   background: var(--blue-900);
   border-bottom: 1px solid rgba(25, 71, 134, 0.34);
   box-shadow: 0 12px 24px rgba(18, 54, 99, 0.16);
 }

 .header-inner {
   display: flex;
   align-items: center;
   justify-content: end;
   gap: 24px;
   min-height: 76px;
 }

 .logo {
   font-weight: 600;
   text-decoration: none;
   color: white;
   font-size: 1.25rem;
   letter-spacing: -0.03em;
 }

 .main-nav {
   display: flex;
   gap: 22px;
   align-items: center;
 }

 .nav-item {
   position: relative;
 }

 .main-nav a {
   text-decoration: none;
   color: var(--blue-100);
   font-weight: 700;
   font-size: 1.1rem;
   font-family: inherit;
 }


 .main-nav a:hover {
   color: #c0e2ff;
 }

 .dropdown {
   position: absolute;
   top: calc(100% + 14px);
   left: 0;
   min-width: 220px;
   padding: 10px;
   background: var(--nav-dropdown-bg);
   box-shadow: var(--shadow);
   border: 1px solid rgba(25, 71, 134, 0.08);
   opacity: 0;
   visibility: hidden;
   transform: translateY(8px);
   transition: 0.18s ease;

 }

 .nav-item:hover .dropdown,
 .nav-item:focus-within .dropdown {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
 }

 .dropdown a {
   display: block;
   padding: 10px 12px;
   font-size: 1rem;
 }

 .nav-toggle {
   display: none;
 }

 .hero-slider {
   position: relative;
   width: 100%;
   height: var(--slider-height);
   overflow: hidden;
   background: var(--blue-900);
 }

 .slide {
   position: absolute;
   inset: 0;
   opacity: 0;
   pointer-events: none;
   transition: opacity 2s ease;
 }

 .slide.active {
   opacity: 1;
   pointer-events: auto;
 }

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

 .slide::after {
   content: "";
   position: absolute;
   inset: 0;
   /* background: linear-gradient(90deg, rgba(25,71,134,0.80), rgba(25,71,134,0.38), rgba(25,71,134,0.08)); */
 }

 .slide-content {
   position: absolute;
   z-index: 2;
   left: 50%;
   bottom: clamp(82px, 11vw, 150px);
   transform: translateX(-50%);
   color: var(--white);
 }

 .slide-content h1,
 .slide-content h2 {
   max-width: 760px;
   margin: 0 0 22px;
   font-size: clamp(2.4rem, 5.6vw, 5.2rem);
   line-height: 0.98;
   letter-spacing: -0.065em;
 }

 .slide-content p {
   max-width: 620px;
   margin: 0 0 28px;
   font-size: clamp(1rem, 1.55vw, 1.2rem);
   font-weight: 500;
 }

 .eyebrow {
   margin: 0 0 14px;
   text-transform: uppercase;
   letter-spacing: 0.18em;
   font-size: 0.76rem;
   font-weight: 800;
   color: var(--blue-700);
 }

 .slide-content .eyebrow {
   color: var(--beige-200);
 }

 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 13px 22px;
   border-radius: 0;
   background: var(--beige-200);
   color: var(--blue-900);
   text-decoration: none;
   font-weight: 800;
   box-shadow: var(--shadow);
 }

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

 .button.dark {
   background: var(--blue-900);
   color: var(--white);
 }

 .slider-btn {
   position: absolute;
   z-index: 5;
   top: 50%;
   transform: translateY(-50%);
   width: 46px;
   height: 46px;
   border: 0;
   border-radius: 0;
   background: rgba(255, 255, 255, 0.84);
   color: var(--blue-900);
   font-size: 2rem;
   line-height: 1;
   cursor: pointer;
 }

 .slider-btn:hover {
   background: var(--white);
 }

 .prev {
   left: 22px;
 }

 .next {
   right: 22px;
 }

 .slider-dots {
   position: absolute;
   z-index: 5;
   left: 50%;
   bottom: 28px;
   transform: translateX(-50%);
   display: flex;
   gap: 10px;
 }

 .slider-dots button {
   width: 26px;
   height: 4px;
   border: 0;
   border-radius: 0;
   background: rgba(255, 255, 255, 0.48);
   cursor: pointer;
 }

 .slider-dots button.active {
   background: var(--white);
 }

 .page-hero {
   background: var(--blue-900);
   color: var(--white);
   padding: clamp(96px, 13vw, 160px) 0 clamp(72px, 10vw, 120px);
 }

 .page-hero h1 {
   margin: 0 0 18px;
   max-width: 760px;
   font-size: clamp(2.3rem, 5vw, 4.8rem);
   line-height: 1;
   letter-spacing: -0.06em;
 }

 .page-hero p {
   max-width: 680px;
   margin: 0;
   color: rgba(255, 255, 255, 0.78);
   font-size: 1.1rem;
 }

 .section {
   position: relative;
   padding-top: clamp(30px, 9vw, 40px);
   padding-bottom: clamp(30px, 9vw, 40px);
   box-shadow: var(--section-shadow);
 }

 .content-narrow {
   max-width: 850px;
 }

 .section h2 {
   margin: 0 0 24px;
   color: var(--blue-900);
   font-size: clamp(1.2rem, 4vw, 1.4rem);
   line-height: 1.6;
 }

 .section p {
   margin: 0 0 18px;
   font-size: clamp(1.02rem, 1.35vw, 1.16rem);
   color: var(--muted);
 }

 .intro-section,
 .contact-section {
   background: var(--white);
 }

 .split-section {
   background: var(--blue-100);
 }

 .beige-band {
   background: var(--beige-100);
 }

 .lightgray-band {
   background-color: #f1f1f1;
 }

 .reveal-on-scroll,
 .reveal-from-left,
 .reveal-from-right,
 .reveal-from-top,
 .reveal-from-bottom,
 .reveal-fade,
 #c44 ul li {
   opacity: 0;
   -webkit-transform: translate(var(--reveal-x, 0), var(--reveal-y, 28px));
   transform: translate(var(--reveal-x, 0), var(--reveal-y, 28px));
   -webkit-transition:
     opacity var(--reveal-duration, 0.8s) ease,
     -webkit-transform var(--reveal-duration, 0.8s) ease;
   transition:
     opacity var(--reveal-duration, 0.8s) ease,
     -webkit-transform var(--reveal-duration, 0.8s) ease,
     transform var(--reveal-duration, 0.8s) ease;
   -webkit-transition-delay: var(--reveal-delay, 0s);
   transition-delay: var(--reveal-delay, 0s);
   will-change: opacity, transform;
 }

 .reveal-on-scroll.is-visible,
 .reveal-from-left.is-visible,
 .reveal-from-right.is-visible,
 .reveal-from-top.is-visible,
 .reveal-from-bottom.is-visible,
 .reveal-fade.is-visible,
 #c44 ul li.is-visible {
   opacity: 1;
   -webkit-transform: translate(0, 0);
   transform: translate(0, 0);
 }

 .reveal-from-left {
   --reveal-x: -48px;
   --reveal-y: 0;
 }

 .reveal-from-right {
   --reveal-x: 68px;
   --reveal-y: 0;
 }

 .reveal-from-top {
   --reveal-x: 0;
   --reveal-y: -32px;
 }

 .reveal-from-bottom {
   --reveal-x: 0;
   --reveal-y: 68px;
 }

 .reveal-heading {
   --reveal-x: -68px;
   --reveal-y: 0;
   --reveal-duration: 0.7s;
 }

 .reveal-fade {
   --reveal-x: 0;
   --reveal-y: 0;
   --reveal-duration: 2s;
 }

 .reveal-text {
   --reveal-y: 24px;
   --reveal-delay: 0.16s;
   --reveal-duration: 0.9s;
 }

 .reveal-delay-1 {
   --reveal-delay: 0.12s;
 }

 .reveal-delay-2 {
   --reveal-delay: 0.24s;
 }

 .reveal-delay-3 {
   --reveal-delay: 0.36s;
 }

 .reveal-delay-4 {
   --reveal-delay: 0.48s;
 }

 .split-inner {
   display: grid;
   grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1.2fr);
   gap: clamp(40px, 8vw, 100px);
 }

 .text-flow {
   max-width: 700px;
 }

 .site-footer {
   background: var(--blue-900);
   color: var(--white);
   padding: 36px 0 28px;
 }

 .footer-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 42px;
   margin-bottom: 2.2rem;
 }

 .site-footer h3 {
   margin: 0 0 14px;
   color: var(--beige-200);
   font-size: 1rem;
   text-transform: uppercase;
   letter-spacing: 0.12em;
 }

 .site-footer p,
 .site-footer li {
   color: rgba(255, 255, 255, 0.78);
   margin: 0 0 0px;
 }

 .site-footer ul {
   list-style: none;
   padding: 0;
   margin: 0;
 }

 .site-footer a {
   color: rgba(255, 255, 255, 0.86);
   text-decoration: none;
 }

 .site-footer a:hover {
   color: var(--beige-200);
 }

 .footer-bottom {
   position: relative;
   /* margin-top: 48px; */
   padding-top: 24px;
   color: rgba(255, 255, 255, 0.62);
   font-size: 0.9rem;
   display: flex;
   align-items: center;
   /* justify-content: space-between; */
   justify-content: center;
   gap: 18px;
 }

 .footer-bottom::before {
   content: "";
   position: absolute;
   top: 0;
   left: 50%;
   width: 100vw;
   height: 1px;
   transform: translateX(-50%);
   background: rgba(255, 255, 255, 0.16);
 }

 .social-links {
   display: flex;
   align-items: center;
   gap: 12px;
 }

 .social-links a {
   width: 34px;
   height: 34px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   border: 1px solid rgba(255, 255, 255, 0.24);
   color: rgba(255, 255, 255, 0.78);
 }

 .social-links a:hover {
   color: var(--beige-200);
   border-color: var(--beige-200);
 }

 .social-links svg {
   width: 18px;
   height: 18px;
   fill: currentColor;
 }

 @media (max-width: 820px) {
   :root {
     --container-padding: 18px;
     --slider-height: 300px;
   }

   .nav-toggle {
     display: inline-flex;
     flex: 0 0 44px;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 5px;
     margin-left: auto;
     width: 44px;
     height: 44px;
     padding: 0;
     border: 0;
     background: transparent;
     color: var(--blue-100);
   }

   .header-inner {
     position: relative;
   }

   .nav-toggle span {
     display: block;
     width: 28px;
     height: 3px;
     background: currentColor;
   }

   .main-nav {
     position: absolute;
     top: 100%;
     left: 50%;
     right: auto;
     width: 100vw;
     transform: translateX(-50%);
     display: none;
     flex-direction: column;
     align-items: flex-start;
     gap: 0;
     padding: 10px max(18px, env(safe-area-inset-right)) 22px max(18px, env(safe-area-inset-left));
     background: var(--nav-dropdown-bg);
     border-bottom: 1px solid rgba(25, 71, 134, 0.08);
   }

   .main-nav.open {
     display: flex;
   }

   .nav-item {
     width: 100%;
   }

   .main-nav a {
     display: block;
     padding: 11px 0;
   }

   .dropdown {
     position: static;
     min-width: 0;
     width: 100%;
     display: block;
     padding: 0 0 6px 16px;
     box-shadow: none;
     border: 0;
     opacity: 1;
     visibility: visible;
     transform: none;
     background: var(--nav-dropdown-bg);
   }

   .dropdown a {
     padding: 7px 0;
     font-size: 1rem;
     color: #cde5ff;
   }

   /* .slide::after { background: rgba(25,71,134,0.62); } */
   .slide-content {
     bottom: 92px;
   }

   .split-inner,
   .footer-grid {
     grid-template-columns: 1fr;
   }
 }

 @media (prefers-reduced-motion: reduce) {
   html {
     scroll-behavior: auto;
   }

   .reveal-on-scroll,
   .reveal-from-left,
   .reveal-from-right,
   .reveal-from-top,
   .reveal-from-bottom,
   .reveal-fade {
     opacity: 1;
     -webkit-transform: none;
     transform: none;
     -webkit-transition: none;
     transition: none;
   }
 }

 @media (max-width: 520px) {
   :root {
     --slider-height: 240px;
   }

   .header-inner {
     min-height: 66px;
   }

   .slide-content h1,
   .slide-content h2 {
     font-size: 2.25rem;
   }

   .footer-bottom {
     flex-direction: column;
     align-items: center;
     text-align: center;
   }
 }




 /** @section Icons */
 .icon {
   display: inline-block;
   font-size: 20px;
   line-height: 1;
 }

 .icon::before {
   position: relative;
   display: inline-block;
   font-weight: 400;
   font-style: normal;
   text-transform: none;
 }


 .social-list {
   display: flex;
   justify-content: center;
 }

 .social-list li+li {
   margin-left: 20px;
 }

 .social-list li a {
   /* color: #616972; */
   display: flex;
   flex-direction: column;
   justify-content: center;
   text-align: center;
   border-radius: 50%;
 }

 .social-list li a .icon {
   font-size: 20px;
 }

 .social-list li a:hover {
   color: #ffffff;
 }

 footer {
   text-align: center;
 }

 .slide1 img {
   object-position: 45%;
 }

 .slide2 img {
   object-position: 26%;
 }

 .slide3 img {
   object-position: 30%;
 }

 .custom-row {
   display: flex;
 }

 .start-text {
   width: 56%;
   text-align: center;
 }

 .start-text h4 {
   color: var(--beige-300);
   font-weight:400;
   margin: 0 .2rem;
   font-size: clamp(1.02rem, 1.35vw, 1.16rem);
 }

 .start-text h2 {
   color: var(--blue-900);
   font-size: 2.4rem;
   letter-spacing: 4px;
   font-family: var(--font-body);
 }

 .start-text h3 {
   color: var(--blue-900);
   line-height: 2.2rem;
   font-size: 1.6rem;
 }

 .dahlke {
   margin-top: -1.2rem;
 }


 .start-text p {
   color: var(--blue-900);
   line-height: 2.2;
   margin-top: 2rem;
 }


 @media (max-width: 820px) {
   .start-text {
     width: 100%;
   }

   .custom-row {
     flex-direction: column;
   }
 }

 .start-img {
   display: flex;
   justify-content: center;
 }

 .start-img img {
   width: 100%;
   height: auto;
 }

 .start-img .image {
   width: 20rem;
 }

 /* TextPic responsivity  */

 .ce-bodytext {
   padding: 0 3rem;
 }


 /* .ce-row {
  display:flex;
  justify-content: center;
} */

 @media (max-width: 767px) {
   .ce-textpic {
     display: block;
   }

   .ce-textpic .ce-gallery,
   .ce-textpic .ce-bodytext {
     float: none;
     width: 100%;
   }

   .ce-textpic .ce-gallery {
     margin-left: 0;
     margin-right: 0;
     margin-bottom: 1.5rem;
   }

   .ce-textpic img {
     max-width: 100%;
     height: auto;
   }
 }

 .start-roles {
   font-weight: 600;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 0.35rem;
   color: var(--blue-900);
   line-height: 1.8;
   margin-top: 2rem;
 }

 .start-roles span {
   display: inline-flex;
   align-items: center;
   gap: 0.45rem;
   font-family: "Copperplate Gothic Light";
 }

 .role-icon {
   width: 0.95em;
   height: 0.95em;
   flex: 0 0 auto;
   background: currentColor;
   -webkit-mask: url("../img/Icons/sun.svg") center / contain no-repeat;
   mask: url("../img/Icons/sun.svg") center / contain no-repeat;
 }

 #c27 h3 {
   margin: 0;
 }

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

 .text-beige-300 {
   color: var(--beige-300);
 }

 h2.text-beige-300,
 .section h2.text-beige-300 {
   color: var(--beige-300);
 }

 /* ####################### Cards Beg ####################### */

 /* Float four columns side by side */
 .column {
   float: left;
   width: 25%;
   padding: 0 10px;
 }

 /* Remove extra left and right margins, due to padding */
 .row {
   margin: 0 -5px;
 }

 /* Clear floats after the columns */
 .row:after {
   content: "";
   display: table;
   clear: both;
 }

 .card-row {
   display: flex;
   justify-content: center;
 }

 /* Responsive columns */
 @media screen and (max-width: 600px) {
   .column {
     width: 100%;
     display: block;
     margin-bottom: 20px;
   }
 }

 /* Style the counter cards */
 .card {
   box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
   padding: 16px;
   text-align: center;
 }

 .sb-container .row {
   display: flex;
   flex-wrap: wrap;
   align-items: stretch;
   gap: 20px;
   margin: 0;
 }

 .sb-container .column {
   display: flex;
   flex: 0 0 calc((100% - 60px) / 4);
   min-width: min(100%, 240px);
   padding: 0;
 }

 .sb-container .card {
   width: 100%;
   height: 100%;
 }


 @media screen and (max-width: 600px) {
   .sb-container .column {
     flex: 0 0 100%;
     min-width: 0;
     width: 100%;
     justify-content: center;
   }

   .sb-container .card {
     width: 80%;
   }
 }


 /* ####################### Cards End ####################### */

 /* c50 beratung / terminvereinbarung */

 #c50 .image {
   margin: 0 4rem;
 }


 /* #c50  */
 .ce-row {
   display: flex;
   justify-content: center;
 }

 @media (max-width: 767px) {
   #c50 .ce-bodytext {
     text-align: center;
     margin-top: 2rem;
     overflow: initial;
   }
 }

 @media (max-height: 420px) {
   img {
     width: 80%;
   }

 }


 /*  c20 über mich / bild */
 #c20 figure {
   margin: 0 2rem;
 }


 /*  c11 beratung / section kennst du das ? */

 #c11 {
   padding-top: 2rem;
 }


 /*  c44 beratung / liste kennst du das ? */

 #c44 ul {
   --reveal-x: -68px;
   --reveal-y: 0;
   --reveal-delay: 0.36s;
   display: grid;
   gap: 0.7rem;
   margin: 0 0 18px;
   padding: 0;
   color: var(--muted);
   font-size: clamp(1.02rem, 1.35vw, 1.16rem);
   font-style: italic;
   line-height: 1.7;
   list-style: none;
 }

 #c44 ul li {
   position: relative;
   padding-left: 1.8rem;
   font-size: inherit;
 }

 #c44 ul li p {
   margin-bottom: 0;
 }


 #c44 ul li::before {
   content: "";
   position: absolute;
   top: 0.42em;
   left: 0;
   width: 0.95em;
   height: 0.95em;
   background: var(--blue-900);
   -webkit-mask: url("../img/Icons/sun.svg") center / contain no-repeat;
   mask: url("../img/Icons/sun.svg") center / contain no-repeat;
 }

 .ce-gallery figure {
   display: flex;
   margin: 0;
   justify-content: center;
 }

 .site-preloader {
   position: fixed;
   inset: 0;
   z-index: 9999;
   display: flex;
   align-items: center;
   justify-content: center;
   background: var(--white);
   opacity: 1;
   visibility: visible;
   transition:
     opacity 0.35s ease,
     visibility 0.35s ease;
 }

 .site-preloader-inner {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 22px;
 }

 .site-preloader img {
   width: 56px;
   height: auto;
 }

 .site-preloader-spinner {
   width: 34px;
   height: 34px;
   border: 3px solid rgba(25, 71, 134, 0.18);
   border-top-color: var(--blue-900);
   border-radius: 50%;
   animation: site-preloader-spin 0.8s linear infinite;
 }

 body.is-loaded .site-preloader-inner {
   display: none;
 }

 body.is-loaded .site-preloader {
   opacity: 0;
   visibility: hidden;
   pointer-events: none;
 }

 body:not(.is-loaded) {
   overflow: hidden;
 }

 @keyframes site-preloader-spin {
   to {
     transform: rotate(360deg);
   }
 }

 @media (prefers-reduced-motion: reduce) {
   .site-preloader {
     transition: none;
   }

   .site-preloader-spinner {
     animation: none;
   }
 }

 .nav-logo {
   display: inline-flex;
   align-items: center;
   flex: 0 0 auto;
   width: 2.2rem;   
   line-height: 0;
 }

 .nav-logo img {
   display: block;
   width: 100%;
   height: auto;
  }
