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

@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, 900;
	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, 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: #3e3c41;
	text-decoration: none;
	font-weight: 400;
	word-spacing: normal;
	line-height: 1.4;
	background-color: #E6E6E6;
	/*	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.8rem; /*	minimale Schriftgröße 0.6rem	*/
}

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

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

h1 span {
	font-size: 1rem;
}

/*--für Untertitel (Vollzeit, Teilzeit/Standort)--*/
h2 {
	margin: 0 0 0.55rem 0;
	font-size: 1rem;
	font-weight: 700;
	color: #1a171c;
}

/*--für Überschiften--*/
h3 {
	margin: 2.5rem 0 0 0;
	font-size: 1rem;
	line-height: 1.2;
	font-weight: 700;
	background-color: #373735;
	color: #fff;
	padding: 1rem;
}

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

h4 span {
	background-color: #FFD500;
	color: #fff;
	padding: 0.2rem 0.5rem;
	display: inline-block;
}

#logo {
	padding: 1.5rem 4%;
}

#logo img {
	width: 14rem;
}

#header {
	position: relative;
}

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

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

.box_mitte {
	background-color: #F4F4F4;
	padding: 1rem;
}

.box_unten {
	padding: 1rem;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	background-color: #373735;
	color: #fff;
	margin-left: 4%;
}

.map {
    padding: 0px !important;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: url(desaturate.svg#greyscale);
    filter: gray;
    -webkit-filter: grayscale(1);
}
.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/*--für Stellentitel--*/
#title { 

}

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

#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: 71%;
}

.right {
	width: 25%;
}

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

a:hover {
	text-decoration: none;
	color: #fff;
	font-weight: 700;
}

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

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

li:first-child {
	padding: 0 0 0 1rem;
}

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

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

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

/*--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: block;
	background: #FFD500;
	padding: 1rem 4%;
	margin: 0 auto;
	cursor: pointer;
	transition: all 140ms ease 0s;
	-moz-transition: all 140ms ease 0s;
	-webkit-transition: all 140ms ease 0s;
	color: #fff;
	text-transform: uppercase;
	font-weight: 800;
	letter-spacing: 0.1em;
}
.button a:hover {
	background-color: #FFD500;
	text-decoration: none;
	color: #fff;
	letter-spacing: 0.3em;
}

/*--Slider editierbar--*/

.slider-wrap img {
	display: block;
}
  
.slider-wrap{
	width: auto;
	height: auto;
	position: relative;
	overflow: hidden;
}

.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;
      transform: translateX(-100%);
    }
	0.01%{
		opacity: 1;
	}  

    2% {
      transform: translateX(0);
    }

    33.333% {
      transform: translateX(0);
    }

    35.333% {    
      transform: translateX(100%);
		opacity: 1;
    }
	36%{
		opacity: 0;
	}
}
@-webkit-keyframes image {
0% {
 opacity: 0;
      transform: translateX(-100%);
    }
	0.01%{
		opacity: 1;
	}  

    2% {
      transform: translateX(0);
    }

    33.333% {
      transform: translateX(0);
    }

    35.333% {    
      transform: translateX(100%);
		opacity: 1;
    }
	36%{
		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;
}

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

.gelb {
	color: #FFD500;
}

hr {
	height: 1px; 
	background-color: #ccc; 
	border: 0; 
	margin: 0.8rem 0;
}

strong { 
	font-weight: 700;
}

p {
	margin:0;
}

p:empty {
	height: 1rem;
}

.hide_m {}

.hide {
  display: none;
}

.refnr {}

.apply {}
