/* #region  start */

* {
	margin: 0;
	padding: 0;
	border: 0;
	border:  none;
	font-size: 100%;
	font: inherit;
	box-sizing: border-box;
}

html, body {
    height: 100vh;
    color: #050505;
    margin: 0 auto;
    font-size: 1rem;
	width: 100%;
    font: normal 62.5%/160% 'Roboto', sans-serif;
    font-weight: 400;
}

#wrapper{
	width: 100%;
	max-width: 1600px;
	margin: auto;
} 

/* #endregion */
/* #region  font-face */
@font-face {
	font-family: 'Poiret One';
	font-style: normal;
	font-weight: 400;
	src:  url("../fonts/PoiretOne-Regular.ttf");
   }

@font-face {
	font-family: 'Roboto Serif';
	font-style: normal;
	font-weight: 300;
	src:  url("../fonts/RobotoSerif-Light.ttf");
   }

 @font-face {
	font-family: 'Roboto Serif';
	font-style: italic;
	font-weight: 300;
	src:  url("../fonts/RobotoSerif-LightItalic.ttf");
   }
   
@font-face {
  font-family: 'Roboto Serif';
  font-style: normal;
  font-weight: 400;
  src:  url("../fonts/RobotoSerif-Regular.ttf");
 }

 @font-face {
	font-family: 'Roboto Serif';
	font-style: italic;
	font-weight: 400;
	src:  url("../fonts/RobotoSerif-Italic.ttf");
   }
 
 @font-face {
	font-family: 'Roboto Serif';
   font-style: normal;
   font-weight: 600;
   src:  url("../fonts/RobotoSerif-SemiBold.ttf");
  }
   
 @font-face {
	font-family: 'Roboto Serif';
	font-style: italic;
	font-weight: 600;
	src:  url("../fonts/RobotoSerif-SemiBoldItalic.ttf");
   }

 @font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 300;
	src:  url("../fonts/Roboto-Light.ttf");
   } 
 
   @font-face {
	font-family: 'Roboto';
	font-style: italic;
	font-weight: 300;
	src:  url("../fonts/Roboto-LightItalic.ttf");
   }
 
   @font-face {
	font-family: 'Roboto';
	font-style: italic;
	font-weight: 500;
	src:  url("../fonts/Roboto-Medium.ttf");
   }

 @font-face {
   font-family: 'Indie Flower';
   font-style: cursive;
   font-weight: 400;
   src:  url("../fonts/IndieFlower-Regular.ttf") format("truetype");
  }


/* #endregion */
/* #region FARBEN und BORDER und RADIUS*/

:root {
    /* helle Flächen */
    --lf-white: #FAF6F1;
    --lf-verylightgreen: #EDE3D6;

    /* Hauptfarben */
    --lf-lightgreen: #30ba7d;  /* warmes Camel statt Grün */
    --lf-darkgreen: #30ab9e;   /* tiefes Espresso-Braun */
    --lf-blue: #2e9ac2;        /* gedämpftes Mauve-Maroon statt Blau */
    --lf-orange: #2e86eb;      /* Terracotta */
    --lf-red: #f8c535;         /* modernes gedämpftes Rot */
    --lf-brown: #3167b4;       /* klassisches warmes Braun */

    /* Schrift / dunkle UI-Farbe */
    --lf-ink: #2B1E1A;

    /* optionale Zusatzfarbe für Maroon */
    --lf-maroon: #6E2F3F;

    /* Rahmenstärke */
    --lf-border-size: 10px;
}

/* BACKGROUNDS */

.lf-bg-white {
    background-color: var(--lf-white);
}

.lf-bg-verylightgreen {
    background-color: var(--lf-verylightgreen);
}

.lf-bg-lightgreen {
    background-color: var(--lf-lightgreen);
}

.lf-bg-darkgreen {
    background-color: var(--lf-darkgreen);
}

.lf-bg-blue {
    background-color: var(--lf-blue);
}

.lf-bg-orange {
    background-color: var(--lf-orange);
}

.lf-bg-red {
    background-color: var(--lf-red);
}

.lf-bg-brown {
    background-color: var(--lf-brown);
}

/* FONT COLORS */

.lf-font-white {
    color: #FFFFFF;
}

.lf-font-darkgreen {
    color: var(--lf-darkgreen);
}

.lf-font-lightgreen {
    color: var(--lf-lightgreen);
}

.lf-font-blue {
    color: var(--lf-blue);
}

.lf-font-orange {
    color: var(--lf-orange);
}

.lf-font-red {
    color: var(--lf-red);
}

.lf-font-brown {
    color: var(--lf-brown);
}

/* optional: allgemeine Textfarbe für Fließtext */
.lf-font-ink {
    color: var(--lf-ink);
}

/* FORMEN */

.bordertopleft {
    border-radius: 0.55rem;
    border-top-left-radius: 2.5rem;
}

.borderbottomleft {
    border-radius: 0.25rem;
    border-bottom-left-radius: 2.5rem;
}

.borderbottomright {
    border-radius: 0.25rem;
    border-bottom-right-radius: 2.5rem;
}

.bordertopright {
    border-radius: 0.25rem;
    border-top-right-radius: 2.5rem;
}

/* TOP */

.bordertopred {
    border-top: var(--lf-border-size) solid var(--lf-red);
}

.bordertoplightgreen {
    border-top: var(--lf-border-size) solid var(--lf-lightgreen);
}

.bordertopdarkgreen {
    border-top: var(--lf-border-size) solid var(--lf-darkgreen);
}

.bordertoporange {
    border-top: var(--lf-border-size) solid var(--lf-orange);
}

.bordertopblue {
    border-top: var(--lf-border-size) solid var(--lf-blue);
}

.bordertopwhite {
    border-top: var(--lf-border-size) solid var(--lf-white);
}

.bordertopbrown {
    border-top: var(--lf-border-size) solid var(--lf-brown);
}

/* RIGHT */

.borderrightlightgreen {
    border-right: var(--lf-border-size) solid var(--lf-lightgreen);
}

.borderrightdarkgreen {
    border-right: var(--lf-border-size) solid var(--lf-darkgreen);
}

.borderrightorange {
    border-right: var(--lf-border-size) solid var(--lf-orange);
}

.borderrightblue {
    border-right: var(--lf-border-size) solid var(--lf-blue);
}

.borderrightwhite {
    border-right: var(--lf-border-size) solid var(--lf-white);
}

.borderrightbrown {
    border-right: var(--lf-border-size) solid var(--lf-brown);
}

.borderrightred {
    border-right: var(--lf-border-size) solid var(--lf-red);
}

/* BOTTOM */

.borderbottomlightgreen {
    border-bottom: var(--lf-border-size) solid var(--lf-lightgreen);
}

.borderbottomverylightgreen {
    border-bottom: var(--lf-border-size) solid var(--lf-verylightgreen);
}

