/*
 * Custom css for WEBSEITE
 */
 
/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
 

/* Baskerville Normal */
@font-face {
    font-family: "Baskerville Normal";
    font-style: normal;
    font-weight: 400;
    src: local('Baskerville Normal'), 
		 url("../fonts/baskvl.woff") format('woff');
	font-weight: 400;
    font-style: normal;
	font-display: swap; 
    }
    
/* Baskerville BT Roman */
@font-face {
    font-family: "Baskerville BT Roman";
    src: local('Baskerville BT Roman'), 
		 url("../fonts/BaskervilleBT.woff") format('woff');
    font-weight: 400;
	font-style: normal;
	font-display: swap; 
}

/* Nunito Sans */

@font-face {
  font-family: "Nunito Sans";
  src: local('Nunito Sans'), 
		url("../fonts/nunito-sans-v15-latin-regular.woff2") format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap; 
}


/*-------------------------------------------------------------- 
# General, Font
--------------------------------------------------------------*/

body{
  font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, 
				"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1.125rem;
  line-height: 1.5;
  position: relative;
  height: 100%;
}


.break-all {
  word-break: break-all;
}

.keep-all {
  word-break: keep-all;
}

.break-word {
  word-break: break-word;
}

.serif-n {
  font-family: "Baskerville Normal", 
				"Baskerville Old Face", "Hoefler Text", "Garamond", "Times New Roman", serif !important;
}

.serif-r {
  font-family: "Baskerville BT Roman", 
				"Baskerville Old Face", "Hoefler Text", "Garamond", "Times New Roman", serif !important;
}

.serif-s {
  font-family: "Nunito Sans", 
				-apple-system, BlinkMacSystemFont,"Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  /*font-weight: 400 !important;*/
}

.fett {
  font-weight: 700 !important;
}

.pagetitle {
  letter-spacing: 4px;
  color: #132c55 !important;
}


h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1, .h65 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  /*font-weight: 600;*/
  line-height: 1.2;
  /*color: #1a1a1a;*/
  color: #000000;
}

h1, .h1 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 4rem;
  }
}

h2, .h2 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 3rem;
  }
}

h3, .h3 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 2.5rem;
  }
}

h4, .h4 {
  font-size: 1.25rem;
}

h5, .h5 {
  /*--font-size: 0.875rem;--*/
  font-size: 1rem;
}

