/* Version: 05.03.2018 */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

 /* ------------------- NICHT VERÄNDERN ------------------------- */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
	 line-height: 1.15; /* 1 */
	-webkit-text-size-adjust: 100%; /* 2 */
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

 /* ----------------------------------------------------------- */

body {
	font-family: 'Poppins', sans-serif;
	/* ------------------- NICHT VERÄNDERN ------------------------- */
	font-size: 100%;
	/* ------------------------------------------------------------ */
	color: #444444;
	text-decoration: none;
	font-weight: 300;
	word-spacing: normal;
	line-height: 1.5;
	background-color: #ededed;
	/*	Hintergrundbilder werden in Chrome mit ausgedruckt	*/
	-webkit-print-color-adjust:exact;
}

p {
	margin: 0 0 0.8rem 0;
}

h1 {
	line-height: 1.5;
	font-size: 1rem;
	font-weight: 600;
	padding: 0 0 2%;
	margin: 0;
}

h2 {
	margin: 0;
	line-height: 1.5;
	font-size: 1.3rem;
	font-weight: 600;
	padding: 1% 0 3%;
}

h2 span {
	margin: 0;
	line-height: 1.5;
	font-size: 0.9rem;
	font-weight: normal;
	padding: 1% 0 3%;
}

h3 {
	line-height: 1.5;
	font-size: 1.0rem;
	font-weight: 600;
	padding: 0 0 0.5rem;
	margin: 0;
}

.purple {
	color: #21378d;
}

.red {
	color: #B30F1B;
}

.frame-outer {
	position: relative;
	padding: 0;
	width: 760px;
	margin: 1.3rem auto;
	border: 0.02rem solid #d7d7d7;
	box-shadow: -0.1rem 0.1rem 1rem #d7d7d7;
	font-size: 0.85rem;
	background-color: #FFF;
}

.frame-outer::after {
	content: "";
	display: block;
	clear: both;
}

.content {
	padding: 2rem;
}

.content::after {
	content: "";
	display: block;
	clear: both;
}

.content-grey {
	padding: 2rem;
	background-color: #F3F3F3;
}

.content-grey::after {
	content: "";
	display: block;
	clear: both;
}

.content-grey2 {
        position: relative;
	padding: 2rem;
	background-color: #F3F3F3;
}

.white_inner {
	position: relative;
	padding: 2rem;
        background-color: #ffffff;
}


.header{
	position: relative;
}

.logo {
	width: 7rem;
	float: right;
}

.logo-bg {
	position: absolute;
	top: 0;
	right: 1rem;
	padding: 0;
	color: #fff;
}

#title-block {
	position: absolute;
	bottom: 3%;
	right: 0;
	padding: 0.5rem 3%;
	/* -- FALLBACK FÜR BROWSER DIE RGBA-WERTE NICHT UNTERSTÜTZEN -- */
	background: rgb(0, 0, 0);
	/* -------------------------------------------------------------- */
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
}

#box-left {
	float: left;
	width: 75%;
}

#box-right {
	float: right;
	width: 25%;
}

#footer {
	padding: 2rem;
	border: solid 1px #ebe9ee;
}

#footer::after {
	content: "";
	display: block;
	clear: both;
}

.adress {
	padding: 0.5rem;
	background-color: #cccccc;
	border-top: #BEBEBE 1px solid;
	
}

.adress p {
	margin-bottom: 0;
	font-size: 0.75rem;
}

.adress::after {
	content: "";
	display: block;
	clear: both;
}

img {
	max-width: 100%;
	height: auto;
	width: auto9;
	border: 0;
	vertical-align: middle;
}

a:link {
	color: #21378d;
	text-decoration: none;
	font-weight: bold;
}

a:visited {
	text-decoration: none;
	color: #21378d;
}

a:hover {
	text-decoration: underline;
	color: #000;
}

a:active {
	text-decoration: none;
	color: #000;
}

ul {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 15px;
}

li {
	padding: 0 0 6px;
	list-style-image: url(li.jpg);
}


/*
_______________________

KAPITÄLCHEN, BULLETPOINT
_______________________

<span class="capital" style="float: left; width: 43px; height: 20px; line-height: 47px; background: transparent; font-size: 38px; margin-top: -5px; margin-right: -32px; margin-bottom: 5px; background-color: transparent;">I</span>

ul li {
background: url(bp.jpg) no-repeat 2px 5px; padding-left:8px;
}
*/

.flex {
	display: flex;
	display: -ms-flexbox;
	display: -webkit-flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin: 0.8rem 0;
}

.left {
	width: 48%;
	padding: 2% 3%;
	background-color: #FFF;
}

.right {
	width: 48%;
	padding: 2% 3%;
	background-color: #FFF;
}