.borderbottomdarkgreen {
    border-bottom: var(--lf-border-size) solid var(--lf-darkgreen);
}

.borderbottomorange {
    border-bottom: var(--lf-border-size) solid var(--lf-orange);
}

.borderbottomblue {
    border-bottom: var(--lf-border-size) solid var(--lf-blue);
}

.borderbottomwhite {
    border-bottom: var(--lf-border-size) solid var(--lf-white);
}

.borderbottombrown {
    border-bottom: var(--lf-border-size) solid var(--lf-brown);
}

/* LEFT */

.borderleftdarkgreen {
    border-left: var(--lf-border-size) solid var(--lf-darkgreen);
}

.borderleftorange {
    border-left: var(--lf-border-size) solid var(--lf-orange);
}

.borderleftblue {
    border-left: var(--lf-border-size) solid var(--lf-blue);
}

.borderleftwhite {
    border-left: var(--lf-border-size) solid var(--lf-white);
}

.borderleftbrown {
    border-left: var(--lf-border-size) solid var(--lf-brown);
}

.borderleftred {
    border-left: var(--lf-border-size) solid var(--lf-red);
}

/* #endregion */
/* #region  main */

main {
	margin: 120px auto;
}

/* #endregion */
/* #region  header */

.dropdown {
	display: none;
}

header {
	position: fixed;
	padding-top: 10px;
	top: 0;
	width: 100%;
	max-width: 1600px;
	height: 120px;
	z-index: 100;
	display: flex;   
	flex-wrap: wrap;
	background: linear-gradient(
    135deg,
    #2FBF71 0%,
    #2D7FF9 100%
  );
}

.header__logo {
	position: absolute;
	top: 20px;
	left: 10px;
	height: 100px;
	width: 130px;
	background-image: url(../img/start/lernfoerderung_logo_start.png);
	background-size: contain;
	text-indent: -9999rem;
	margin: 0 0 0 10px;
}


.header__h1 {
	font-size: 4rem;
	padding: 3px;
	margin: 10px 0 0 180px;
	letter-spacing: normal;
	line-height: 110%;
}

.subheader__h3 {
	padding-top: 24px;
	font-family: 'Roboto';
}

.header__h1-wir  {
	padding-top: 30px;
	margin-left: 50px;
	font-size: 5vw; 
	font-family: 'Roboto';
}

.header__h2 {
	width: 100%;
	text-align: left;
	font-size: 1.6rem;
	padding-top: 15px;
	letter-spacing: 0.05rem;
	color: #b9352f;
}

.header__h3 {
	width: 100%;
	text-align: right;
	padding-right: 150px;
	font-size: 1.2rem;
	letter-spacing: normal;
	color: #563982;
}


.header__nav {
	position: absolute;
	top: 10px;
	right: 16px;
	width: 40px;
	height: 80px;
	border-radius: 6px;
	background-color: #273e65;
	box-shadow: 3px 3px 8px #273e65;
	display: flex;  
	flex-wrap: nowrap;
	justify-content: space-around;
}

.header__nav  ul {
	padding: 6px;
	list-style-type: none;
	text-align: center;
}

.header__nav  li {
	padding: 6px;
}

.header__nav a {
  color: #FFFFFF;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.header__nav a:hover,
.header__nav a:focus {
  color: #FFFFFF;
}

/* aktiver Menüpunkt */

.header__nav a.active {
  color: #FFFFFF;
}
.icon-link {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    color: #222;
    text-decoration: none;
}

.icon-link:hover,
.icon-link:focus-visible {
    color: #7b4b3a;
}

.icon {
    width: 2rem;
    height: 2rem;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.header__btn-home {
	text-align: center;
	height: 65px;
	width: 65px;
	margin: 0 auto;
	margin-top: 5px;
	margin-right: 5px;
}

.header__btn-kontakt {
	text-align: center;
	height: 65px;
	width: 65px;
	margin: 0 auto;
	margin-top: 5px;
	margin-right: 5px;
}


#roundbutton a {
	height: 65px;
	width: 65px;
	font-family: 'Roboto Serif';
   font-style: light;
   font-weight: 300;
	font-size: 1.6rem;
	padding-top: 25px;
	font-size: 1.2rem;
	font-weight: 400;
	background: #CC3333;
	float: left;
	margin: 0 auto;
	color: white;
	text-decoration: none;
	border-radius: 50%;
	
	-webkit-transition: all 0.6s ease-out; 
	-moz-transition: all 1.6s ease-out;
	-ms-transition: all 1.6s ease-out;
	-o-transition: all 1.6s ease-out;
	transition: all 0.6s ease-out;
}

#roundbutton-home a {
	height: 65px;
	width: 65px;
	padding-top: 25px;
	font-size: 1.2rem;
	font-weight: 400;
	letter-spacing: 1px;
	background: linear-gradient(to bottom, #54add3, #3d8fb9);
	float: left;
	margin: 0 auto;
	color: white;
	text-decoration: none;
	border-radius: 50%;
	
	-webkit-transition: all 1.6s ease-out; 
	-moz-transition: all 1.6s ease-out;
	-ms-transition: all 1.6s ease-out;
	-o-transition: all 1.6s ease-out;
	transition: all 1.6s ease-out;
}

#roundbutton-wir a {
	height: 65px;
	width: 65px;
	padding-top: 25px;
	font-size: 1.2rem;
	border: 2px solid #8dc9e8;
	float: left;
	margin: 0 auto;
	color: white;
	text-decoration: none;
	border-radius: 50%;
	box-shadow: 0px 3px 5px #444;
	
	transform-origin: center center;
	
	-webkit-transition: transform .6s ease-out; 
	-moz-transition: transform .6s ease-out;
	-ms-transition: transform .6s ease-out;
	-o-transition: transform .6s ease-out;
	transition: transform .6s ease-out;
}

#roundbutton-wir:hover {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	-ms-transform: scale(1.2); 	
	transform: scale(1.2);
}


.header__btn-home:hover .header__btn-rotate-home {
	-webkit-transform: rotate(360deg) scale(1.2);
	-moz-transform: rotate(360deg) scale(1.2);
	-ms-transform: rotate(360deg) scale(1.2);
	-o-transform: rotate(360deg) scale(1.2);
	-ms-transform: rotate(360deg) scale(1.2); 	
	transform: rotate(360deg) scale(1.2);
}

.header__btn-kontakt:hover .header__btn-rotate {
	-webkit-transform: rotate(360deg) scale(1.2); 
	-moz-transform: rotate(360deg) scale(1.2);
	-ms-transform: rotate(360deg) scale(1.2);
	-o-transform: rotate(360deg) scale(1.2);
	transform: rotate(360deg) scale(1.2);
}

.scrollpoint {
	width: 1px;
	height: 1px;
	position: relative;
	top: -100px;
}

