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

@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

/**
 * 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: 'Source Sans 3', sans-serif;
	font-size: 100%;
	color: #000;
	text-decoration: none;
	font-weight: 300;
	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: 760px; /*	maximale Breite: 782px	*/
	margin: 1.3rem auto;
	background-color: #fff;
	font-size: 0.95rem; /*	minimale Schriftgröße 0.6rem	*/
}

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

/*--für Titel--*/
h1 {
        z-index:1001;
	margin: 0 0 0 2.5rem;
	font-size: 2rem;
	font-weight: 600;
	font-family: 'Titillium Web', sans-serif;
	position: relative;
	text-transform: uppercase;
	line-height: 1.2;
}

h1 span {
	font-size: 1rem;
}

h1::before {
  display: block;
  content: "";
  position: absolute;
  left: -2.5rem;
  width: 30px;
  height: 2px;
  background: #e20119;
  bottom: 0.5rem;
}

/*--für Untertitel (Vollzeit, Teilzeit/Standort)--*/
h2 {
	margin: 0 0 0 2.5rem;
	font-size: 1.3rem;
	font-weight: 600;
	font-family: 'Titillium Web', sans-serif;
	position: relative;
	text-transform: uppercase;
	line-height: 1.2;
}

h2::before {
  display: block;
  content: "";
  position: absolute;
  left: -2.5rem;
  width: 30px;
  height: 2px;
  background: #e20119;
  bottom: 0.5rem;
}

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

.bg-rauten-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2000px;
  overflow: hidden;
  max-height: 100%;
}

.bg-rauten {
  position: absolute;
  background: url(//anzeigen.jobsintown.de/job/files/1300801/raute.svg) no-repeat center/cover;
  width: 1842px;
  height: 1842px;
  top: -10rem;
  left: -20rem;
}

#logo {
	margin-bottom: 2rem;
	position: relative;
	z-index: 20;
}

#logo img {
	width: 9rem;
}

#header {
    position: relative;
    background-image: url(//anzeigen.jobsintown.de/job/files/1300801/header_bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
	background-size: cover;
	color: #fff;
	padding: 2rem 4%;
}

.content {
	position: relative;
	padding: 3rem 4%;
	background: #ccc;
	z-index: 8;
}

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

.box_mitte {
    background-image: url(//anzeigen.jobsintown.de/job/files/1300801/bg_rectangle.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: #666;
    color: #fff;
    padding: 3rem 4%;
    position:relative;
    z-index:1000;
}

/*--für Stellentitel--*/
#title { 
	margin-top: 4rem;
	margin-bottom: 2rem;
}

#footer {
	position: relative;
	padding: 3rem 4%;
	background: #333;
	color: #fff;
}

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

.left {
	width: 48%;
}

.right {
	width: 48%;
}

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

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

a:hover {
	text-decoration: none;
	color: #e20119;
}

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

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

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

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

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

/*--Button--*/
.button_box {
	margin: 1.5rem 0 1.5rem 1.25rem;
}

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

.button a::after {
  background: url(//anzeigen.jobsintown.de/job/files/1300801/rot-rot.svg) no-repeat left top/100%;
  display: block;
  content: "";
  width: 18px;
  height: 47px;
  position: absolute;
  left: -18px;
  top: -1px;
}

.button a:hover::after {
  background: url(//anzeigen.jobsintown.de/job/files/1300801/rot-rot-hover.svg) no-repeat left top/100%;
  display: block;
  content: "";
  width: 18px;
  height: 47px;
  position: absolute;
  left: -18px;
  top: -1px;
}

.button a {
	display: inline-block;
	background: #e20119;
	padding: 0.82rem 2.2rem 0.82rem 1rem;
	margin: 0 auto;
	cursor: pointer;
	color: #fff;
	position: relative;
	font-weight: 600;
}
.button a:hover {
	background-color: #ff011c;
	text-decoration: none;
	color: #fff;
}

.responsive_map {
height: 0;
overflow: hidden;
padding-bottom: 63%;
position: relative;	
	border-top: solid 1px #e20119; 
	border-bottom: solid 1px #e20119;
}

.responsive_map iframe {
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100% !important;
}

/*--Slider editierbar--*/

.slider-wrap {
    max-width: 800px;
    width: auto;
    height: auto;
    position: relative;    
    margin: 0;
    overflow: hidden;
	z-index: 9;
	border-top: solid 1px #e20119; 
	border-bottom: solid 1px #e20119;
}

.slider-wrap img {
	display: block;
}
  
.slideshow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 0;
}
.slideshow 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 18s linear infinite;
  animation: image 18s linear infinite;
}
@keyframes image {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  37% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes image {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  37% {
    opacity: 1;
  }
  45% {
    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(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;
}

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

.slider-wrap-4-bilder {
    max-width: 800px;
    width: auto;
    height: auto;
    position: relative;    
    margin: 0;
    overflow: hidden;
	z-index: 9;
	border-top: solid 1px #e20119; 
	border-bottom: solid 1px #e20119;
}

.slider-wrap-4-bilder img {
	display: block;
}
  
.slideshow-4-bilder {
  position: absolute;
  width: 100%;
  height: 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-4-bilder 24s linear infinite;
  animation: image-4-bilder 24s linear infinite;
}
@keyframes image-4-bilder {
  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;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes image-4-bilder {
  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;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

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

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

.grau {
	color: rgba(255,255,255,.35); 
}

hr {
	height: 1px; 
	background-color: rgba(255,255,255,.25); 
	border: 0; 
	margin: 1.6rem 0 0.8rem 0;
}

strong { 
	font-weight: 600;
}

p {
	margin:0;
}

p:empty {
	height: 1rem;
}

.hide_m {}

.hide {
  display: none;
}

.refnr {}

.apply {}
