
   @font-face{
       font-family: 'Titillium';
       src: url('/fonts/TitilliumWeb-Regular.ttf');
       font-weight: normal;
       font-style: normal;
  }

  @font-face{
       font-family: 'Titillium';
       src: url('/fonts/TitilliumWeb-SemiBold.ttf');
       font-weight: bold;
       font-style: normal;
  }

  @font-face{
       font-family: 'Titillium';
       src: url('/fonts/TitilliumWeb-Light.ttf');
       font-weight: 300;
       font-style: normal;
  }

  @font-face{
       font-family: 'FeG';
       src: url('/fonts/FeG-Signet.ttf');
       font-style: normal;
       font-weight: normal;
  }

  @font-face{
       font-family: 'FeG';
       src: url('/fonts/FeG-Headline.ttf');
       font-weight: bold;
  }

  @font-face{
       font-family: 'Roboto';
       src: url('/fonts/Roboto-Regular.ttf');
       font-style: normal;
       font-weight: normal;
  }
  @font-face{
       font-family: 'Roboto';
       src: url('/fonts/Roboto-Bold.ttf');
       font-style: normal;
       font-weight: bold;
  }

  body {
	  font-family: "Roboto", sans-serif;
	  font-weight: normal;
	  font-size: 1.0rem;
  }

  a:link    { text-decoration:none; }
  a:visited { text-decoration:none; }
  a:active  { text-decoration:none; }

  /* Blaue Überschriften, mit Luft davor und danach */
  h1 { color:#444488; padding-top: 1em; padding-bottom: 0.5em; font-weight: bold;}
  h2 { color:#444488; padding-top: 1em; padding-bottom: 0.5em; font-weight: bold;}
  h3 { color:#444488; padding-top: 1em; padding-bottom: 0.5em; font-weight: bold;}
  h4 { color:#444488; padding-top: 1em; padding-bottom: 0.5em; font-weight: bold;}


  /* Banner  ----------------------------------------------------*/
  /* Das Banner-Bild ohne BGSCALE */
  .pagepicture {
	  margin-bottom: 0px;
  }

  /* Das Banner-Bild mit BGSCALE */
  .banner {
	  /*
  	  background-position: center center;
  	  background-repeat: no-repeat;
  	  background-size: cover;
	  */
    	  max-height: 50vh;

	  object-fit: cover;
	  width: 100%; 
  }



  /* Startpage --------------------------------------------------*/
  /* Der Wilkommenstext auf der Startseite */
  .welcome {
	  text-align: center;
	  margin-left:20%;
	  margin-right:20%;
	  padding-bottom:20px
  }


 /* footer  ----------------------------------------------------*/
 /* Der Footer: Dunkel mit weißer Schrift, Überschriften etwas grau
      Soll nicht am linken Rand kleben - nur für große Displays */
 .page-footer {
	  margin-top: 85px;
	  background-color: #2c2c2c;
	  color: white;
 }

 .page-footer h5 {
	 color: #7a7a7a;
 }


  @media (min-width: 768px) {
     .page-footer {
	  padding-left: 5rem;
      }
  }

  footer.container-fluid {
    	padding-bottom: 40px;
  }

  footer .flink {
	   color: inherit ;
	   background: url(/open-iconic-master/svg/link-intact_wb.svg) no-repeat left center;
	   padding-left: 1em;
	   text-decorations:none;
	   color:inherit;
  }

  footer a.externallink {
	   background: url(/open-iconic-master/svg/external-link_wb.svg) no-repeat left center;
   }


  footer a:hover {
	   color: #8a8a8a ;
  }

  @media (min-width: 1200px) {
    .footer-row {
	  width: 1200px;
    }
  }

  .footer-columnl {
	  padding-left: 40px;
  }
  .footer-column {
	  padding-left: 40px;
	  border-style: none none none solid;
	  border-width: 0.3px;
	  border-color: #777;
  }


  /* Seitenlayout------------------------------------------------*/
  /* Der Container für die ganze Seinte */

  main.container {
    padding-right: 0px;
    padding-left: 0px;
    font-size: 1.1rem;
    }

  .start-section {
	  margin-top: 10px;
  }

  /* Auf großem Display wird die Seite max 1200px breit */
  @media (min-width: 1200px) {
   .container {
     width: 1200px;
   }
   .pinnwandcontainer {
     width: 95%;
   }
  }

  /* Auf keinem Display - Handy hochkant - soll der Text nicht am Rand kleben */
  @media (max-width: 576px) {
   .container {
     width: 95%;
   }
   .pinnwandcontainer {
     width: 95%;
   }
  }


  /* navbar  ----------------------------------------------------*/
  /* Die Menüleiste, mit Abstand und Schlagschatten */
  .navbar {
	margin-bottom: 15px;
	margin-top: 0px;
	background-color: #f8f8f8;
	-webkit-box-shadow: 0 8px 6px -6px #999;
	-moz-box-shadow: 0 8px 6px -6px #999;
	box-shadow: 0 8px 6px -6px #999;
  }

  /* Logo als li-Element nicht zeigen wenn collapsed */
  .navbar-brand  {
	display: none;
  }

  /* Wenn es nicht collapsed ist, dann wird alles zentriert */
  @media (min-width: 992px){
    .navbar li {
    	display: inline-block;
     	float: none;
    }
    .navbar ul {
        width: 100%;
        text-align: center;
        display: inline-block;
        float: none;
    }
    .navbar-brand  {  /* Log als li-Element zeigen */
	display: inline-block;
    }
  }


  .navbar ul {
  	font-size: 1.1em !important;
	font-weight: bold;
  }

  /* Wenn Platz ist, mache die Abstände zwischen den Menü-Items größer */
  @media (min-width: 1200px){
    .navbar li {
        margin-right : 0.5em;
    }
    .navbar-brand  {
        margin-right : 1em;
    }
  }

  /* Wenn collapsed, dann keinen Abstand neben Brand, damit der Hamburger nicht
      in einer neuen Zeile landet */
  @media (max-width: 576px){
     .navbar-brand  {
        margin-right : 0em;
     }
  }

  /* Automatischer dropdown im Menue  - wenn es nicht schon collapsed ist */
  @media (min-width: 992px){
    .dropdown:hover>.dropdown-menu {
	display: block;
	/* Das folgende sorgt für den fadein */
	-webkit-animation: fadeIn 0.6s;
       	animation: fadeIn 0.6s;
       	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
    }
  }

  /* Und das hier realisiert den fadeIn */
  @keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translate(0, 10px);
    }
    100% {
        opacity: 1;
        transform: translate(0, -5px);
    }
}

  /* leitung + kontakt ------------------------------------------*/
  .kontakt-zeile {
	background-color: #eef5fb;
	padding: 5px;
	margin-top: 15px;
  }

  .leitung-zeile {
	margin-top: 40px;
	padding: 15px;
	background-color: #eef5fb;
  }

  .leitung-bild {
	text-align: center;
	align-self: center;
  }

  .leitung-name {
	  color: #707c94;
	  border-bottom: 3px solid currentColor;
    font-weight: bold;
	  padding-bottom: 0.3rem;
   }

   .leitung-cite {
	   font-style: italic;
	   padding-top: 1rem;
	   padding-right: 1rem;
	font-size: 1.1rem;
   }

  .leitung-telmail {
	padding-top: 1rem;
  }

  .leitung-gruppe {
	background-color: #eef5fb;
	min-width: 17rem;
	max-width: 20rem;
  }
  .leitung-gruppe-bild {
	padding: 2.5rem;
  }
  .leitung-gruppe-bild-gross {
	padding-top: 2.0rem;
	padding-bottom: 2.0rem;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
  }
  .leitung-gruppe-name {
	text-align: right;
	font-style: italic;
  }


  @media (min-width: 992px) {
     .leitungskarte {
	min-height:32em;
      }
   }

  /* Accordion --------------------------------------------------*/

  .accordion {
	background-color: #eef5fb;
  }

  .btn-accordion, .btn-accordion:active,  .btn-accordion:focus  {
	  display: block;
	  width: 100%;
	  background-color: #eef5fb;
  	  box-shadow: none !important;
	  text-align: left;
  }
  .btn-accordion:hover {
	  background-color: #eeffff;
  }


  /* Aktuelle Termine -------------------------------------------*/
  .aktuell-liste {
	  list-style: none;
    	  padding-left: 0;
    	  padding-right: 2rem;
  }
  .aktuell-bild {
	  text-align: right;
	  align-self: center;
  }
  @media (max-width: 576px){
      /* Bild über dem Text wird zentriert */
     .aktuell-bild {
	  text-align: center;
       }
  }
  .newstext {
	  /* Höhe festgelegt - die Bilder sind auch 200x200 */
	  min-height: 200px;
	  padding-top:15px;
	  padding-bottom:15px;
  }

  .aktuell-titel {
	  font-weight: bolder;
	  font-size: 1.1em;
	  padding-bottom: 0.5rem;
  }
  .aktuell-datum {
	  color: #6c757d;
	  padding-bottom: 0.5rem;
  }
  .aktuell-text {
  }


/* Terminliste ---------------------------------------------------*/
  .info {
	  font-size: 0.8em;
  }
  .time {
	  color: #6c757d;
  }

/* Online Artikel ------------------------------------------------*/
  figure {
    padding: 4px;
    margin-top: 10px;
  }
   
  .figure-caption {
   padding: 5px;
   text-align: center;
  }

/* Verschwindet wenn Display zu klein ----------------------------*/
  .hideifsmall {
	  visibility: visible;
  }

  @media (max-width: 768px) {
    .hideifsmall {
	  visibility: hidden;
    }
  }



  .hervorgehoben {
	  color: #707c94;
    font-weight: bold;
	  padding-bottom: 0.3rem;
   }





	.coronaOuter {
		width: 100%;
		padding: 2rem;
		/*background-color: #b12b53;*/
		background-color:rgb(255, 50, 50);
		color: white;
		margin-bottom: 1rem;
	}

	.coronaOuter table {
    width: 100%;
	}

	.coronaTitle {
		font-weight: bold;
		font-size: 1.6rem;
	}

	.coronaText {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	@media (max-width: 500px) {
		.coronaText {
			flex-direction: column;
		}
	}

	.coronaText a {
		text-align: center;
		color: rgb(0, 0,100);
		font-size: 0.8rem;
		text-decoration: none;
		display: block;
		padding: 0.5rem;
		background-color: white;
		border-radius: 5px;
		box-shadow: 0 5px 10px 0px rgba(0,0,0,0.3);
		transition: transform 0.2s;
	}