.header__btn-lernfoerderung {
	text-align: center;
	width: 100%;
	height: 100%;
	margin: 0 auto;
}

.header__btn-lernfoerderung a:link {
	
	text-decoration: none;
}

.header__btn-lernfoerderung a:hover {
	text-decoration: underline;
}

.div16__h5--lernfoerderung  {
	font-size: 1.8rem;
	letter-spacing: 0.1rem;
	text-align: left; 
	font-weight: 600; 
	margin-top: 20px;
	color: 555;
	line-height: 150%;
}

/* #endregion */

/* #region  DIV01 */

.card {
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.div01 {
  position: relative;
  top: 0;
  height: 40px;
  margin: 10x auto;
  padding-left: 180px;
  width: 100%; 
  z-index: 101;

  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
}

.div01__h2 {
	font-size: 3.5rem;
}

.div01__h3 {
	font-size: 2.8rem;
	font-style: italic;
}

.div01_nav {
	height: auto;
	width: 100%;
	margin: 20px auto;

	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}

/* Desktop-Menü Buttons */

.div01__btn { 
	position: relative;
   font-family: 'Roboto';
   letter-spacing: 0.1rem;
   font-style: normal;
   font-weight: 600;
   font-size: 2rem;
   height: 30px;
   text-decoration: none;
   color: #fff;                
   padding: 3px 6px;

   transition: color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}


/* Hover-Zustand */

.div01__btn:hover,
.div01__btn:focus { 
   color: #FFC845;                /* warmes Gelb als lebendiger Akzent */
   box-shadow: 0px 3px 0px #FFC845;
   text-decoration: none;
}

.div01__btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 3px;
  background: #FFC845;
  transition: width 0.25s ease;
}

.div01__btn:hover::after {
  width: 100%;
}


.div01__subnav {
	position: absolute;
	top: 450px;
	right: 50px;
	width: 15%;
	display: none;
}

.div01__hint {
	width: 28px;
	height: 30px;
	border: 2px solid #999;
	border-bottom: 0;
	margin: 0 auto;
	margin-top: 10px;
	font-size: 2rem;
	color: #999;
	text-align: center;
}

.div01__hintbox {
	height: 40px;
	margin-top: 10px;
}

.div01__scrollbox {
	position: relative;
	top: -15px;
	height: 25px;
	width: 20px;
	margin: 0 auto;
	
	-webkit-transition: all 1s;
	-moz-transition:  all 1s;
	-ms-transition:  all 1s;
	-o-transition:  all 1s;
	transition: all 1s;
}

.div01__hint a:after {
	content: " ";
	display: block;
}

.div01__hint a {
	color: #999;
	text-decoration: none;
}

.div01__hint a:hover .div01--translateY {
	-webkit-transform: translatey(20px);
	-moz-transform: translatey(20px);
	-ms-transform: translatey(20px);
	-o-transform: translatey(20px);
	transform: translatey(20px);
}

/* #endregion */
/* #region  DIV04 */

.div04 {
	width: 100%;
	min-height: 400px;
	}

.div04__h3 {
	font-size: 2.8rem;
	font-style: italic;
	margin: 0 auto;
	text-align: center;
	line-height: 120%;
	
	padding: 20px;
	text-align: center;
}

.div04__h5 {
	padding-bottom: 40px; 
	font-size: 1.6rem; 
	 
	margin-bottom: 0;
	padding: 10px;
	text-align: center;
}

.div04__container {
		max-width: 1800px;
		min-height: 300px;
}

.div04__grid-group {
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;   
		
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		-o-flex-wrap: wrap;
		flex-wrap: wrap;
	}

.div04__contentbox {
	width: 100%;
	box-shadow: 3px 3px 7px #444;
	
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
	
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	
	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	-ms-align-items: flex-start;
	-o-align-items: flex-start;
	align-items: flex-start;
	
}

.div04__content {
	width: 300px;
	min-height: 300px;
	margin: 10px;
	margin-top: 30px;
	margin-right: 30px;
	padding: 10px;
	border: 2px solid #fff;
	box-shadow: 0px 3px 5px #000;
}

.viewbox-box {
	width: 500px;
	height: 500px;
}

.div04__content-font {
	font-size: 1.4rem;
	line-height: 140%;
	font-weight: 300;
}

.div04_p {
	text-align: justify;
	margin: 10px 0 10px 0;
}


.div04__navi {
	min-width: 550px;
	min-height: 550px;
}

.div04__navi-square {
	width: 154px;
	height: 154px;
	margin: 5px;
	padding: 45px 5px 20px 5px;
}

.div04--a {
	font-size: 1.6rem;
	text-decoration: none;
	margin: 3px;
	
	font-weight: 400;
	letter-spacing: 1pt;
	line-height: 180%;
}

#foerderSvg {
	width: 700px;
	height: 505px;
}

.div04__svg--form rect {
	stroke: #fff;
	stroke-width: 2px;
	stroke-linecap: butt;
	
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.div04__svg--text {
	text-anchor: middle; 
	font-size: 1.8rem;
	font-weight: 400;
	letter-spacing: normal;
	
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

#foerderschienen { 
  fill: #eee;
  font-weight: 300;
  letter-spacing: 1pt;
}

#foerderschienen:hover { 
  fill: #fff;
  font-weight: 600;
  letter-spacing: 2pt;
}

.div04__svg--form polyline {
	stroke: #fff;
	stroke-width: 2px;
	stroke-linecap: butt;
}


.div04--a:hover {
	margin: 0;
	border: 3px solid #fff;
	background: rgba(255, 255, 255, 0.9);
	color: #336699;
}

.div04__white {
background: rgba(255, 255, 255, 0.9);
color: #336699;
}

.div04__silver {
	color: #c7001d;
}


/* #endregion */
/* #region  DIV05 */

.div05 {
	min-height: 400px;
	width: 100%;
	margin: auto;
	padding: 30px;
	text-align: center;	
	box-shadow: 0px 6px 10px #333;
}

.div05__h4 {
	font-size: 1.4rem;
	margin: 10px 0 10px 0;
	text-align: center;
	color: black;
}

.div05__gallery {
	max-width: 1800px;
	margin: auto;
}

.div05__flex-container {
	margin-bottom: 40px;
	
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;   
	
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}

.div05__flex-item {
		min-height: 200px;
		width: 90%;	
		max-width: 400px;
		min-width: 300px;
		margin: 0 auto;
		padding: 5px;
		margin-bottom: 20px;
		overflow: hidden;
		border: 0;
		box-shadow: 0px 4px 8px #666;
		
		-webkit-transition: box-shadow .3s;
		-moz-transition: box-shadow .3s;
		-ms-transition: box-shadow .3s;
		-o-transition: box-shadow .3s;
		transition: box-shadow .3s;
}

