@charset "UTF-8";
/* CSS Document */

/* Mittelblau: rgb(59,97,167) */

/* dm-sans-regular - latin */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/dm-sans-v11-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/dm-sans-v11-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/dm-sans-v11-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/dm-sans-v11-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/dm-sans-v11-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/dm-sans-v11-latin-regular.svg#DMSans') format('svg'); /* Legacy iOS */
}
/* dm-sans-700 - latin */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/dm-sans-v11-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/dm-sans-v11-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/dm-sans-v11-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/dm-sans-v11-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/dm-sans-v11-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/dm-sans-v11-latin-700.svg#DMSans') format('svg'); /* Legacy iOS */
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	scroll-behavior: smooth;
}

html, body {
    width: 100%;
	height: 100%;
    color: #101010;
    font: 400 16px/20px 'DM Sans', sans-serif;
}

h1, .h1style {
    font: 700 29px/37px 'DM Sans', sans-serif;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 10px;
}
h2, .h2style {
    font: 400 23px/33px 'DM Sans', sans-serif;
    margin: 0 0 20px;
    color: #000;
}

h3, .h3style {
	font: 400 30px/33px 'DM Sans', sans-serif;
    margin: 0 0 20px;
    color: #000;
	text-transform: uppercase;
}

h4, .h4style {
	font: 700 18px/33px 'DM Sans', sans-serif;
	text-transform: uppercase;
}

p {
    margin: 0 0 20px 0;
    font-family: 'DM Sans', sans-serif;
	line-height:1.5;
	font-size:18px;
	font-weight:300;
}

a {
    color: #101010;
    text-decoration: none;
    font-family:'DM Sans', sans-serif;
	font-weight:400;
	font-size:18px;
	line-height:1.5;
	text-transform: uppercase;
	transition: 400ms;
}

a:hover, a.selected {
	color: rgb(59,97,167);
}

strong {
    font-weight: 900;
}

hr {
    width: 70%;
    border-top: 1px dashed #0096d7;
    border-bottom: none;
    border-left: none;
    border-right: none;
    margin: 25px auto;
}

hr.red {
	border-top: 1px solid rgb(59,97,167);
}

hr.grau {
	border-top: 1px solid #333;
	margin: 0 0 25px;
	width: 45%;
}

input:not([type="radio"]):not([type="checkbox"]), textarea, select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}

input[type="checkbox"], input[type="radio"] {
    display: none;
}

.area{
	padding-top:120px;
	padding-bottom:120px;
}