h6, .h6 {
  font-size: 0.75rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.ul-np {
  padding-left: 1rem;
}

.text-left {
  text-align: start;
}

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


/*-------------------------------------------------------------- 
# News, News-Artikel
--------------------------------------------------------------*/

.content-with-fixed-header-padding {
  padding-top: 90px; /* Der Header (Navigationsleiste) hat 70px Höhe */
}

.blog-post-meta .meta-line {
  margin-bottom: 0.25rem; /* Kleiner Abstand zwischen den Zeilen */
  white-space: nowrap; 
  /* Weitere Stile hier, z.B. font-size, color */
}

.blog-post-meta .meta-line time {
  display: inline;
}


/*--------------------------------------------------------------
# News List Styling
--------------------------------------------------------------*/
.news-list-item {
  background-color: #fff; /* Sicherstellen, dass der Artikel-Kasten weiß ist, falls der äußere Container mal nicht weiß sein sollte */
  border: 1px solid #e9ecef; /* Leichter Rand um jeden Artikel */
  border-radius: 0.25rem; /* Abgerundete Ecken, optional */
  overflow: hidden; /* Wichtig, falls Bilder überstehen */
}

.news-list-item-img {
  width: 100%; /* Bild füllt die Spalte */
  height: 200px; /* Feste Höhe für das Bild */
  object-fit: contain; /* Schneidet nichts ab*/
  display: block; /* Entfernt ggf. kleinen Abstand unter dem Bild */
  background-color: #f8f9fa; /* Optional: Eine leichte Hintergrundfarbe für die leeren Bereiche */
}

.news-list-item-content {
  /* Padding ist schon durch p-4 im HTML gesetzt, hier ggf. anpassen */
}

.news-list-item-date {
  font-family: "Nunito Sans";
  font-size: 0.75em;
  /* color: #6c757d; /* Bereits durch text-muted im HTML */
}

.news-list-item-title a {
  color: #132c55; /* Deine Haupt-Blaufarbe für Überschriften */
  transition: color 0.2s ease-in-out;
}

.news-list-item-title a:hover {
  color: #1b75bc; /* Deine Hover-Farbe */
  text-decoration: none;
}

.news-list-item-excerpt {
  font-size: 0.95em;
  color: #495057;
}

.news-list-item-readmore {
  /* Bootstrap-Button-Styling wird verwendet, hier ggf. Anpassungen */
  font-weight: 500;
}

.news-list-item-readmore .bi { /* Icon im Button */
  vertical-align: middle;
  margin-left: 0.25em;
}

/* Anpassungen für die Paginierung, falls Bootstrap-Standard nicht reicht */
.pagination .page-item.active .page-link {
  background-color: #132c55; /* Deine Hauptfarbe */
  border-color: #132c55;
  color: #fff;
}

.pagination .page-link {
  color: #132c55; /* Deine Hauptfarbe */
}

.pagination .page-link:hover {
  color: #1b75bc; /* Deine Hover-Farbe */
}

.pagination .page-item.disabled .page-link {
  color: #6c757d;
}

.news-list-container {
  max-width: 600px;
  margin-left: auto; /* Zentriert den Container, wenn er schmaler als der Viewport ist */
  margin-right: auto; /* Zentriert den Container */
}


/*--------------------------------------------------------------
# Single Article Page Styling
--------------------------------------------------------------*/
.article-content-wrapper {
  max-width: 600px; /* Gewünschte maximale Breite für den Inhalt */
  margin-left: auto;
  margin-right: auto;
}

.article-image-container {
  width: 100%; /* Nimmt die Breite des article-content-wrapper (max 600px) */
  margin-bottom: 1.5rem; /* Abstand unter dem Bild */
}

.article-image {
  width: 100%; /* Bild füllt den article-image-container */
  height: 200px; /* Feste Höhe für das Bild */
  object-fit: contain; /* Bild wird nicht abgeschnitten */
  display: block;
  border-radius: 0.25rem; /* Optionale abgerundete Ecken */
}

.article-meta { /* Stile für den Meta-Block (Datum, Autor) */
  font-family: "Nunito Sans";
  font-size: 0.85rem;
}

.article-meta .meta-line {
  margin-bottom: 0.25rem;
  font-size: 0.9em;
  color: #6c757d; /* Grauton für Metadaten */
}

.blog-post-content p {
  margin-bottom: 1rem; /* Standard-Absatzabstand */
  line-height: 1.7; /* Etwas mehr Zeilenhöhe für bessere Lesbarkeit */
  color: #000000;
}

.blog-post-content b {
font-weight: 700 !important;
}

.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
  margin-top: 2rem; /* Mehr Abstand über Zwischenüberschriften im Artikel */
  margin-bottom: 1rem;
  font-family: "Baskerville Normal", serif; /* Beispiel: Serif für Zwischenüberschriften */
  color: #132c55; /* Deine Hauptfarbe */
}


/*--------------------------------------------------------------
# Suche Pagefind
--------------------------------------------------------------*/

/* Pagefind UI - Elemente ausblenden */
.pagefind-ui__drawer, /* Das gesamte aufklappende Panel, wenn die Suche aktiv ist */
.pagefind-ui__results-area { /* Stellt sicher, dass wir den Ergebnisbereich später gezielt stylen können */
    /* Hier keine globalen Ausblendungen, da wir die Ergebnisse ja sehen wollen */
}

/* Spezifische Elemente, die du ausblenden möchtest */
.pagefind-ui__search-clear,   /* Der Standard "Clear"-Button */
.pagefind-ui__result-count,   /* Die Zeile "X results for Y" */

/* NEU: Ausblenden des gesamten Filter-Panels basierend auf deinem HTML */
.pagefind-ui__filter-panel,   /* Dieses <fieldset> umschließt alle Filter */

