/* Schriftart Lato – lokal (DSGVO-konform) */
@font-face{
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/lato/Lato-Regular.woff2') format('woff2');
}
@font-face{
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/lato/Lato-Bold.woff2') format('woff2');
}

:root{
  --fd-primary: #5e1e73;
  --fd-primary-600: #4b175b;
  --fd-accent: #00694d;
  --fd-ink: #14151a;
  --fd-muted: #5b6270;
  --fd-surface: #ffffff;
  --fd-surface-2: #f4eff5;
  --fd-surface-3: #ebe4ee;
  --fd-border: rgba(20,21,26,.05);
  --fd-shadow: 0 10px 30px rgba(20,21,26,.12);
  --fd-placeholder: #a8aeb8;

  /* Bootstrap Farbverknüpfung */
  --bs-primary: #5e1e73;
  --bs-primary-rgb: 94,30,115;
  --bs-link-color: #5e1e73;
  --bs-link-hover-color: #4b175b;

  /* Schrift: Lato für gesamte Seite */
  --bs-body-font-family: 'Lato', sans-serif;
  --bs-heading-font-family: 'Lato', sans-serif;
}

html{
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: clip; /* clip statt hidden, damit position:sticky in Nachfahren funktioniert */
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ transition: none !important; animation: none !important; }
  .carousel-fade .carousel-item-next.carousel-item-start,
  .carousel-fade .carousel-item-prev.carousel-item-end,
  .carousel-fade .carousel-item-next,
  .carousel-fade .carousel-item-prev{ transform: none; }
  .carousel-fade .carousel-item-next.active,
  .carousel-fade .carousel-item-prev.active,
  .carousel-fade .carousel-item.active{ transform: none; }
}

body{
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
  color: var(--fd-ink);
  background: var(--fd-surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  max-width: 100%;
  overflow-x: clip; /* clip statt hidden, damit position:sticky funktioniert */
}

/* Placeholder-Text in Formularfeldern etwas heller */
.form-control::placeholder{
  color: var(--fd-placeholder);
  opacity: 1;
}
.form-control::-webkit-input-placeholder{ color: var(--fd-placeholder); opacity: 1; }
.form-control::-moz-placeholder{ color: var(--fd-placeholder); opacity: 1; }

/* Erfolgs-/Fehlermeldung Kontaktformular: nicht hinter Sticky-Header scrollen */
#form-message {
  scroll-margin-top: 140px;
}

/* Kontaktformular: Fehlermeldungen rot und fett */
#form-message .alert-danger,
#contact-form .invalid-feedback {
  color: #b02a37;
  font-weight: 700;
}

/* Kontaktformular: Radiobuttons – weißer Kreis (inaktiv), lila Kreis (aktiv) */
#contact-form .form-check {
  display: inline-flex;
  align-items: center;
  margin: 0;
  min-height: 0;
  padding-left: 0;
}
#contact-form .form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0 0.5rem 0 0;
  border: 2px solid var(--fd-surface-3);
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
#contact-form .form-check-input:checked {
  border-color: var(--fd-primary);
  background-color: var(--fd-primary);
}
#contact-form .form-check-input:focus-visible {
  outline: 2px solid var(--fd-primary);
  outline-offset: 2px;
}
#contact-form .form-check-label {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6{
  font-family: 'Lato', sans-serif;
  color: var(--fd-primary);
}

a:not(.btn):not(.nav-link) {
  color: var(--fd-primary);
  text-decoration: none;
}
a:not(.btn):not(.nav-link):hover {
  text-decoration: underline;
}

.text-secondary {
  color: var(--fd-ink) !important;
}
.fd-hero .text-center,
.fd-cta-eingewoehnung .text-center,
.fd-cta-block .text-center,
.fd-cta .text-center,
.fd-footer .text-center{
  color: inherit;
}

