/* Version:  März 2023 / Creator: Durchwahl 282/


/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */


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

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

 html {
	 -webkit-text-size-adjust: 100%; /* 2 */
}

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

body {
  font-family: "Inter", sans-serif;	font-size: 100%;
	color: #000;
	text-decoration: none;
	font-weight: normal;
	word-spacing: normal;
	line-height: 1.3;
	background-color: #fff;
	/*	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;
	box-shadow: -0.1rem 0.1rem 1rem rgba(0,0,0, 0.2);
	font-size: 0.8rem; /*	minimale Schriftgröße 0.6rem	*/
}

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


.intro { 
	position: absolute;
bottom: 1.5rem;
	left: 1.5rem;

}



/*--für Titel--*/
h1 {
	line-height: 1.3;
	margin: 1rem 0 0 0;
	font-size: 2rem;
	font-weight: 700;
	color: #ea6f18;
	
	
}

h1 span {
	font-size: 0.8rem;
	font-weight: 500;
}

/*--für Untertitel (Vollzeit, Teilzeit/Standort)--*/
h2 {
		line-height: 1.3;
	margin: 0 1.5rem 0 0;
	font-size: 2rem;
	font-weight: 700;
		background-color: #ea6f18;
color: #fff;
		padding: 0.7rem;
	display: inline-block;
}

/*--für Überschiften--*/
h3 {
	line-height: 1.3;
	margin: 0 1.5rem 0.3rem 0;
	font-size: 1rem;
	font-weight: 500;
	  background-color: rgba(0,0,0,0.7);
	color: #fff;
	padding: 0.7rem;
	text-transform: uppercase;
	display: inline-block;
}

/*--für kleine/unter Überschiften--*/
h4 {
	line-height: 1.3;
	margin: 0 0 0.5rem 0;
	font-size: 1rem;
	font-weight: 400;
	text-transform: uppercase;
	color: #ea6f18;
}

.headline-benefits {
	line-height: 1.3;
	margin: 0 0 1.5rem 0;
	font-size: 1rem;
	font-weight: 400;
	text-transform: uppercase;
	color: #ea6f18;
	text-align: center;
}


h5 {
	line-height: 1.3;
	margin: 0;
	font-size: 0.9rem;
	font-weight: 400;
	text-transform: uppercase;
	color: #ea6f18;
	text-align: center;
}

#logo {
	padding: 1rem 1.5rem;
	
}

#logo img {width: 30%;}

#header {
	position: relative;
}

.bg-white {
background-color: #fff;
	padding: 1.5rem;
}

.bg-tooltip {
background-color: #fff;
	padding: 1.5rem;
}

.bg-grey {
background-color: #f2f2f2;
	padding: 1.5rem;
}

.bg-orange {
background-color: #ea6f18;
	padding: 1.5rem;
	color: #fff;
}

.bg-orange h4 {
	color: #fff;
}

/*--für Stellentitel--*/


#footer {
background-color: #343434;	
	padding: 1.5rem;
	color: #fff;
	text-align: center;
}

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

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

.flex-benefits {
	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-1 {
	width: 48%;
	padding: 1.5rem 0;
}

.right-1 {
	width: 48%;
		padding: 1.5rem 0;

}

.box-1 {
	width: 25%;
}

.box-2 {
	width: 25%;
}

.box-3 {
	width: 25%;
}

.box-4 {
	width: 25%;
}


.tooltip {
    position: relative;
    display: inline-block;
 
}

.tooltip img{
   width: 40%;
	display: inline-block;
 
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #f2f2f2;
    text-align: center;
    border-radius: 6px;
    padding: 5px 10px;
    position: absolute;
    z-index: 1;
    top: 105%;
    left: 5%;
    margin-left: -26px;
    opacity: 0;
    transition: opacity 0.3s;
	display:block;
	font-size: 0.65rem;
	line-height: 1.3;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -8px;
    border-width: 8px;
    border-style: solid;
    border-color: #f2f2f2 transparent transparent transparent;
	transform: rotate(-180deg);
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.icon {
    margin: 0px 4%;
    opacity: 1;

}

.icon:hover{
    cursor: pointer;
}


.padding-bottom{
padding-bottom: 1.5rem;

}


.left-2 {
	width: 50%;
	position: relative;
}

.right-2 {
	width: 50%;
}

.arrow {
position: absolute;
right: 1.5rem; 
bottom: 1.5rem; 
width: 10%;}


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

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

/*--Listen--*/
ul {
	margin: 0;
	padding-left: 0rem;
	list-style: none;
}

li {
	margin: auto;
	padding: 0 0 0.5rem 1rem;
	background: url(bp.png) no-repeat left top;
	background-size: 8px;
}

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

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

/*--Button--*/
.button_box {
	text-align: left;
}

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

.button a {
	display: inline-block;
	background: #ea6f18;
	padding: 0.6rem 2rem 0.6rem 2rem;
	margin: 1.5rem auto 0 auto;
	cursor: pointer;
	-webkit-border-radius: 0.5rem;
	border-radius: 0.5rem;
	transition: all 140ms ease 0s;
	-moz-transition: all 140ms ease 0s;
	-webkit-transition: all 140ms ease 0s;
	color: #fff;
}
.button a:hover {
	background-color: #bb5913;
	text-decoration: none;
	color: #fff;
}

/*--Slider editierbar--*/

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

.slider-wrap img {
	display: block;
}
  
.slideshow {
    position: absolute;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: 0;
}

/*--pro Bild 6 Sekunde -> 4 Bilder = 24s, 5 Bilder = 30s, usw.--*/

.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;
    }
	/*--100 durch Anzahl der Bilder--*/
    25% {
      opacity: 1;
    }
	/*--zweiter und dritter Wert addiert--*/
    30% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
}

/*--gleiche Angaben wie bei @keyframes--*/
@-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;
    }
}
  
/*--für jedes weitere child ".slideshow li:nth-child(?) span" kopieren und die Sekunden korriegieren wie oben beim @keyframes--*/

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

/*--Angaben Bilder, Video, etc.--*/

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: 56.25%;
    height: 0;
    overflow: hidden;
}

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

.imgcenter{ 
	display: inline-block;
}

strong { 
	font-weight: 700;
}

p {
	margin:0;
}

p:empty {
	height: 1rem;
}

.hide_m {}

.hide {
  display: none;
}

.refnr {}
.apply {}
