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

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

/* --- Italic --- */
@font-face { font-family: "Open Sans Italic";
	 
  src: local('Open Sans Italic'),     
	   url('https://fonts.pwrk.dev/ofl/opensans/OpenSans-Italic[wdth,wght].woff2') format('woff2') ;
font-weight: 300, 400, 500, 600, 700, 800, 900;
  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', sans-serif;
	font-size: 100%;
	color: rgba(0, 0, 0, 0.87);
	text-decoration: none;
	font-weight: 400;
	word-spacing: normal;
	line-height: 1.5;
	background-color: #f3f4f6;
	/*	Hintergrundbilder werden in Chrome mit ausgedruckt	*/
	-webkit-print-color-adjust:exact;
}

.frame-outer {
	position: relative;
	width: 800px;
	margin: 1.3rem auto;
	background-color: #f4f4f4;
	font-size: 0.95rem; /*	minimale Schriftgröße 0.6rem	*/
}

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

/*--für Titel--*/
h1 {
	margin: 1rem 0;
	font-size: 1.65rem;
	font-weight: 800;
    line-height: 1.2;
}

h1 span {
	font-size: 1rem;
}

/*--für Untertitel (Vollzeit, Teilzeit/Standort)--*/
h2 {
	margin: 0 0 0.5rem 0;
	font-size: 1.3rem;
	font-weight: 800;
}

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

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

#logo {
	padding: 1rem 3%;
    background-color: #e60012;
}

#logo img {
    width: 22%;
}

#header {
	position: relative;
}

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

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

/*--für Stellentitel--*/
#title { 
	position: relative;
	padding: 2rem;
    display: flex;
	display: -ms-flexbox;
	display: -webkit-flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	flex-wrap: wrap;
    background-color: #fff;
    border-radius: 1.45rem;
    margin-top: -2.5rem;
}

#footer {
	position: relative;
	padding: 1.5rem 10% 2rem;
    text-align: center;
}

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

.bgBild {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.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: 50%;
}

.right {
	width: 50%;
}

/*--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: #000;
}

a:hover {
	text-decoration: none;
	color: red;
}

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

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

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

 li::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #e60012;
    position: absolute;
     left: 0.2rem;
     top: 0.5rem;
} 

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

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

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

.button a {
	display: inline-block;
	background: rgb(230, 0, 18);
	padding: 0.6rem 0.75rem 0.6rem 0.75rem;
	margin: 0 auto;
	cursor: pointer;
	-webkit-border-radius: 0.3rem;
	border-radius: 0.3rem;
	border: 0.1rem solid rgb(230, 0, 18);
	transition: all 140ms ease 0s;
	-moz-transition: all 140ms ease 0s;
	-webkit-transition: all 140ms ease 0s;
	color: #fff;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 0.03rem;
    width: 100%;
}
.button a:hover {
	background-color: rgb(230, 0, 18);
    filter: brightness(0.8);
	text-decoration: none;
	color: #fff;
	border: 0.1rem solid rgb(230, 0, 18);
}

/*--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;
}

.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;
}
  
@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;
    }
    33% {
      opacity: 1;
    }
    37% {
      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;
    }
    33% {
        opacity: 1;
    }
    37% {
        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;
}

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

#title .left {
    width: 70%;
}

#title .right {
    width: 30%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

.apply {
    width: 100%;
}

.sharejob {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    margin: auto 0;
    padding: 0.75rem 0.5rem;
    border: 1px solid #000;
    border-radius: 0.6rem;
    justify-content: space-between;
}

.sharejobtext {
    width: 110%;
}

.sociallinks{
    text-align: right;
}

.icon {
    position: relative;
    width: 18%;
    margin: 0 0.3rem;
    display: inline-block;
    transition: 0.2s all ease;
}

.icon:hover {
    transform: scale(1.2);
}

.fb {
    width: 9% !important;
}

.mail {
    width: 20% !important;
}

.subtitle, .location {
    font-size: 0.9rem;
}

.subtitle li::before {
    content:"";
    display: none;
}

.subtitle li {
	position: relative; 
	margin: auto;
    display: inline-block;
	padding: 0 0.4rem 0 0.1rem;
    border-right: 1px solid #000;
}

.innercontent {
    position: relative;
    background-color: #fff;
    border-radius: 1.45rem;
    padding: 2rem;
    margin: 1rem 0 0 0;
}

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

.companytext {
    margin: 0 0 1.5rem 0;
    width: 64.5%;
}

.bulletpoints {
    width: 64.5%;
}

.tasks {
    margin: 0 0 1.5rem 0;
}

.benefits {
    background-color: #5a5a5a;
    border-radius: 0.8rem;
    padding: 2rem 1rem;
    color: #fff;
    font-weight: 400;
    width: 34.5%;
    position: absolute;
    top: 2.2rem;
    right: -1.5rem;
}

.benefits h2 {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.benefits li::before {
  content: "";
    background-color: transparent;
}

.plus li {
    padding: 0 0 0.5rem 1.2rem;
}

.plus li::before {
    background-image: url('icon_benefits_li.png');
    height: 24px;
    width: 24px;
    background-size: 72%;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 0rem;
    left: -0.5rem;;
}

.innercontent .right {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 3rem 0 1rem auto;
}

.innercontent .apply {
    width: 30%;
    margin: 0 0 0 auto;
}

.innercontent .sharejob {
    display: flex;
    align-items: center;
    width: 62%;
    position: relative;
    margin: 0 2% 0 0;
    padding: 0.75rem 1rem;
    border: 1px solid #000;
    border-radius: 0.6rem;
    justify-content: space-between;
}

.notice::before {
    content:"*";
    padding: 0 0.5rem 0 0;
    font-size: 1rem;
    position: relative;
}

.notice {
    position: relative;
    font-size: 0.75rem;
    color: #616161;
    font-weight: 400;
}

.refnr {}