/* Optional: Falls es einen separaten "Filters"-Button gibt, der das Panel öffnet/schließt,
   und dieser eine andere Klasse hat (z.B. .pagefind-ui__filter-trigger oder ähnlich),
   müsstest du diesen auch ausblenden. Oft ist das <summary>-Element der Trigger.
   Wenn du das <details>-Element (.pagefind-ui__filter-block) ausblendest, ist das oft schon genug.
*/
.pagefind-ui__filter-block /* Blendet einzelne Filterblöcke wie "Language" aus, wenn das Panel noch sichtbar wäre */
{
  display: none !important; /* Radikal ausblenden */
}

/* Styling für die Ergebnisliste, um sie sauberer zu machen */
.pagefind-ui__results {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem; /* Abstand über den Ergebnissen */
}

.pagefind-ui__result {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee; /* Leichte Trennlinie zwischen Ergebnissen */
}
.pagefind-ui__result:last-child {
  border-bottom: none;
}

.pagefind-ui__result-link { /* Der Link zum gefundenen Artikel */
  text-decoration: none;
  font-weight: normal; /* Nicht fett, da es nur der Link ist */
  display: block; /* Damit der ganze Bereich klickbar ist */
  text-align: left;
}

.pagefind-ui__result-title { /* Der Titel im Suchergebnis */
  font-family: "Baskerville Normal";
  font-weight: bold; /* Titel fett machen */
  color: #132c55; /* Deine Linkfarbe */
  font-size: 1.1em;
  margin-bottom: 0.25rem;
  text-align: left;
}

.pagefind-ui__result-excerpt { /* Der Textauszug */
  font-family: "Baskerville Normal";
  font-size: 0.9em;
  color: #555;
  text-align: left;
}

.pagefind-ui__message {
  font-family: "Nunito Sans";
  font-size: 0.9em;
  color: #555;
}

/* Container für das Suchfeld auf News-Seiten */
.search-container-news {
  text-align: center; /* ist schon im HTML, aber hier zur Sicherheit */
}

/* Das eigentliche Such-Input-Feld */
.pagefind-ui__search-input {
  padding: 0.375rem 0.75rem; /* Ähnlich wie Bootstrap-Buttons/Inputs */
  font-size: 1rem;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem; /* Abgerundete Ecken */
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  max-width: 400px; /* Begrenze die Breite des Suchfelds selbst */
  margin: 0 auto; /* Zentriert das Input-Feld, wenn es eine max-width hat */
  display: block; /* Damit margin: auto funktioniert */
}

.pagefind-ui__search-input:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}


/*--------------------------------------------------------------
# Datenschutz und Impressum
--------------------------------------------------------------*/
#txt2 {
  color:#343a40;
}
#txt2 b {
  font-weight: 700 !important;
}

.b-example-divider {
  height: 3rem;
  background-color: rgba(0, 0, 0, .1);
  border: solid rgba(0, 0, 0, .15);
  border-width: 1px 0;
  box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.b-divider {
  height: 3rem;
  background-color: #e8e8e8;
  box-shadow: 0 0 0 0.1rem rgba(26, 26, 26, 0.25);
}

.b-light {
  height: 5rem;
  background-color: #e0e0e0;
}
/*--------------------------------------------------------------
# Header, Navigation
--------------------------------------------------------------*/

#header  {
  width: 100%;
  min-height: 70px;
  background-color: #ffffff;
}

#navtop .nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: 600;
  --bs-nav-link-color: #1a1a1a;
  --bs-nav-link-hover-color: #1b75bc;
  --bs-nav-link-disabled-color: #919aa1;
  --bs-nav-link-active-color: #1b75bc;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
}

#navtop .navbar {
  background-color: #ffffff;
  font-size: 0.875rem;
  font-weight: 300;
  text-transform: uppercase;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  letter-spacing: 3px;
  justify-content: space-between;
}

#navtop .navbar-expand .navbar-nav .nav-link {
  padding-right: 1rem;
  padding-left: 1rem;
}


#navtop .nav-item {
  margin-right: 0rem;
}

#navtop .nav-link {
  padding-right: 1rem;
  padding-left: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

#navi .disabled{
  color: #919aa1;
}

#navtop .nav-link:hover{
  color: #1b75bc;
}

#navtop .navbar-brand {
  padding-bottom: 0px;
  margin-right: 32px;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-right: 16px;
  font-size: 20px;
  color: #1a1a1a;
  text-decoration: none;
  white-space: nowrap;
}

