<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 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', 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: #f1f1f1;
  /*	Hintergrundbilder werden in Chrome mit ausgedruckt	*/
  -webkit-print-color-adjust:exact;
/* 	background-color:#e5eff5;*/
}

p {
  margin: 0;
}

small{
	font-size: 0.5em;
}

.abstand-bottom{
  margin-bottom: 0.4rem;
}

h1 {
  line-height: 1.5;
  font-size: 1.5rem;
  font-weight: 550;
  padding: 0;
  margin: 0;
color: #01a1b5;	
	text-align: center;
	
}

h2 {
  margin: 0;
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 600;
color: #00a1b6;	
}

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

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

.pink{
	color: #ff009a;
}

.white{
	color: #fff;
}

.greater{
	font-size: 1.3rem;
	
}

.logo {
	position: relative;
padding: 1rem;
 
}

.logo img{
	 width: 50%;
}

.header {
  position: relative;
	z-index: 1;
}

.header-text{
		
		padding: 3%;
	background-color:rgba(0,161,182,1);
	z-index: 7;
	width: 100%;
	
	

	
}

.farbe{
color: #33AA33;
}

.headline{
font-size: 1.1em;
font-weight: bold;
margin: 0.4rem 0;
}

.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: 1rem 5%;
}

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

.content2 {
  padding: 1rem 2%;
}

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

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

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

.footer {
  padding: 0rem 0%;
}

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

.space{
	letter-spacing: -0.01rem;
}

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

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

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

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

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


.intro{
	background-color: #eaebee;
	color: #000;
	padding: 1rem 5%;
	
}


.blau{
	color: #164d8e;
}

p.a {
  white-space: nowrap;
}

ul {
  margin: 0 auto 0rem 0.5rem;
  padding-left: 0.5rem;
   list-style-type: none; 
}

li {

   position: relative; 
  margin: auto;
  padding: 0;
			
}




li::before {
  position: absolute;
  top: 0;
  left: -0.8rem;
  content: "â€¢";
  font-size: 0.95rem;
  color: #00a1b6;
} 



strong{
	font-weight: 600;
}

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

.hide {
  display: none;
}

.cc{
column-count: 2;
column-gap: 1.5rem;
}

.refnr {}

.justifier {
  text-align: justify;
}

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

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

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

/* -------------- 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. =&gt; 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;") -------------------- */

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

.flex2 {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: space-between;
}


.left {
  width: 50%;
  padding: 1.2rem 2%;	

}

.right {
  width: 50%;
 background-image: url(morgen-gestalten.jpg);
	background-size: cover;
}



.left2 {
 width: 50%;
 background-image: url(heande.jpg);
	background-size: cover;
}

.right2 {
	
	 width: 50%;
  padding: 1.2rem 2%;
	

  
}




.left3 {
  width: 50%;
  padding: 1.2rem 2%;	

}

.right3 {
  width: 50%;
  padding: 1.2rem 2%;	

}

.left4 {
 width: 50%;
 background-image: url(mann_frau_lachend.jpg);
	background-size: cover;
}


.bewerbung1 {
  width: 70%;
  padding: 1.2rem 2%;
	background-color: #fff;
	color: #000;
	

}




.bewerbung2 {
  width: 30%;
  padding: 1.2rem 2%;
	background-color: #fff;
	color: #000;
	

}



.footer {
  width: 100%;
  padding: 1.2rem 2%;
	background-color: #1f2652;
	color: #fff;
	text-align: center;

}




.button_box {
  text-align: center;
	margin-bottom: 0.5rem;
margin-top: 0.5rem;
}

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


.full-size {
  width: 100%;
  padding: 0.2rem 0%;
	

}


.gallery{
	box-sizing: border-box;
margin: 0;
padding: 0;
	background-color:rgba(0,161,182,1);
}

.gallery-image {
	width: 31%;
	height: 100%;
	margin: 1%;
	transition: 500ms all ease;
	
}

.gallery-image:hover {
	transform: scale(1.08);
	
}





hr{
	width: 100%;
}

/*_______________________

BUTTON MIT ANIMATION
_______________________
*/

.button a {
  display: inline-block;
  padding: 0.6rem 1.5rem 0.6rem 1.5rem;
  margin: 1rem auto;
  cursor: pointer;
	font-size: 1.1em;
 background-color: #00a1b6;
  transition: all 140ms ease 0s;
  -moz-transition: all 140ms ease 0s;
  -webkit-transition: all 140ms ease 0s;
  color: #fff;

}
.button a:hover {
  background-position: 15px center;
  background-color: #00a1b6;
text-decoration: underline;
}

/*Slider*/

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

/* BEGINN Slider mit 3 Bildern mit transform Animation */

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

}
.slideshow-3-bilder 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 36s linear infinite;
  animation: image-3-bilder 36s linear infinite;
}

@keyframes image-3-bilder {
  0% {
    opacity: 1;
    transform: translateX(100%);
  }
  
  1% {
    transform: translateX(0);
  }
  
  33.33333% {
    transform: translateX(0);
	
  }
  
  34.33333% {
    transform: translateX(-100%);

  }
	100%{
		transform: translateX(-100%);
	 opacity: 1;
	}

}

@-webkit-keyframes image-3-bilder {
0% {
    opacity: 1;
    transform: translateX(100%);
  }
  
  1% {
    transform: translateX(0);
  }
  
  33.33333% {
    transform: translateX(0);
	
  }
  
  34.33333% {
    transform: translateX(-100%);

  }
	100%{
		transform: translateX(-100%);
	 opacity: 1;
	}

}

.slideshow-3-bilder li {
    margin:0;
    padding:0;
  list-style: none;
}

.slideshow-3-bilder li:nth-child(1) span {
}

.slideshow-3-bilder li:nth-child(2) span {
  -webkit-animation-delay: 12s;
  animation-delay: 12s;
}

.slideshow-3-bilder li:nth-child(3) span {
  -webkit-animation-delay: 24s;
  animation-delay: 24s;
}

ul.slideshow-3-bilder {
    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;
}

/* ENDE Slider mit 3 Bildern mit transform Animation */


/* BEGINN Slider mit 4 Bildern mit transform Animation */

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

.slideshow-4-bilder 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-4-bilder 24s linear infinite;
}

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

@-webkit-keyframes image-4-bilder {
  0% {
    opacity: 1;
    transform: translateX(100%);
  }
  
  1% {
    transform: translateX(0);
  }
  
  24% {
    transform: translateX(0);
	
  }
  
  25% {
    transform: translateX(-100%);

  }
	100%{
		transform: translateX(-100%);
	opacity: 1;
	}
}

.slideshow-4-bilder li {
    margin:0;
    padding:0;
  list-style: none;
}

.slideshow-4-bilder li:nth-child(1) span {
}

.slideshow-4-bilder li:nth-child(2) span {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}

.slideshow-4-bilder li:nth-child(3) span {
  -webkit-animation-delay: 12s;
  animation-delay: 12s;
}

.slideshow-4-bilder li:nth-child(4) span {
  -webkit-animation-delay: 18s;
  animation-delay: 18s;
}

ul.slideshow-4-bilder {
    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;
}

/* ENDE Slider mit 4 Bildern mit transform Animation */


/* SLIDER ENDE */


.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}




/*
_______________________

MARKIERTER TEXT
_______________________

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

*/
.apply {}
</pre></body></html>