.centered {
    width: 100%;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack:  space-between;
    -ms-flex-pack:  space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.btn {
    background: rgb(59,97,167);
    padding: 10px 25px;
    font: 700 16px/24px 'Roboto', sans-serif;;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgb(59,97,167);
    -webkit-transition: ease 300ms;
    transition: ease 400ms;
    display: inline-block;
}

.btn:hover {
    background: #fff;
    color: rgb(59,97,167);
}

.btn.blau {
	background: #0076db;
	border: 1px solid #0076db;
}

.btn.blau:hover {
	background: #fff;
	color: #0076db;
}

.btn.gruen {
	background: #8bd353;
	border: 1px solid #8bd353;
	color: #333;
}

.btn.gruen:hover {
	background: #fff;
	color: #8bd353;
}

.btn.gelb {
	background: #fffc00;
	border: 1px solid #fffc00;
	color: #333;
}

.btn.gelb:hover {
	background: #fff;
}

.block {
	width: 100%;
	height: auto;
	display: block;
	line-height: 0;
}

.p25 {padding: 25px;}
.p50 {padding: 50px;}
.p50-0 {padding: 50px 0;}
.p50-0-0 {padding: 50px 0 0;}
.p100-0 {padding: 100px 0;}
.p150-0 {padding: 150px 0;padding-inline:1em;}

.zi-1 {z-index: 1;}
.zi-10 {z-index: 10;}
.zi-20 {z-index: 20;}
.zi-100 {z-index: 100;}

.hidden {
	display: none;
}

/*****************
  TEMPLATE START
****************/

.head {
	width: 100%;
	height: auto;
	position: fixed;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	overflow: hidden;
}

.head .btn {
	margin-top: -200px;
	transition: 300ms;
}

.head.scrolled .btn {
	margin-top: unset;
	transition: 300ms;
}

header {
	width: 100%;
	height: auto;
	position: relative;
	display: block;
}

header > img {
	max-width: 1920px;
	margin: 0 auto;
}

header .wrapper {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

header .textwrapper {
	width: 50%;
	text-align: center;
}

header .textwrapper .textbox {
	width: 90%;
	margin: 0 auto;
	position: relative;
	background: rgba(59,97,167, .85);
	text-align: left;
	padding: 50px;
}

header .textwrapper .textbox ul,
.mitbringen .textbox ul {
	list-style: none;
}

header .textwrapper .textbox ul li,
.mitbringen .textbox ul li {
	padding: 10px 0;
	font-size: 20px;
	display: flex;
    color: #fff;
}

header .textwrapper .textbox ul li span:first-of-type{
	color: #fff;
	font-size: 20px;
}

header .textwrapper .textbox ul li span:last-of-type,
.mitbringen .textbox ul li span:last-of-type {
	padding-left: 10px;
}

header .textwrapper .textbox > .btn {
	position: absolute;
	right: -50px;
	bottom: -25px;
}


.mitbringen .textbox ul li span {
    color: #000;
}

.fakten {
	width: 100%;
	height: auto;
	position: relative;
	display: block;
	background: #f2f2f2;
}

.fakten p {
	margin: 0;
	width: 28%;
}

.fakten p span:first-of-type {
	width: 20%;
	margin-right: 20px;
	font-size: 50px;
	color: #ccc;
}

.fakten p span:last-of-type {
	width: 80%;
}

.fakten p:last-of-type span:first-of-type {
	width: 15%;
}

.fakten p:last-of-type span:last-of-type {
	width: 85%;
}

.fakten p span strong {
	display: block;
	color: rgb(59,97,167);
}

.stellen li {
	list-style-type: none;
	margin-bottom: 5px;
}

.stellen li span {
	margin-right: .5em;
}

.stellenAblauf {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 3em;
	margin-bottom: 3em;
}

.stellenAblauf div {
	position: relative;
}

.stellenAblauf h2 {
	font-size: 2.5em;
	margin: 1em 0 .5em;
}

.stellenAblauf img {
	width: 100px;
	height: auto;
	position: absolute;
	inset: 0 auto 0 -8.5em;
	margin: auto;
}

.stellenInfo {
	display: flex;
	justify-content: space-between;
}

.stellenInfo img {
	width: 45%;
	height: auto;
	object-fit: cover;
}

.stellenInfo div {
	width: 45%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: white!important;
}

.stellenInfo h3 {
	color: white!important;
}

.ablauf {
	width: 100%;
	position: relative;
	display: block;
}

.ablauf .flex {
	flex-wrap: wrap;
	align-items: flex-start;
}

.ablauf .ablaufbox {
	width: 45%;
}

.ablauf .ablaufbox ul {
	margin-top: 2em;
}

.ablauf .ablaufbox p:first-of-type {
	width: 15%;
}

.ablauf .ablaufbox p:last-of-type {
	width: 85%;
}

.ablauf .ablaufbox:nth-of-type(1),
.ablauf .ablaufbox:nth-of-type(2) {
	margin-bottom: 50px;
}

.ablauf .ablaufbox .icon span,
.gruende .gruendebox .icon i {
	font-size: 50px;
	color: #ccc;
}

.ablauf .ablaufbox p {
	margin: 0;
}

.ablauf .ablaufbox p strong {
	display: block;
	font-size: 22px;
	color: rgb(59,97,167);
	margin: 0 0 10px;
}

.ablauf .ablaufbox > img {
	width: 60%;
	margin: 0 auto 2em;
}

.ablauf .ablaufbox ul {
	padding-left: 1.5em;
}

.ablauf .ablaufbox li {
	position: relative;
}

.ablauf .ablaufbox li span {
	position: absolute;
	top: 3px;
	left: -1.5em;
}

.gruende {
	width: 100%;
	height: auto;
	position: relative;
	display: block;
	background: rgb(59,97,167);
}

.gruende .flex {
	flex-wrap: wrap;
}

.gruende h3 {
	font: 700 24px/38px 'Roboto', sans-serif;
	text-align: center;
	background: url(/_media/images/content/landingpage/azubi/source/headline-sprachbox.png) no-repeat center center / contain;
	background-size: 630px;
	padding: 60px 0 110px;
	margin-bottom: 50px;
}

.gruende .gruendebox {
	width: 31%;
	align-items: flex-start;
}

.gruende .gruendebox p:last-of-type {
	width: 90%;
}

.gruende .gruendebox .icon {
	width: 6%;
}

.gruende .gruendebox .icon i,
.gruende .gruendebox p {
	color: #fff;
}

.gruende .gruendebox:last-of-type p {
	margin: 0;
}

.gruende .gruendebox p:last-of-type strong {
	display: block;
	text-transform: uppercase;
}

.mitbringen {
	width: 100%;
	height: auto;
	display: block;
	position: relative;
}

.mitbringen .flex {
	align-items: flex-start;
}

.mitbringen .bildbox,
.mitbringen .textbox {
	width: 48%;
}

.mitbringen .bildbox {
	position: relative;
	display: block;
}

.mitbringen .bildbox > img:first-of-type {
	top: 0;
	left: 0;
}

.mitbringen .bildbox > img:last-of-type {
	bottom: -150px;
	right: 50px;
	position: absolute;
}

.mitbringen .textbox {
	text-align: center;
}

.mitbringen .textbox h3 {
	background: url(/_media/images/content/landingpage/azubi/source/headline-sprachbox-2.png) no-repeat center center / contain;
	background-size: 630px;
	padding: 40px 0 0;
	margin-bottom: 40px;
	color: #000;
	text-align: left;
}

.mitbringen .textbox ul {
	margin: 0 0 25px;
}

.bewerbung {
	width: 100%;
	height: auto;
	position: relative;
	display: block;
	background: #f2f2f2;
}

.bewerbung .flex {
	align-items: flex-start;
}

.bewerbung .bewerbungsform {
	width: 55%;
}

.bewerbung .bewerbungsform .flex {
	flex-wrap: wrap;
}

.bewerbung .bewerbungsform p {
	margin: 0 0 10px;
}

.bewerbung .bewerbungsform label {
	display: none;
}

.bewerbung .bewerbungsform .formfield {
	width: 49%;
}

.bewerbung .bewerbungsform .formfield select,
.bewerbung .bewerbungsform .formfield input {
	width: 100%;
	border: 1px solid rgb(59,97,167);
	height: 50px;
	margin: 5px 0;
	font-size: 16px;
	padding: 10px 15px;
}

.bewerbung .bewerbungsform .anrede,
.bewerbung .bewerbungsform .anrede select {
	width: 100%;
	padding: 0;
}

.bewerbung .bewerbungsform .anrede select {
	height: 85px;
}

.bewerbung .bewerbungsform .anrede select option {
	padding: 10px 15px;
	font: 400 16px/28px 'Roboto', sans-serif;
}


.bewerbung .bewerbungsform .person,
.bewerbung .bewerbungsform .kontaktinfos,
.bewerbung .bewerbungsform .weiteres {
	margin: 0 0 25px;
}

.bewerbung .bewerbungsform .strasse,
.bewerbung .bewerbungsform .ort{
	width: 74%;
}

.bewerbung .bewerbungsform .hausnummer,
.bewerbung .bewerbungsform .plz {
	width: 24%;
}

.bewerbung .bewerbungsform .kontaktinfos .formfield,
.bewerbung .bewerbungsform .weiteres .formfield,
.bewerbung .bewerbungsform .uploads .formfield {
	width: 100%;
}

.bewerbung .bewerbungsform .uploads p {
	margin: 0 0 25px;
}

.bewerbung .bewerbungsform .uploads p strong {
	display: block;
}

.bewerbung .bewerbungsform .uploads label {
	display: inline-block;
	width: 100%;
	margin: 0 0 10px;
}

.bewerbung .bewerbungsform .uploads input {
	padding: 0;
	border: none;
	margin: 0 0 20px;
	height: 40px;
}

.bewerbung .bewerbungsform .form-check label {
	display: inline-block;
	font-size: 16px;
	padding: 6px 25px 6px 40px;
	position: relative;
}

.bewerbung .bewerbungsform .form-check label:before {
	content: '';
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	background: #f4f4f4;
	border: 1px solid rgb(59,97,167);
	position: absolute;
	top: 14px;
	left: 0;
	font-family: "Font Awesome\ 5 Free";
	font-weight: 900;
	color: rgb(59,97,167);
}

.bewerbung .bewerbungsform .checki .form-check label:before {
    top: 3px;
}

.bewerbung .bewerbungsform .form-check input:checked + label::before, .bewerbung .bewerbungsform .form-check input:checked + label::before {
    content: "\f00c";
}

.bewerbung .bewerbungsform .form-check {
	margin: 0 0 25px;
}

.bewerbung .bewerbungsform #sendenbutton {
	cursor: pointer;
}

.bewerbung .rightbox {
	width: 35%;
	text-align: center;
}

.bewerbung .rightbox img {
	margin: 0 0 25px;
}

.bewerbung .rightbox p {
	text-align: left;
	display: block;
}

.bewerbung .rightbox p strong {
	display: block;
}

.bewerbung .rightbox p:first-of-type strong {
	color: rgb(59,97,167);
	font-size: 22px;
}

footer {
	margin: 0!important;
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	background: #101010;
	color: #fff;
	padding: 10px 0;
}

footer p {
	margin: 0;
	font-size: 14px;
}

footer ul {
	display: flex;
	justify-content: fex-end;
	align-items: center;
	list-style: none;
	margin: 0;
}

footer ul li a {
	color: #fff;
	display: inline-block;
	padding: 10px 15px;
	font-size: 14px;
}

#jumptome {
	background: #f2f2f2;
}