.text-white-75{
  color: #fff;
  opacity: .75;
}
.btn {
  padding-top: .425rem;
  padding-bottom: .5rem;
}
.btn:hover {
  background-color: var(--fd-accent);
  border-color: var(--fd-accent);
}
/* Button wie Link mit .btn: Browser-Standards ausblenden, Optik wie a.btn */
button.btn {
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
/* WCAG 2.2: Skip-Link sichtbar bei Fokus, ausreichend Kontrast */
.skip-link{
  position: absolute;
  left: .75rem;
  top: .75rem;
  z-index: 2000;
  transform: translateY(-200%);
  transition: transform .15s ease;
  padding: .6rem 1rem;
}
.skip-link:focus{
  transform: translateY(0);
}
.skip-link:focus-visible{
  outline: 3px solid var(--fd-surface-3);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(255,255,255,.9);
}

/* WCAG 2.2: Sichtbarer Fokus für Tastaturbedienung (2.4.7, 2.4.11) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:not([tabindex="-1"]):focus-visible{
  outline: 2px solid var(--fd-surface-3);
  outline-offset: 2px;
}
.fd-hero__control:focus-visible,
.carousel-control-prev:focus-visible,
.carousel-control-next:focus-visible{
  outline: 2px solid var(--fd-surface-3);
  outline-offset: 2px;
}
.btn-close:focus-visible{
  outline: 2px solid var(--fd-surface-3);
  outline-offset: 2px;
}
.accordion-button {
  padding-right: 3rem;
}
.accordion-button::after{
  position: relative;
  right: -2rem;
}
.accordion-button:not(.collapsed), .accordion-button:hover{
  background-color: var(--fd-surface-3);
}
.accordion-body{
  background-color: rgba(244, 239, 245, .75);
}

.fd-topbar{
  background: var(--fd-primary);
  color: rgba(255,255,255,.92);
  font-size: .925rem;
  position: relative;
  z-index: 1030;
  /* iPhone/Notch: Hintergrund bis zum oberen Rand, Inhalt unter Safe Area */
  padding-top: env(safe-area-inset-top, 0);
}
.fd-topbar > .container > div {
  height: 40px;
}
/* Mobil: Icons links, Sprachschalter rechts */
@media (max-width: 767.98px) {
  .fd-topbar > .container > div {
    flex-wrap: nowrap;
  }
  .fd-topbar .fd-topbar__links {
    flex: 1 1 0;
    min-width: 0;
    margin-left: 0 !important;
    justify-content: space-between !important;
  }
  .fd-topbar .fd-topbar__icons {
    flex: 0 0 auto;
  }
  .fd-topbar .fd-topbar__links .fd-lang-link {
    flex: 0 0 auto;
  }
}
.fd-topbar__slogan{
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  font-style: italic;
}
.fd-topbar a:not(.btn):not(.nav-link){
  color: rgba(255,255,255,.92);
  text-decoration: none;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fd-topbar a:not(.btn):not(.nav-link):hover{
  color: #fff;
  background-color: var(--fd-accent);
}
.fd-topbar a i{
  color: inherit;
}
.fd-topbar a:hover i{
  color: inherit;
}
.fd-topbar__link--white,
.fd-topbar__link--white i{
  color: #fff;
}
.fd-topbar__link--white:hover{
  color: #fff;
  background-color: var(--fd-accent);
}
.fd-topbar__link--white:hover i{
  color: inherit;
}

/* Opening hours: icon-only toggle on small screens, dropdown like desktop menu */
.fd-topbar__hours-toggle{
  background: transparent;
  color: rgba(255,255,255,.92);
  font-size: inherit;
  min-width: 40px;
  height: 40px;
}
.fd-topbar__hours-toggle:hover,
.fd-topbar__hours-toggle:focus-visible{
  color: #fff;
  background-color: var(--fd-accent);
}
.fd-topbar__hours-toggle i{
  color: inherit;
}
.fd-topbar__hours-dropdown{
  min-width: 240px;
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
  z-index: 1050;
  background-color: var(--fd-surface-2);
}
.fd-topbar__separator{
  color: rgba(255,255,255,.5);
  margin: 0 .5rem;
}
/* Sprachumschalter: Icon + Kürzel der anderen Sprache */
.fd-lang-link {
  gap: .35rem;
}
/* Sprachumschalter: Unter 360px nur das Icon ausblenden, Kürzel DE/EN bleibt sichtbar */
@media (max-width: 359.98px) {
  .fd-topbar .fd-lang-link i {
    display: none !important;
  }
}

.fd-navbar{
  position: sticky;
  top: 0;
  z-index: 1020;
  background: rgba(255,255,255,.75);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.fd-navbar.is-scrolled{
  backdrop-filter: saturate(150%) blur(8px);
  box-shadow: 0 6px 22px rgba(20,21,26,.1);
}

.fd-navbar-logo{
  height: 86.666666px;
  width: auto;
  display: block;
  transition: height .25s ease, opacity .2s ease;
}
.fd-navbar .navbar-brand:hover .fd-navbar-logo{
  opacity: 0.8;
}
.fd-navbar.is-scrolled .fd-navbar-logo{
  height: 44.333333px;
  pointer-events: none;
}

/* Header mit mittigem Logo: Grid links | Logo | rechts */
.fd-navbar--logo-center .fd-navbar-center-container{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem 1rem;
  width: 100%;
}
.fd-navbar--logo-center .fd-navbar__left{ justify-content: flex-start; }
.fd-navbar--logo-center .fd-navbar__right-col{ justify-content: flex-start; }
.fd-navbar--logo-center .navbar-brand{ margin: 0; }
@media (max-width: 991.98px){
  .fd-navbar--logo-center .fd-navbar-center-container{
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
  }
  .fd-navbar--logo-center .navbar-brand{
    grid-column: 1;
    justify-self: center;
  }
  .fd-navbar--logo-center .navbar-brand .fd-navbar-logo{
    margin-right: -56px !important;
  }
  .fd-navbar--logo-center .fd-navbar__right-col{ grid-column: 2; }
}

.nav-item > .nav-link{
  color: var(--fd-primary);
  border: solid 2px transparent;
}
.nav-item > .nav-link:hover,
.nav-item > .nav-link.active{
  color: var(--fd-primary);
  border: solid 2px #fff;
}
.nav-item > .nav-link:hover{
  border-color: var(--fd-surface-3);
}
.nav-item .dropdown-item{
  color: var(--fd-ink) !important;
}
.nav-item .dropdown-item:hover{
  color: var(--fd-primary) !important;
  text-decoration: none !important;
  background-color: var(--fd-surface-3);
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show, .navbar-nav .nav-link:hover, .dropdown-item.active, .dropdown-item:active{
  background-color: var(--fd-surface-3);
  color: var(--fd-primary) !important;
}
.navbar-nav .nav-link:hover{
  background-color: var(--fd-surface-3);
}
@media (min-width: 992px){
  .navbar-expand-lg .navbar-nav .nav-link {
    border-radius: 50px;
    padding: 8px 15px;
  }
}

/* Navigation Offcanvas auf Tablets/Mobile über den kompletten Bildschirm, smooth Einblendung */
@media (max-width: 991.98px){
  #fdOffcanvasNav.offcanvas{
    width: 100%;
    max-width: 100%;
    height: 100%;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 0;
    border-radius: 0;
    transform: translateX(100%);
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
    will-change: transform;
    z-index: 1045;
  }
  #fdOffcanvasNav.offcanvas.showing,
  #fdOffcanvasNav.offcanvas.show{
    transform: translateX(0);
    padding-top: 40px;
    width: 90%;
    margin-left: 10%;
  }
  /* Backdrop einheitlich einblenden, reduziert Zappeln */
  .offcanvas-backdrop{
    transition: opacity 0.3s ease-out;
    z-index: 1040;
  }
  /* Dropdowns im Burger-Menü (Offcanvas) */
  #fdOffcanvasNav .dropdown-menu.show{
    display: block;
    background: var(--fd-surface-2);
    border: none;
    margin-top: 0;
    border-radius: 0 5px 5px 5px;
  }
  /* Offcanvas-Header: Schließen-Button fest positionieren und sichtbar */
  #fdOffcanvasNav .offcanvas-header{
    position: relative;
    padding-right: 3.5rem;
  }
  #fdOffcanvasNav .fd-offcanvas-close{
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0.375rem;
    background: transparent;
    color: var(--fd-ink);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  #fdOffcanvasNav .fd-offcanvas-close:hover{
    color: var(--fd-primary);
    background: rgba(94, 30, 115, 0.08);
  }
  #fdOffcanvasNav .fd-offcanvas-close__icon{
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    color: inherit;
  }
}

