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

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&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: "Roboto Condensed", 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;
	border: 0.02rem solid #e51c21;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	font-size: 0.90rem; /*	minimale Schriftgröße 0.6rem	*/
}

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

/*--für Titel--*/
h1 {
	margin: 0;
	font-size: 1,5rem;
	font-weight: 700;
	letter-spacing: 1px;
	
}

h1 span {
	font-size: 1rem;
}

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

/*--für Überschiften--*/
h3 {
	font-size: 1.2rem;
	font-weight: 500;
	color: #fff;
	background: #e51c21;
	padding: 0.5rem;
	margin-bottom: 0;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

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

#logo {
	padding: 1rem 4%;
}

#logo img {}

#header {
	position: relative;
}

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

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

/*--für Stellentitel--*/
#title { 
	background: #e51c21;
    color: #fff;
    padding: 1rem;
    text-align: center;
    box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.1);
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

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

#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;
	overflow: hidden; 
}

.image, .text {
	padding: 0rem 4% 1rem;
}

.text h3 {
    background: #e51c21;
    color: #fff;
    padding: 0.5rem 1rem;
    letter-spacing: 1px;
    border-radius: 4px 4px 0 0;
}

.image {
	background-size: cover;
	background-position: center;
	transition: transform 0.5s ease; /* Übergangseffekt beim Hover */
}

.image:hover {
	transform: scale(1.05); /* Vergrößerung beim Hover */
}

.left, .right {
    width: 50%;
    padding: 1rem 4%;
    background-position: center;
    background-size: cover;
    position: relative; /* Wichtig für das Pseudo-Element */
    overflow: hidden; /* Verhindert, dass das Pseudo-Element über den Bereich hinausgeht */
	
}

.left {
	margin: 0;
	border-right: solid #fff 0.1rem;
	border-top: solid #fff 0.1rem;
}

.right, .bottom {
	margin: 0;
	border-top: solid #fff 0.1rem;
}

hr {
	height: 1rem;
	background-color: #000;
}

.bottom {
	padding: 1rem 4%;
	background-color: #fff;	
}

.bottom h3 {
	color: #000;
	padding: 0rem;
	background-color: #fff;
	margin-bottom: 0.5rem;
	text-shadow: none;
}

.left::before, .right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(74, 74, 74, 0); /* Transparenz standardmäßig 0 */
    transition: background-color 0.3s ease; /* Sanfter Übergang */
    z-index: 1; /* Über dem Hintergrundbild */
}

.left:hover::before, .right:hover::before {
    background-color: rgba(52,73,94,0.75);; /* Grau mit 50 % Deckkraft */
}

.left:hover, .right:hover {
    color: white; /* Schriftfarbe bei Hover weiß */
}

.left h3, .right h3,
.left ul, .right ul {
    position: relative; /* Damit Text über dem Pseudo-Element bleibt */
    z-index: 2; /* Überlagert das Pseudo-Element */
}

/*--Float--*/
.box-left {
  float: left;
  width: 48%;
}

.box-right {
	float: right;
	width: 48%;
}

.clear {
	clear: both;
	font-size: 0;
	line-height: 0;
}

.zweispaltig{
	-webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
	-webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
}


