/*!
 * Copyright 2025 Köckemann-Schwarz
 * FRG-Gruppe Framework 2025
 * Grundaufbau-Einstellungen des Frameworks

 */
:root {
  --navbgcolor: #ffffff;
  --footerlinecolor:#ffffff;
  --footerbgcolor: #005f4e;
  --footertextcolor: #ffffff;
  --positioncolor: #d62273;
  --logocolor: #ffffff;

  --contentmaxwidth: 1200px;

  --toprowbgcolor: #005f4e;
  --toprowtextcolor: #ffffff;

  --headimgwidth: 2000px;
}


/*    Breakpoint: 0px;                        */

body {
  //font-family: 'Tajawal', sans-serif;
  font-size: 100%;
  color:#000000;
}


/*   Main-Grid                                */

body {  
  display: grid;
  grid-template-areas: 
    "toprow"
    "nav"
    "header"
    "content"
    "footer";
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto auto auto;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-items: center;
  justify-content: center;
  //border:1px solid #ff0000;
}  



/*   Header-Grid                                */

header .headbox {
  display: grid;
  width: 100vw;
  }  

@media all and (max-width: 1200px) {
  .headbox {
    padding-left:0px;
    padding-right:0px;
  }  
  #home .headbox {
    padding-left:0px;
    padding-right:0px;
  }  
}
@media all and (max-width: 992px) {
  #home .headbox {
    align-items: center;
  }  
}
@media all and (max-width: 560px) {
  body.home logo img {
   justify-self: start;
   align-self: start;
   width: 70vw;
   margin-top: 28px;
  }  
}

/*   Header-Grid                                */

header {
  /* grid styles */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0px, 1fr));
  justify-items: center;
  //align-items: center;
  /* Photo by mnm.all on Unsplash */
  background: url() no-repeat center center;
  background-size: cover;
  position: relative;
  aspect-ratio: 2 / 1; 
  width:100vw;
  max-height: 600px;
  //border:1px solid #0000ff;
  overflow:hidden;
}
header.home {
  max-height: 810px;
  z-index:10
  }

header.swiperhead {
  max-height: 810px;
  justify-items: initial;
  aspect-ratio: initial; 
}
header.swiperhead  .headbox {
  display: initial;
  width: 100vw;
}
header.swiperhead .swiper-slide > img {
    width: auto;
    width: 100%;
    max-width: initial;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
:root {
    --swiper-navigation-color: #ffffff;
    --swiper-pagination-color: #ffffff;
}
@media all and (max-width: 1400px) {

  header.swiperhead .swiper-slide > img {
    width: 100%;
    height: initial;
    max-height: initial;
    height: 100%;
    object-fit: contain;
    object-position: center center;
  }
}
header.headOff {
  height: 0vw;
}

  header#homeHeader {
    height: 50vw;
    max-height: 650px;
    display: block;
    max-width: 1300px;
    margin-top: 130px;
    margin-bottom: 140px;
    background: transparent url(/assets/src/header/headbild-zebra.jpg ) no-repeat center right;
    background-size:contain;
  }

  header#homeHeader h1 {
    font-size: 7.45rem;
    text-transform: uppercase;
    max-width: 60%;
    margin-top: 0.8em;
  }




@media all and (max-width: 1200px) {

  header {
  }
  header#homeHeader h1 {
    font-size: 7.45vw;
    padding-left:20px;
  }
  header#homeHeader {
    margin-top: 10vw;
    margin-bottom: 10vw;
  }


}

@media all and (max-width: 720px) {

  header {
  }

}

@media all and (max-width: 560px) {

  body.home header {
  }

}



/*   Navi-Grid                                */

nav {  
  grid-area: nav;
  display: grid;
  //grid-template-areas: "mainNav hamburger";
  //grid-template-areas: "";
  //grid-template-columns: minmax(0px, var(--contentmaxwidth));
  //grid-template-columns: 1fr;
  width: 100vw;
  height: 200px;
  background-color:#ffffff;
  //position: sticky;
  justify-content: center;
  top: 0px;
  opacity: 0.97;
  z-index:30;
  padding-left: 0px;
  padding-right: 0px;
  transition: all 0.5s linear;
  top: -110px;
  position: sticky;
  }