.breuss-logo {
  width: 170px;
  height: 40px;
  overflow: hidden;
  margin-top: -6px;
}

.scrollspy-y {
  height: 100%;
}

/*--------------------------------------------------------------
# Containers, Centering, Background
--------------------------------------------------------------*/

.centerpages {
  max-width: 1560px;
  margin: auto;
}

.container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  max-width: 1560px;
  justify-content: center;
  margin: auto;
}

.container {
  height: 100%;
  max-width: 1560px;  
  justify-content: center;
  margin: auto;
}

.white-bg {
  background-color: #ffffff;
  margin: auto;
}

footer.white-bg { 
  background-color: #ffffff !important;
}

.light-bg {
  background-color: #e0e0e0;
  margin: auto;
}

.grey-bg {
  background-color: #b6c0cd;
  margin: auto;
}
.dark-bg {
  background-color: #070b16;
  margin: auto;
}

.grad-bg {
  background-color: #070b16;
  background-image: linear-gradient(#070b16 20%, #132c55, #070b16 80%);
  margin: auto;
}

.pic-bg {
	background-color: #070b16; /* blue-black */
  	background-image:url("../images/2bg.jpg");
	margin: auto;
	width:1560px;
	height:800px; 
}

.ico72 {
	height: 72px;
	width: 72px;
}

section { 
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

main > p:last-child:empty {
  margin-bottom: 0;
  /* Optional, um sicherzugehen, dass er keine Höhe einnimmt */
  display: none; 
}

/*--------------------------------------------------------------
# STARTPAGE 
--------------------------------------------------------------*/


#test {
  background: url("../images/startpage_high_139kb_1560x889px.jpg");
  background-repeat: no-repeat;
  background-position: center;
  max-width: 100%;
  color: #000000;
  
/*--width: 1560px; -*/
/*--height: 885px; -*/
}

#tom {
  color: #000000;
  font-size: 1.8rem;
  font-weight: 500;
  text-transform: none;
}

#schwp {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 200;
  letter-spacing: 10px;
  margin-top: 2rem;
}

.startpage {
	position:relative;
	height:889px;
	margin-top:70px;
}

.circ {
  height: 213px;
  width: 213px;
  border-radius: 50%;
  background-color: #ffffffa1;
}

.top-20 {
  top: 20% !important;
}

.bottom-12 {
  bottom: 12% !important;
}

.end-15 {
  right: 15% !important;
}

#test div.layer1 {
	width: 334px;
	height: 130px;
	overflow: hidden;
}

#test div.layer5 {
	height: 600px;
	width: 360px;
	overflow: hidden;
}

#test div.layer6 {
	width: 300px;
	height: 110px;
	background-color: #ffffff78;
	overflow: hidden;
}

#test div.layer2 {
	background-image:url('../images/white_214_1560.png');
	width: 1560px;
	height: 214px;
	overflow: hidden;
}

#test div.layer3 {
	width: 213px;
	height: 213px;
	background-color: #ffffffa1;
}

#test div.layer4 {
	width: 1400px;
	color: #ffffff;
	overflow: hidden;
}

.mx-45 {
  margin-right: 2rem !important;
  margin-left: 2rem !important;
}

#test p {
	margin-top:0;
	margin-bottom:0;
}

div.top-25 {
	top: 25% !important;
}

div.top-50 {
	top: 50% !important;
}

div.absolute2{
  position: relative;
  text-align: center;
  height: 100px;
  width:350px;
  top: 25%;
  left: 37%;
  right:350px;
  margin:auto;
  transform:translateX(-40%);
  border: 1px solid #ffff00; /*- yellow -*/
  position:absolute;
}

div.relative1{
  text-align: center;
  height: 100px;
  width:350px;
  top: 25%;
  left: 37%;
  right:350px;
  margin:auto;
  transform:translateX(-40%);
  border: 1px solid #ffff00; /*- yellow -*/
  position:absolute;
}



/*- green -*/
@media (min-width: 800px){
	div.absolute1 {
	  position: absolute;
	  text-align: center;
	  top: 29%;
	  right: 40%;
	  width: 350px;
	  height: 100px;
	  border: 3px solid #73AD21; /*- green -*/
	}
}