.btn-primary{
  --bs-btn-bg: var(--fd-primary);
  --bs-btn-border-color: var(--fd-primary);
  --bs-btn-hover-bg: var(--fd-primary-600);
  --bs-btn-hover-border-color: var(--fd-primary-600);
  --bs-btn-active-bg: var(--fd-primary-600);
  --bs-btn-active-border-color: var(--fd-primary-600);
}

.btn-outline-primary{
  --bs-btn-color: var(--fd-primary);
  --bs-btn-border-color: var(--fd-primary);
  --bs-btn-hover-bg: var(--fd-primary);
  --bs-btn-hover-border-color: var(--fd-primary);
}

/* Galerie-Filter: Hover/aktiv in Primary (Violett), nicht durch .btn:hover auf Accent überschreiben */
.fd-gallery-filter .btn-outline-primary:hover,
.fd-gallery-filter .btn-check:checked + .btn-outline-primary,
.fd-gallery-filter .btn-outline-primary.active{
  background-color: var(--fd-primary);
  border-color: var(--fd-primary);
  color: #fff;
}
.fd-gallery-filter .btn-check:checked + .btn-outline-primary:hover,
.fd-gallery-filter .btn-outline-primary.active:hover{
  background-color: var(--fd-primary-600);
  border-color: var(--fd-primary-600);
  color: #fff;
}

