/* Version: 05.03.2018 */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,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;
}

p:empty {
  height: 1rem;
} 

 /* ----------------------------------------------------------- */

body {
    font-family: 'Roboto', sans-serif;
/* ------------------- NICHT VERÄNDERN ------------------------- */
  font-size: 100%;
 /* ------------------------------------------------------------ */
  text-decoration: none;
  word-spacing: normal;
  background-color: #ffffff;
  /*	Hintergrundbilder werden in Chrome mit ausgedruckt	*/
  -webkit-print-color-adjust:exact;
}

.frame-outer {
  position: relative;
  padding: 0;
  width: 780px;
  margin: 1.3rem auto;
  background-color: #FFF;
  border: 0.02rem solid #A7A9A4;
  box-shadow: -0.1rem 0.1rem 1rem #999;
  line-height: 1.4;
  color: #000;
  font-weight: 400;
  font-size: 0.9rem;
}

.frame-outer::after {
  content: "";
  display: block;
  clear: both;
}

#logo img{
	width:50%;
	float: left;
	padding: 2rem 5%;
}

.header {
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100%;
}

.teaserarea{
	background: rgba(0,56,101, 0.7);
	padding: 2.5%;
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
}

.teaserhead{
	color: #fff;
	text-align: center;
	padding: 0;
	line-height: 1;
	opacity: 15;
}

.teasertext{
	color: white;
	text-align: center;
	padding: 0;
	line-height: 1;
}

.slider-wrap {
  max-width: 800px;
  width: auto;
  height: auto;
  position: relative;
  margin: 0;
  overflow: hidden;
}

.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 18s linear infinite;
  animation: image 18s linear infinite;
}

.slideshow li span img {
  width: 100%;
}

@keyframes image {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  3% {
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    opacity: 1;
  }
  43.333% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes image {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  3% {
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    opacity: 1;
  }
  43.333% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.slideshow li {
  margin:0;
  padding:0;
  list-style: none;
  -webkit-animation-delay: 18s;
  animation-delay: 18s;
}

.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;
}

ul.slideshow {
  padding-left: 0;
  margin:0;
}

ul.slideshow li::before {
  display: none;
}

.overlay {
    background: rgba(0, 0, 0, 0.65);
	height: 100%;
	padding: 2rem;
}

.overlay h1 {
	color: #fff;
	text-align: center;
	line-height: 3.8rem;
	margin-top: 4rem;
	font-size: 3rem;
	
}

.overlay p {
	color: #fff;
	text-align: center;
	margin-top: 1.8rem;
	font-size: 1.1rem;
	
}

.content {
  padding: 5%;
}

.content-grau {
  padding: 5%;
  background-color: #3F3F46;
	color: #fff;
}

.box-gelb {
  padding: 3%;
  background-color: #FFCD47;
  color: #000;
  margin-top: 5%;
}

.box-gelb h2 {
	color: #000;
}

.content::after {
  content: "";
  display: block;
  clear: both;
}


.title {
	background-color: #003865;
}

.title h1 {
    color: #fff;
    padding: 4%;
	margin: 0;
}

.title .button a {margin-top: 0;}

h1 {
	margin-bottom: 1rem;
	padding: 0;
	line-height: 3.2rem;
	font-size: 2.5rem;
	font-weight: 400;
	font-family: 'Anton', sans-serif;
	color: #003865;
	text-align: center;
	text-transform: uppercase;
}

h2{
	margin-bottom: 1rem;
	padding: 0;
	line-height: 1.6rem;
	font-size: 1.2rem;
	font-weight: 500;
	color: #003865;
	text-transform: uppercase;
	
}

.eingerueckt{
	padding: 0;
}

/* -------------- FLEXBOX -------------------- */

.flex {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin: 0 0 1rem 0;
	flex-wrap: wrap;
  flex-direction: row;
}

.flex-icons {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-justify-content: center;
  justify-content: center;
	flex-wrap: wrap;
  flex-direction: row;
	align-items: center;
margin: 1rem 30%;
}

.flex-icons div{
	margin: auto;
	width: 15%;
}


.left{
	width:48%;
	background-color: #f4f4f5;
	padding: 3%;
}

.right{
	width:48%;
	background-color: #f4f4f5;
	padding: 3%;
}

.content-grau h2 {
    color: #fff;
	font-family: 'Anton', sans-serif;
	font-size: 2rem;
	margin-bottom: 2rem;
}

#footer {
	padding: 2%;
	background-color: #89B9CB;
	color: #fff;
	text-align: center;
}

#footer::after {
  content: "";
  display: block;
  clear: both;
}

img {
	  max-width: 100%;
	width: 100%;
	height: auto;
	width: auto\9; /* ie8 */
	border:none !important;
	display: block;
}

a:link, a:visited, a:active {
  color: #fff;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: #fff;
}

ul {
	margin:0;
	padding:0;
	list-style-type: none;
	list-style:none;
}

li {
	position: relative;
	padding: 0 0 0 1rem;
	margin-bottom: 0.2rem;
}

li:last-child{
	padding-bottom:0;
}

li::before{
	content:"•";
	position: absolute;
	top: 0;
	left: 0.05rem;
}

.button_box {
  text-align: center;
}

.button_box::after {
  clear: both;
  content: "";
  display: block;
}


/*_______________________

BUTTON MIT ANIMATION
_______________________
*/

.button a {
  display: inline-block;
  background: #e52746;
  padding: 0.6rem 2.5rem;
  margin: 2rem auto;
  cursor: pointer;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  border: 0.1rem solid #e52746;
  color: #fff;
  text-transform: uppercase;
}

.button:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  transition: all 140ms ease 0s;	
  -moz-transition: all 140ms ease 0s;
  -webkit-transition: all 140ms ease 0s;
}

.button_box_grey {
  text-align: left;
}

.button_grey a {
  display: inline-block;
  background: #e4e4e7;
  padding: 0.6rem 2.5rem;
  margin: 2rem 0;
  cursor: pointer;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  border: 0.1rem solid #e4e4e7;
  color: #000;
  text-transform: uppercase;
}

.button_grey a:hover {
 background: #000;
 color: #fff;

}

.button_grey:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  transition: all 140ms ease 0s;	
  -moz-transition: all 140ms ease 0s;
  -webkit-transition: all 140ms ease 0s;
}

.clear {
  clear: both;
  font-size: 0;
  line-height: 0;
}

.refnr{}
.apply{}
.refnr {}

.apply {}