.div05__flex-item:hover {
		box-shadow: 0px 1px 1px #999;
}

.div05__img {
		width: 100%;
		padding-top: 20px;
		height: auto;
		overflow: hidden;
}

.div05__img--width {
		width: 90%;
		height: auto;
}

.div05__caption {
	width: 200px;
	height: auto;
	margin: auto;
	font-size: 1.2rem;
	line-height: 160%;
}


/* #endregion */

/* #region  DIV06 */

.div06 {
  width: 100%;
  height: 70px;
  overflow: hidden;
}

.div06__action-event {
	height: 60px; 
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	text-align: left;
	padding-top: 20px;
}

.div06__btn {
	font-size: 3rem;
	color: #2a6ab1;
	text-decoration: none;
	position: relative;
}

.div06--top {
	top: 0px;
	left: 320px;
	visibility: visible;
}

.div06--bottom {
	top: 80px;
	left: -80px;
	visibility: hidden;
}

.div06__btn:hover .div06--top {
	top: 80px;
	visibility: hidden;
}

.div06__btn:hover .div06--bottom {
	top: 0;
	visibility: visible;
}

.div06--content {
	position: relative;
	
	-webkit-transition: top 1.3s ease-out 0.3s;
	-moz-transition: top 1.3s ease-out 0.3s;
	-ms-transition: top 1.3s ease-out 0.3s;
	-o-transition: top 1.3s ease-out 0.3s;
	transition: top 1.3s ease-out 0.3s;
}


/* #endregion */

/* #region  DIV12 */

.div12 {
	position: relative;
	min-height: 400px;
	width: 100%;
	margin: 0 auto;
	text-align: center;	
}

.div12__h2 {
	height: 50px;
	padding-top: 10px;
	font-weight: 300;
	font-size: 2.8rem;
	line-height: 100%;
	margin: 0 auto;
	text-align: center;
	
}

.div12__gallery {
	margin: auto;
	padding: 30px 10px 30px 10px;
}

.div12__flex-container {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;   
	
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

.div12__flex-item {
		min-height: 200px;
		width: 300px;	
		overflow: hidden;
		border: 0;
		
		
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;   

		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		-o-flex-wrap: wrap;
		flex-wrap: wrap;
}

.div12__flex-item-badge {
		min-height: 260px;
		width: 260px;	
		overflow: hidden;
		border: 0;
		border-radius: 50%;
		padding-top: 40px;
		font-size: 2rem;
		line-height: 160%;
		box-shadow: 0px 6px 15px #315a82;
		text-align: center;
		text-decoration: none;
		color: white;
		
		display: flex;   

		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		-o-flex-wrap: wrap;
		flex-wrap: wrap;
	
	-webkit-transition: all 0.6s;
	transition: all 0.6s;
}

.div12__flex-item-badge:hover {
	text-decoration: underline;
	box-shadow: 1px 1px 5px #315a82;
}

.div12__h4 {
	width: 100%;
	font-family: 'Roboto Serif';
	min-height: 20px;
	margin-bottom: 0;
	margin-top: 5px;
	font-size: 1.8rem;
	line-height: 120%;
	padding: 6px;
	text-align: left;
	color: #333;
}

.div12__h5 {
	height: auto;
	font-size: 1.2rem;
	line-height: 120%;
	color: #999;
	margin-top: 5px;
	text-align: left;
	padding-left: 6px;
}

.div12__img {
	height: 210px;
	width: auto;
	overflow: hidden;
	
	/*-webkit-flex-shrink: 1;
	-moz-flex-shrink: 1;
	-ms-flex-shrink: 1;
	-o-flex-shrink: 1;
	flex-shrink: 1;*/
}

.heart {
	width: 100%;
	height: 220px;
	text-align: center;
	padding-top: 80pt;
	color: blue;
	font-size: 120pt;
}


.div12__link {
	text-decoration: none;
	margin: 20px;
	margin-bottom: 30px;
	padding: 10px;
	box-shadow: 0px 3px 5px #444;
	
	-webkit-transition: all 0.6s;
	transition: all 0.6s;
}

.div12__link:hover {
		color: red;
		box-shadow: 0px 1px 1px #999;
}

.div12__badge {
	text-decoration: none;
	margin: 20px;
	margin-bottom: 30px;
	padding: 10px;
}


.div12_link_inline {
	color: blue;
	line-height: 160%;
	text-decoration: none;
}

.div12_link_inline:hover {
	color: navy;
	text-decoration: underline;
}

.div12__caption {
	width: 100%;
	height: auto;
	font-size: 1.4rem;
	line-height: 160%;
	text-align: left;
	padding: 6px;
	padding-bottom: 0;
	color: #333;	
	margin-bottom: 10px;
	font-weight: 300;
}
		
		
	/*-webkit-flex-shrink: 1;
	-moz-flex-shrink: 1;
	-ms-flex-shrink: 1;
	-o-flex-shrink: 1;
	flex-shrink: 1;*/



/* #endregion */

/* #region  DIV14 */

.div14 {
	min-height: 400px;
	width: 100%;
	margin: 0 auto;
	padding: 30px;
	text-align: center;	
}

.div14__h4 {
	font-size: 1.6rem;
	margin: 10px 0 10px 0;
	text-align: center;
	color: black;
}

.div14__h2 {
	height: 60px;
	padding-top: 15px;
	font-size: 3.2rem;
	letter-spacing: 0.2rem;
	font-variant: small-caps;
	line-height: 100%;
	margin: 0 0 30px 0;
	font-weight: 400;
	text-align: center;
	color: #555;
	background-color: white;
}

.div14__gallery {
	max-width: 1800px;
	margin: auto;
}

.div14__flex-container {
	margin-bottom: 40px;
	justify-content: space-around;
	
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;   
	
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}

.div14__flex-item {
		min-height: 200px;
		width: 300px;	
		margin: 0 auto;
		padding: 5px;
		margin-bottom: 20px;
		overflow: hidden;
		border: 0;
		box-shadow: 0px 4px 8px #000;
		
		-webkit-transition: box-shadow .3s;
		-moz-transition: box-shadow .3s;
		-ms-transition: box-shadow .3s;
		-o-transition: box-shadow .3s;
		transition: box-shadow .3s;
}

.div14__img {
		height: 180px;
		width: auto;
		overflow: hidden;
		text-align: center;
}

.div14__img--width {
		height: 180px;
		width: auto;
		margin: auto;
		text-align: center;
	}

.div14__flex-item-2 {
		min-height: 200px;
		width: 400px;	
		margin: 0 auto;
		padding: 5px;
		margin-bottom: 20px;
		overflow: hidden;
		border: 0;
		box-shadow: 0px 4px 8px #000;
		
		-webkit-transition: box-shadow .3s;
		-moz-transition: box-shadow .3s;
		-ms-transition: box-shadow .3s;
		-o-transition: box-shadow .3s;
		transition: box-shadow .3s;
}


.div14__img-2 {
		height: 180px;
		width: auto;
		overflow: hidden;
}

.div14__img--width-2 {
		width: 100%;
		height: auto;
	}



.div14__caption {
	width: 90%;
	height: auto;
	margin: auto;
	font-size: 1.2rem;
	line-height: 160%;
}

.div14__caption p {
	margin: 15px;
}


/* #endregion */

/* #region  DIV16 */

.div16 {
	min-height: 400px;
	width: 100%;
	margin: 0 auto;
	padding: 30px;
	text-align: center;	
}

.div16__h4 {
	font-size: 1.6rem;
	margin: 10px 0 10px 0;
	text-align: center;
	color: black;
}

.div16__h2 {
	height: 60px;
	padding-top: 15px;
	font-size: 2.8rem;
	line-height: 100%;
	margin: 0 0 30px 0;
	font-weight: 400;
	text-align: center;
	color: #565656;
}

.div16__gallery {
	max-width: 1800px;
	margin: auto;
}

.div16__flex-container {
	margin-bottom: 40px;
	
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;   
	
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}

.div16__flex-item {
		min-height: 200px;
		width: 300px;	
		margin: 0 auto;
		padding: 5px;
		margin-bottom: 20px;
		overflow: hidden;
		border: 0;
		box-shadow: 0px 4px 8px #000;
		
		-webkit-transition: box-shadow .3s;
		-moz-transition: box-shadow .3s;
		-ms-transition: box-shadow .3s;
		-o-transition: box-shadow .3s;
		transition: box-shadow .3s;
}


.div16__flex-item-square {
	min-height: 300px;
	width: 98%;	
	min-width: 320px;
	max-width: 600px;
	margin: 0 auto;
	padding: 15px;
	margin: 20px;
	background-color: rgb(251, 249, 241);;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.div16__flex-item-square:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}


.div16__flex-item-square table {
	margin: 10px auto;
	text-align: center;
	box-shadow: 2px 2px 3px #999;
	border-collapse: collapse;
	border-spacing: 0;
	border: thin solid #999;
	margin: 0 0 1rem;
	table-layout: auto;
	max-width: 100%;
}

.div16__flex-item-square th {
	padding: 2px 5px 2px 5px;
	font-weight: 600;
	border: thin solid #999;
	border-bottom: thick solid #999;;
}

.div16__flex-item-square td {
	padding: 2px 5px 2px 5px;
	border: thin solid #999;
}

.div16__ul {
	text-align: left;
	margin: 5px;
	margin-top: 20px;
}

.div16__li {
	margin-bottom: 10px;
	margin-left: 20px;
}

.kontakt-lernfoerderung ul {
	text-align: left;
	list-style-type: none;
	margin-left: 10px;
}

.kontakt-lernfoerderung li {
	padding: 10px 0 10px 0;
	font-size: 1.5rem;
	line-height: 150%;
}

.div16__img {
		height: 180px;
		width: auto;
		overflow: hidden;
}

.div16__img--width {
		height: 180px;
		width: auto;}

.div16__caption {
	height: auto;
	margin: auto;
}

.div16__caption p {
	margin: 25px;
	font-size: 1.5rem;
	line-height: 160%;
}



/* #endregion */

/* #region  DIV19 */

.div19 {
	position: relative;
	width: 100%;
	min-height: 400px;
	
	padding-bottom: 30px;
	overflow: hidden;
/*-webkit-box-shadow: inset 0px 0px 10px 2px #333399; /* WebKit *!/
-moz-box-shadow: inset 0px 0px 10px 2px #333399; /* Firefox *!/
box-shadow: inset 0px 0px 10px 2px #333399; /* Standard *!/*/
}

.div19_termmincontainer {
	max-width: 1100px; 
	margin: auto; 
	padding-top: 30px; 
	padding-bottom: 30px; 
	border: 2px solid #00927f; 
	box-shadow: 0px 3px 5px #444;
}

#div19__scrollcontainer-termine {
	width: 100%;
	margin: auto;
	display: none;
}