.fd-hero{
  position: relative;
  min-height: clamp(520px, 70vh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #0d0f14;
}

/* Unterseiten: feste Hero-Höhen (Startseite behält Slider-Logik) */
.fd-hero:not(.fd-hero--slider){
  min-height: 300px;
  align-items: end;
  padding-bottom: clamp(1.5rem, 4vw, 3rem);
}
@media (min-width: 768px){
  .fd-hero:not(.fd-hero--slider){ min-height: 400px; }
}
@media (min-width: 992px){
  .fd-hero:not(.fd-hero--slider){ min-height: 450px; }
}
@media (min-width: 1600px){
  .fd-hero:not(.fd-hero--slider){ min-height: 50vh; }
}

/* Startseite: Hero beginnt unter dem Header, untere Kante = Viewport-Unterkante. */
.fd-first-view{
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  /* Topbar ~40px + Navbar ~87px (+ safe-area) */
  height: calc(100dvh - (40px + 86.666666px + env(safe-area-inset-top, 0px)));
  min-height: 380px;
}
.fd-first-view .fd-hero--slider,
.fd-first-view .fd-hero:not(.fd-hero--slider){
  flex: 1 1 0;
  min-height: 0;
  align-items: stretch;
}
/* Hero-Inhalt unten ausrichten (Startseite) */
.fd-first-view .fd-hero__content{
  width: 100%;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.fd-first-view .fd-hero__content-inner{
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

@media (max-width: 767.98px){
  .fd-first-view .fd-hero--slider,
  .fd-first-view .fd-hero:not(.fd-hero--slider){
    display: flex;
    flex-direction: column;
  }
  .fd-first-view .fd-hero__content{
    flex: 1 1 0;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    padding-top: 1rem;
    padding-bottom: 1.25rem;
  }
  .fd-first-view .fd-hero__content .row{
    width: 100%;
  }
  /* Hero-Inhalt auf Mobile kompakter, damit mehr reinpasst */
  .fd-first-view .fd-hero__content .display-5{
    font-size: 2rem;
  }
  .fd-first-view .fd-hero__content .lead{
    font-size: 1rem;
  }
  .fd-first-view .fd-hero__content .fd-badge{
    padding: .25rem .5rem;
    font-size: .8rem;
  }
  .fd-first-view .fd-hero__content .btn-lg{
    padding: .5rem 1rem;
    font-size: 1rem;
  }
}

/* Startseite: Mobile-Hero-Bild (nur Mobile, nicht Tablet) */
@media (max-width: 379.98px){
  /* Mobile: text-nowrap deaktivieren (z. B. Hero-Headline) */
  .text-nowrap{ white-space: normal !important; }
}
  @media (max-width: 575.98px){
  /* Unterseiten: Hero-Text weiter nach unten (untere Bildhälfte) */
  .fd-hero:not(.fd-hero--slider){
    /* mehr Höhe + Inhalt klar unten */
    min-height: 60vh;
    padding-bottom: 0 !important;
  }
  .fd-hero:not(.fd-hero--slider) .fd-hero__content{
    align-self: end;
    padding-bottom: 20px !important;
  }

  /* Auf Mobile nicht Voll-Viewport erzwingen – Höhe über Bild-Verhältnis */
  .fd-first-view{
    height: auto !important;
    min-height: 0 !important;
  }
  /* Startseite: Bootstrap-Row im Hero ohne Außenabstände */
  .fd-first-view .fd-hero__content .row{
    margin: 0 !important;
  }
  /* Startseite: Text im Hero auf Mobile weiter nach unten */
  .fd-first-view .fd-hero__content-inner{
    padding-bottom: clamp(2.5rem, 10vw, 4.5rem);
  }
  .fd-first-view .fd-hero{
    min-height: 0;
    width: 100%;
    flex: 0 0 auto !important;
    /* Höhe aus Bildverhältnis 800x720 => 10:9 */
    height: min(90vw, 80vh) !important;
  }
  .fd-first-view .fd-hero .fd-hero__bg{
    background-image: url('/images/start-mobile.jpg') !important;
    background-position: center top;
    background-repeat: no-repeat;
    /* volle Breite, komplette Höhe ergibt sich aus Container */
    background-size: 100% auto !important;
  }
  .fd-first-view .fd-hero .fd-hero__bg-img{
    display: none;
  }
}
.fd-hero__slider{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.fd-hero__slider .carousel,
.fd-hero__slider .carousel-inner,
.fd-hero__slider .carousel-item{
  height: 100%;
}
.fd-hero__slider .carousel-item .fd-hero__bg{
  position: absolute;
  inset: 0;
}
.fd-hero__slider .carousel-control-prev{
  left: 10px;
}
.fd-hero__slider .carousel-control-next{
  right: 10px;
}
@media (max-width: 991.98px){
  .fd-hero__slider .carousel-control-prev,
  .fd-hero__slider .carousel-control-next{
    display: none !important;
  }
}
.fd-hero__control{
  z-index: 2;
  opacity: 1;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #fff !important;
  background-image: none !important;
  border: 0;
  top: 50%;
  transform: translateY(-50%);
}
.fd-hero__slider .carousel-control-prev.fd-hero__control,
.fd-hero__slider .carousel-control-next.fd-hero__control{
  background: rgba(255,255,255,.5) !important;
  background-image: none !important;
}
.fd-hero__control:hover{
  background: rgba(255,255,255,.75) !important;
  background-image: none !important;
}
.fd-hero__slider .carousel-control-prev.fd-hero__control:hover,
.fd-hero__slider .carousel-control-next.fd-hero__control:hover{
  background: rgba(255,255,255,.75) !important;
  background-image: none !important;
}
/* Hero Prev/Next: Caret ohne Kreis (sichtbar auf weißem Button) */
.fd-hero__slider .carousel-control-prev .carousel-control-prev-icon{
  width: 2rem;
  height: 2rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e") !important;
  background-size: 100% 100%;
  filter: none !important;
}
.fd-hero__slider .carousel-control-next .carousel-control-next-icon{
  width: 2rem;
  height: 2rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
  background-size: 100% 100%;
  filter: none !important;
}
/* WCAG 2.2: Touch-Target mind. 24×24px (2.5.5), vergrößerte Klickfläche */
.fd-hero__indicators{
  z-index: 2;
  margin-bottom: 1.5rem;
}
.fd-hero__indicators [data-bs-target]{
  width: 10px;
  height: 10px;
  min-width: 16px;
  min-height: 16px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid #fff;
  box-sizing: content-box;
}
.fd-hero__indicators [data-bs-target].active{
  background: #fff;
  border-color: #fff;
}

.fd-hero__bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  transform: scale(1.02);
}
.fd-hero__bg-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.fd-hero__overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at center, rgba(0,0,0,.1) 0, rgba(0,0,0,.35) 70%);
  pointer-events: none;
}
.fd-hero__content{
  position: relative;
  z-index: 2;
  color: #fff;
}
.fd-hero__content h1,
.fd-hero__content .display-5,
.fd-hero__content .display-6,
.fd-hero__content .lead,
.fd-hero__content p,
.fd-hero__content .breadcrumb,
.fd-hero__content .fd-breadcrumb,
.fd-hero__content .breadcrumb-item,
.fd-hero__content .breadcrumb-item a,
.fd-hero__content a{
  color: #fff;
}
.fd-hero__content .breadcrumb-item.active{
  color: #fff;
}
/* Unterseiten: Texte im Hero zentrieren (container.fd-hero__content = alle außer Startseite) */
.fd-hero .container.fd-hero__content{
  text-align: center;
}
.fd-hero .container.fd-hero__content .breadcrumb{
  justify-content: center;
}
/* Text-Schatten in allen Heros für besseren Kontrast zum Hintergrundbild */
.fd-hero__content h1,
.fd-hero__content .display-5,
.fd-hero__content .display-6,
.fd-hero__content .lead,
.fd-hero__content p,
.fd-hero__content .breadcrumb,
.fd-hero__content .fd-breadcrumb,
.fd-hero__content .breadcrumb-item,
.fd-hero__content .breadcrumb-item a{
  text-shadow: 0 1px 8px rgba(0, 0, 0, .5), 0 3px 12px rgba(0, 0, 0, .6);
}
.fd-first-view .fd-hero__content .display-5,
.fd-first-view .fd-hero__content .lead{
  text-shadow: 0 1px 8px rgba(0, 0, 0, .5), 0 3px 12px rgba(0, 0, 0, .6);
}

/* Startseite: Parallax-Block \"Hier darf Ihr Hund einfach ankommen\" */
.fd-parallax-einfach{
  position: relative;
  overflow: hidden;
  min-height: 75vh;
  display: flex;
  align-items: stretch;
}
.fd-parallax-einfach__logo img{
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-left: 7px;
  opacity: 0.8;
  /* Weiße Silhouette: Form sichtbar, komplett weiß */
  filter: brightness(0) invert(1);
}
.fd-parallax-einfach__bg{
  position: absolute;
  inset: 0;
  background-image: url('/images/einfach-ankommen.jpg');
  background-size: cover;
  background-position: 30% center;
  background-attachment: fixed;
  transform: translateZ(0);
}
.fd-parallax-einfach__overlay{
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,.1) 0, rgba(0,0,0,.35) 70%);
}
.fd-parallax-einfach__content{
  position: relative;
  z-index: 1;
  padding: 0;
  display: flex;
  flex: 1 1 auto;
  align-items: flex-end;
  justify-content: center;
}
.fd-parallax-einfach__content .lead{
  text-shadow: 0 5px 18px rgba(0,0,0,.9);
}
@media (max-width: 767.98px){
  .fd-parallax-einfach__bg{
    background-attachment: scroll;
  }
  .fd-parallax-einfach__logo img{
    max-height: 100px;
  }
}
.fd-hero .btn-outline-light:hover,
.fd-hero .btn-outline-light:focus-visible{
  color: #fff;
}
.fd-hero .btn-outline-light:hover i,
.fd-hero .btn-outline-light:focus-visible i{
  color: inherit;
}
.fd-badge{
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  padding: .35rem .65rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
}

