/* Version: 05.03.2018 */


 /* ------------------- 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: Arial, Helvetica, sans-serif;
/* ------------------- NICHT VERÄNDERN ------------------------- */
  font-size: 100%;
 /* ------------------------------------------------------------ */
  color: #000;
  text-decoration: none;
  font-weight: normal;
  word-spacing: normal;
  line-height: 1.5;
  background-color: #E9EAEC;
  /*	Hintergrundbilder werden in Chrome mit ausgedruckt	*/
  -webkit-print-color-adjust:exact;
}

p {
  margin: 0;
}

h1 {
  font-size: 1.7rem;
  font-weight: bold;
  padding: 0;
  margin: 0;
  color:#E0001F;
  line-height: 2.1rem;	
  text-transform: uppercase;
}

h1 span {text-transform: lowercase;}

h1 small{font-size:calc(100% - 0.8rem);}

h2 {
  margin: 0;
  line-height: 1.5;
  font-size: 1rem;
  font-weight: bold;
color:#000;
	text-transform: uppercase;

}

.frame-outer {
  position: relative;
  padding: 0;
  width: 720px;
  margin: 1.3rem auto;
  background-color: #FFF;
  border: 0.02rem solid #A7A9A4;
  box-shadow: -0.1rem 0.1rem 1rem #999;
  font-size: 0.95rem;
	background-image: url(bg.jpg);
	background-repeat: no-repeat;
	background-position: bottom;
}
.frame-outer::after {
  content: "";
  display: block;
  clear: both;
}

.logo {
  width: 10rem;
  float: left;
}

.header {
  position: relative;
}

.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;
} 

.content {
  padding: 1.1rem 5%;
}

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

/* -------------- FLEXBOX -------------------- */

.flex {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
	flex-wrap: wrap;
  flex-direction: row;
}

.left{width:23%;}
.middle{width:33%;}
.right{width:42%;}

/* -------------- FLEXBOX -------------------- */

.box-left {
  float: left;
  width: 30%;
}

.box-right {
  float: right;
  width: 70%;
}

.footer {
background-color: #7C7D7D;
	color: #fff;
	font-size: 12px;
	padding:1% 5%;
	

}

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

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

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

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

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

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

ul {
margin: 0 auto 0.3rem 0.5rem;
  padding-left: 0.5rem;
	padding-bottom:1rem;
  /* ------------- FALLS ETWAS ANDERES ALS DIE STANDARD AUFZÄHLUNGSZEICHEN GEWÜNSCHT ----------------  */
  /* list-style-type: none; */
  /* DANN MUSS "list-style-type: disc;" GELÖSCHT WERDEN.
  /* ------------------------------------------------------------------------------------------------- */
}

li {
  /* ------------- FALLS ETWAS ANDERES ALS DIE STANDARD AUFZÄHLUNGSZEICHEN GEWÜNSCHT ----------------  */
  /* position: relative; */
  /* ------------------------------------------------------------------------------------------------- */
  margin: auto;
  padding: 0;
}

/* --------------- FALLS ETWAS ANDERES ALS DIE STANDARD AUFZÄHLUNGSZEICHEN GEWÜNSCHT ----------------  */

/* 
li::before {
  position: absolute;
  top: 0;
  left: -0.8rem;
  content: "■";
  font-size: 0.8rem;
  color: red;
} 
*/


.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%;
}

p:empty {
  height: 1rem;
}


.button a {
  display: inline-block;
  background:#E0001F;
  padding: 0.4rem 1.5rem 0.4rem 1.5rem;
  margin: 1rem auto;
  cursor: pointer;
  -webkit-border-radius: 1.5rem;
  border-radius: 0.2rem;
  transition: all 140ms ease 0s;
  -moz-transition: all 140ms ease 0s;
  -webkit-transition: all 140ms ease 0s;
  color: #fff;
	text-align:center;font-weight:bold;
}
.button a:hover {
  background-position: 15px center;
  background-color: #353A4A;
  text-decoration: none;
  color: #fff;

}

.slider-wrap{
	max-width:720px;
  	width: auto;
  	height: auto;
	position:relative;
}

.slideshow {
  position: absolute;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 0;
}
.slideshow 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;
    }
    5% {
      opacity: 1;
      -webkit-animation-timing-function: ease-out;
      animation-timing-function: ease-out;
    }
    30% {
      opacity: 1;
    }
    35% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
}
@-webkit-keyframes image {
    0% {
      opacity: 0;
      -webkit-animation-timing-function: ease-in;
      animation-timing-function: ease-in;
    }
    5% {
      opacity: 1;
      -webkit-animation-timing-function: ease-out;
      animation-timing-function: ease-out;
    }
    30% {
      opacity: 1;
    }
    35% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
}

.slideshow li {
	margin:0;
	padding:0;
  list-style: none;
  -webkit-animation-delay: 24s;
  animation-delay: 24s;
}
.slideshow li:nth-child(1) span {}
.slideshow li:nth-child(2) span {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}
.slideshow li:nth-child(3) span {
  -webkit-animation-delay: 12s;
  animation-delay: 12s;
}
.slideshow li:nth-child(4) span {
  -webkit-animation-delay: 18s;
  animation-delay: 18s;
}
ul.slideshow {
	margin:0;
}

.farbe-rot{color:#E0001F !important;}

.apply {}
