@font-face {
  font-family: 'Roboto';
  src: url('../Fonts/Roboto/Roboto-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../Fonts/Roboto/Roboto-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
    /* ======= Farbpalette ======= */
  --color-primary: #418dcb;
  --color-secondary: #003266;
  --color-light-blue: #9dd6e3;
  --color-sky-blue: #87c0e6;
  --color-green: #b9cd33;
  --color-violet: #a3abd7;
  --color-gray: #666666;

    /*Alias für systemweite Kompatibilität */
  --primary-color: var(--color-primary);
  --secondary-color: var(--color-secondary);
}

/* ========== Farben für Klassen ========== */
.primary-color {
  color: var(--color-primary) !important;
}

.yellow-color {
  color: var(--color-light-blue) !important;
}

.secondary-color {
  color: var(--color-secondary) !important;
}

/* Farben - Hintergruende */
.bg-lightblue {
    background-color: #9dd6e3; 
}

.bg-lightblue-50 {
    background-color: rgba(157, 214, 227, 0.5); /* 50% Transparenz */
}

.bg-white {
    background-color: #ffffff;
}

/* Padding für Container in Bezug auf neue Hintergrundfarben */
.content-section.bg-lightblue,
.content-section.bg-lightblue-50,
.content-section.bg-white {
    padding: 50px 0 30px;
}



/* ==============================
   Globale Typografie-Definition
   ============================== */

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--text-color, #212529); /* Fallback auf Bootstrap Standard */
}

/* Überschriften */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: inherit;
}

h1 {
  font-size: 3rem;   /* ~48px */
  font-weight: 700;
}

h2 {
  font-size: 3rem; /* ~40px */
  font-weight: 700;
}

h3 {
  font-size: 2rem; /* ~32px */
  font-weight: 700;
}

h4 {
  font-size: 1.5rem; /* ~24px */
  font-weight: 700;
}

h5 {
  font-size: 1.2rem; /* ~19px */
  font-weight: 500;
}

h6 {
  font-size: 1rem;   /* ~16px */
  font-weight: 700;
}

/* --- FLIESSTEXT --- */
p {
  font-size: 1rem;   /* ~16px */
  font-weight: 400;
  margin: 0 0 1rem 0;
}


/* ======== DIVERSE ELEMENTE ============*/
/* ======================================
   Ankerpunkte
   ====================================== */
/* Alle Anker-Positionen (Elemente mit IDs) unter Header sichtbar machen */
[id]::before {
  content: "";
  display: block;
  height: 120px; /* gleiche Höhe wie dein Header */
  margin-top: -120px; /* hebt es optisch wieder hoch */
  visibility: hidden;
}

/* ======================================
   Buttons
   ====================================== */

/* ========== Button 1 (Standard .btn) ========== */
.btn {
  padding: 0.6em 1.2em;
  font-size: 1rem;
  border-radius: 6px !important;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  transition: all 0.2s ease-in-out;
  background-color: var(--color-primary) !important;
  color: #ffffff !important;
  border: 1px solid var(--color-primary) !important;
  box-shadow: none !important;
  outline: none !important;
}

.btn:hover,
.btn:focus,
.btn:active {
  background-color: #ffffff !important;
  color: var(--color-primary) !important;
  border: 1px solid var(--color-primary) !important;
  box-shadow: none !important;
}

/* ========== Dunkelblauer Button: btn--dark ========== */
.btn--dark {
  background-color: var(--color-secondary) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  border: 1px solid var(--color-secondary) !important;
}

.btn--dark:hover {
  background-color: #fff !important;
  color: var(--color-secondary) !important;
  border: 1px solid var(--color-secondary) !important;
}


/* ========== Zweitstil-Button: btn--secondary ========== */
.btn--secondary {
  background-color: #fff !important;
  color: var(--color-primary) !important;
  border: 1px solid var(--color-primary) !important;
  border-radius: 6px !important;
}