.div19__expand {
	width: 80%;
	margin: 0 auto;
	height: 60px;
	padding-top: 5px;
	text-align: center;
}
 
.div19__fold {
	width: 80%;
	margin: 0 auto;
	height: 40px;
	padding-top: 5px;
	text-align: center;
}
  
.div19__btn-arrow {
	
	font-size: 1rem;
	font-weight: 300;
	text-decoration: none;
	padding: 5px 15px 5px 15px;
}

.div19__btn-arrow:hover {
	color: #b9352f;
}

.div19__h2 {
	height: 50px;
	padding-top: 10px;
	font-weight: 300;
	font-size: 2.8rem;
	line-height: 100%;
	margin: 0 auto;
	text-align: center;
	
}

.div19__flexcontainer {
	width: 100%;
	height: auto;
	margin: 0 auto;
	
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
	
	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	-ms-align-items: flex-start;
	-o-align-items: flex-start;
	align-items: flex-start;
}

.div19__flexcontainer-termine {
	width: 80%;
	min-height: 1000px;
	margin: 0 auto;
	
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
	
	-webkit-align-items: flex-start;
	-moz--align-items: flex-start;
	-ms-align-items: flex-start;
	-o-align-items: flex-start;
	align-items: flex-start;
}



.div19__flexcontentbox {
	width: 82%;
	margin: 0 auto;
	
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	
	-webkit-flex-wrap: nowrap;
	-moz-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	-o-flex-wrap: nowrap;
	flex-wrap: nowrap;
	
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
	
	-webkit-align-items: center;
	-moz--align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}

.div19__flex-item-column {
	width: 96%;
	height: auto;
	margin: 0 auto;
	border-bottom: 1px dotted #efefef;
	/*background: url('../img/start/feldsieper-schule-bochum-line.png');
	background-position: top left;
	background-repeat: repeat-y;*/
	
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	
	-webkit-flex-wrap: nowrap;
	-moz-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	-o-flex-wrap: nowrap;
	flex-wrap: nowrap;
	
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	
	-webkit-justify-content: flex-start;
	-moz-justify-content: flex-start;
	-ms-justify-content: flex-start;
	-o-justify-content: flex-start;
	justify-content: flex-start;
}

.div19__flex-item-column-legende {
		width: 600px;
		margin: 5px auto;
		text-align: center;
		padding: 5px 0 5px 0;
		min-height: 90px;
		
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		
		-webkit-flex-wrap: wrap; 
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		-o-flex-wrap: wrap;
		flex-wrap: wrap;
		
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		-o-flex-direction: row;
		flex-direction: row;
		
		-webkit-align-items: center;
		-moz-align-items: center;
		-ms-align-items: center;
		-o-align-items: center;
		align-items: center;
		
		-webkit-justify-content: center;
		-moz-justify-content: center;
		-ms-justify-content: center;
		-o-justify-content: center;
		justify-content: center;
	}