.cookies {
	width: 300px;
	height: auto;
	position: fixed;
	z-index: 100;
	left: 5px;
	bottom: 5px;
	background: #fff;
	padding: 10px;
	border: 1px solid #ccc;
	box-shadow: 0px 0px 20px #ccc;
}

.cookies img {
	margin: 0 0 10px;
}

.cookies p {
	font: 400 14px/23px 'Open Sans', sans-serif;
}

.cookies p strong {
	display: block;
	text-transform: uppercase;
}

.cookies .btn {
	color: #fff !important;
	font: 700 14px/23px 'Open Sans', sans-serif;
}

.cookies .btn:hover {
	color: #484848 !important;
	background: #fff !important;
	transform: scale(1,1);
}

.ovrly {
	position: absolute;
	background: rgba(0,0,0,.5);
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 200;
}

.popup {
	background: #fff;
	width: 40%;
	height: auto;
	margin: auto;
	padding: 40px;
	position: relative;
}

.popup .close {
	margin-bottom: 0;
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 15px;
	display: inline-block;
	padding: 10px;
}

.ovrly.hide {
	display: none;
}

.a-logo {
	font: 400 16px/20px 'Roboto', sans-serif!important;
}

.logo {
	width: 7.5em!important;
	height: 7.5em!important;
	position: absolute;
	z-index: 1;
	inset: 2em auto auto 2em;
}

