/* Version:  März 2023 / Creator: 167 */
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;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: 'Fira Sans', sans-serif;
  font-size: 100%;
  color: #333;
  text-decoration: none;
  font-weight: 300;
  word-spacing: normal;
  line-height: 1.5;
  background-color: #f2f2f2;
  /*	Hintergrundbilder werden in Chrome mit ausgedruckt	*/
  -webkit-print-color-adjust: exact;
}
.frame-outer {
  position: relative;
  width: 780px; /*	maximale Breite: 782px	*/
  margin: 1.4rem auto;
  background-color: #fff;
  font-size: 0.85rem; /*	minimale Schriftgröße 0.6rem	*/
}
.frame-outer::after {
  content: "";
  display: block;
  clear: both;
}
/*--für Titel--*/
h1 {
  margin: 2rem 0;
  font-size: 2rem;
  font-weight: 700;
  color: #cc0000;
  text-align: center;
  line-height: 2.4rem;
}
h1 span {
  font-size: 1rem;
}
/*--für Untertitel (Vollzeit, Teilzeit/Standort)--*/
h2 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 500;
}
#footer h2 {
  color: #fff;
}
/*--für Überschiften--*/
h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}
/*--für kleine/unter Überschiften--*/
h4 {
  margin: 0;
  font-size: 0.9rem;
}
#logo {
  padding: 1.5rem 4%;
  position: relative;
}
#logo img {
  width: 30%;
}
#header {
  position: relative;
}
.content {
  position: relative;
  padding: 1.5rem 4%;
}
.content::after {
  content: "";
  display: block;
  clear: both;
}
.boxGray {
  background-color: #ebebeb;
  position: relative;
  padding: 1.5rem 4%;
}
.boxShadow {
  position: relative;
  padding: 1.5rem 4%;
  -moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}

.siegel {margin-top: 1rem;}
.siegel img {display: inline-block; height: 4rem; padding-right: 0.5rem;}

/*--für Stellentitel--*/
#title {
  position: relative;
  padding: 1.5rem 4%;
}
#footer {
  position: relative;
  padding: 1.5rem 4%;
  background-color: #cc0000;
  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 {
  margin: 0;
  padding: 2.5%;
  width: 49%;
  background-color: #fff;
  -moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}
#footer .left {
  margin: 0;
  padding: 0;
  width: 33%;
  background: none;
  box-shadow: none;
}
#footer .right {
  margin: 0;
  padding: 0;
  width: 66%;
  border: 0.5rem solid #fff;
  background: none;
  -moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}
.right {
  margin: 0;
  padding: 2.5%;
  width: 49%;
  background-color: #fff;
  -moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}
/*--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: #cc0000;
  transition: all .8s;
}
a:hover {
  color: #666;
}
/*--Listen--*/
ul {
  margin: 0;
  list-style-type: none;
}
li {
  position: relative;
  margin: 0.25rem 0;
  padding: 0 0 0 1rem;
}
li:last-child {
  padding-bottom: 0;
}
li::before {
  position: absolute;
  top: -7px;
  left: 0;
  content: "￭";
  font-size: 1.4rem;
  color: #cc0000;
}
/*--Eingrückte Listenpunkte--*/
li ul {
  margin: 0 0 0 0;
  padding: 0 0 0 1rem;
}

li ul li {
  position: relative;
}

li ul li::before {
  position: absolute;
  top: -7px;
  left: 0;
  content: "-";
  font-size: 1.4rem;
}
/*--Button--*/
.button_box {
  text-align: center;
}
.button_box::after {
  clear: both;
  content: "";
  display: block;
}
.button a {
  display: inline-block;
  background-color: green;
  padding: 0.6rem 5%;
  margin: 0 auto;
  cursor: pointer;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: #fff;
  text-align: center;
  -moz-border-radius: 0.25rem;
  -webkit-border-radius: 0.25rem;
  border-radius: 0.25rem;
}
.button a:hover {
  background-color: hotpink;
  text-decoration: none;
}
/*--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: 0;
  left: 0;
  z-index: 0;
}
.slideshow li span {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  color: transparent;
  opacity: 0;
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-animation: image 24s linear infinite; /* 1 Frame = 6 Sekunden */
  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% /* 1/4 von 100 */ {
    opacity: 1;
  }
  30% /* 2. und 3. Wert addiert */ {
    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;
}
/*--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 {
  max-width: 100%;
  height: auto;
  width: auto;
  border: 0;
  display: block;
}
.imgcenter {
  display: inline-block;
}
strong {
  font-weight: 700;
}
hr {
  border: 0;
  background-color: #ddd;
  height: 1px;
}
p {
  margin: 0;
}
p:empty {
  height: 1rem;
}
.hide_m {
  display: block;
}
.hide {
  display: none;
}
.refnr {}

.apply {}