.div19__flex-item-row {
	width: auto;
	height: auto;
	margin: 2px;
}

.div19__blank {
	position: relative;
	height: 15px;
}

.div19__h3 {
	height: 22px;
	font-size: 2rem;
	letter-spacing: 1px;
	margin: 10px auto;
	font-weight: 300;
	color: #333;	
	letter-spacing: 1pt;
	text-align: center;
	line-height: 140%;
 }
 
 .div19__flex-item-column-explication {
 	font-size: 1.2rem; 
 	color: #555; 
 	text-align: left; 
 	margin-bottom: 10px; 
 	line-height: 160%; 
 	margin: auto;
 }
 
.div19__borderline {
		height: 30px;
		font-size: 2.4rem;
		margin: 0;
		border-top: 2px solid #fff;
}

.div19__flex-item-row-point {
	width: 30px;
	height: 20px;
	border: 1px solid #fff;
}

.div19__flex-item-row-point-non {
	width: 30px;
	height: 20px;
}

.div19__flex-item-row-legende {
	width: 30%;
	min-height: 40px;
	margin: 0 auto;
	text-align: center;
	line-height: 160%;
	font-size: 1.4rem;
	font-weight: 400; 
	 
	padding: 6px; 
}

.div19__flex-item-row-date {
	width: 25%;
	height: auto;
	margin: 3px;
	padding: 2px;
	text-align: right;
	font-size: 1.4rem;
	font-weight: 400;
}

.div19__flex-item-row-hsts {
	width: 20%;
	height: auto;
	margin: 5px;
	padding: 2px;
	padding-left: 20px;
	text-align: left;
	font-size: 1rem;
	font-weight: 400;
}

.div19__flex-item-row-date-small {
	width: 80%;
	height: auto;
	margin: 5px;
	padding-top: 5px;
	text-align: left;
	font-size: 1.4rem;
}

.div19__flex-item-row-info {
	width: 50%;
	height: auto;
	margin: 5px;
	padding-top: 2px;
	padding-left: 10px;
	text-align: left;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 160%;
}

.div19__flex-item-row-elternbriefe {
	width: 70%;
	height: auto;
	margin: 5px;
	padding-top: 2px;
	padding-left: 10px;
	text-align: left;
	font-size: 1.4rem;
	font-weight: 400;
}

.div19__letter {
	
	text-decoration: none;
}

.div19__letter:hover {
	text-decoration: underline;
}

.div19__flex-item-row-downloads {
	width: 98%;
	min-height: 30px;
	padding: 5px;
	margin: 0 auto;
	text-align: center;
	line-height: 160%;
	font-size: 1.4rem;
	color: #333366;
	font-weight: 400;
	border-bottom: 1px dotted #fff;
}

.div19__flex-item-row-downloads-link {
	color: white;
	text-decoration: none;
}

.div19__flex-item-row-downloads-link:hover {
	color: white;
	text-decoration: underline;
}

.div19_schulfest {
	width: 96%; 
	min-height: 200px; 
	box-shadow: 0px 3px 5px #444; 
	padding: 10px; 
	color: white; 
	border: 3px solid #fff; 
	line-height: 140%;
}


/* #endregion */


/* #region  DIV21 */

.div21 {
	position: relative;
	min-height: 650px;
	width: 100%;
	margin: 0 auto;
	border-top: 10px solid #fff;
}


.div21__h2 {
	height: 50px;
	padding-top: 10px;
	font-weight: 300;
	font-size: 2.8rem;
	line-height: 100%;
	margin: 0 auto;
	text-align: center;
	
}

.div21__h4 {
	font-size: 1.6rem;
	margin: 0;
	font-weight: 400;
	line-height: 160%; 
	text-align: center;
	color: black;
	letter-spacing: 0.1rem;
	background: rgba( 255, 255, 255, 1);
}

.div21__gallery {
	max-width: 1800px;
	margin: auto;
	padding-top: 50px;
}

.div21__flex-container {
	
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;   
	
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}

.div21__flex-item {
		height: 450px;
		width: 450px;	
		padding-top: 400px;
		margin: 0 auto;
		margin-bottom: 40px;
		overflow: hidden;
		border: 2px solid #fff;
		box-shadow: 4px 8px 8px #333;
		
		-webkit-transition: box-shadow .3s;
		-moz-transition: box-shadow .3s;
		-ms-transition: box-shadow .3s;
		-o-transition: box-shadow .3s;
		transition: box-shadow .3s;
}

.div21__flex-item:hover {
		box-shadow: 0px 1px 1px #999;
}

.div21__flex-item-hs {
	background: #f5f5f5 url('../img/ogs/start_hs_2019.jpg') no-repeat left top;
}

.div21__flex-item-ts {
	background: #f5f5f5 url('../img/ogs/start_ts.jpg') no-repeat left top;
}

.div21__caption {
	width: 200px;
	height: auto;
	margin: auto;
	font-size: 1.4rem;
	line-height: 160%;
}


/* #endregion */

/* #region  DIV23 */

.div23 {
	position: absolute;
	top: 20px;
	z-index: 101;
	width: 90%;
	margin-left: 20%;
	margin: auto;
	background: rgba(255, 255, 255, 0.4);
	opacity: 0;
	visibility: hidden;
}

.div23-show {
	opacity: 1;
	visibility: visible;
}

.div23__h2 {
	position: relative;
	height: 60px;
	padding-top: 15px;
	font-size: 2.8rem;
	line-height: 100%;
	margin: 0 0 10px 0;
	text-align: center;
}

.div23__closeX {
	position: absolute;
	top: 2px;
	right: 20px;
	margin-right: 10px;
	margin-top: 10px;
	font-weight: 600;
	
}

.div23__flex-container {
	width: 96%;
	margin: auto;
	min-height: 600px;
	margin-bottom: 40px;
	padding: 20px;
	border: 1px double #475577;
	
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;   
	
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
	
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
	
}

.div23__flex-item {
			height: 200px;
			width: 200px;	
			margin: 5px;
			padding: 5px;
			border: 0;
			font-size: 1.4rem;
			font-weight: 400;
			color: white;
			text-align: center;
			box-shadow: 0px 4px 6px #666;
	}
	
	.div23__flex-item:hover {
			box-shadow: 0px 1px 1px #999;
	}
	
.div23__flex-item-large {
			height: 300px;
			width: 470px;	
	}

.div23__p {
	margin: 10px;
}

.div23__h5 {
	font-weight: 400;
	font-size: 1.2rem;
	margin-bottom: 10px;
	margin-top: 10px;
	line-height: 120%;
}

.div23__ul {
	display: inline;
	text-align: right;
	list-style-type: none;
}

.div23__li {
	padding-bottom: 4px;
	padding-right: 10px; 
	font-size: 0.8rem;
}