body.home nav {  
  background-color:transparent;
  //opacity: 0.90;
  }

.navlogo {
  position: relative;
  height: 10vw;
  width: auto;
  max-height: 127px;
  top: 0px;
  transition: all 1s;
}
  .sticky .navlogo {
    height: 80px;
    top: 55px;
  }
nav.sticky {
   box-shadow: 10px 0px 8px #c3c1c1;
 }


  
@media all and (max-width: 1200px) {
  nav {  
    padding-left: 20px;
    padding-right: 20px;
    aspect-ratio: 6 / 1;
    height: auto;

  }

}
@media all and (min-width: 1200px) {
  nav {  
    box-sizing: content-box;
  }
}


mainnav {
  display: grid;
  position:relative;
  grid-template-columns:25% 75%;
  grid-template-rows: auto;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-self: center;
  width: 1200px;
  height: 100%;
  justify-items: start;
  align-items: center;

}
.stickyShadow {
  //box-shadow: 10px 0px 8px #c3c1c1;
  padding-top: 0px;
  height: 50px;
  }
.stickyShadow label.hamburger {
  //top: -10px;
}
.stickyShadow .logo {
  //top: -10px;
}
.stickyShadow ul.mainNavGrid {
  top: -25px;
  top: calc(100vh - 1100px);
}
  body.home .stickyShadow {
    background-color: #ffffff;
  } 
.logo  {
    margin-top: 14px;
    padding-right: 20px;
  } 

@media all and (max-width: 1200px) {
  mainnav {  
    padding: 0px 20px 0px 20px;
    width:100vw;
  }
}

@media all and (max-width: 990px) {
  nav {  
    top: -210px;
  }
  .stickyShadow label.hamburger .text {
    opacity: 0;
  }

}

mainnav .navbox {  
  justify-self: end;
  align-self: end;
  width: auto%;
}
mainnav .navbox label.hamburger {
 margin-bottom: 7.5vw;
}


/*   Navi-Grid                                */


/*   Top Row-Grid                                */

.toprow {  
  display: grid;
  grid-area:toprow;
  grid-template-columns: minmax(0px, var(--contentmaxwidth));
  grid-template-rows: auto;	
  justify-content: center;
  padding: 10px 0px 10px 0px;
  width:100vw;
  height:50px;
  background-color: var(--toprowbgcolor);
  color: var(--toprowtextcolor);
  }

.topcontent {  
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;	
  justify-self: center;
  padding: 0px 0px 0px 0px;
  width:1200px;
  height:100%;
  font-size:1.5em;
  line-height:1.0em;
  }
.topcontent .mail {  
  justify-self: start;
  padding-top: 7px;
  height: 33px;
}
.topcontent .phone {  
  background: transparent url(/assets/src/icons/icon-phone.png) no-repeat left center;
  padding-left:40px;
  justify-self: end;
  align-self: center;
  white-space: nowrap;
  padding-top: 2px;
  height: 33px;
}
.topcontent .mail {  
  background: transparent url() no-repeat left center;
  padding-left:0px;
  justify-self: start;
  align-self: center;
  white-space: nowrap;
  padding-top: 2px;
  height: 33px;
}

.topcontent a {  
  //display:inline-block;
  text-decoration: none;
}
.topcontent a:hover {  
  //display:inline-block;  
  //color: #c55d2a;
  color: #ffffff;
  text-decoration: underline;
}

@media all and (max-width: 1200px) {
 .topcontent {  
    padding: 0px 20px 0px 20px;
    width:100vw;
  }
}

@media all and (max-width: 800px) {

  .topcontent .mail {  
    background: transparent url(/assets/src/icons/icon-mail-clta.png) no-repeat left center;
    padding-left:40px;
  }
  .topcontent .phone span,  
  .topcontent .mail span {  
    display: none;
  }

}
@media all and (max-width: 660px) {
 .topcontent {  
    font-size:4.3vw;
    line-height:1.5em;
  }
}