.fd-section{
  padding: clamp(4rem, 6vw, 5.25rem) 0;
}
.fd-section--alt{
  background: var(--fd-surface-2);
}
.fd-section--compact{
  padding: clamp(0.75rem, 1.5vw, 1rem) 0;
  background: var(--fd-surface-3);
}

/* Mobilansicht: Sektionsabstände verkleinert */
@media (max-width: 991px){
  .fd-section{
    padding: clamp(2.5rem, 4.5vw, 3.25rem) 0;
  }
  .fd-section--compact{
    padding: clamp(0.75rem, 1.5vw, 1rem) 0;
  }
  .fd-cta-eingewoehnung,
  .fd-cta-block{
    padding: clamp(1.25rem, 3vw, 1.75rem) 0;
  }
}

/* Vorteile-Reihe direkt unter Hero (z. B. Eingewöhnung) */
.fd-benefits{
  background: var(--fd-surface-2);
  padding: clamp(1rem, 2vw, 1.5rem) 0;
}
@media (max-width: 991px){
  .fd-benefits{
    padding: clamp(0.9rem, 1.75vw, 1.25rem) 0;
  }
}
.fd-benefits__icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(94, 30, 115, 0.12);
  color: var(--fd-primary);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.fd-benefits__label{
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fd-ink);
}
.fd-card .fd-benefits__icon{ margin-bottom: 0; }

/* Nur zwischen 769px und 992px: Icons über dem Text */
@media (min-width: 769px) and (max-width: 991px){
  .fd-benefits-card-inner{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.fd-eyebrow{
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fd-primary);
  font-size: .85rem;
}

.fd-lead{
  color: var(--fd-primary);
  max-width: 62ch;
  font-size: 1.25rem;
  margin: auto;
}

.fd-card{
  border: 2px solid rgba(94, 30, 115, 0.12);
  border-radius: 1rem;
  box-shadow: 0 1px 0 rgba(20,21,26,.03);
  background: rgba(94, 30, 115, 0.12);
  transition: transform .15s ease, box-shadow .15s ease;
}
.fd-card:hover{
  box-shadow: var(--fd-shadow);
}
.fd-icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: rgba(94,30,115,.10);
  color: var(--fd-primary);
}