/* #endregion */

/* #region  DIV28 */

.div28_contentbox {
  width: 100%;
  margin: 0 auto;
  padding: 10px;
}

.div28__h3 {
	font-size: 2.4rem;
	font-style: italic;
	width: 100%;
	min-height: 50px;
	padding-top: 20px;
	text-align: center;
	
}

.div28__content {
	width: 100%;
	min-height: 300px;
	padding-bottom: 50px;
	padding-top: 30px;
	
	display: -webkit-flex; 
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;   
	
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	
	-webkit-justify-content: space-around;
	-moz-justify-content: space-around;
	-ms-justify-content: space-around;
	-o-justify-content: space-around;
	justify-content: space-around;
	
	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	-ms-align-items: flex-start;
	-o-align-items: flex-start;
	align-items: flex-start;
}

.div28__infobox {
	width: 80%;
	height: auto;
	border: 1px solid #eee;
	
	font-weight: 300;
	font-size: 1.3rem;
	line-height: 120%;
	margin: auto;
	margin-bottom: 20px;
	padding: 10px;
}

.div28__infobox-large {
	width: 98%;
	height: auto; 
  column-count: 3;
  column-rule-width: 1px;
  column-rule-style: dotted;
	border: 1px solid #fff;
	
	font-weight: 300;
	font-size: 1rem;
	line-height: 120%;
	padding: 10px;
	margin-bottom: 30px;
}

.div28__text {
	padding: 5px;
}

.div28__p {
	margin-bottom: 2rem;
}

.div28__text-600 {
	font-weight: 600;
	margin-bottom: 20px;
}

.div28__h2 {
	margin: 6px 0 6px 0;
}


/* #endregion */
/* #region  FOOTER */

.footer {
	width: 100%;
	min-height: 30px;
	color: white;
	padding-top: 6px;
	font-size: 1.4rem;
	font-weight: 400;
	text-align: center;
}

.reinigung {
	width: 600px;
	height: auto;
}

.reinigung-img {
	width: 100%;
	height: auto;
}
	

/* #endregion */
/* #region  MEDIA 1600 */

	@media (max-width: 1600px) {
	
}		


/* #endregion */

/* #region  MEDIA 1400 */

		@media (max-width: 1400px) {

			.div01__btn { 
				letter-spacing: 0.06rem;
				font-size: 1.8rem;
			}
		
}
	

/* #endregion */


/* #region  MEDIA 1100 */

@media (max-width: 1100px) {
	
header {
	position: absolute;
	padding-top: 10px;
	top: 0;
	width: 100%;
	height: 140px;
	z-index: 100;
	
	display: flex;   
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
}
	
	.scrollpoint {
	width: 1px;
	height: 1px;
	position: relative;
	top: 0;
}

.header__logo {
	position: relative;
	background-image: url(../img/start/lernfoerderung_logo_start.png);
	background-size: contain;
	width: 94px;
	height: 74px;
	text-indent: -9999rem;
	margin: -25px auto;
	padding-top: 0;
}

.header__h1 {
	font-size: 3.5rem;
	padding: 50px 0;
	margin: 0 auto;
	letter-spacing: normal;
	line-height: 100%;
}

.header__figcaption{
		height: auto;
		width: 100%;
		margin: auto;
		padding: auto;
		text-align: center;
}

.subheader__h3 {
	padding: 3px;
	margin: 0;
	font-size: 1.4rem;
	line-height: 100%;
}

.header__btn-lernfoerderung {
	width: 100px;
	height: 100%;
	margin: 0 auto;
}

.header__nav {
	position: absolute;
	top: 130px;
	right: 0;
	width: 100%;
	margin: auto;
	height: 30px;
	border-radius: 0;
	background-color: #273e65;
	box-shadow: 1px 1px 8px #3c4c67;
	display: flex;  
	flex-wrap: nowrap;
	justify-content: space-around;
}


.header__nav  ul {
	padding: 2px;
	list-style-type: none;
	text-align: center;
}

.header__nav  li {
	padding: 2px;
}


.floatingleft {
	float: left;
}

.floatingright {
	float: right;
}

.titelcontainer {
	display: none;
}
	
	.div01 {
	  display: none;
	}
		
	.div22__titelcontainer {
		display: none;
	}
	
	
	.div04__contentbox {
		width: 100%;
		box-shadow: 3px 3px 7px #444;
		background-image: url(../img/start/foerder_600.png) no-repeat;
		
	}
	
	.div04__h3 {
	font-size: 5vw;
	font-style: italic;
	margin: 0 auto;
	padding: 10px;
	text-align: center;
	line-height: 120%;
	
}

.div04__h5 {
	padding-bottom: 40px; 
	font-size: 1rem; 
	 
	margin-bottom: 0;
	padding: 10px;
	font-weight: 200;
	text-align: center;
}

.div04__subtext {
	display: none;
}
	
	.div04__navi {
	display: none;
	}
	
	.div17--saeulen {
		width: 100%;
		height: auto;
		text-align: center;
	}
	
	.div17--schaubild {
		width: 700px;
		height: auto;
		margin: 10px auto;
	}
	
	#coronastundenplan {
		display: none;
	}
	
	#coronastundenplan-small {
		display: block;
		width: 100%;
		height: auto;
		margin: 0 auto;
		
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		-o-flex-wrap: wrap;
		flex-wrap: wrap;
		
		-webkit-justify-content: center;
		-moz-justify-content: center;
		-ms-justify-content: center;
		-o-justify-content: center;
		justify-content: center;
		
		-webkit-align-items: flex-start;
		-moz--align-items: flex-start;
		-ms-align-items: flex-start;
		-o-align-items: flex-start;
		align-items: flex-start;
	}
	
	#coronastundenplan-small table {
		margin: 6px;
				box-shadow: 0px 3px 5px #444;
	}
	
	#coronastundenplan-small th {
		font-weight: 600;
		font-style: normal;
		font-size: 0.8rem;
		text-align: center;
	}
	
	#coronastundenplan-small td {
		padding: 6px;
		border: 1px solid #999;
	}

/* #endregion */

/* #region  DROPDOWN */

	.dropdown {
		display: flex;
		position: fixed;
		top: 16px;
		right: 16px;
	}
	
	.menuebtn {
		border: none;
		cursor: pointer;
		height: 48px;
		width: 48px;
		z-index: 5;
		background-color: beige;
		box-shadow: 3px 3px 8px #14213f;
  		color: #060c17;
		font-size: 1.3rem;
		font-weight: 600;
		border-radius: 6px;
		transition: all 0.2s ease-in-out;
	}
			
	.dropbtn:hover, .dropbtn:focus {
		background-color: white;
			}

	.menuebtn:hover,
	.menuebtn:focus {
		background-color: white;
		box-shadow: 1px 1px 2px #14213f;
	}
			
	.dropdown-content {
    position: fixed;
    top: 86px;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100vh - 55px);
    height: calc(100dvh - 55px);
    margin: 0;
    padding: 0.5rem 0;
    z-index: 100;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;

    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    /* Milchglas */
    background: rgba(255, 255, 255, 0.58);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);

    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;

    transition:
        transform 0.35s ease,
        opacity 0.25s ease,
        visibility 0s linear 0s;
}