/*- green -*/
@media (min-width: 700px)and (max-width: 799px){
	div.absolute1 {
	  position: absolute;
	  text-align: center;
	  top: 29%;
	  right: 28%;
	  width: 350px;
	  height: 100px;
	  border: 2px solid #ffffff; /*- white -*/
	}
}

/*- green -*/
@media (min-width: 200px)and (max-width: 699px){
	div.absolute1 {
	  position: absolute;
	  text-align: center;
	  top: 29%;
	  right: 16%;
	  width: 350px;
	  height: 100px;
	  border: 1px solid #000000; /*- yellow -*/
	}
}



/*--------------------------------------------------------------
# List Groups
--------------------------------------------------------------*/
.list-group {
  max-width: 100%;
  margin: 4rem auto;
}

#accordion .list-group-item {
  /*color: var(--bs-gray-800);	*/
  color: 000000;
}

#accordion .list-group-item h4 {
  font-size: 1.2rem;
  color: #000000;
  text-transform: uppercase;
  font-weight: 200;
  letter-spacing: 3px;
}

#accordion .list-group-item h5 {
  color: #55595c;
  text-transform: none;
  font-weight: 300;
  letter-spacing: 2px;
}	

#accordion .list-group-item h6 {
  color: #003399aa;
  font-weight: 600;
}	

#accordion .list-group-item p{
  font-size: 1.125rem;
  color: var(--bs-gray-800);
}

#accordion ul.dash {
  list-style-position: outside;
  padding-left: 2rem;
  padding-top: 1rem;
  font-size: 1.125rem;
  color: 000000;
  font-weight: 600;
}

#accordion .h6 {
  margin-top: 0;
  margin-bottom:0;
  line-height: 0.5;
  color: 000000;
}

#accordion .blu{
  color: #003399aa;
  font-size: 0.875rem;
}

#accordion li{
  padding: 5px 8px 5px 5px; 
}
	
#accordion .collapse {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) inset!important;
}

#accordion .list-group {
  max-width: 1000px;
  margin: 4rem auto;
}


#accordion .list-group-item-action:focus {
  z-index: 3;
  color: #000000;
  background-color: #ffffff;
}

#accordion .list-group-item-action:hover {
  z-index: 2;
  color: #000000;
  background-color: #ffffff;
  text-decoration: none;
}

.pt-sm-6 {
	padding-top: 4rem !important;
}

.ps-6 {
  padding-left: 4rem !important;
}

.ps-7 {
  padding-left: 6rem !important;
}

.ps-8 {
  padding-left: 7rem !important;
}

/*--------------------------------------------------------------
# BIO
--------------------------------------------------------------*/
#bio .portrait {
  width: 300px;
  height: 400px;
}

.text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1rem;
}


#bio a.btn, #bio a.btn:visited {
    color:var(--bs-gray-800);
}
#bio hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

#bio ul.dash {
  list-style-type: "\2212";
  list-style-position: outside;
  padding: 0 0 0 0;
  font-size: 1.125rem;
  color: var(--bs-gray-800);
  font-weight: lighter;
}

#bio li{
  padding: 5px 8px 5px 5px;
  margin-left:15px;  
}

#bio .accordion-body {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) inset!important;
}

#bio .accordion-body p {
  font-size: 1.125rem;
  padding: 0 0 0 0;
  text-align: left;
  color:  var(--bs-gray-800);
}
#bio .accordion-item {
  color: var(--bs-gray-800);
  font-size: 1.125rem;  
}

#bio .accordion-item h6 {
  font-weight: 600;
  line-height: 1.5;
  color: var(--bs-gray-900);  /*- #1a1a1a -*/
}

#bio .accordion-item h4 {
  font-size: 1.2rem;
  color: #000000;
  text-transform: uppercase;
  font-weight: 200;
  letter-spacing: 3px;
}

#bio .accordion-button h5 {
  font-weight: 600;
  line-height: 1.5;
  color: var(--bs-gray-900);
}
#bio .accordion-button:focus {
  z-index: 3;
  border-color: #8d8d8d;
  outline: 0;
  box-shadow: 0 0 0 1px rgba(26, 26, 26, 0.25);
}