/* Kleinere Bilder im Artikeltext */
.fd-article-img{
  max-width: 380px;
  margin-left: 0;
  margin-right: 0;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--fd-border);
  box-shadow: 0 2px 8px rgba(20,21,26,.06);
}
.fd-article-img img{
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 991px){
  .fd-section .fd-article-img{
    margin-top: -1.5rem;
    margin-bottom: 2.25rem;
  }
}

.fd-gallery{
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, 1fr);
}
.fd-gallery a{
  position: relative;
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--fd-border);
  background: #e9ecf3;
}
.fd-gallery img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .2s ease;
}
.fd-gallery a:hover img{
  transform: scale(1.03);
}

.fd-gallery__item--lg{ grid-column: span 7; min-height: 340px; }
.fd-gallery__item--md{ grid-column: span 5; min-height: 340px; }
.fd-gallery__item--sm{ grid-column: span 4; min-height: 220px; }

@media (max-width: 991.98px){
  .fd-gallery__item--lg,
  .fd-gallery__item--md{ grid-column: span 12; min-height: 260px; }
  .fd-gallery__item--sm{ grid-column: span 6; min-height: 200px; }
}
@media (max-width: 575.98px){
  .fd-gallery__item--sm{ grid-column: span 12; }
}

/* Startseite: Benefits + Teaser-Karten (Eingewöhnung, Betreuungskonzept) */
/* Benefits Icon-Boxen: 2-spaltig, ohne Rahmen/Hintergrund */
.fd-benefits-teaser__icons{ font-size: 1rem; }
.fd-benefits-teaser__icon-box{ border: none; background: none; line-height: 1.2;}
.fd-benefits-teaser__icon{
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fd-primary);
  font-size: 1.15rem;
}
.fd-benefits-teaser__card{ transition: box-shadow .2s ease, border-color .2s ease; }
.fd-benefits-teaser__card:hover{ box-shadow: 0 4px 20px rgba(94,30,115,.2); border-color: var(--fd-primary); }
.fd-benefits-teaser__link{ color: var(--fd-primary); transition: gap .2s ease; }
.fd-benefits-teaser__card:hover .fd-benefits-teaser__link{ gap: .5rem; }

/* Leistungen: Icon oben, größer, Text unten – alle Boxen gleich hoch */
.fd-leistungen-icons{
  align-items: stretch;
}
.fd-leistungen-icons .col-md-6{
  display: flex;
}
.fd-leistungen__icon-box{
  background-color: var(--fd-surface-2);
  border-radius: 1rem;
  padding: 2rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.fd-leistungen__icon-box p{
  flex: 1 1 auto;
  margin-bottom: 0;
}
.fd-leistungen__icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  color: var(--fd-primary);
  flex-shrink: 0;
}

/* Leistungen: Sidebar sticky – Karte klebt beim Scrollen, stoppt am Ende der Icon-Boxes */
@media (min-width: 992px){
  .fd-leistungen__sidebar-card{
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 6rem;
  }
}

/* Startseite: Anfrage-CTA mit Bild links (Primary-Hintergrund wie Eingewöhnung) */
.fd-cta-anfrage__img-wrap{
  min-height: 240px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px){
  .fd-cta-anfrage__img-wrap{ min-height: 320px; }
}
.object-fit-cover{ object-fit: cover; }

/* Startseite: Karte + Shuttleservice */
/* Karte & Shuttle: Platzhalter gleiche Größe wie Hundetaxi-Bild (3:2) */
.fd-map-shuttle__map-placeholder{
  aspect-ratio: 3 / 2;
  min-height: 200px;
}
.fd-map-shuttle__shuttle-img{
  aspect-ratio: 3 / 2;
  min-height: 200px;
}
.fd-map-shuttle__shuttle-img img{
  object-fit: cover;
}

/* Kontakt: Karte mit negativem Margin nach links */
.fd-kontakt-karte{
  transform: rotate(-1deg);
}
/* Kontakt: Copyright unter Karte – grau, nah an Karte, Abstand nach unten */
.fd-kontakt-karte-copyright{
  color: #6c757d;
  margin-top: -.25rem;
  margin-bottom: 2rem;
  line-height: 1.3;
  padding-right: 20px;
  padding-left: 20px;
  font-size: .8em;
}

