/* -----------------------------
   1. Box sizing
----------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* -----------------------------
   2. Remove default margin
----------------------------- */
* {
  margin: 0;
}
/* -----------------------------
   3. Core body defaults
----------------------------- */
html:focus-within {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
/* -----------------------------
   4. Media defaults
----------------------------- */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
/* -----------------------------
   5. Form elements inherit fonts
----------------------------- */
input,
button,
textarea,
select {
  font: inherit;
}
/* -----------------------------
   6. Remove built-in form styles
----------------------------- */
button {
  background: none;
  border: none;
  cursor: pointer;
}
/* -----------------------------
   7. Headings & text overflow
----------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
p {
  overflow-wrap: break-word;
}
/* -----------------------------
   8. Root stacking context
----------------------------- */
#root,
#__next {
  isolation: isolate;
}
/* -----------------------------
   9. Lists without styles
----------------------------- */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}
/* -----------------------------
   10. Reduce motion (Accessibility)
----------------------------- */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 16px;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  vertical-align: middle;
}
button {
  appearance: none;
}
ol,
ul {
  margin: 0 0 1.5em;
}
/* spacing.css – Margin utility classes
   Werte basieren auf den CSS-Variablen:
   --space-sm: 20px  |  --space-md: 40px  |  --space-lg: 80px  |  --space-xl: 120px

   Klassen-Schema:
   mt-* = margin-top    mb-* = margin-bottom    my-* = margin-top + bottom
   Responsive: mt-md-* greift ab 768px, mt-lg-* ab 900px
*/
/* ── Base ─────────────────────────────────────── */
.mt-sm {
  margin-top: var(--space-sm);
}
.mt-md {
  margin-top: var(--space-md);
}
.mt-lg {
  margin-top: var(--space-lg);
}
.mt-xl {
  margin-top: var(--space-xl);
}
.mb-sm {
  margin-bottom: var(--space-sm);
}
.mb-md {
  margin-bottom: var(--space-md);
}
.mb-lg {
  margin-bottom: var(--space-lg);
}
.mb-xl {
  margin-bottom: var(--space-xl);
}
.my-sm {
  margin-top: var(--space-sm);
  margin-bottom: var(--space-sm);
}
.my-md {
  margin-top: var(--space-md);
  margin-bottom: var(--space-md);
}
.my-lg {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-lg);
}
.my-xl {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-xl);
}
.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}
.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}
/* ── ab 768px ─────────────────────────────────── */
@media (min-width: 768px) {
  .mt-md\:sm {
    margin-top: var(--space-sm);
  }
  .mt-md\:md {
    margin-top: var(--space-md);
  }
  .mt-md\:lg {
    margin-top: var(--space-lg);
  }
  .mt-md\:xl {
    margin-top: var(--space-xl);
  }

  .mb-md\:sm {
    margin-bottom: var(--space-sm);
  }
  .mb-md\:md {
    margin-bottom: var(--space-md);
  }
  .mb-md\:lg {
    margin-bottom: var(--space-lg);
  }
  .mb-md\:xl {
    margin-bottom: var(--space-xl);
  }

  .my-md\:sm {
    margin-top: var(--space-sm);
    margin-bottom: var(--space-sm);
  }
  .my-md\:md {
    margin-top: var(--space-md);
    margin-bottom: var(--space-md);
  }
  .my-md\:lg {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-lg);
  }
  .my-md\:xl {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-xl);
  }
}
/* ── ab 900px ─────────────────────────────────── */
@media (min-width: 900px) {
  .mt-lg\:sm {
    margin-top: var(--space-sm);
  }
  .mt-lg\:md {
    margin-top: var(--space-md);
  }
  .mt-lg\:lg {
    margin-top: var(--space-lg);
  }
  .mt-lg\:xl {
    margin-top: var(--space-xl);
  }

  .mb-lg\:sm {
    margin-bottom: var(--space-sm);
  }
  .mb-lg\:md {
    margin-bottom: var(--space-md);
  }
  .mb-lg\:lg {
    margin-bottom: var(--space-lg);
  }
  .mb-lg\:xl {
    margin-bottom: var(--space-xl);
  }

  .my-lg\:sm {
    margin-top: var(--space-sm);
    margin-bottom: var(--space-sm);
  }
  .my-lg\:md {
    margin-top: var(--space-md);
    margin-bottom: var(--space-md);
  }
  .my-lg\:lg {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-lg);
  }
  .my-lg\:xl {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-xl);
  }
}
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 300 500;
  src: url("assets/fonts/inter/inter-latin.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300 400;
  src: url("assets/fonts/cormorant-garamond/cormorant-garamond-latin.woff2")
    format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  src: url("assets/fonts/cormorant-garamond/cormorant-garamond-600-latin.woff2")
    format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 300 400;
  src: url("assets/fonts/cormorant-garamond/cormorant-garamond-italic-latin.woff2")
    format("woff2");
}
html {
  font-synthesis: none;
  font-size: 70%; /* = 12px — hier zentral skalieren, z.B. 81.25% = 13px */
}
body {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  color: var(--gray);
  font-weight: 300;
}
p {
  line-height: 1.75;
  margin-bottom: 20px;
}
h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.15;
  font-weight: 300;
}
.h2-pre {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}
.h2-subline {
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--mid);
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 20px;
}
h2 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
h3 {
  font-size: 2rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 10px;
}
.leftline {
  font-weight: 400;
  border-left: 1.5px solid var(--accent);
  padding-left: 14px;
  line-height: 1.7;
  margin-bottom: 28px;
}
p > a {
  color: var(--accent);
  font-weight: 400;
  text-decoration: underline;
}
#webinare .gb-loop-item {
  background-color: var(--cream);
}
/* Webinar-Auflistung loop Startseite */
.event-card {
  h2 a:hover {
    color: var(--accent);
  }
}
.event-card__image {
  position: relative;
  img {
    width: 100%;
    transition: transform 0.4s ease;
  }
}
.event-card__image::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.4;
  top: 0;
  left: 0;
  z-index: 1;
  transition: opacity 0.3s;
}
.event-card__image:hover::before {
  opacity: 0;
}
.event-card__image::after {
  content: attr(data-date);
  position: absolute;
  top: 12px;
  left: -12px;
  background-color: var(--accent);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 6px 10px;
  font-size: 1.4rem;
  border-radius: 4px;
  z-index: 2;
}
.event_date-source {
  display: none;
}
.event_date-video {
  background-color: var(--accent);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 6px 10px;
  font-size: 1.4rem;
  border-radius: 4px;
  position: absolute;
  transform: translateY(-63px);
  z-index: 2;
}
/* Webinar-Einzelseite */
.webinar__hero {
  display: flex;
  align-items: stretch;
  min-height: 60vh; /* kannst du anpassen */
  flex-direction: row-reverse;
}
/* Beide Seiten gleich groß */
.webinar__hero--left,
.webinar__hero--right {
  flex: 1 1 50%;
}
/* Linke Seite (Content) */
.webinar__hero--left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}
/* Rechte Seite (Bild) */
.webinar__hero--right {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
/* modal styles  */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  overflow-y: auto;
}
.modal-overlay.is-open {
  display: flex;
  align-items: start;
  justify-content: center;
}
.modal-container {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  max-width: 600px;
  width: 90%;
  margin: 2rem auto;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  font-size: 2rem;
  padding: 10px;
  color: #fff;
  background-color: var(--cream);
  cursor: pointer;
  line-height: 1;
  color: var(--accent);
}
@media (max-width: 768px) {
  .webinar__hero {
    flex-direction: column;
  }

  .webinar__hero--left,
  .webinar__hero--right {
    flex: 1 1 auto;
    width: 100%;
  }

  .webinar__hero--right {
    min-height: 300px;
  }
}
/* ─── STIMMEN (SmartSlider) ─── */
.stimme-bild {
  transform: translateY(50px);
  overflow: visible;
}
/* SmartSlider clippt sonst den drop-shadow des Bildes */
#n2-ss-9 .n2-ss-item-image-content,
#n2-ss-9 .n2-ss-slide {
  overflow: visible;
}
.stimme-bild-img {
  border-radius: 100px !important;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.18));
}
/* =========================
   HEADER
========================= */
.my-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  height: 62px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-l);
  max-width: 1200px;
}
/* =========================
   LOGO
========================= */
.logo {
  flex-shrink: 0;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
/* =========================
   NAV LINKS (Desktop)
========================= */
.my-nav {
  display: flex;
  align-items: center;
}
.my-menu {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.my-menu > li > a {
  color: var(--gray);
  text-decoration: none;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.my-menu > li > a:hover {
  color: var(--black);
}
.my-menu > li > a:not([href]) {
  cursor: pointer;
}
/* =========================
   NAV RIGHT
========================= */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
/* =========================
   CTA
========================= */
.nav-cta {
  background: var(--black);
  color: var(--white) !important;
  border: none;
  padding: 9px 22px;
  font-size: 1.25rem;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  transition: background 0.2s;
  border-radius: 0;
}
.nav-cta:hover {
  background: var(--mid);
}
/* =========================
   BURGER
========================= */
.my-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}
.my-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--black);
  border-radius: 999px;
  transform-origin: center;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.my-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.my-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.my-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* =========================
   SUBMENU
========================= */
.my-menu li {
  position: relative;
}
.menu-item-has-children > a {
  position: relative;
  padding-right: 18px;
}
.menu-item-has-children > a::after {
  content: "›";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 0.8;
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}
.menu-item-has-children.is-open > a::after {
  transform: rotate(90deg);
}
.my-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 8px 0;
  list-style: none;
  margin: 0;
  z-index: 100;
}
.my-menu .sub-menu.is-open {
  display: block;
}
.my-menu .sub-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--dark);
  font-size: 1.15rem;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}