/*   nd Top Row-Grid                                */

/*   Main-Row-Grid                                */

main {
  display: grid;
  //grid-template-columns: minmax(0px, var(--contentmaxwidth));
  grid-template-rows: auto;	
  justify-content: center;
  padding: 65px 0px 30px 0px;
  width:100vw;
  //border:1px solid #0ff000;
  }  

/*   End Main-Row-Grid                                */




/*   Rows Content -Grid                                */

.contentrow {  
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;	
  justify-content: center;
  padding: 40px 0px 30px 0px;
  padding-bottom: 0px;
  width:100vw;
  background-color:transparent;
  }  
.rowcontent {  
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-template-rows: auto;	
  grid-column-gap: 40px;
  justify-content: center;
  justify-self: center;
  width:100vw;
  max-width: var(--contentmaxwidth);
  padding: 0px 20px 0px 20px;
}  

@media all and (min-width: 1200px) {
  .rowcontent {  
    padding-left: 0px;
    padding-right: 0px;
  }  
}
/*   End Rows Content -Grid                                */



/*   Footer-Grid                                */

footer {  
  grid-area:footer;
  display: grid;
  width: 100%;
  height: auto;
  //grid-template-columns: minmax(0px, var(--contentmaxwidth)); 
  grid-template-columns: repeat(auto-fit, minmax(0px, 1fr));
  justify-items: center;
  margin-top: 50px;
  margin-bottom: 50px;
  background-color: var(--footerbgcolor);
  background: var(--footerbgcolor) url() no-repeat calc((100vw / 2) + 100px) 15%;
  //background-size: contain;
}  
footer .footerrow {  
  display: grid;
  grid-template-areas: "logo themen themen themen" "adresse kontakt service cookies ";
  grid-template-columns: max-content 1fr 1fr 1fr; 
  grid-template-rows: auto; 
  grid-column-gap: 20px;
  grid-row-gap: 100px;
  padding: 60px 0px 30px 0px;
  border-top: 0px solid var(--footerbgcolor);
  width: 100%;
  max-width: var(--contentmaxwidth);
  align-items: start;
  font-size: 1.45rem;
  font-weight: 300;
  }  

footer .footerrow h4 {
  font-size:1.3rem;
  font-weight: 500;
}
footer .footerrow a {
  text-decoration: none;
  font-size: 1.45rem;
  font-weight: 300;
}
footer .footerrow a:hover {
  text-decoration: underline;
}

footer .footerrow ul {
  padding-left: 15px;
}
footer .footerrow li::marker {
  color: #ffffff;
}






footer .adresse {
  grid-area:adresse;
  padding:0px 0px 0px 0px;
}

footer .adresse li::first-line {
    font-weight: bold;
}






footer .logo {
  grid-area:logo;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
  min-width:350px;
  align-self:center;
}
footer .logo li::first-line {
    font-weight: bold;
}
footer .themen {
  grid-area:themen;
  padding: 0px 0px 0px 0px;
  align-self:center;
  justify-self: end;
}
footer .themen::first-line {
    font-weight: bold;
}
footer .themen ul {
  font-size: 1.3rem;
  list-style: none;
  margin-left: 0px;
  padding-left: 0px;
}
footer .themen li { 
  padding: 0px 8px 0px 8px;
  line-height: 1.2;
  float:left;
  border-right: 1px solid #ffffff;
}
footer .themen li:first-child { 
  padding: 0px 8px 0px 0px;
}
footer .themen li:last-child { 
  border-right: 0px solid #ffffff;
}

footer .cookies {
  display: grid;
  grid-area:cookies;
  padding: 0px 0px 0px 0px;
  justify-content: right;
}
footer .cookie::first-line {
  font-weight: bold;
}