/* Galerie-Carousel: volle Viewportbreite, größere Bilder (weniger sichtbar) */
.fd-gallery-carousel-wrap{
  width: 100%;
  overflow: hidden;
}
.fd-gallery-carousel{
  position: relative;
  padding: 0 3rem;
  width: 100%;
}
.fd-gallery-carousel__track{
  width: 100%;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.fd-gallery-carousel__track::-webkit-scrollbar{
  display: none;
}
.fd-gallery-carousel__slide{
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--fd-border);
  background: #e9ecf3;
  text-decoration: none;
}
.fd-gallery-carousel__slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/3;
  transition: transform .2s ease;
}
.fd-gallery-carousel__slide:hover img{
  transform: scale(1.03);
}
/* Mobile: 1.2 Bilder (Breite relativ zum Track, kein 100vw → kein Overflow) */
.fd-gallery-carousel__slide{
  width: calc((100% - 1rem) / 1.2);
  min-width: calc((100% - 1rem) / 1.2);
}
/* Tablet: 2 Bilder */
@media (min-width: 768px){
  .fd-gallery-carousel__slide{
    width: calc((100% - 1rem) / 2);
    min-width: calc((100% - 1rem) / 2);
  }
}
/* Desktop: min. 4 Bilder gleichzeitig */
@media (min-width: 992px){
  .fd-gallery-carousel__slide{
    width: calc((100% - 3 * 1rem) / 4);
    min-width: calc((100% - 3 * 1rem) / 4);
  }
}
.fd-gallery-carousel__arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--fd-border);
  background: #fff;
  color: var(--fd-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  transition: background .2s, color .2s;
  cursor: pointer;
}
.fd-gallery-carousel__arrow:hover{
  background: var(--fd-primary);
  color: #fff;
  border-color: var(--fd-primary);
}
.fd-gallery-carousel__prev{ left: 0; }
.fd-gallery-carousel__next{ right: 0; }