.wht {
  background-color: #ffffff;
}

.wt {
  color: #ffffff;
}

.testdiv {
  background-color: green;
}

.bl {
  background-color: blue;
}



/*--------------------------------------------------------------
# FOOTER 
--------------------------------------------------------------*/
#bottom .dark-bg {
  background-color: #070b16;
}

#bottom .blue-bg {
  background-color: #132c55;
}

#bottom .grey-bg {
  background-color: #b6c0cd;
}

#bottom .white-bg {
  background-color: #ffffff;
}

#bottom a{
	text-decoration: none !important;
}

.footer-logo {
	width: 24px;
	height: 24px;
}

/*--------------------------------------------------------------
# WARUM
--------------------------------------------------------------*/
.spc {
  height: 50px;
	width:100%;
}


.blog-slider {
  width: 95%;
  position: relative;
  max-width: 530px;
  margin: auto;
  background: #fff;
  /*box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);*/
  padding: 5px;
  border-radius: 0;
  height: 300px;
  transition: all 0.3s;
}
@media screen and (max-width: 992px) {
  .blog-slider {
    max-width: 530px;
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .blog-slider {
    min-height: 300px;
    height: auto;
    margin: 80px auto;
	padding-left:4px;
	padding-right:4px;
  }
}
@media screen and (max-height: 500px) and (min-width: 992px) {
  .blog-slider {
    height: 300px;
  }
}
.blog-slider__item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .blog-slider__item {
    flex-direction: column;
	width: 100%
  }
}

.blog-slider__item.swiper-slide-active .blog-slider__img img {
  opacity: 1;
  transition-delay: 0.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > * {
  opacity: 1;
  transform: none;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(1) {
  transition-delay: 0.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(2) {
  transition-delay: 0.4s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(3) {
  transition-delay: 0.5s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(4) {
  transition-delay: 0.6s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(5) {
  transition-delay: 0.7s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(6) {
  transition-delay: 0.8s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(7) {
  transition-delay: 0.9s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(8) {
  transition-delay: 1s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(9) {
  transition-delay: 1.1s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(10) {
  transition-delay: 1.2s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(11) {
  transition-delay: 1.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(12) {
  transition-delay: 1.4s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(13) {
  transition-delay: 1.5s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(14) {
  transition-delay: 1.6s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(15) {
  transition-delay: 1.7s;
}

.blog-slider__img {
  width: 260px;
  flex-shrink: 0;
  height: 260px;
  box-shadow: 5px 10px 30px 1px rgba(0, 0, 0, 0.2);
  border-radius: 0;
  border: 6px solid #2a4b6f; /* blau #2a4b6f;*/
  transform: translateX(-130px);
  overflow: hidden;
}
.blog-slider__img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  opacity: 0.8;
}
.blog-slider__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  border-radius: 0;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .blog-slider__img {
    transform: translateY(-50%);
    width: 65%;
  }
}
@media screen and (max-width: 576px) {
  .blog-slider__img {
    width: 75%;
  }
}
@media screen and (max-height: 500px) and (min-width: 992px) {
  .blog-slider__img {
    height: 260px;
  }
}
.blog-slider__content {
  margin-right: -50px;
  padding-right: 0px;
  transform: translateX(-100px);
}
@media screen and (max-width: 768px) {
  .blog-slider__content {
    margin-top: -100px;
	margin-right: 0px;
	transform: translateX(0);
    text-align: center;
    padding: 10px 10px;
  }
}
@media screen and (max-width: 576px) {
  .blog-slider__content {
	margin-top: -100px;
    padding-bottom: 10px;
	padding-left: 4px;
	padding-right: 4px;
	transform: translateX(0px);
  }
}
.blog-slider__content > * {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.4s;
}

.blog-slider__title {
  font-size: 1.5rem;
  font-weight: 400;
  color: #0d0925;
  margin-bottom: 5px;
}

.blog-slider__text {
  color: #333333;
  margin-bottom: 5px;
  line-height: 1.5em;
}

#tb .blog-slider__text {
  color: #4e4a67;
  font-size: 1rem;
  margin-bottom: 5px;
  line-height: 2em;
  letter-spacing: 2px;
}
