/* Version:  März 2023 / Creator: 227 */

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


/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
 html {
	 -webkit-text-size-adjust: 100%; /* 2 */
}

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

body {
	font-family: "Open Sans", serif;
	font-size: 100%;
	color: #414549;
	text-decoration: none;
	font-weight: normal;
	word-spacing: normal;
	line-height: 1.5;
	background-color: #e0e0e0;
	/*	Hintergrundbilder werden in Chrome mit ausgedruckt	*/
	-webkit-print-color-adjust:exact;
}

.frame-outer {
	position: relative;
	width: 780px; /*	maximale Breite: 782px	*/
	margin: 1.3rem auto;
	background-color: #fff;
	font-size: 0.9rem; /*	minimale Schriftgröße 0.6rem	*/
}

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

/*--für Titel--*/
h1 {
	margin: 0;
	font-size: 1.4rem;
	font-weight: 600;
	color: #00157a;
	background: rgba(255, 255, 255, 0.65);
}

h1 span {
	font-size: 1.0rem;
	font-weight: 300;
	color: #00157a;
}

/*--für Untertitel (Vollzeit, Teilzeit/Standort)--*/
h2 {
	margin: 0;
	font-size: 1.2rem;
	font-weight: 600;
	color: #00157a;
	margin-bottom: 0.5rem;
}

.line {
	border-bottom: solid 0.18rem #00157a;
	width: 5rem;
	margin: -0.6rem 0% 2rem 0%;
}

.whiteline {
	border-bottom: solid 0.18rem #ffffff;
	width: 5rem;
	margin: -0.6rem 0% 2rem 0%;
}


/*--für Überschiften--*/
h3 {
	margin: 0;
	font-size: 1rem;
	font-weight: 500;
	color: #000000;
}

/*--für kleine/unter Überschiften--*/
h4 {
	margin: 0;
	font-size: 0.9rem;
	font-weight: 400;
}

#logo {
	position: absolute;
    width: 30%;
    right: 4%;
    top: 0rem;
    text-align: right; /* Logo nach rechts ausrichten */
	background-color: #fff;
	padding: 1rem;
}

#logo img {

}

.header {
	position: relative;
}

.content {
	position: relative;
	padding: 1rem 4%;
}

.content a:hover a:visited a:active {
	text-decoration: underline;
	color: #00157a!important;
}

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

.greyborder {
	background-color: #e0e0e0;
	height: 2rem;
}

/*--für Stellentitel--*/
#title { 
	padding: 1.0rem 0;
}



#footer {
	position: relative;
	padding: 1rem 4%;
}

#footer::after {
	content: "";
	display: block;
	clear: both;
}
/*--Flex--*/

.bgbild {
  background-image: url("header_neu.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 20rem;
}

.flex {
	display: flex;
	display: -ms-flexbox;
	display: -webkit-flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	/*align-items: flex-start;*/
	flex-direction: row;
	flex-wrap: wrap;
}

.left {
	width: 49%;
	padding: 1.5rem 1% 1.5rem 4%;
}

.right {
	width: 49%;
	padding: 1.5rem 4% 1.5rem 1%;
}



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

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

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

/*--Links - bitte für unterschiedliche Hintergründe farblich anpassen!--*/
a:link, a:visited, a:active  {
    text-decoration: none;
	color: white;
}

a:hover {
	text-decoration: underline;
}


.weiss a:link, .weiss a:visited, .weiss a:active  {
    text-decoration: none;
	color: #fff;
}

.weiss a:hover {
color: #fff;
	text-decoration: underline;
}


/*--Listen--*/
ul {
	margin: 0;
	list-style-type: none;
}

li {
	position: relative; 
	margin: auto;
	padding: 0 0 0 1rem;
}

li:last-child {
	padding-bottom: 0;
}

 li::before {
	 position: absolute;
	 top: -0.4rem;
	 left: 0;
	 content: "•";
	 font-size: 1.4rem;	
} 

/*--Eingrückte Listenpunkte--*/
li ul{ 
	margin: 0 0 0 0;
	padding: 0 0 0 1rem;
}

/*--Button--*/
.button_box {
    display: flex;
    justify-content: center;
    gap: 1rem; /* Abstand zwischen den Buttons */
}

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

.button_pfeil-auftauchen {
display: inline-block;
border-radius: 0.3rem;
background-color: #fff;
border: none;
color: #00157a !important;
text-align: center;
font-size: 1rem;
padding: 1.25rem;
width: auto;
transition: all 0.5s;
cursor: pointer;
margin: 2rem 0;
}

.button_pfeil-auftauchen a {
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
color: #00157a;
}

.button_pfeil-auftauchen a:after {
content: '➔';
position: absolute;
opacity: 0;
top: 0;
right: -1.25rem;
transition: 0.5s;
}

.button_pfeil-auftauchen:hover a {
padding-right: 1.5625rem;
color: #00157a;
}

.button_pfeil-auftauchen:hover a:after {
opacity: 1;
right: 0;
}

/* 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 {
	max-width:780px;
  	width: auto;
  	height: auto;
	position:relative;
	overflow: hidden;
}


.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 */


.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;
    }
    25% {
      opacity: 1;
    }
    30% {
      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;
    }
    25% {
        opacity: 1;
    }
    30% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
  
.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;
    padding-left: 0;
}

.slideshow li::before {
	display: none;
}
















iframe {
	display: block;
    width: 100%;
}

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

.video-wrapper {
    position: relative;
    padding-bottom: 40%;
    height: 0;
    overflow: hidden;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
	width: auto;
	border: 0;
}

.imgcenter{ 
	display: inline-block;
}

.bluecontent {
	position: relative;
	background-color: #00157a;
	color: #fff!important;
	padding: 1rem 4% 1rem 4%;
	
}

.bluecontent h2 {
	color: #ffffff;
}

.bluecontent a:link, a:visited, a:active  {
    text-decoration: none;
	color: #ffffff;
}

.bluecontent a:hover {
	text-decoration: underline;
	color: #ffffff;
}

.tealcontent {
	position: relative;
	background-color: #00157a;
	color: #fff!important;
	padding: 1rem 4% 1rem 4%;
	
}

.tealcontent {
	position: relative;
	background-color: #004d88;
	color: #fff!important;
	padding: 1rem 4% 1rem 4%;
	
}

.tealcontent h2 {
	color: #ffffff;
}

.tealcontent a:link, a:visited, a:active  {
    text-decoration: none;
	color: #00157a;
}

.tealcontent a:hover {
	text-decoration: underline;
	color: #00157a;
}





.bewerbung {
	position: relative;
	background-color: #004d88;
	color: #fff!important;
	padding: 1rem 4% 1rem 4%;
	
}

.bewerbung h2 {
	color: #ffffff;
}




strong { 
	font-weight: 600;
}

p {
	margin:0;
}

p:empty {
	height: 1rem;
}

.hide_m {}

.hide {
  display: none;
}

.refnr {}

.apply {}