.btn--secondary:hover {
  background-color: var(--color-primary) !important;
  color: #fff !important;
}

/* ========== Drittstil-Button: btn--gradient ========== */
.btn--gradient {
  background: #ffffff !important;
  background-image: none !important;
  color: var(--color-primary) !important;
  border: 1px solid #ffffff !important;
  border-radius: 6px !important;
}

.btn--gradient:hover {
  background-color: var(--color-primary) !important;
  color: #fff !important;
}

/*Responiveness*/
@media (max-width: 768px) {
  .btn {
    font-size: 0.9rem;
    padding: 0.5em 1em;
  }
}

@media (max-width: 480px) {
  .btn {
    font-size: 0.8rem;
    padding: 0.3em 0.7em;
  }
}

/* ======================================
   HEADER: Struktur & Layout
   ====================================== */

/* Container auf voller Breite */
.page-header nav {
  width: 100%;
}

.page-header nav ul {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
}

.page-header nav ul > li {
  display: flex;
  align-items: center;
  height: 100%;
}

.page-header nav ul > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0.75rem 1rem;
  font-size: 14px;
  font-weight: 500;
  box-sizing: border-box;
}


/* ========== BUTTON im Menü: Style & Hover ========== */

.page-header nav .btn.btn--dark {
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  background-color: var(--color-secondary) !important;
  color: #fff !important;
  border: 1px solid var(--color-secondary) !important;
  line-height: 1.2;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 0;
  vertical-align: middle;
  transition: all 0.2s ease-in-out;
}

.page-header nav .btn.btn--dark:hover,
.page-header nav .btn.btn--dark:focus {
  background-color: #fff !important;
  color: var(--color-secondary) !important;
  border-color: var(--color-secondary) !important;
  box-shadow: none !important;
  outline: none !important;
}


/* ========== RESPONSIVE: Menü untereinander bei kleineren Viewports ========== */

@media (max-width: 991px) {
  .page-header nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-header nav ul > li {
    width: 100%;
    height: auto;
  }

  .page-header nav ul > li > a {
    width: 100%;
    padding: 0.75rem 1rem;
    justify-content: flex-start;
  }

  .page-header nav .btn.btn--dark {
    width: 100%;
    justify-content: flex-start;
    padding: 0.75rem 1rem;
    margin-top: 0.5rem;
  }
}

/* ========== Absatz Header Hero ========== */

body {
  padding-top: 50px; /* falls der Header über allem liegt */
}
/* Abstand Header Ankerpunkt */
#c658, #c659, #c660, #c661, #c662, #c657 {
  scroll-margin-top: 600px;
}



/* ======================================
   Hero-Slider-Anpassungen (Yatra + Owl)
   ====================================== */

/* Overlay (Verlauf) vollständig entfernen */
.hero__slide::before {
  display: none !important;
  background: none !important;
  opacity: 0 !important;
  content: none !important;
}

/* === HERO SLIDE – FINAL CSS === */

/* 1. Hero-Slide Basislayout */
.hero__slide {
  position: relative;
  display: inline-block;
  width: 100%;
  height: auto !important;
  min-height: auto !important;
  padding: 0 !important;
}

/* 2. Hintergrundbild (per background-image / lozad) */
.hero__slide.bg-img.lozad {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  aspect-ratio: 2.16 / 1; /* Seitenverhältnis des neuen Bilds */
}

/* 3. Textblock-Overlay */
.hero__block {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 2;
  background: transparent;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  max-width: 90%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .hero__block {
    top: 1rem;
    left: 1rem;
  }
}

@media (max-width: 480px) {
  .hero__block {
    top: 0.5rem;
    left: 0.5rem;
  }
}

/* === HERO TYPOGRAFIE-FIX (überschreibt _banner.scss) === */
body .hero-slider .hero__slide .hero__block h1,
body .hero-slider .hero__slide .hero__block h2 {
  font-size: clamp(1.5rem, 4vw + 1rem, 3rem) !important;
  line-height: 1.2 !important;
}