.zentriert{
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.zentriertLinksRechts{
	 left: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.word{word-spacing:-0.05rem;}
.letter{letter-spacing:-0.01rem;}
.spacing{
	word-spacing:-0.05rem;
	letter-spacing:-0.01rem;
}


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

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

/*--Listen--*/
ul {
	margin: 0;
	list-style-type: none;
	border: solid 0.1rem #e51c21;
	padding: 0.5rem;
}

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

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

 li::before {
	 position: absolute;
	 top: -0.4rem;
	 left: 0;
	 content: "•";
	 font-size: 1.5rem;	
	 color: #006c7a;
} 

/*--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: #e51c21;
    color: #fff;
    padding: 0.8rem 1.5rem;
	margin: 1.5rem 0;
    border-radius: 4px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
		border: 0.1rem solid #e51c21;
}
.button a:hover {
	background-color: #fff;
	text-decoration: none;
	color: #e51c21;
	border: 0.1rem solid #e51c21;
}

/*BEGINN Slider auflösend*/

.slider-wrap_1 {
	max-width:780px;
  	width: auto;
  	height: auto;
	position:relative;
	border-top:0px solid #3c3c3b;
}

.slideshow_1 {
  position: absolute;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 0;
}
.slideshow_1 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 {
  5% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  15% {
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes image {
  5% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  15% {
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.slideshow_1 li {
	margin:0;
	padding:0;
  list-style: none;
  -webkit-animation-delay: 24s;
  animation-delay: 24s;
}
.slideshow_1 li:nth-child(1) span {}
.slideshow_1 li:nth-child(2) span {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}
.slideshow_1 li:nth-child(3) span {
  -webkit-animation-delay: 12s;
  animation-delay: 12s;
}
.slideshow_1 li:nth-child(4) span {
  -webkit-animation-delay: 18s;
  animation-delay: 18s;
}
ul.slideshow_1 {
	margin:0;
}

/*ENDE Slider auflösend*/

/*BEGINN Slider schiebend*/

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

/* BEGINN Slider mit 3 Bildern mit transform Animation */

.slideshow-3-bilder {
	position: absolute;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 0;

}
.slideshow-3-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 36s linear infinite;
  animation: image-3-bilder 36s linear infinite;
}

@keyframes image-3-bilder {
  0% {
    opacity: 1;
    transform: translateX(100%);
  }
  
  1% {
    transform: translateX(0);
  }
  
  33.33333% {
    transform: translateX(0);
	
  }
  
  34.33333% {
    transform: translateX(-100%);

  }
	100%{
		transform: translateX(-100%);
	 opacity: 1;
	}

}

@-webkit-keyframes image-3-bilder {
0% {
    opacity: 1;
    transform: translateX(100%);
  }
  
  1% {
    transform: translateX(0);
  }
  
  33.33333% {
    transform: translateX(0);
	
  }
  
  34.33333% {
    transform: translateX(-100%);

  }
	100%{
		transform: translateX(-100%);
	 opacity: 1;
	}

}

.slideshow-3-bilder li {
    margin:0;
    padding:0;
  list-style: none;
}

.slideshow-3-bilder li:nth-child(1) span {
}

.slideshow-3-bilder li:nth-child(2) span {
  -webkit-animation-delay: 12s;
  animation-delay: 12s;
}

.slideshow-3-bilder li:nth-child(3) span {
  -webkit-animation-delay: 24s;
  animation-delay: 24s;
}

ul.slideshow-3-bilder {
    margin:0;
}


.slider-wrap li::before{
                display:none;
}

.slider-wrap ul {
                margin:0;
                padding-left:0px;
                list-style-type: none;
                list-style:none;
			    border-bottom:none;
	            border-color: #fff;
                border-width: 0px;
				padding-bottom:5px;
}

/* ENDE Slider mit 3 Bildern mit transform Animation */


/* BEGINN Slider mit 4 Bildern mit transform Animation */

.slideshow-4-bilder {
  position: absolute;
  width: 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 24s linear infinite;
  animation: image-4-bilder 24s linear infinite;
}

@keyframes image-4-bilder {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  
  1% {
opacity: 1;
    transform: translateX(0);
  }
  
  25% {
    transform: translateX(0);
	
  }
  
  26% {
    transform: translateX(-100%);
opacity: 1;
  }
	100%{
		transform: translateX(-100%);
	opacity: 0;
	}
}

@-webkit-keyframes image-4-bilder {
  0% {
    opacity: 1;
    transform: translateX(100%);
  }
  
  1% {
    transform: translateX(0);
  }
  
  24% {
    transform: translateX(0);
	
  }
  
  25% {
    transform: translateX(-100%);

  }
	100%{
		transform: translateX(-100%);
	opacity: 1;
	}
}

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

.slider-wrap li::before{
                display:none;
}

.slider-wrap ul {
                margin:0;
                padding-left:0px;
                list-style-type: none;
                list-style:none;
		border-bottom:none;
	        border-color: #fff;
                border-width: 0px;
		padding-bottom:5px;
padding: 0;
}

/* ENDE Slider mit 4 Bildern mit transform Animation */


/* SLIDER schiebend ENDE */


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