/* Galerie-Lightbox (Modal): alle Bilder gleiche Höhe */
#galleryModal .carousel-inner,
#galleryModal .carousel-item{
  height: 70vh;
  min-height: 320px;
}
#galleryModal .carousel-item img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.fd-footer{
  background: var(--fd-primary-600);
  color: rgba(255,255,255,.85);
}
.fd-footer a{ color: rgba(255,255,255,.75) !important; text-decoration: none; transition: color .2s ease, text-decoration .2s ease; padding: 1rem 0; }
.fd-footer a:hover{ color: #fff !important; text-decoration: underline; }
.fd-footer__fineprint{
  color: rgba(255,255,255,.65);
  transition: color .2s ease, text-decoration .2s ease;
}
/* Mobile: kleinere, gleichmäßige Abstände zwischen Links und zur Copyright-Zeile */
@media (max-width: 575.98px){
  .fd-footer__fineprint{
    gap: 0.5rem;
  }
  .fd-footer__fineprint nav{
    gap: 0.5rem;
  }
  .fd-footer__fineprint nav a{
    padding: 0.35rem 0;
  }
}

.fd-list-check{
  list-style: none;
  padding-left: 0;
}
.fd-list-check li{
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: .6rem;
  align-items: start;
  margin-bottom: .55rem;
}
.fd-list-check i{ color: var(--fd-primary); margin-top: .15rem; }

.fd-kpi{
  border: 1px solid var(--fd-border);
  border-radius: 1rem;
  background: #fff;
  padding: 1.25rem;
}
.fd-kpi .value{
  font-weight: 800;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}
.fd-kpi .label{
  color: var(--fd-muted);
}

.fd-cta{
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(94,30,115,.92) 0%, rgba(75,23,91,.92) 55%, rgba(242,183,5,.22) 100%);
  color: #fff;
  overflow: hidden;
}
.fd-cta a{ color: #fff; }

/* CTA-Bereich: einheitlicher Stil (Eingewöhnung + seitenweites Include) – Primärfarbe 80 %, links Bild/Icon, rechts Text */
.fd-cta-eingewoehnung,
.fd-cta-block{
  background: rgba(94, 30, 115, 0.8);
  color: #fff;
  padding: clamp(1.5rem, 3vw, 2rem) 0;
  display: flex;
  align-items: center;
}
.fd-cta-block--split{
  padding: 0;
}
.fd-cta-eingewoehnung a,
.fd-cta-block a{ color: #fff; }
.fd-cta-eingewoehnung .container,
.fd-cta-block .container{ flex: 1; }
.fd-cta-block .container-fluid{ flex: 1; }
.fd-cta-eingewoehnung .row,
.fd-cta-block .row{ align-items: center; }
.fd-cta-eingewoehnung .row > [class*="col-"],
.fd-cta-block .row > [class*="col-"]{ display: flex; align-items: center; }

/* CTA-Block (Include): links Bild randlos, rechts Text – Aspect Ratio 3:2, Bild unten abgeschnitten */
.fd-cta-block__media-col{
  display: block !important;
  align-items: stretch !important;
  aspect-ratio: 3 / 2;
  min-height: 180px;
}
.fd-cta-block__media-img{
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (min-width: 992px){
  .fd-cta-block__media-col{ min-height: 240px; }
}

.fd-cta-eingewoehnung__img,
.fd-cta-block__visual{
  min-height: 180px;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px){
  .fd-cta-eingewoehnung__img{ min-height: 320px; }
  .fd-cta-block__visual{ min-height: 260px; }
}
.fd-cta-block__visual .fd-icon{
  width: 4rem;
  height: 4rem;
  font-size: 1.75rem;
  background: rgba(255,255,255,.2);
  color: #fff;
}

/* CTA-Block: drei gleiche Spalten mit Bild (wie Eingewöhnung) */
.fd-cta-block__col-img{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
@media (min-width: 992px){
  .fd-cta-block__col-img{ min-height: 280px; }
}
.fd-cta-block__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 992px){
  .fd-cta-block__col-img .fd-cta-block__img{
    max-height: 280px;
    object-fit: contain;
  }
}

.fd-cta-eingewoehnung__content,
.fd-cta-block__content{
  text-align: left;
  width: 100%;
}
@media (max-width: 991.98px){
  .fd-cta-eingewoehnung__content,
  .fd-cta-block__content{ text-align: center; }
  .fd-cta-eingewoehnung__content .d-flex.flex-wrap.gap-3,
  .fd-cta-block__content .d-flex.flex-wrap.gap-3{ justify-content: center; }
}

.fd-cta__label{
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: .25rem;
}
.fd-cta__title{
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: .75rem;
}
.fd-cta__text{
  font-size: 1.1rem;
  line-height: 1.55;
  color: rgba(255,255,255,.92);
}
.fd-cta__note{
  color: rgba(255,255,255,.8);
}

.fd-cta-eingewoehnung .btn-light,
.fd-cta-block .btn-light{
  background: #fff;
  color: var(--fd-primary);
  border: 0;
  font-weight: 700;
  line-height: 1.7;
}
.fd-cta-eingewoehnung .btn-light:hover,
.fd-cta-eingewoehnung .btn-light:focus-visible,
.fd-cta-block .btn-light:hover,
.fd-cta-block .btn-light:focus-visible{
  background: var(--fd-accent);
  color: #fff;
}
.fd-cta-eingewoehnung .btn-outline-light,
.fd-cta-block .btn-outline-light{
  border-width: 2px;
  font-weight: 600;
  color: #fff;
  border-color: rgba(255,255,255,.7);
  background: transparent;
}
.fd-cta-eingewoehnung .btn-outline-light:hover,
.fd-cta-eingewoehnung .btn-outline-light:focus-visible,
.fd-cta-block .btn-outline-light:hover,
.fd-cta-block .btn-outline-light:focus-visible{
  background: var(--fd-accent);
  color: #fff;
  border-color: var(--fd-accent);
}

.fd-breadcrumb{
  --bs-breadcrumb-divider: '';
}
.fd-breadcrumb .breadcrumb-item a.text-white-50:hover{
  color: #fff !important;
}
.fd-breadcrumb .breadcrumb-item{
  display: inline-flex;
  align-items: center;
}
.fd-breadcrumb .breadcrumb-item + .breadcrumb-item{
  padding-left: 0;
}
.fd-breadcrumb .breadcrumb-item + .breadcrumb-item::before{
  content: '\f054';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  font-size: .65em;
  color: #fff;
  opacity: .5;
  display: inline-flex;
  align-items: center;
  padding: 0 .6em;
  line-height: 1;
  transform: translateY(0.08em);
}

/* Timeline (z. B. Eingewöhnung) */
.fd-timeline{
  position: relative;
  padding-left: 0;
  list-style: none;
}
.fd-timeline::before{
  content: '';
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--fd-primary) 0%, rgba(94,30,115,.25) 100%);
  border-radius: 2px;
}
@media (min-width: 992px){
  .fd-timeline::before{ left: 50%; transform: translateX(-1px); }
}

.fd-timeline__item{
  position: relative;
  padding-left: 3rem;
  padding-bottom: 2.5rem;
}
.fd-timeline__item:last-child{ padding-bottom: 0; }
@media (min-width: 992px){
  .fd-timeline__item{ padding-left: 0; padding-bottom: 3rem; display: flex; align-items: flex-start; gap: 2.5rem; }
  .fd-timeline__item:nth-child(odd){ flex-direction: row-reverse; }
}
.fd-timeline__node{
  position: absolute;
  left: 0;
  top: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--fd-primary);
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--fd-surface);
}
@media (min-width: 992px){
  .fd-timeline__node{ left: 50%; transform: translateX(-50%); }
}
.fd-timeline__content{
  margin-left: 1rem;
  background: var(--fd-surface);
  border: 1px solid var(--fd-border);
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 1px 0 rgba(20,21,26,.03);
}
@media (min-width: 992px){
  .fd-timeline__content{ flex: 1; max-width: 48%; margin-left: 0; max-width: calc(48% - 2rem); margin-left: 1rem; margin-right: 1rem;}
}
.fd-timeline__content h2{ font-size: 1.15rem; margin-bottom: .75rem; }
.fd-timeline__content h2 .fd-timeline__label{ display: block; font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--fd-primary); margin-bottom: .25rem; }

/* Bild volle Höhe der Section (z. B. Fotoupdates) */
.fd-section-img-full{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Bild-Container braucht min-height, da img position:absolute aus dem Fluss ist */
.fd-section .col-lg-6.position-relative{ min-height: 240px; }
@media (max-width: 991px){
  .fd-section--fotoupdates .col-lg-6.position-relative{ min-height: 360px; }
}
@media (max-width: 479.98px){
  .fd-section--fotoupdates .col-lg-6.position-relative{ min-height: 280px; }
}
@media (min-width: 992px){
  .fd-section--fotoupdates{ min-height: 400px; }
  .fd-section--fotoupdates .col-lg-6.position-relative{ min-height: 400px; }
}
@media (max-width: 991px){
  .fd-section-img-full{
    width: 100%;
    height: 100%;
    left: 0;
    transform: none;
    right: 0;
    object-fit: contain;
  }
}