@media (max-width: 1200px) {
  body .hero-slider .hero__slide .hero__block h1,
  body .hero-slider .hero__slide .hero__block h2 {
    font-size: 3rem !important;
  }
}
@media (max-width: 992px) {
  body .hero-slider .hero__slide .hero__block h1,
  body .hero-slider .hero__slide .hero__block h2 {
    font-size: 2rem !important;
  }
}
@media (max-width: 768px) {
  body .hero-slider .hero__slide .hero__block h1,
  body .hero-slider .hero__slide .hero__block h2 {
    font-size: 1.25rem !important;
  }
}







/* ============================================================================
   Footer
   ========================================================================= */

/* Footer-Form Join our Newsletter ausblenden*/
.newsletter-wrapper {
    display: none;
}

/* Footer Copyright Yatra ausblenden */
.bottom-footer {
    display: none !important;
}

/* Footer Farbverlauf rausnehmen */
.main-footer::before {
  background: none !important;
  display: none !important;
  opacity: 0 !important;
  content: none !important;
}

/* Footer Hintergrundfarbe */
.main-footer {
  background: var(--color-secondary) !important;
  background-image: none !important;
}

body .main-footer {
  margin-top: 30px !important;
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

/*3 Spalten gleich hoch */
/* Footer-Row auf gleiche Höhe */
#c498 {
  display: flex !important;
  align-items: stretch !important;
  height: auto !important;
 min-height: 180px;
}

/* Spalteninhalt gleichmäßig verteilen */
#c498 > .col-md-4 {
  display: flex;
  flex-direction: column;
}



/* ========== Linke Spalte ========== */

/* 1. Footer-Sektion (#c499) kompakter */
#c499, #c632 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
  border-radius: 6px; 
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1 !important;
  height: 100% !important;
}

/* 2. Erste + zweite Footer-Spalte (links + mitte) vertikal zentrieren */
.main-footer .row > .col-md-4:first-child,
.main-footer .row > .col-md-4:nth-child(2){
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 3. OWL-Slider überschreiben: keine Schatten, kein Overflow */
#c499 .image-slider,
#c632 .image-slider {
  margin-bottom: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  border-radius: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 100%; /*Logos mittig */
  flex-grow: 1; /*Logos mittig */
}

/* 4. Container entleeren */
#c499 .container,
#c632 .container {
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column;
  flex-grow: 1;
  max-width: 100%;
}

/* 5. Weißer sichtbarer Kasten mit Logo (zentriert & kompakt) */
#c499 .image__slide,
#c632 .image__slide {
  background: #fff;
  border-radius: 6px;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  max-width: 100%;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-grow: 1 !important;
  height: 100% !important;
}



/* 6. Bild-Wrapper korrekt ausrichten */
#c499 picture,
#c632 picture {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  max-height: 100px;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* 7. Logo-Bild sichtbar & skalierbar */
#c499 picture img,
#c632 picture img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  padding: 0;
  margin: 0 auto;
  display: block;
}

/*abstand nach unten*/
#c499, #c632 {
  margin-bottom: 1.5rem !important; 
}

/* ========== Mittlere Spalte ========== */
/* Mittlere Spalte vertikal zentrieren (enthält #c632) */

.main-footer .row > .col-md-4:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ========== Rechte Spalte ========== */
.main-footer .image-embed-item {
  border-radius: 0 !important;
  box-shadow: none !important;
  background: none !important;
  padding: 0 !important;
  margin: 0 auto !important;
  display: block;
}

/* ce-row – ohne Ecken */
.main-footer .ce-row {
  border-radius: 0 !important;
  overflow: visible !important;
  background: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 auto !important;
}