.dropdown-content.closed {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    pointer-events: none;

    transition:
        transform 0.35s ease,
        opacity 0.25s ease,
        visibility 0s linear 0.35s;
}

.dropdown-content a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.8rem;
    padding: 0.95rem 1.25rem;

    color: #1f2937;
    text-decoration: none;
    text-align: center;
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.02em;

    border-bottom: 1px solid rgba(31, 41, 55, 0.12);
    background: rgba(255, 255, 255, 0.08);

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

.dropdown-content a:hover,
.dropdown-content a:focus-visible {
    color: #111827;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 0 0 1px rgba(31, 41, 55, 0.08);
    outline: none;
}

.dropdown-content a:last-child {
    border-bottom: none;
}
			
	.show {display: block;}
			
	.slider {
				overflow-y: hidden;
				max-height: 500px; /* approximate max height */
			
				transition-property: all;
				transition-duration: 0.75s;
				transition-timing-function: cubic-bezier(1, 1, 1, 1);
			}
				
	.slider.closed {
				max-height: 0;
			}	

	
		.slider {
		box-shadow: 0 8px 24px rgba(0,0,0,0.12);
		}

		.slider a {
		color: #1F2937;
		}

		.slider a:hover,
		.slider a:focus {
		color: #1F2937;
		}
	
	.scroller {
				position: relative; 
				top: -22px; 
				height: 1px; 
				width: 1px;
			}
	
	}
	


/* #endregion */


/* #region  MEDIA 768 */

@media (max-width: 768px) {
		
header {
	position: absolute;
	padding-top: 10px;
	top: 0;
	width: 100%;
	height: 140px;
	z-index: 100;
	
	display: flex;   
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
}


		.header__h1 {
			font-size: 3rem;
			padding: 3px;
		}
	
	.scrollpoint {
	width: 1px;
	height: 1px;
	position: relative;
	top: 0;
}

.header__logo {
	width: 96px;
	height: 74px;
}

.header__h1 {
	font-size: 2rem;
	padding: 3px;
}

.header__figcaption{
		height: auto;
		width: 100%;
		margin: auto;
		padding-top: 30px;
		text-align: center;
}

.subheader__h3 {
	padding: 3px;
	margin: 0;
	font-size: 1.4rem;
	line-height: 100%;
}

.header__nav{
	top: 130px;
}


.titelcontainer {
	display: none;
}

.div19__flex-item-column-legende {
		width: 100%;
		margin: auto;
		text-align: center;
		padding: 5px;
		min-height: 90px;
		
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	
.div19__flex-item-row-legende {
	width: 300px;
	min-height: 40px;
	margin: 0 auto;
	text-align: center;
	line-height: 160%;
	font-size: 1.4rem;
	font-weight: 400; 
	 
	padding: 6px; 
}

.div07__btn--square {
		font-size: 1.4rem;
		padding: 10px;
	}
	
	.div07__flexbox {
		text-align: center;
		margin: 20px 0;
	}
	
	.div07_containerbox {
	 max-width: 420px;
		height: auto;
		margin: 0 auto;
		font-size: 1rem;
		
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		-o-flex-wrap: wrap;
		flex-wrap: wrap;
		
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		
		-webkit-align-items: center;
		align-items: center;
		
		-webkit-justify-content: center;
		-moz-justify-content: center;
		-ms-justify-content: center;
		-o-justify-content: center;
		justify-content: center;
	} 
	
	.div07__container-h {
		width: 280px;
		height: 30px;
		padding-top: 5px;
		color: white;
		margin-top: 20px;
		}
	
	.div07__container-w {
		width: 280px;
		height: 30px;
		padding-top: 5px;
		color: white;
		margin-top: 20px;
		}
		
	.div21__flex-item {
			height: 300px;
			width: 300px;	
	}
	
	.div22__infobox {
	width: 90%;
	min-width: 300px;
		margin: 8px auto;
}


.modal-content {
	    margin: 20px auto;
	    padding: 0;
	    border: 1px solid #888;
	    width: 98%;
	}
	.div24__flex-container {
		width: 96%;
		margin: auto;
		margin-bottom: 20px;
		
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;   
		
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		-o-flex-wrap: wrap;
		flex-wrap: wrap;
		
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column; 
		
		-webkit-align-items: center;
		-moz-align-items: center;
		-ms-align-items: center;
		-o-align-items: center;
		align-items: center;
		
	}
	
	.div24__flex-item {
			min-height: 100px;
			width: 96%;	
			margin: auto;
			padding: 5px;
			margin-bottom: 10px;
			overflow: hidden;
			border: 0;
			box-shadow: 0 2px 4px #000;
				}
	
	.div24__img {
			width: 96%;
			margin: 0 auto;
			height: auto;
			overflow: hidden;
	}
	
	.div24__caption {
		width: 96%;
		height: auto;
		margin: 30px auto;
		font-size: 1.2rem;
		line-height: 140%;
	}
	
	.div19__flex-item-row-date {
		width: 15%;
		height: auto;
		margin: 3px;
		padding: 2px;
		text-align: right;
		font-size: 1.4rem;
		font-weight: 400;
	}
	
	.closehs {
	position: fixed;
	z-index: 102;
	top: 20px;
	right: 50px;
    color: #fb0404;
    font-size: 28px;
    font-weight: bold;
		width: 30px;
	height: 30px;
	padding: 7px;
	box-shadow: 0px 3px 5px #444;
}

.closehs:hover,
.closehs:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.closets {
	position: fixed;
	top: 20px;
	right: 50px;
    color: #fb0404;
    font-size: 28px;
    font-weight: bold;
		width: 30px;
	height: 30px;
	padding: 7px;
	box-shadow: 0px 3px 5px #444;
}

.div22__h2 {
	font-size: 7vw;
}
	
	.div17--saeulen {
		display: none;
	}
	
	
}


/* #endregion */

/* #region  MEDIA 480 */


@media (max-width: 480px) {

header {
	height: 140px;
}


		.header__h1 {
			font-size: 2rem;
			padding: 3px;
			font-weight: 700;
			letter-spacing: -0.1;
		}


.header__figcaption{
		height: auto;
		width: 100%;
		margin: auto;
		padding: 0;
		text-align: center;
}


.subheader__h3 {
	padding: 3px;
	margin: 0;
	font-size: 1.4rem;
	line-height: 100%;
}

/* #endregion */
}