/* ------------------- Google Fonts ------------------------- */

@font-face {
	font-family: "Open Sans";
	src: url('https://fonts.pwrk.dev/ofl/opensans/OpenSans[wdth,wght].woff2') format('woff2');
	font-weight: 300, 400, 500, 600, 700, 800;
	font-style: normal;
}

@font-face {
	font-family: "Open Sans";
	src: url('https://fonts.pwrk.dev/ofl/opensans/OpenSans-Italic[wdth,wght].woff2') format('woff2');
	font-weight: 300, 400, 500, 600, 700, 800;
	font-style: italic;
}

/* ------------------- Allgemein ------------------------- */

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

html {
	line-height: 1.2;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: "Open Sans", Arial, Helvetica, sans-serif;
	font-size: 100%;
	font-weight: 300;
	line-height: 1.2;
	word-spacing: normal;
	text-decoration: none;
	color: #000;
	background-color: #f1f1f1;
	-webkit-print-color-adjust: exact;
}

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

p {
  	margin: 0 0 1rem 0;
}

p strong {
	font-weight: 400;
}

h1 {
	font-family: 'Raleway', Arial, Helvetica, sans-serif;
	font-size: 2rem;
	font-weight: 700;
	color: #3E95D1;
}

h2 {
	font-family: 'Raleway', Arial, Helvetica, sans-serif;
	font-size: 1.4rem;
	font-weight: 600;
	color: #3E95D1;
}

h3 {
	font-family: 'Raleway', Arial, Helvetica, sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	color: #3E95D1;
}

a {
	text-decoration: underline;
  	color: #3E95D1;
}

a:hover {
	text-decoration: none;
  	color: #3E95D1;
}

hr {
	color: #000;
	border-color: #000;
	background-color: #000;
	border: none;
	margin: 1.75rem 0;
	height: 0.1rem;
}

/* ------------------- Struktur ------------------------- */

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

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

.content {
	position: relative;
	padding: 1.6rem 6%;
}

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

/* ------------------- Abstände ------------------------- */

.nomag { margin-bottom: 0; }
.mag025 { margin-bottom: 0.25rem; }
.mag05 { margin-bottom: 0.5rem; }
.mag075 { margin-bottom: 0.75rem; }
.mag1 { margin-bottom: 1rem; }
.mag125 { margin-bottom: 1.25rem; }
.mag15 { margin-bottom: 1.5rem; }
.mag175 { margin-bottom: 1.75rem; }
.mag2 { margin-bottom: 2rem; }
.mag25 { margin-bottom: 2.5rem; }

/* ------------------- Inhalte ------------------------- */

.logo {
	width: 20%;
	float: left;
	margin: 0 auto;
}

.button a {
  	display: block;
	margin: 2rem 15rem;
	padding: 0.6rem 2.5rem 0.6rem 2.5rem;
	text-align: center;
	text-decoration: none;
  	background: #000;
	color: #fff;
	border: 0.1rem solid #000;
	cursor: pointer;
  	transition: all 140ms ease 0s;
  	-moz-transition: all 140ms ease 0s;
  	-webkit-transition: all 140ms ease 0s;
}

.button a:hover {
	text-decoration: none;
  	background-position: 15px center;
  	background-color: transparent;
  	color: #000;
}

/* ------------------ Listen & Tabellen ------------------------ */

ul {
	/* position: relative; */ /* Bei individuell festgelegten Bullet Points muss diese Zeile auch auskommentiert werden! */
  	margin: 0 auto 1rem 0.5rem;
	padding-left: 0.4rem;
  	list-style-type: disc;
}

ul ul{margin-bottom:0;}

li {
  	margin: auto;
  	padding: 0;
}

/*
li::before {
  	position: absolute;
  	left: -0.46rem;
	line-height: 1.6;
  	content: "■";
  	font-size: 0.9rem;
  	color: #b12933;
}
*/

/* ------------------- Slider ------------------------- */ 

.slider-wrap {
	max-width:780px;
  	width: auto;
  	height: auto;
	position:relative;
	overflow: hidden;
}

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

.slideshow li span {
	width: 100%;
	height:100%;
	position: absolute;
	top: 0px;
	left: 0px;
	color: transparent;
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: none;
	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: 1;
    transform: translateX(100%);
  }
  
  1% {
    transform: translateX(0);
  }
  
  25% {
    transform: translateX(0);
  }
  
  26% {
    opacity: 1;
    transform: translateX(-100%);
  }
  27% {
    opacity: 0;
    transform: translateX(-100%);
  }
}

@-webkit-keyframes image {
  0% {
    opacity: 1;
    transform: translateX(100%);
  }
  
  1% {
    transform: translateX(0);
  }
  
  25% {
    transform: translateX(0);
  }
  
  26% {
    opacity: 1;
    transform: translateX(-100%);
  }
  27% {
    opacity: 0;
    transform: translateX(-100%);
  }
}

.slideshow li {
    margin:0;
    padding:0;
  	list-style: none;
}
.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;
}

.slider-wrap li::before{
	display: none;
}

.slider-wrap ul {
    margin:0;
    padding-left:0px;
    list-style-type: none;
    list-style:none;
	border-bottom:none;
	border-color: #fff;
    border-width: 0px;
	padding-bottom:5px;
}

/* ------------------- Sonstiges ------------------------- */

.show {
	display: none;
}

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

/* ------------------- Individueller Code ------------------------- */

/* Neue Klassen und IDs am besten, der Einfachheit halber, hier unten eintragen. */

.refnr {}

.apply {}