/* Rechte Spalte im Footer (3. Spalte) rechtsbündig machen */
.main-footer .row > .col-md-4:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}


/* Icons-Zeile nebeneinander, Abstand */
#c443 .ce-row {
  display: flex;
  justify-content: flex-end !important;
  gap: 1rem;
}

/* Abstand im Icon-Container (#c443) entfernen */
#c443 .ce-textpic,
#c443 .ce-gallery,
#c443 .ce-textpic > div,
#c443 .ce-gallery > div {
  padding: 0 !important;
  margin: 0 !important;
}


/*Button */
/* Rechte Spalte: Button-Block (#c682) wie Logo-Kacheln gestalten */
#c682 {
  background: #fff;
  border-radius: 6px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100% !important;
  max-width: none !important;
  align-self: center !important;
  margin-bottom: 1.5rem;
  margin-top: auto;
}

#c682 .frame-container,
#c682 .ce-bodytext,
#c682 .container{
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
#c682 p {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
#c682 .btn.btn--gradient {
  text-align: center;
  color: var(--color-secondary) !important;
  display: inline-block;
  margin: 0 !important;
  border: none !important;
}
#c682 .btn.btn--gradient:hover {
  background: #fff !important;
  color: var(--color-primary) !important;
  border: none !important;
}

/*Datenschutz/Kontakt/Impressum*/
/* Mache Container von #c635 (also das .container-DIV) zu einem Flex-Wrapper */
#c635 .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: nowrap;
}

/* Abstand */
#c635 {
  margin-bottom: 0;
}

/* Die einzelnen Textblöcke (TYPO3 .frame) nebeneinander */
#c635 .frame-type-text {
  display: inline-block;
  margin: 0;
  padding: 0;
}

/* responsiv */
@media (max-width: 768px) {
  .main-footer .row > .col-md-4:last-child {
    align-items: center !important;
  }

  #c682 {
    justify-content: center !important;
    margin-top: 1.5rem;
  }

  #c443 .ce-row {
    justify-content: center !important;
  }

  #c635 .container {
    justify-content: center !important;
    flex-wrap: wrap;
    text-align: center;
    gap: 1rem;
  }
}


/*============================================================================/*


/* ======================================
   Grid Container Von Herzen
   ====================================== */
.content-section .container * {
    border-radius: 12px;
    
}

/* Von Herzen, weiße Blöcke gleich groß */
#c312 .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    max-width: 1440px !important;
    width:100% !important;
}

#c312 .content-section {
  padding: 0 !important;
  margin: 0 !important;
}

#c312 .content-section > .container {
  padding: 0 !important;
}

#c312 .frame {
  padding: 1.25rem !important;
}

#c312 .col-md-4 {
    display: flex;
    flex-direction: column;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  width: 33.333333% !important;
  flex: 0 0 33.333333% !important;
  max-width: 33.333333% !important;
}

#c312 .col-md-4.col-lg-4 {
  flex: 0 0 33.3333% !important;
  max-width: 33.3333% !important;
}

#c296 .col-md-4 {
  max-width: 36% !important; /* vorher 33% */
  flex: 0 0 36% !important;
}

#c296 .col-md-4 > section {
    flex: 1;
    display: flex;
    flex-direction: column;
}

#c296 .col-md-4 .container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

#c296 .col-md-4 .frame {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 12px;
    padding: 1.25rem;
}

/* Vertikale Anordnung Text fixieren */
#c312 .ce-textpic {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Galerie (Bild) bleibt oben */
#c312 .ce-gallery {
  margin-bottom: 1rem;
}

/* Textbereich zentriert im verbleibenden Raum */
#c312 .ce-bodytext {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@media (min-width: 1200px) {
  #c312 h4,
  #c642 h4,
  #c643 h4,
  #c649 h4 {
  font-size: clamp(0.5rem, 1.0vw + 0.5rem, 1.8rem);
  line-height: 1.2;
  }
}