.primary {
	color: #6fa930;
}

.primary-back {
	background: #6fa930;
}

.big {
	font-size: 35px;
}

.ueberschrift {
	margin-bottom: 2em;
}

.ueberschrift h2 {
	margin-bottom: 1em;
	line-height: 1.5;
}
.ueberschrift h2 span {
	margin-top: .5em;
}

.bewerben {
	margin-top: 2em;
}
.mitbringen .bildbox > img:last-of-type {
  bottom: -100px;
  right: 25px;
  position: absolute;
}

.slider {
	padding: 100px 0;
	background: rgb(59,97,167);
}

.slider h2 {
	text-align: center;
	font-size: 35px;
	color: #fff;
	margin-bottom: 1.5em;
}

.slick-arrow{
	display:block;
	-webkit-appearance:none;
	appearance:none;
	width:50px;
	height:50px;
	background: none;
	color:rgba(255,255,255,.95);
	overflow:hidden;
	text-indent:-9000px;
	position:absolute;
	top:0;
	bottom:0;
	margin:auto;
	z-index:200;
	border:none;
}

.slick-arrow:before{
	content:"\f104";
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	display:flex;
	align-items:center;
	justify-content:center;
	pointer-events: none;
	font-family:"Font Awesome 5 Free";
	font-weight:900;
	text-indent: 0;
	font-size:50px;
}