/* -------------- FLEXBOX EIGENSCHAFTEN -------------------- */
/* -----GENERELL: FLEXBOX STATT FLOAT NEHMEN, DA SIE BESSERE OPTIONEN ZUR GESTALTUNG BIETEN, 
JEDOCH DARAUF ACHTEN, DASS FLEXBOXEN NICHT VOM INTERNET EXPLORER 9 UND ABWÄRTS UNTERSTÜTZT WERDEN. => IN DEM FALL FLOATEN --------------------- */
/* 
.flex {
	display: table;
	display: flex;
	display: -ms-flexbox;
	display: -webkit-flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 1rem 0;
} 
*/
/* -- FLEXBOX EIGENSCHAFTEN FÜR GLEICHE HOHE BOXEN MIT "PLATZ ZWISCHEN DEN BOXEN" (siehe "justify-content: space-between;") -- */

p:empty {
	height: 0.625rem;
}

.clear {
	clear: both;
	font-size: 0;
	line-height: 0;
}

.hide {
	display: none;
}

.refnr {}

.justifier {
	text-align: justify;
	text-align-last: justify;
}

.justifier:after {
	content: "";
	display: inline-block;
	width: 100%;
}

.table {
	display: table;
	width: 100%;
	/* -- LÄSST GRENZEN VERSCHWINDEN, SODASS KEINe BEGRENZUNG ERSCHEINT -- */
	/* border-collapse: collapse; */
	/* --------------------------------------------------------------------*/
	table-layout: fixed;
	/* ----- ERSTELLT EINEN BEGRENZUNGSRAHMEN JEDOCH AN ALLEN SEITEN ----- */
	/* border-spacing: 3rem; */
	/* --------------------------------------------------------------------*/
}

.row {
	display: table-row;
}

#cell-left,
#cell-right {
	display: table-cell;
	vertical-align: bottom;
	padding: 1rem 3%;
}

#cell-left {
	border-right: 15px solid #fff;
}

#cell-right {
	border-left: 15px solid #fff;
}

.bg-darkblue {
	background: rgb(78, 147, 250);
}

.bg-lightblue {
	background: rgb(127, 174, 245);
}

.button_box {
	text-align: center;
}

.button_box::after {
	clear: both;
	content: "";
	display: block;
}

/*_______________________

BUTTON MIT ANIMATION
_______________________
*/

.button a {
	display: inline-block;
	background: #FFF;
	padding: 0.6rem 1.5rem 0.6rem 1.5rem;
	margin: 2rem auto;
	cursor: pointer;
	-webkit-border-radius: 1.5rem;
	border-radius: 0;
	border: solid 1px #2165ad;
	transition: .3s background ease;
	-moz-transition: all 0.2s ease-in-out 0s;
	-webkit-transition: all 0.2s ease-in-out 0s;
	color: #2165ad;
	white-space:nowrap;
	box-sizing: border-box;
	letter-spacing: 0.1rem;
	font-weight: 600;
}
.button a:hover {
	background-position: 15px center;
	background-color: #2165ad;
	text-decoration: none;
	color: #FFF;
}

.pdb0 {
  padding-bottom:0
}

/* ------------------ Slider 4 Bilder ------------------------ */

.slider-wrap_4bilder{
	max-width: 760px;
  	width: auto;
  	height: auto;
	position: relative;
	margin-top: 0;
	}

.slideshow_4bilder {
  position: absolute;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 0;
}

.slideshow_4bilder li span {
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  color: transparent;
  opacity: 0;
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-animation: image 24s linear infinite;
  animation: image 24s linear infinite;
}

@keyframes image {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  17% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes image {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  17% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.slideshow_4bilder li {
	margin:0;
	padding:0;
  list-style: none;
  -webkit-animation-delay: 24s;
  animation-delay: 24s;
}
.slideshow_4bilder li:nth-child(1) span {}

.slideshow_4bilder li:nth-child(2) span {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}
.slideshow_4bilder li:nth-child(3) span {
  -webkit-animation-delay: 12s;
  animation-delay: 12s;
}
.slideshow_4bilder li:nth-child(4) span {
  -webkit-animation-delay: 18s;
  animation-delay: 18s;
}

ul.slideshow_4bilder {
	margin:0;
	list-style: none;
	list-style-image: none;
	list-style-type: none;
}

.slideshow_4bilder li::before {
	content: '';
    width: 12px;
    height: 10px;
    position: absolute;
    background-size: cover;
    background-position: center;
	background-image: none;
    left: 0;
    top: 0%;
}

/* ------------------ Ende Slider 4 Bilder ------------------------ */
/*
_______________________

MARKIERTER TEXT
_______________________

::selection {
background: #ffb7b7;
}
::-moz-selection {
background: #ffb7b7;
}

*/
.apply {}