#c312 .row,
#c312 .ce-row {
  display: flex;
  flex-wrap: wrap;
}



/* RESPONSIVE Elemente*/
/* Standard: alles sichtbar */
#c642, #c643, #c649,
#c312, #c296 {
  display: block;
}


#c642 .ce-bodytext,
#c642 .ce-headline,
#c643 .ce-bodytext,
#c643 .ce-headline,
#c649 .ce-bodytext,
#c649 .ce-headline {
  font-size: clamp(1.5rem, 4vw + 1rem, 3rem) !important;
  line-height: 1.2;
}


/* Ab 950px (Desktop) diese Elemente ausblenden: nur Mobil sichtbar */
@media (min-width: 1200px) {
  #c642, #c643, #c649, #c650 {
    display: none;
  }
}

/* Unter 950px (Mobil) diese Elemente ausblenden: nur Desktop sichtbar */
@media (max-width: 1199.98px) {
  #c312, #c296 {
    display: none;
  }
}
@media (max-width: 1200px) {
  #c642, #c643, #c649 {
    width: 100%;
    max-width: 100%;
  }

  #c642 .container, #c643 .container, #c649 .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
}

#c642 .ce-textpic, 
#c644 .ce-textpic, 
#c646 .ce-textpic, 
#c648 .ce-textpic {
  padding: 0 !important;
}


/*Hintergrund*/
#c644, #c646, #c648 {
  background-color: rgba(157, 214, 227, 0.5); 
  padding: 20px;
  border-radius: 12px; 
}






/* TEST: Container verbreitern 

#c296 .col-md-4,
#c642 .col-md-4{
    outline: 2px solid magenta !important;
}
#c312 .col-md-4 .frame,
#c642 .col-md-4 .frame{
  outline: 2px solid green !important;
}

#c312 .ce-bodytext,
#c642 .ce-bodytext{
  outline: 2px dotted orange !important;
}
#c312 img,
#c312 svg,
#c642 img,
#c642 svg {
  outline: 2px dashed blue !important;
}

*/

/* ======================================
   Grid Gallery
   ====================================== */
/* Overlay transparent machen */
.overlay {
  background: none !important;
  background-color: transparent !important;
}

/* Kamera-Icon ausblenden */
.overlay-icon {
  display: none !important;
}

/* ======================================
   News-Artikelliste gelbe Fähnchen mit Datum
   ====================================== */
.tag-label {
  display: none !important;
}

/* ======================================
   News-Artikelliste: Pagination Buttons einheitlich
   ====================================== */

/* Einheitliches Basis-Styling für alle Buttons */
ul.pagination li.page-item .page-link {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 45px !important;
  padding: 0 14px !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  border: 2px solid var(--color-primary);
  border-radius: 6px !important;
  background-color: transparent;
  color: var(--color-primary) !important;
  white-space: nowrap;
  text-decoration: none;
  box-sizing: border-box;
  transition: all 0.2s ease;
  transform: translateY(1px);
}

/* Hover-Effekt */
ul.pagination li.page-item .page-link:hover {
  background-color: var(--color-secondary) !important;
  border-color: var(--color-secondary) !important;
  color: #fff !important;
}

/* Runder, quadratischer Stil nur für Seitenzahlen */
ul.pagination li.page-item:not(.previous):not(.next) .page-link {
  width: 45px !important;
  padding: 0 !important;
}

/* Zusätzliche Breite für „nächste“ und „vorherige“ */
ul.pagination li.previous .page-link,
ul.pagination li.next .page-link {
  padding: 0 40px !important;
}