.my-menu .sub-menu li a:hover {
  color: var(--accent);
  background: rgba(0, 0, 0, 0.03);
}
/* =========================
   MOBILE (< 900px)
========================= */
@media (max-width: 900px) {
  .logo {
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
  }

  .logo img {
    height: auto;
    max-height: 40px;
    width: auto;
    max-width: 100%;
  }

  .my-burger {
    display: flex;
  }

  .my-nav {
    display: block;
    position: absolute;
    top: 62px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    clip-path: inset(0 0 100% 0);
  }

  .my-menu {
    flex-direction: column;
    align-items: stretch;
    padding: 16px 0 24px;
    gap: 0;
  }

  .my-menu > li > a {
    display: block;
    padding: 12px 6vw;
    font-size: 1.4rem;
    color: var(--dark);
  }

  .my-menu > li > a:hover {
    color: var(--accent);
  }

  .my-menu .sub-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 0 20px;
    border-left: 2px solid rgba(0, 0, 0, 0.06);
    margin: 0 6vw 8px;
  }
}
/* brevo  */
@font-face {
  font-display: block;
  font-family: Roboto;
  src:
    url(https://assets.brevo.com/font/Roboto/Latin/normal/normal/7529907e9eaf8ebb5220c5f9850e3811.woff2)
      format("woff2"),
    url(https://assets.brevo.com/font/Roboto/Latin/normal/normal/25c678feafdc175a70922a116c9be3e7.woff)
      format("woff");
}
@font-face {
  font-display: fallback;
  font-family: Roboto;
  font-weight: 600;
  src:
    url(https://assets.brevo.com/font/Roboto/Latin/medium/normal/6e9caeeafb1f3491be3e32744bc30440.woff2)
      format("woff2"),
    url(https://assets.brevo.com/font/Roboto/Latin/medium/normal/71501f0d8d5aa95960f6475d5487d4c2.woff)
      format("woff");
}
@font-face {
  font-display: fallback;
  font-family: Roboto;
  font-weight: 700;
  src:
    url(https://assets.brevo.com/font/Roboto/Latin/bold/normal/3ef7cf158f310cf752d5ad08cd0e7e60.woff2)
      format("woff2"),
    url(https://assets.brevo.com/font/Roboto/Latin/bold/normal/ece3a1d82f18b60bcce0211725c476aa.woff)
      format("woff");
}
#sib-container input:-ms-input-placeholder {
  text-align: left;
  font-family: Helvetica, sans-serif;
  color: #514f5a;
}
#sib-container input::placeholder {
  text-align: left;
  font-family: Helvetica, sans-serif;
  color: #514f5a;
}
#sib-container textarea::placeholder {
  text-align: left;
  font-family: Helvetica, sans-serif;
  color: #514f5a;
}
#sib-container a {
  text-decoration: underline;
  color: #514f5a;
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.apo-hero {
  --space: clamp(18px, 2.4vw, 28px);
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: stretch;

  padding: 90px clamp(22px, 5vw, 48px) clamp(24px, 4vh, 40px);

  isolation: isolate;
}
.hero-bg {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
}
.apo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(246, 243, 241, 0.7);
}
.apo-content {
  z-index: 2;
  position: relative;
  width: 100%;
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: clamp(10px, 1.8vw, 26px);
}
.apo-eyebrow {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gray);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.apo-headline {
  margin: 0;

  display: flex;
  flex-direction: column;
}
.apo-headline-top,
.apo-headline-main {
  font-size: clamp(3.4rem, 4vw, 5.4rem);
  color: var(--black);
  font-weight: 300;
  line-height: 1.1;
}
.apo-headline-main {
  font-size: clamp(3.4rem, 4vw, 5.4rem);
  margin-bottom: 20px;
}
.apo-headline-main span {
  color: var(--accent);
}
.apo-line {
  width: clamp(46px, 8vw, 64px);
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
}
.apo-subline {
  font-size: 1.5rem;
  color: var(--mid);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.75;
  font-weight: 300;
}
@media screen and (min-width: 900px) {
  .apo-overlay {
    background: linear-gradient(
      90deg,
      rgba(246, 243, 241, 0.985) 0%,
      rgba(246, 243, 241, 0.94) 18%,
      rgba(246, 243, 241, 0.82) 38%,
      rgba(246, 243, 241, 0.48) 58%,
      rgba(246, 243, 241, 0.12) 76%,
      rgba(246, 243, 241, 0) 100%
    );
  }

  .hero-bg {
    left: 20%;
    background-position: 10% 0%;
    background-repeat: no-repeat;
    mask-image: linear-gradient(to right, transparent 0%, black 10%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%);
  }

  .apo-content {
    width: 50%;
  }
}
/* später löschen */
/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  padding-top: 62px;
}
.hero-l {
  background: var(--cream-l);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 5vw 80px 7vw;
  border-right: 1px solid var(--border);
}
.eyebrow {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gray);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(3.4rem, 4vw, 5.4rem);
  color: var(--black);
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.1;
}
.hero-sub {
  font-size: 1.5rem;
  color: var(--mid);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.75;
  font-weight: 300;
}
.hero-bens {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.hb {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.hb-bar {
  width: 1.5px;
  min-height: 40px;
  background: var(--border);
  flex-shrink: 0;
  margin-top: 3px;
}
.hb strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 2px;
}
.hb span {
  font-size: 1.25rem;
  color: var(--black);
  font-weight: 300;
}
.ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-dark {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 13px 28px;
  font-size: 1.3rem;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn-dark:hover {
  background: var(--mid);
}
.btn-out {
  background: transparent;
  color: var(--mid);
  border: 1px solid var(--border);
  padding: 13px 28px;
  font-size: 1.3rem;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-out:hover {
  border-color: var(--dark);
  color: var(--dark);
}
.hero-r {
  position: relative;
  overflow: hidden;
}
.hero-r img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
/* TRUST */
.trust {
  background: var(--white);
  border-bottom: 1px solid var(--border-l);
  padding: 22px 7vw;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  text-align: center;
}
.trust-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--black);
}
.trust-label {
  font-size: 1.15rem;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.4;
  margin-top: 2px;
}
.trust-div {
  width: 1px;
  height: 36px;
  background: var(--border);
}
/* SECTIONS */
section {
  padding: 88px 7vw;
}
.slabel {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 14px;
  display: block;
}
.stitle {
  font-size: clamp(2.8rem, 3.5vw, 4.4rem);
  color: var(--black);
  margin-bottom: 14px;
  font-weight: 300;
}
.ssub {
  font-size: 1.5rem;
  color: var(--gray);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 48px;
  font-weight: 300;
}
.rule {
  width: 36px;
  height: 1px;
  background: var(--border);
  margin: 18px 0 36px;
}
/* PAIN */
.pain {
  background: var(--cream-l);
}
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.stat-row {
  display: flex;
  gap: 48px;
  margin: 24px 0 32px;
}
.stat-big {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(6rem, 8vw, 9rem);
  font-weight: 300;
  color: var(--black);
  line-height: 1;
}
.stat-lbl {
  font-size: 1.25rem;
  color: var(--gray);
  margin-top: 6px;
  line-height: 1.5;
  font-weight: 300;
  max-width: 140px;
}
.pp-list {
  display: flex;
  flex-direction: column;
}
.pp {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-l);
}
.pp:first-child {
  border-top: 1px solid var(--border-l);
}
.pp-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: var(--border);
  min-width: 20px;
  padding-top: 2px;
}
.pp strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 3px;
}
.pp span {
  font-size: 1.3rem;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.6;
}
/* SOLUTION */
.sol {
  background: var(--cream-m);
}
.sol-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.sc {
  background: var(--cream-l);
  padding: 32px 26px;
  transition: background 0.2s;
}
.sc:hover {
  background: var(--white);
}
.sc-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.6rem;
  font-weight: 300;
  color: var(--border);
  margin-bottom: 14px;
  display: block;
}
.sc h3 {
  font-size: 1.8rem;
  color: var(--black);
  margin-bottom: 10px;
  font-weight: 400;
}
.sc p {
  font-size: 1.3rem;
  color: var(--mid);
  line-height: 1.65;
  font-weight: 300;
}
.sol-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 32px;
}
.sol-img-card {
  overflow: hidden;
  background: var(--white);
}
.sol-img-card img {
  width: 100%;
  object-fit: cover;
  display: block;
}
.sol-img-cap {
  padding: 14px 18px;
  font-size: 1.15rem;
  color: var(--gray);
  font-weight: 300;
  border-top: 1px solid var(--border-l);
}
.sol-ex {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 48px;
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 0;
  align-items: center;
}
.ex-v {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.6rem, 5.5vw, 6.8rem);
  font-weight: 300;
  color: var(--black);
  line-height: 1;
  text-align: center;
}
.ex-v.after {
  color: var(--gray);
}
.ex-lbl {
  font-size: 1.2rem;
  color: var(--gray);
  margin-top: 5px;
  letter-spacing: 0.04em;
  text-align: center;
}
.ex-arr {
  text-align: center;
  color: var(--border);
  font-size: 2.2rem;
}
.ex-note {
  font-size: 1.3rem;
  color: var(--gray);
  text-align: center;
  grid-column: 1/-1;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-l);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
}
/* APO */
.apo {
  background: var(--white);
}
.apo-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 52px;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.pill {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--border);
  font-size: 1.25rem;
  color: var(--mid);
  font-weight: 300;
}
.apo-res {
  font-size: 1.4rem;
  color: var(--gray);
  border-left: 1.5px solid var(--dark);
  padding-left: 14px;
  line-height: 1.75;
  margin-top: 24px;
  font-weight: 300;
}
.apo-res strong {
  color: var(--dark);
  font-weight: 400;
}
.koop-head {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  color: var(--black);
  margin-bottom: 24px;
  font-weight: 300;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.koop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.kc {
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: background 0.15s;
}
.kc:hover {
  background: var(--cream-l);
}
.kc-bar {
  height: 3px;
}
.kc-body {
  padding: 26px 22px;
  flex: 1;
}
.kc-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--border);
  margin-bottom: 10px;
  display: block;
}
.kc-badge {
  display: inline-block;
  font-size: 1rem;
  padding: 3px 10px;
  border: 1px solid var(--accent);
  background-color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  font-weight: 400;
  color: white;
  text-transform: uppercase;
}
.kc-badge.free {
  border-color: var(--dark);
  color: white;
}
.kc-title {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 9px;
  font-family: "Cormorant Garamond", serif;
}
.kc-exp {
  display: block;
  margin-top: 0.75rem;
  margin-bottom: 1.75rem;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent, #1c1c1a);
}
.kc-sub {
  margin: 0.25rem 0 3rem;
  font-size: 1.2rem;
  color: #6b6b66;
  font-weight: bold;
}
.kc-desc {
  font-size: 1.3rem;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 16px;
  font-weight: 300;
}
.kc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.kc-list li {
  font-size: 1.25rem;
  color: var(--dark);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-weight: 300;
  line-height: 1.5;
}
.kc-list li::before {
  content: "—";
  flex-shrink: 0;
  color: var(--accent);
}
.kc-list li.bon::before {
  content: "★";
  color: var(--dark);
}
.kc-foot {
  padding: 16px 22px;
  background: var(--cream-l);
  border-top: 1px solid var(--border-l);
}
.kc-fl {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 7px;
  text-transform: uppercase;
}
.kc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 12px;
}
.kc-tag {
  font-size: 1.05rem;
  padding: 2px 8px;
  border: 1px solid var(--black);
  color: var(--black);
  font-weight: 300;
}
.kc-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
  font-size: 1.25rem;
  font-weight: 400;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--dark);
  transition: all 0.2s;
  text-decoration: none;
}
.kc-btn:hover {
  background: var(--dark);
  color: var(--white);
}
.kc-btn.prim {
  background: var(--accent);
  color: var(--white);
}
.kc-btn.prim:hover {
  background: var(--mid);
}
/* PARTNER LOGOS */
.partner-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border-l);
  flex-wrap: wrap;
}
.partner-label {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
}
.partner-logo-img {
  height: 28px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: opacity 0.2s;
}
.partner-logo-img:hover {
  opacity: 0.8;
}
.partner-logo-text {
  font-size: 1.1rem;
  color: var(--gray);
  font-weight: 400;
  letter-spacing: 0.03em;
  opacity: 0.7;
  border: 1px solid var(--border);
  padding: 4px 10px;
}
/* STEPS */
.steps {
  background: var(--cream);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.step {
  background: var(--cream);
  padding: 32px 28px;
}
.step-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.8rem;
  font-weight: 300;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.step h3 {
  font-size: 2rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 10px;
}
.step p {
  font-size: 1.35rem;
  color: var(--gray);
  line-height: 1.65;
  font-weight: 300;
}
/* TESTI */
.testi {
  background: var(--white);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.tc {
  background: var(--white);
  padding: 28px;
  transition: background 0.15s;
  display: flex;
  flex-direction: column;
}
.tc:hover {
  background: var(--cream-l);
}
.tc-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid var(--border-l);
  flex-shrink: 0;
}
.tc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.tc-photo-init {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--gray);
  margin-bottom: 14px;
}
.tc-q {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.4rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 6px;
}
.tc-text {
  font-size: 1.4rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
  font-weight: 300;
  flex: 1;
}
.tc-name {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--dark);
}
.tc-role {
  font-size: 1.15rem;
  color: var(--gray);
  font-weight: 300;
}
/* TEAM */
.team {
  /* background: var(--cream-l); */
}
.team-prominent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.team-photo-l {
  overflow: hidden;
  padding: 32px 28px;
}
.team-photo-l img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-bio-r {
  background: var(--white);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.team-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.tm {
  background: var(--white);
  padding: 32px 28px;
}
.tm-photo-init {
  height: 200px;
  width: 200px;
  max-width: 100%;
  margin-bottom: 16px;
  overflow: hidden;
}
.tm-photo-init img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tm-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 2px;
}
.tm-role {
  font-size: 1.1rem;
  color: var(--gray);
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tm-bio {
  font-size: 1.3rem;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 10px;
}
.tm-pts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tm-pts li {
  font-size: 1.25rem;
  color: var(--mid);
  font-weight: 300;
  display: flex;
  gap: 8px;
}
.tm-pts li::before {
  content: "—";
  color: var(--accent);
}
/* WEBINARE */
.webinare {
  background: var(--white);
  border-top: 1px solid var(--border-l);
}
.web-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}
.wb {
  background: var(--white);
  padding: 32px 28px;
}
.wb h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 8px;
}
.wb p {
  font-size: 1.35rem;
  color: var(--gray);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 16px;
}
.wb-tag {
  display: inline-block;
  font-size: 1rem;
  padding: 3px 10px;
  border: 1px solid var(--border);
  letter-spacing: 0.06em;
  color: var(--gray);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.mediathek {
  background: var(--cream-l);
  padding: 32px 28px;
}
.med-experts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 20px;
}
.med-experts li {
  font-size: 1.3rem;
  color: var(--mid);
  font-weight: 300;
  padding-left: 14px;
  border-left: 1.5px solid var(--border);
}
/* FAQ */
.faq {
  background: var(--cream-l);
}
.faq-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
}
.fi {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  cursor: pointer;
}
.fi:last-child {
  border-bottom: 1px solid var(--border);
}
.fi-q {
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 7px;
  font-family: "Cormorant Garamond", serif;
}
.fi-a {
  font-size: 1.35rem;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 300;
}
/* FINAL CTA */
.final {
  background: var(--cream-m);
  text-align: center;
  padding: 110px 7vw;
  border-top: 1px solid var(--border);
}
.final h2 {
  color: var(--black);
  font-size: clamp(3.2rem, 5vw, 5.4rem);
  margin-bottom: 14px;
  font-weight: 300;
}
.final p {
  color: var(--mid);
  font-size: 1.5rem;
  max-width: 440px;
  margin: 0 auto 40px;
  line-height: 1.75;
  font-weight: 300;
}
.final-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-wh {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  font-size: 1.3rem;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-wh:hover {
  background: var(--mid);
}
.btn-ow {
  background: transparent;
  color: var(--mid);
  border: 1px solid var(--border);
  padding: 14px 32px;
  font-size: 1.3rem;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-ow:hover {
  border-color: var(--dark);
  color: var(--dark);
}
footer {
  background: var(--cream-m);
  color: var(--gray);
  padding: 24px 7vw;
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid var(--border);
}
footer a {
  color: var(--gray);
  text-decoration: none;
}
footer a:hover {
  color: var(--dark);
}
.fl {
  display: flex;
  gap: 20px;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-l > * {
  animation: fadeUp 0.55s ease both;
}
.hero-l > *:nth-child(1) {
  animation-delay: 0.1s;
}
.hero-l > *:nth-child(2) {
  animation-delay: 0.2s;
}
.hero-l > *:nth-child(3) {
  animation-delay: 0.3s;
}
.hero-l > *:nth-child(4) {
  animation-delay: 0.4s;
}
.hero-l > *:nth-child(5) {
  animation-delay: 0.5s;
}
@media (max-width: 900px) {
  .hero,
  .pain-grid,
  .apo-top,
  .team-prominent,
  .team-2col,
  .web-grid,
  .steps-grid,
  .sol-imgs {
    grid-template-columns: 1fr;
  }
  .hero-r {
    height: 300px;
  }
  .testi-grid,
  .koop,
  .sol-cards {
    grid-template-columns: 1fr;
  }
  .testi-grid,
  .koop,
  .sol-cards,
  .steps-grid {
    gap: 0;
    background: none;
  }
  .sc,
  .kc,
  .tc,
  .step,
  .wb {
    border: 1px solid var(--border);
    margin-bottom: -1px;
  }
  nav .nav-links {
    display: none;
  }
  .stat-row {
    flex-direction: column;
    gap: 24px;
  }
  .trust-div {
    display: none;
  }
  .team-bio-r {
    padding: 32px 28px;
  }
  .sol-ex {
    grid-template-columns: 1fr;
  }
}
.team-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.team-list li::before {
  content: "—";
  color: var(--accent);
  flex-shrink: 0;
}
:root {
  --container: 1200px;
  --space-sm: 20px;
  --space-md: 40px;
  --space-lg: 80px;
  --space-xl: 120px;
  --color-text: #111;
  --black: #111010;
  --dark: #1c1c1a;
  --mid: #4a4a46;
  --gray: #757575;
  --border: #d8d4cc;
  --border-l: #eae6de;
  --cream: #f5f0e8;
  --cream-l: #faf8f4;
  --cream-m: #f2ede4;
  --white: #ffffff;
  --accent: #5a8c6e;
  --border-radius: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--color-text);
}
a:hover,
button:hover,
a:focus {
  text-decoration: none;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0;
}
header.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 40px;
}
section {
  padding: var(--space-lg) 0 0 0;
}
.split-section {
  display: flex;
  align-items: stretch;
  gap: var(--space-lg);
}
.split-section__text {
  flex: 1;
  max-width: 60ch;
  padding: 0 var(--space-sm);
}
.split-section__media {
  flex: 1;
  background-size: cover;
  background-position: center;
}
.single-section {
  margin: var(--space-lg) auto;
  text-align: center;
  max-width: 75%;
}
/* .split-section--reverse {
  flex-direction: row-reverse;
} */
/* Editor-Fix */
.editor-styles-wrapper {
  width: 100%;
}
.editor-styles-wrapper .block-editor-block-list__layout {
  max-width: none;
}
/* Veranstaltungen */
.site-main .wp-block-group__inner-container {
  padding: 0 !important;
}
.post-card {
  position: relative;
}
.post-card h3 {
  margin-top: 20px;
}
.entry-meta {
  display: none;
}
/* mobile */
@media (max-width: 900px) {
  section {
    padding: var(--space-md) 0 0 0;
  }

  .split-section {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .split-section__text,
  .split-section__media {
    flex: unset;
    width: 100%;
  }

  .split-section__text {
    max-width: 100%;
  }

  .split-section__media {
    aspect-ratio: 16/10;
  }

  .single-section {
    margin: var(--space-md) auto;
  }

  .split-section--reverse {
    flex-direction: row-reverse;
  }
}
/* footer */
#footer-widgets {
  background-color: var(--cream);
  color: white;
}
.inside-footer-widgets > div {
  padding: 30px;
}
.footer-widget-1 img {
  max-width: 200px;
}
.footer-widgets .widget {
  margin-bottom: 20px;
}
.copyright-bar {
  display: none;
}
.footer-bar {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
/* youcanbook.me Anpassungen  */
.ycbm_modalCloseButton {
  width: 50px !important;
  height: 50px !important;
}
.ycbm_modalCloseButton img {
  width: 100% !important;
  height: 100% !important;
}
#faq {
  button {
    background-color: #fff !important;
    color: black !important;
    box-shadow: none;
    margin: 0 !important;
  }
  h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
    padding: 5px 0;
  }
  .wp-block-accordion-panel {
    padding: 20px;
    font-size: 1.3rem;
    color: var(--grey);
  }
}
.wp-block-accordion {
  padding: 0 10px;
}
.wp-block-accordion-item {
  margin-bottom: 20px;
  padding: 0 5px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
}
/* buttons */
button,
.btn,
.wp-block-button__link {
  color: var(--white);
  border: none;
  padding: 13px 28px;
  font-size: 1.3rem;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
button:hover,
.wp-block-button__link:hover,
.btn:hover {
  text-decoration: none;
  background-color: var(--mid);
}
#page {
  .btn,
  button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    scale: 1;
    margin: var(--space-sm) 0;
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 13px 28px;
    font-size: 1.3rem;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
  }
  .btn:hover,
  button:hover {
    background-color: var(--mid);
  }

  .ff-default .ff-btn-lg {
    border-radius: 0;
  }

  @media screen and (min-width: 768px) {
    .btn {
      margin: var(--space-md) 0;
    }
  }
}
.termin-btn-container {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 998;
  .termin-btn {
    svg {
      min-width: 20px;
    }
  }
  .termin-btn:hover {
    animation: none;
  }
}
.termin-btn-container-normal {
  .termin-btn {
    /* animation: wobble 4s ease-in-out infinite; */
    svg {
      width: 17px;
    }
  }
}
.webinar__meta .btn {
  margin-top: 20px;
}
#warum {
  background: var(--cream-l);
}
.counters2 > div,
.entry-content .alignwide,
body:not(.no-sidebar) .entry-content .alignfull {
  margin-left: 0;
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
#zusammenarbeit .rule {
  margin: 18px 50% 36px;
  transform: translateX(-50%);
}
.center {
  text-align: center;
}
.accent {
  background-color: var(--accent);
}
#page .accent .btn,
#page .accent button {
  background: white;
  color: var(--accent);
}
/* logo-slider-padding-Anpassung */
body div#n2-ss-13 .n2-ss-slider-3 {
  padding: 0;
}

/*# sourceMappingURL=style.min.css.map */