.slick-arrow.slick-prev{left:2%;}
.slick-arrow.slick-next{right:2%;}



.slick-arrow.slick-next:before{content:"\f105";}

.slick-dots{
	display:flex;
	align-items:center;
	justify-content:center;
	list-style:none;
	margin:0;
	padding:0;
	position:absolute;
	left:0;
	bottom:10%;
	right:0;
}

.slick-dots li{
	display:block;
	margin:0 4px;
}

.slick-dots button{
	display:block;
	overflow:hidden;
	text-indent: -200px;
	border:none!important;
	background:#fff;
	border-radius:0;
	width:40px;
	height:3px;
	cursor:pointer;
}

.slick-dots .slick-active button{
	background:#ec2440;
}

.eyecatcher {
	position: relative;
	border-bottom: 3px solid #6fa930;
}

.eyecatcher > div {
	padding: 2.5em 2em;
	width: 35em;
	min-height: 10em;
	position: absolute;
	inset: auto 17.5% 12.5% auto;
	background: rgba(0,0,0,.75);
	border-radius: .5em;
}

.eyecatcher > div > * {
	color: #fff;
}

.eyecatcher > div > h2 {
	font-size: 2em;
	margin-bottom: 1em;
}

.eyecatcher > div > h3 {
	margin-bottom: 2em;
	font-size: 1em;
	text-transform: none;
	line-height: 1.5;
} 

.eyecatcher > div > a {
	padding: .5em 1em;
	background: #ff2603;
	border: 2px solid #ff2603;
	border-radius: 1em;
	font-size: 1em;
	font-weight: 600;
	color: #fff;
	text-transform: none;
}

.eyecatcher > div > a:hover {
	background: transparent;
}

footer {
	background: #222;
}

footer div {
	padding: 1em 0;
	margin-inline: auto;
	max-width: 1200px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 2em;
}

footer a {
	color: #fff;
}

.headline {
	margin: auto;
	max-width: 60em;
}

.headline > h2 {
	font-size: 2.5em;
	font-weight: 700;
}