/* Styling äußerer Container von vorherige/nächste – kein Einfluss */
ul.pagination li.page-item.previous,
ul.pagination li.page-item.next {
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

/* Kein Rahmen um beliebige <li>-Elemente */
ul.pagination li {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* === Einheitliche Abstände zwischen den Buttons === */

/* Alle Buttons stehen gleichmäßig nebeneinander */
ul.pagination li.page-item + li.page-item {
  margin-left: 8px; 
}

/* Optional: „vorherige“ extra absetzen */
ul.pagination li.page-item.previous {
  margin-right: 16px !important;
}

/* Optional: „nächste“ extra absetzen */
ul.pagination li.page-item.next {
  margin-left: 16px !important;
}

/* ======================================
   Image Slider ohne Schatten
   ====================================== */
.image-slider,
.image-slider *,
.image-slider .image__slide,
.image-slider .image-teaser {
  box-shadow: none !important;
  filter: none !important;
}

/* ======================================
   Image Teaser ohne Schatten
   ====================================== */
.image-teaser {
  box-shadow: none !important;
}


/* ======================================
   Header-Logo
   ====================================== */
.brand-logo {
  display: flex;
  align-items: center;
  height: 100%; 
}

.brand-logo img.logo {
  max-width: 350px;
  height: auto;
  width: auto;
  display: block;
  margin-top: 5px;
}

/* Logo beim Scrollen */
.page-header.fixed .brand-logo img.logo {
  max-width: 300px !important;
  margin-top: 5px;
}

/* Ab 992px bis 1199px (mittlere Bildschirme) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .brand-logo img.logo {
    max-width: 250px;
  }
  .page-header.fixed .brand-logo img.logo {
    max-width: 200px !important;
  }
}

/* Unter 992px (Tablets und kleiner) */
@media (max-width: 991.98px) {
  .brand-logo img.logo {
    max-width: 250px;
  }
  .page-header.fixed .brand-logo img.logo {
    max-width: 200px !important;
  }
}

/* ======================================
   Newsletter
   ====================================== */
#c637 {
  display: flex;
  align-items: center; 
}

/*Responsiv */
/* Standard (Desktop) - Icon*/
#c639 img {
  width: 150px;
  height: 150px;
  display: block;
  margin: 0 auto 1rem auto; /* zentriert */
}

/* Mobil - Icon*/
@media (max-width: 991.98px) {
   #c639 img {
    width: 100px !important;
    height: auto !important;
    margin: 0 !important;
  }
}

/* Nur Desktop sichtbar (ab 992px) -Text */
@media (max-width: 991.98px) {
  #c638 {
    display: none;
  }
}

/* Nur Mobil sichtbar (unter 992px) */
@media (min-width: 992px) {
  #c656 {
    display: none;
  }
}


/* ======================================
   Was ist die IB-Text
   ====================================== */

/* Ab 992px (Desktop) #c655 ausblenden, #c621 anzeigen */
@media (min-width: 992px) {
  #c655 {
    display: none !important;
  }
  #c621 {
    display: block !important;
  }
}

/* Unter 992px (Mobil) #c621 ausblenden, #c655 anzeigen */
@media (max-width: 991.98px) {
  #c621 {
    display: none !important;
  }
  #c655 {
    display: block !important;
  }
}
/*Bild Zentrierung */
#c622 {
  display: flex;
  align-items: center; 
  justify-content: center;
}

/* ======================================
   Zahlenfakten responsiv
   ====================================== */
@media (max-width: 991.98px) {
  #c298 > div {
    margin-bottom: 3rem;
  }
}

#c298 h1,
#c298 h2,
#c298 h3,
#c298 h4,
#c298 h5,
#c298 h6,
#c298 p {
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
}

/* ======================================
   Interview responsiv
   ====================================== */

/* Desktop: Diese Elemente nur anzeigen, wenn größer als 1199.98px */
@media (min-width: 768px) {
  #c665, #c666,#c667 {
    display: none;
  }
}

/* Mobil & Tablet: Diese Elemente nur anzeigen, wenn kleiner gleich 1199.98px */
@media (max-width: 767.98px) {
  #c604, #c624, #c605 {
    display: none;
  }
}