footer .service {
  grid-area:service;
  padding: 0px 0px 0px 0px;
}
footer .service::first-line {
    font-weight: bold;
}
footer .kontakt {
  grid-area:kontakt;
  padding: 0px 0px 0px 0px;
}
footer .kontakt::first-line {
    font-weight: bold;
}


/*    breakpoint: 1200px;                      */
@media all and (max-width: 1300px) {

footer .footerrow {  
  padding: 60px 20px 30px 20px;
}  

footer {  
  background: var(--footerbgcolor) url() no-repeat calc(100vw - 550px) 15%;
}  


  footer .copyRight {
    padding: 0px 0px 0px 20px;
  }

}

/*    breakpoint: 1200px;                      */
@media all and (max-width: 1050px) {
  footer .contentrow.footerrow {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  footer .logo {
    min-width:auto;
    justify-self: center;
  }
  footer .contentrow.footerrow {
    grid-template-areas:
    "themen themen themen themen"
    "adresse kontakt service cookies"
    "logo logo logo logo";
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-row-gap: 20px;
  }
  footer .themen {
    justify-self: start;
    padding-bottom:30px;
    width:100%;
  }
  footer .cookies {
    justify-content: start;
  }

  footer .footerNav {
    justify-self: start;
  }	

}

/*    breakpoint: 768px;                      */
@media all and (max-width: 768px) {

  footer .footerrow {
    padding: 40px 20px 20px 20px;
  }
  footer .contentrow.footerrow {
    grid-template-areas:
    "themen themen"
    "adresse kontakt"
    "service cookies"
    "logo logo";
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 20px;
  }
  footer .copyRight {
    padding: 0px 0px 0px 0px;
  }

}
/*    end breakpoint: 576px;                  */







/*   Elemente                                */

.position {
  grid-area: position;
	place-self: end end;
  padding:7px 20px 5px 20px;
  font-family: 'Bitter', serif;
  font-size: 3.2rem;
  font-weight: 200;
  text-transform: uppercase;
  line-height:1em;
  color:#ffffff;
  background-color:var(--positioncolor);
  }  
.Home { --positioncolor: #009da1; }
.Angebot { --positioncolor: #f68513; }
.Kontakt { --positioncolor: #5b99ba; }
.Impressum { --positioncolor: #5b99ba; }
.Datenschutz { --positioncolor: #5b99ba; }


.langswitchbox {
  grid-area: langswitch;
  right: 7px;
  bottom: 8px;
}
a.langswitch {
  font-size: 1.15em;
  font-weight: bold;
  line-height: 20px;
  color: #ab0b80;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0px 27px 1px 0px;
  padding: 0px 6px 1px 0px;
}
a.langswitch:first-child {
  border-right: 2px solid #ab0b80;
  padding: 0px 5px 1px 0px;
}
a.langswitch.en:hover {
  color: #a5037c;
}
.langswitchbox a.langswitch.en {color: #9ea0a2;}
.langswitchbox a.langswitch.de { color: #ab0b80;}
.langswitchbox.en a.langswitch.de {color: #9ea0a2;}
.langswitchbox.en a.langswitch.en {color: #ab0b80;}
.langswitchbox a.langswitch.de:hover,
.langswitchbox a.langswitch.en:hover {
 color: #ab0b80 !important;
}

.headbox .logo {  
    position: relative;
    top: 53px;
  }

.headbox .headimage {  
  object-fit: cover; 
  object-position: center right; 
  width: 100%; 
  height:100%;
}

header .poligon {
  position: absolute;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  background-color: var(--footerbgcolor);
  clip-path: polygon(0% 0%, calc(60px + 40.4%) 0%, calc(60px + 42.4%) 37.6%, calc(60px + 38.8%) 100%, 0% 100%);
  margin-left: calc((100vw - var(--contentmaxwidth)) / 2);
  z-index: 20;
}
header .poligon {
  display: grid;
  position: absolute;
  justify-items:start;
  justify-self:start;
  align-items:center;
  width: 33%;
  max-width: 450px;
  min-width: 30%;
  height: 100%;
  background-color: var(--footerbgcolor);
  //background-color: #ababab;
  clip-path: polygon(0% 0%, 93% 0%, 100% 37%, 88% 100%, 0% 100%);
  margin-left: calc((100vw - var(--contentmaxwidth)) / 2);
  z-index: 20;
  text-align:left

}
header .poligon.right {
  right:0px;
  //left:initial;
  justify-items:end;
  justify-self:end;
  text-align:right;
  clip-path: polygon(13% 0%, 100% 0%, 100% 100%, 12% 100%, 0% 65%);
  margin-right: calc((100vw - var(--contentmaxwidth)) / 2);
}

.headbox .slogan {
  display: block;
  //padding: 95px 0px 60px 0px;
  font-size: 3.15rem;
  line-height: 1.19;
  font-weight: 100;
  color: #ffffff;
  text-align:inherit;
}
.headbox .sloganlogo {
  width: auto;
  height: auto;
  padding: 0vw 0vw 0vw 0vw;
}
.headbox .poligon.right + .headimage{ 
    object-position: center left;
  }
.headbox .poligon.left + .headimage{ 
    object-position: center right;
  }

@media all and (min-width: 2000px) {
  .headbox .headimage {  
    object-position: center center; 
    object-fit: cover;
  }
}
@media all and (min-width: 1200px) {

  header .poligon,
  header .poligon.right {
    width: 450px;
    max-width: initial;
    min-width: initial;
    margin-right: initial;
    margin-left: calc((100vw - var(--contentmaxwidth)) / 2);
  }
  header .poligon.right {
    margin-right: calc((100vw - var(--contentmaxwidth)) / 2);
    margin-left: initial;
  }


}

@media all and (max-width: 1200px) {

  header .poligon,
  header .poligon.right {
    padding-left: 30px;
    padding-right:30px;
    padding-left: 2.5%;
    padding-right: 2.5%;
    margin-right: 0px;
    margin-left: 0px;
    width: 35%;
    //max-width: 520px;
    //min-width: 30%;
}
  .headbox .slogan {
    font-size: 3.8vw;
    line-height: 1.3;
    //padding: 8vw 0vw 2vw 2vw;
  }
  .headbox .sloganicon {
    //width: 26vw;
    //height: auto;
    width: auto;
    height: 10.825vw;
    //padding: 3vw 0vw 0vw 2vw;
  }


}
@media all and (max-width: 990px) {
  logo .slogan {
    font-size: 1.20rem;
  }
}

@media all and (max-width: 720px) {

  logo .pagelogo {
    grid-column: 1 / -1;
    width: 60vw;
  }
  body.home logo img {
    width: 70vw;
    margin-top: 0px;
  }
  body.home logo a {
    justify-self: start;
    align-self: start;
    margin-top: 28px;
  }
  logo .slogan {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 20px;
  }
}
@media all and (max-width: 760px) {

  .home header h2.slogan {
    font-size: 3.00rem;
  }
}

@media all and (max-width: 540px) {

  .home header h2.slogan {
    font-size: 2.40rem;
    margin-bottom: 193px;
    margin-bottom: 40px;
  }
  logo .slogan {
    font-size: 1.00rem;
  }

}
@media all and (max-width: 480px) {

  logo .slogan {
    font-size: 0.80rem;
  }

}




/*   Teaser und Buttons             */

.teaser-jobs {
  position:absolute;
  top: 0px;
  right: 0px;
  font-size: 2.40rem;
  color: #ffffff;
  text-align: center;
  line-height: 1em;
  width: initial;
  margin: 0px;
  padding: 16px 60px 12px 60px;
  background-color: #c45824;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 0px 0px 15px 15px;
}
.teaser-jobs:hover {
  color: #005f4e;
}
@media all and (max-width: 1200px) {
  .teaser-jobs {
    //font-size: 2.40vw;
    font-size: max(2.40vw, 15px);
    right: 30px;
    padding: 14px 50px 14px 50px;
  }
}

@media all and (max-width: 990px) {
  .teaser-jobs {
    right: 100px;
  }

}


.calltoaction {
  position:relative;
}
.calltoaction strong  {
  display:block;
  font-size: 2.10rem;
  color: #c45824;
  font-weight: 500;
  line-height: 1.3em;
  //padding-bottom: 35px;
}
.calltoaction .button {
  display:inline-block;
  position:relative;
  font-size: 1.90rem;
  color: #ffffff;
  text-align: center;
  text-transform: none;
  text-decoration: none;
  line-height: 1.1em;
  width: auto;
  margin-top: 8px;
  padding: 6px 40px 6px 15px;
  background-color: #c45824;
  font-weight: 300;
  //letter-spacing: 0.1em;
}
.calltoaction .button strong {
  display:inline-block;
  font-weight: 400;
  color: #ffffff;
  padding-left: 52px;
  background: transparent url(/assets/src/icons/icon-phone.png) no-repeat 10px center;
}
.calltoaction .button:hover {
  color: #ffffff;
  background-color: #005f4e;
}



a.button-mail, a.button-tel {
  display:inline-block;
  font-size: 1.90rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.1em;
  padding-left: 52px;
  background: #c45824 url(/assets/src/icons/icon-mail.png) no-repeat 10px 10px;
  position:relative;
  text-transform: none;
  text-decoration: none;
  width: auto;
  margin-top: 8px;
  padding: 6px 40px 6px 52px;
  background-color: #c45824;
}
a.button-mail:hover, a.button-tel:hover {
  color: #ffffff;
  background-color: #005f4e;
}
a.button-tel {
  background: #c45824 url(/assets/src/icons/icon-phone.png) no-repeat 10px 10px;
}

.button-spenden { 
  grid-area: buttonspenden;
  //margin: 30px 0px 0px 295px;
  }


.button-kontakt { 
  grid-area: buttonkontakt;
  //margin: 30px 0px 0px 42px;
  }







/*   Ende Teaser und Buttons             */




/*   Accordion             */
.ui-accordion-content img,
.ui-widget-content img {
  float: left;
  }
.ui-accordion-content p,
.ui-widget-content p {
  //padding-left: 100px;
  }
.person .ui-icon, .ui-widget-content .ui-icon {
    background: url("/images/elemente/but-akkordion-off.png") no-repeat left center;
}
.person .ui-state-hover .ui-icon,
.person .ui-state-focus .ui-icon,
.person .ui-button:hover .ui-icon,
.person .ui-button:focus .ui-icon {
		background-image: url("/images/elemente/but-akkordion-on.png");
}
.person .ui-state-active .ui-icon, .ui-button:active .ui-icon {
    background-image: url("/images/elemente/but-akkordion-on.png");
}



/*   Seite Home                                */

 #editmode .spalte1 {  
   grid-area:spalte1;
   border:1px solid #ababab;
   display:grid;
   justify-content:center;
   padding:10px;
  }
 #editmode .spalte2 {  
   grid-area:spalte2;
   border:1px solid #ababab;
   display:grid;
   justify-content:center;
   padding:10px;
  }
 #editmode .spalte3 {  
   grid-area:spalte3;
   border:1px solid #ababab;
   display:grid;
   justify-content:center;
   padding:10px;
  }
 #editmode .spalte4 {  
   grid-area:spalte4;
   border:1px solid #ababab;
   display:grid;
   justify-content:center;
   padding:10px;
  }

/*                                               */









/*    breakpoint: 1300px;                     */
@media all and (max-width: 1300px) {

}
/*    end breakpoint: 1300px;                 */


/*    breakpoint: 992px;                      */
@media all and (max-width: 992px) {

}
/*    end breakpoint: 992px;                  */


/*    breakpoint: 768px;                      */
@media all and (max-width: 768px) {

}
/*    end breakpoint: 768px;                  */


/*    breakpoint: 576px;                      */
@media all and (max-width: 576px) {

}
/*    end breakpoint: 576px;                  */


/*    breakpoint: 450px;                      */
@media all and (max-width: 450px) {

}
/*    end breakpoint: 450px;                  */


/*..........................................................*/


  lang {
    grid-area: lang;
    background-color: #a5037c;
  }



/*   Teaser Raushier                              */

 img.teaserraushier {  
   position:absolute;
   top:50px;
   bottom: -28px;
   right:0;
   margin-right: calc((100% - 1200px)/2);
   animation-name: example1;
   animation-duration: 1.5s;
   z-index:10;
  }

  @keyframes example1 {
    from {margin-left: 258px;}
    to {margin-left: 220px;}
    from {height: 100px;}
    to {height: 145px;}
  }
  @keyframes example2 {
    from {margin-left: 258px;}
    to {margin-left: 220px;}
    from {height: 145px;}
    to {height: 100px;}
  }


@media all and (max-width: 992px) {

  #homeHeader {
    height: 15vw;
    background: transparent url(/assets/src/header/headbild-zebra.jpg ) no-repeat center right;
    background-size:cover;
  }

  #pageHeader img.teaserraushier {
    position: absolute;
    top: auto;
    bottom: 5px;
    right: 5px;
    margin-right: 0;
    height: 15vw;
    animation-name: example3;
    animation-duration: 1.5s;
    z-index: 10;
  }
  #pageHeader img.teaserraushier.sticky {
    top: 0px !important;
    animation-name: example2;
    animation-duration: 1.0s;
    margin-top: 5px;
  }
  #pageHeader.headOff img.teaserraushier {
    top: -40px;
  }
  @keyframes example3 {
    from {margin-left: 258px;}
    to {margin-left: 220px;}
    from {height: 10vw;}
    to {height: 15vw;}
  }

}


/*   Map Canvas1                                */

#map_canvas1 {
    width: 100%;
    aspect-ratio: 1.4 / 1;
    border: 1px solid #999999;
    margin-bottom:20px;
    z-index:1;
}
.leaflet-control-attribution {
    font-size: 10px !important;
}






@media all and (max-width: 992px) {
  input:checked ~ .zitattext{ 
    padding: 20px 20px 20px 20px; 
  }
  .zitattext p {
    font-size: 1.8rem;
  }
  .zitattext cite {
    font-size: 0.8em;
  }


}
@media all and (max-width: 768px) {
  input:checked ~ .zitattext{ 
    padding: 10px 10px 10px 10px; 
  }
   .zitattext p {
    font-size: 1.4rem;
  }
  .zitattext cite {
    font-size: 0.8em;
  }


}



/*                                               */









@media all and (max-width: 1200px) {
 
  #pageLogo img.section-logo {  
   width:30vw;
   margin-right:0;
   margin-left:2vw;
  }
  #pageLogo img.section-spenden {  
   width:10vw;
   margin:0 0 0 18vw;
  }
  #pageLogo img.section-kontakt {  
  width:10vw;
   margin:0 0 0 2vw;
  }
  #lang-switch {
    margin: 10vw 2vw 0 1vw;
  }
  #lang-switch a.lang-switch-e {
    margin: 0 0 0 0;
  }
  #lang-switch a.lang-switch-d {
    margin: 0 0 0 0;
  }

}

@media all and (max-width: 768px) {

.langswitchbox a.langswitch.en {
    border-right: 0px;
    padding: 0px;
    display: block;
}
.langswitchbox a.langswitch.de {
    border-right: 0px;
    padding: 0px;
    display: none;
}
.langswitchbox.en a.langswitch.en {
    border-right: 0px;
    padding: 0px;
    display: none;
}
.langswitchbox.en a.langswitch.de {
    border-right: 0px;
    padding: 0px;
    display: block;
}
a.langswitch:first-child {
    border-right: 0px solid #ab0b80;
    padding: 0px;
}


}

@media all and (max-width: 768px) {

}

@media all and (max-width: 576px) {

}

body div:last-child {display:hidden;}





/*   Kategorie Einstellungen             */

/*   Sidebar             */

/*   Content             */