.einleitung {
	margin-top: 6em;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.einleitung > div:first-of-type {
	width: 70%;
}

.einleitung > div:last-of-type {
	width: 20%;
}

.einleitung > div:last-of-type p {
	margin: 0;
}

.einleitung > div:last-of-type p:first-of-type {
	margin-bottom: 1em;
}

.einleitung > hr {
	width: 2px;
	height: 100px;
	border: none;
	background: #6fa930;
}

.einleitung a {
	text-transform: none;
}

.stellenInfo img {
	border-radius: 1em;
}

.stellenInfo h4 {
	margin-bottom: 1em;
	font-weight: 400;
	line-height: 1.5;
}

.akkordeon {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5em;
}

.akkordeon > div > div{
	scroll-margin: 5em;
}

.akkordeon > h2 {
	margin: 0;
	width: 100%;
	font-size: 2.5em;
	text-align: center; 
}

.akkordeon > hr {
	margin: 0 auto;
	width: 35%;
	height: 2px;
	border: none;
	background: #6fa930;
}

.akkordeon > p {
	width: 100%;
	text-align: center;
}

.akkordeon > div {
	width: 100%;
	background: #6fa93077;
	border-radius: 1em;
}

.akkordeon > div > div:first-of-type {
	padding: 1.5em 3em;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: linear-gradient(45deg, #6fa930, #6fa930);
	border-radius: 1em;
}

.akkordeon > div > div:last-of-type {
	padding: 1.5em 3em 3em;
	display: none;
}

.akkordeon > div > div:first-of-type.active span {
	transform: rotate(90deg);
}

.akkordeon > div > div:first-of-type h2 {
	margin: 0;
	color: #fff;
}

.akkordeon > div > div:first-of-type span {
	font-size: 1.5em;
	color: #fff;
	transition: transform 400ms ease;
}

.stellenInfo p {
	margin-bottom: 2em;
}

.stellenInfo > div > p > a, .toggleAkkordeon a, a.btn {
	padding: .5em 1em;
	background: #ff2603;
	border: 2px solid #ff2603;
	border-radius: 1em;
	font-size: 1em;
	font-weight: 600;
	color: #fff;
	text-transform: none;
}

.stellenInfo > div > p > a:hover, .toggleAkkordeon a:hover, a.btn:hover {
	background: transparent;
	color: #000;
}

header {
	width: 15em;
	position: fixed;
	inset: 2em auto auto 2em;
	z-index: 1000;
}

header img {
	padding: 1em;
	width: 12em;
	background: #fff;
	border-radius: 1em;
}

.dreiIcons {
	padding: 50px 0;
	display: flex;
	justify-content: space-between;
}

.dreiIcons > div {
	width: 31%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.dreiIcons > div > p:first-of-type {
	width: 50%;
	aspect-ratio: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 3.75em;
	margin-bottom: .5em;
	background: linear-gradient(45deg, #6fa930, #6fa930);
	border-radius: 100em;
	color: #fff;
}

.dreiIcons > div > h3 {
	text-transform: none;
	margin: 0;
	text-align: center;
}

.dreiIcons > div > hr {
	width: 75%;
	height: 2px;
	border: none;
	background: #6fa930;
}

#jobs {
	padding-top: 0;
}

.job select {
	width: 100%;
    border: 1px solid rgb(59,97,167);
    height: 50px;
    margin: 5px 0;
    font-size: 16px;
    padding: 10px 15px;
}

.m-hide {
	display: none!important;
}
	
.m-show {
	display: block!important;
}

.impressum a, .datenschutz h3 {
	margin-bottom: 2em;
	font-size: 2em;
	text-align: center;
}

.impressum a, .datenschutz h4 {
	margin: 2em 0 .5em;
	font-size: 1.5em;
}

.impressum strong, .datenschutz strong {
	font-size: 1.25em;
}

.impressum a, .datenschutz a {
	font-size: 1em;
	text-transform: none;
}

.impressum li, .datenschutz li {
	list-style: inside;
	margin: .75em 0;
}

@media only screen and (max-width: 1200px) {
	.centered {
		padding: 0 15px;
	}
	
	header {
		overflow: hidden;
	}
	
	header > img {

		position: relative;
	}
	
	.bewerbung .rightbox {
    	width: 40%;
	}
	
	footer div {
		padding: 1em 1em;
	}
	
	.eyecatcher > div {
		inset: auto 12.5% 7.5% auto;
	}
	
	.akkordeon > div > div{
		scroll-margin: 12.5em;
	}
	
}

@media only screen and (max-width: 1000px) {
    
    header .textwrapper .textbox ul li, .mitbringen .textbox ul li {
    font-size: 20px;
    color: #000;
}
    
	header .textwrapper .textbox ul li span:first-of-type {
    color: #000;
    font-size: 20px;
}
	.p150-0 {padding:75px 0;}
	
    .bildbox img:first-of-type{
        display: none;
    }
    
    .mitbringen .bildbox > img:last-of-type {
    bottom: inherit;
    right: inherit;
    position: relative;
}
    .mitbringen .bildbox {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
        width: 100%;
		object-fit: contain;
}
    
    .mitbringen .textbox h3 {
    margin-bottom: 10px;
    margin-top: 20px;
}
	
	header .wrapper {
		width: 100%;
		height: auto;
		position: relative;
		display: block;
		padding: 50px 0 50px;
	}
	
	header .textwrapper,
	.ablauf .ablaufbox,
	.mitbringen .textbox,
	.bewerbung .bewerbungsform,
	.bewerbung .rightbox {
		width: 100%;
	}
	
	header .textwrapper .textbox > .btn {
		right: -30px;
	}
	
	.fakten p.flex {
		flex-wrap: wrap;
		align-items: flex-start;
		text-align: center;
	}
	
	.fakten p {
		width: 31%;
	}
	
	.fakten p span:first-of-type,
	.fakten p span:last-of-type,
	.fakten p:last-of-type span:first-of-type,
	.fakten p:last-of-type span:last-of-type {
		width: 100%;
		margin-bottom: 10px;
	}
	
	.fakten p span {
		font-size: 15px;
	}
	
	.ablauf .flex,
	.mitbringen .flex,
	.bewerbung .flex {
		flex-wrap: wrap;
	}
	
	.ablauf .ablaufbox p {
		margin: 0 0 20px;
	}
	
	.gruende .gruendebox {
		width: 45%;
	}
	
	.bewerbung > .flex {
		flex-direction: column-reverse;
	}
	
	.bewerbung .bewerbungsform #sendenbutton {
		width: 100%;
	}

	.stellenAblauf {
		flex-direction: column;
	}

	.stellenAblauf div {
		position: relative;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}


	.stellenAblauf img {
		position: relative;
		inset: 0;
	}
	
	.stellenInfo {
		flex-direction: column;
		gap: 3em;
	}

	.stellenInfo img {
		width: 100%;
		aspect-ratio: 2 / 1;
	}

	.stellenInfo div {
		width: 100%;
	}
	
	.big {
  		font-size: 30px;
	}
	
	.eyecatcher > div {
		margin-inline: auto;
		inset: auto 0 20%;
	}
	
	.slick-track {
		height: 75vh;
	}

	.slick-track > div > img {
		height: 100%;
		object-fit: cover;
	}
	
	.dreiIcons {
		flex-direction: column;
		align-items: center;
		gap: 3em;
	}
	
	.dreiIcons > div {
		width: 60%;
	}
	
	.dreiIcons > div > p:first-of-type {
		width: 25%;
	}
	
	.dreiIcons > div > p:first-of-type span {
		display: flex;
		align-items: center;
	}
	
	.dreiIcons > div > p:first-of-type span:before {
		font-size: .75em;
	}
	
	.dreiIcons > div > hr {
		width: 100%;
	}
	
	.hideText {
		display: none;
	}
	
	#jobs {
		padding-top: 5em;
	}
	
	header {
		width: 10em;
		inset: 2em auto auto 1em;
	}
	
	header img {
		width: 7em;
	}

}

@media only screen and (max-width: 720px) {
	
	header .textwrapper .textbox ul li span:first-of-type {
    	color: rgb(59,97,167);
	}
	
	h1, .h1style {
		font: 700 17px/25px 'Montserrat', sans-serif;
	}
	
	.big {
		font-size: 25px;
		margin: .5em 0;
	}
	
	h2, .h2style {
    	font: 400 18px/26px 'Montserrat', sans-serif;
	}
	
	.p50-0 {padding: 25px 0;}
	
	.p150-0 {padding: 50px 0;}
	
	.btn {
		display: block;
		text-align: center;
	}
	
	.head a:first-of-type > img {
		width: 70%;
		max-width: 115px;
		height: auto;
		display: block;
		position: relative;
		line-height: 0;
	}
	
	.head .btn {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		text-align: center;
	}
	
	header .textwrapper .textbox {
		width: 100%;
		padding: 0;
		background: transparent;
	}
	
	header .textwrapper .textbox ul {
		margin: 0 0 25px;
	}
	
	header .textwrapper .textbox ul li, .mitbringen .textbox ul li {
		font-size: 18px;
		padding: 5px 0;
	}
	
	header .textwrapper .textbox ul li span:first-of-type {
		font-size: 16px;
		line-height: 24px;
	}
	
	header .textwrapper .textbox > .btn {
		position: relative;
		bottom: unset;
		right: unset;
		margin: 0 auto;
		display: block;
		text-align: center;
	}
	
	.fakten > .flex,
	.ablauf .flex,
	.gruende .gruendebox {
		flex-wrap: wrap;
	}
	
	.fakten p.flex {
		flex-wrap: nowrap;
		text-align: left;
	}
	
	.fakten p {
		width: 100%;
		margin: 0 0 25px;
	}
	
	.fakten p:last-of-type {
		margin: 0;
	}
	
	.fakten p span:first-of-type,
	.fakten p:last-of-type span:first-of-type {
		width: 20%;
		padding-right: 50px;
		font-size: 38px;
	}
	
	.ablauf .ablaufbox p:first-of-type,
	.ablauf .ablaufbox p:last-of-type {
		width: 100%;
		text-align: center;
		margin: 0 0 25px;
	}
	
	.gruende .gruendebox {
		width: 100%;
	}
	
	.gruende h3 {
		background: transparent;
		color: #fff;
		padding: 0;
	}
	
	.mitbringen .textbox h3 {
		background: transparent;
		color: rgb(59,97,167);
		padding: 0;
	}
	
	.mitbringen .textbox {
		text-align: left;
	}
	
	.bewerbung .rightbox img {
		width: 100%;
		height: auto;
		display: block;
		position: relative;
	}
	
	footer {
		margin: 0 0 45px;
	}
	
	footer .flex {
		flex-wrap: wrap;
	}
	
	footer p {
		width: 100%;
		text-align: center;
	}
	
	footer ul {
		width: 100%;
		justify-content: center;
	}
	
	header.stellenangebot-header img {
		width: auto;
		height: 500px;
		object-fit: cover;
		object-position: -300px 0;
	}
	
	header.stellenangebot-header .wrapper {
		padding: 20px 0 20px;
	}
	
	.ablauf .ablaufbox ul {
		margin-top: 0;
	}
	
	.area {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	
	
	h2 {
		line-height: 1.25;
	}
	
	.headline > h2 {
		font-size: 2em;
	}
	
	.einleitung {
		flex-direction: column;
	}
	
	.einleitung > div {
		width: 100%!important;
	}
	
	.einleitung hr {
		width: 75%;
		height: 2px;
	}
	
	.einleitung > div:last-of-type {
		display: flex;
		justify-content: center;
		gap: 2em;
	}
	

	
	.eyecatcher-box > h2 {
		font-size: 1.5em!important;
	}
	
	.dreiIcons {
		flex-direction: column;
		align-items: center;
		gap: 3em;
	}
	
	.dreiIcons > div {
		width: 95%;
	}
	
	.dreiIcons > div > p:first-of-type {
		width: 25%;
	}
	
	.dreiIcons > div > hr {
		width: 100%;
	}
	
	.s-hide {
		display: none!important;
	}
	
	.s-show {
		display: block!important;
	}
	
	.eyecatcher-box{
		position:relative!important;
		inset:inherit!important;
		
	}
	
	.eyecatcher > div {
		width: 100%;
		inset: inherit!important;
			border-radius:0;
		background:#6fa930;
		margin-top:-100px;
	}
	
	.slick-track > div > img {
		width: 100%;
		height:auto;
	}
	
	.slick-track {
		height: auto;
	}
	
	header{
		position:relative!important;
		inset:inherit!important;
		display:flex;justify-content:space-between;
		align-items:center;
		width:100%;
		padding:0 20px;
		pointer-events:all!important
	}
	
	header img{padding:0;}
	
}
.wdhemail{
	display: none!important; 
}