.form-select:not([multiple])[size="1"], .form-select:where(select):not([multiple]):not([size]), .uk-select:not([multiple]):not([size]){
	background-size: auto 50%;
}

.seminarman-course-tags-headline{
	display: none;
}

.seminarman-course-table thead th{
	color: #333;
}

#redim-seminarman-header > img {
	width: 100%;
	object-fit: cover;
	height: 500px;
}

#tm-main.redim-tm-main {
	padding: 0;
}

/* //////////////////////////////////////////////// GENERAL */
.text-center{
	text-align: center;
}

.text-center > video{
	display: inline-block;
}

/* //////////////////////////////////////////////// ANSPRECHPARTNER */
#ansprechpartner .contact-row{
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

#ansprechpartner > .contact-row:not(:last-child){
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: calc(.2px + .05em) solid #e5e5e5;
}

#ansprechpartner .contact-row > .item{
	flex: 0 0 calc(50% - 15px);
}

#ansprechpartner .item{
	background: #f8f8f8;
}

#ansprechpartner .item > .inner{
	display: flex;
	height: 100%;
}


#ansprechpartner .item > .inner > .image__side{
	flex: 0 0 200px;
}

#ansprechpartner .item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#ansprechpartner .item > .inner > .content__side{
	flex: 0 0 calc(100% - 200px);
	padding: 30px;
}

#ansprechpartner + .cat-children{
	display: none !important;
}

/* //////////////////////////////////////////////// Yootheme: Ausbildung Header */
/* Yootheme Photo Grid - 4 Spalten Layout */
.ausbildung-header .uk-grid{
	display: grid !important;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, 300px);
	gap: 15px;
	height: auto !important;
	align-items: stretch;
}

/* Alle Grid-Items zurücksetzen */
.ausbildung-header .uk-grid > div{
	transform: none !important;
	margin: 0 !important;
	position: relative !important;
	width: auto !important;
}

/* Layout: Col1(1 Bild) | Col2(2 Bilder) | Col3(1 Bild) | Col4(2 Bilder) */

/* Spalte 1: Ein großes Bild über beide Zeilen */
.ausbildung-header .uk-grid > div:nth-child(1){
	grid-column: 1;
	grid-row: 1 / 3;
}

/* Spalte 2: Zwei Bilder übereinander */
.ausbildung-header .uk-grid > div:nth-child(2){
	grid-column: 2;
	grid-row: 1;
}

.ausbildung-header .uk-grid > div:nth-child(3){
	grid-column: 2;
	grid-row: 2;
}

/* Spalte 3: Ein großes Bild über beide Zeilen */
.ausbildung-header .uk-grid > div:nth-child(4){
	grid-column: 3;
	grid-row: 1 / 3;
}

/* Spalte 4: Zwei Bilder übereinander */
.ausbildung-header .uk-grid > div:nth-child(5){
	grid-column: 4;
	grid-row: 1;
}

.ausbildung-header .uk-grid > div:nth-child(6){
	grid-column: 4;
	grid-row: 2;
}

/* Falls mehr als 6 Bilder vorhanden sind, verstecken */
.ausbildung-header .uk-grid > div:nth-child(n+7){
	display: none;
}

/* Bild-Container Styling */
.ausbildung-header .el-item{
	width: 100%;
	height: 100%;
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ausbildung-header .el-item:hover{
	transform: scale(1.02);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	z-index: 10;
}

/* Bilder responsive machen */
.ausbildung-header .el-item img,
.ausbildung-header .el-item picture{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Overlay anpassen */
.ausbildung-header .uk-overlay-primary{
	background: rgba(0, 0, 0, 0.3);
	transition: opacity 0.3s ease;
}

.ausbildung-header .el-item:hover .uk-overlay-primary{
	opacity: 0.7;
}

@media (max-width: 1139.98px){
	header.tm-header{
		display: none;
	}
	
	header.tm-header-mobile{
		display: block !important;
	}
	
	#module-menu-dialog-mobile > ul > li > ul > li > a{
		border-bottom: 2px solid rgba(1, 80, 158, .4) !important;
		margin: 0 2em 1em 0;
		transition: all .2s ease-in-out;
	}
}


/* Responsive Design für Tablets */
@media (max-width: 959px){
	.ausbildung-header .uk-grid{
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(3, 250px);
		gap: 12px;
	}
	
	/* Tablet Layout: 2 Spalten mit 3 Zeilen */
	.ausbildung-header .uk-grid > div:nth-child(1){
		grid-column: 1;
		grid-row: 1 / 3; /* Erste 2 Zeilen */
	}
	
	.ausbildung-header .uk-grid > div:nth-child(2){
		grid-column: 2;
		grid-row: 1;
	}
	
	.ausbildung-header .uk-grid > div:nth-child(3){
		grid-column: 2;
		grid-row: 2;
	}
	
	.ausbildung-header .uk-grid > div:nth-child(4){
		grid-column: 1;
		grid-row: 3;
	}
	
	.ausbildung-header .uk-grid > div:nth-child(5){
		grid-column: 2;
		grid-row: 3;
	}
	
	.ausbildung-header .uk-grid > div:nth-child(6){
		display: none; /* 6. Bild auf Tablet verstecken */
	}
}

/* Responsive Design für Mobile */
@media (max-width: 639px){
	.ausbildung-header .uk-grid{
		grid-template-columns: 1fr;
		grid-template-rows: repeat(6, 200px);
		gap: 10px;
	}
	
	/* Mobile: Alle Bilder untereinander */
	.ausbildung-header .uk-grid > div:nth-child(1),
	.ausbildung-header .uk-grid > div:nth-child(2),
	.ausbildung-header .uk-grid > div:nth-child(3),
	.ausbildung-header .uk-grid > div:nth-child(4),
	.ausbildung-header .uk-grid > div:nth-child(5),
	.ausbildung-header .uk-grid > div:nth-child(6){
		grid-column: 1;
		grid-row: auto;
		display: block;
		width: auto !important;
	}
	
	.ausbildung-header .el-item:hover{
		transform: none; /* Hover-Effekt auf Mobile deaktivieren */
	}
}

/* Zusätzliche Optimierungen für Yootheme */
.ausbildung-header .uk-grid[uk-grid]{
	margin-left: 0 !important;
}

.ausbildung-header .uk-grid > *{
	padding-left: 0 !important;
}

/* Falls Masonry aktiv ist, deaktivieren */
.ausbildung-header .uk-grid[uk-grid*="masonry"]{
	display: grid !important;
}

/* Smooth Loading Animation */
.ausbildung-header .el-item{
	opacity: 0;
	animation: fadeInUp 0.6s ease forwards;
}

.ausbildung-header .el-item:nth-child(1){ animation-delay: 0.1s; }

.ausbildung-header .el-item:nth-child(2){ animation-delay: 0.2s; }

.ausbildung-header .el-item:nth-child(3){ animation-delay: 0.3s; }

.ausbildung-header .el-item:nth-child(4){ animation-delay: 0.4s; }

.ausbildung-header .el-item:nth-child(5){ animation-delay: 0.5s; }

.ausbildung-header .el-item:nth-child(6){ animation-delay: 0.6s; }

@keyframes fadeInUp{
	from{
		opacity: 0;
		transform: translateY(20px);
	}
	to{
		opacity: 1;
		transform: translateY(0);
	}
}


/* //////////////////////////////////////////////// KACHELN */

.kachel{
	cursor: pointer;
}

.kachel:hover *{
	text-decoration: none;
}

#kacheln{
	margin: 0 auto 50px auto;
}

#kachel-green{ background-color: #00632d; }

#kachel-green:hover{ background-color: #00441f; }

#kachel-green2{ background-color: #52ba6f;}

#kachel-green2:hover{ background-color: #3c8651;}

#kachel-green3{ background: #888e44;}

#kachel-green3:hover{ background: #6d7237;}

#kachel-blau,
#kachel-gelb,
#kachel-green,
#kachel-green2,
#kachel-green3,
#kachel-orange{
	height: 330px;
	margin-bottom: 20px;
	text-align: center;
	padding: 50px 0;
	transition: background-color 0.3s ease-in-out;
}

#kachel-green,
#kachel-green2,
#kachel-green3{
	height: 350px;
	hyphens: auto;
	max-width: 100%;
}

#kachel-blau a,
#kachel-gelb a,
#kachel-green a,
#kachel-green2 a,
#kachel-green3 a,
#kachel-orange a{
	color: #fff;
	font-size: 28px;
	line-height: 34px;
	font-weight: 800;
	text-transform: uppercase;
}

#kachel-blau{ background-color: #00519e; }

#kachel-gelb{ background-color: #f8ba16; }

#kachel-orange{ background-color: #ec7506; }

#kachel-blau:hover,
#kachel-gelb:hover,
#kachel-orange:hover{
	background-color: #e0081d;
	transition: background-color 0.4s ease-in-out;
}

#kachel-egv{
	
	height: 310px;
	/*background-size: 800px;*/
	background-size: cover;
	background-position: center;
	text-align: right;
	padding: 30px;
}

#kachel-egv a{
	color: #00519e;
	font-size: 34px;
	line-height: 38px;
	font-weight: 800;
	text-transform: uppercase;
}

#kachelslider .flex-control-nav{
	bottom: 20px;
	right: 20px;
	text-align: left;
	width: auto;
}

#kachelslider .flex-control-paging li a{
	width: 22px;
	height: 22px;
}

#kachelslider .flex-control-paging li a.flex-active,
#kachelslider .flex-control-paging li a:hover{
	background-color: #fff;
	border: 0px;
}

.mt30{
	margin-top: 30px;
}


/* === Kachel Team, Karriere Startseite === */

#egvteam{
	height: 550px;
	background-color: #ec7506;
	background-image: url(../images/egvherz.png);
	background-position: center 155px;
	background-repeat: no-repeat;
	background-size: 300px;
}

#egvteam h3{
	text-transform: uppercase;
	font-weight: 800;
	color: #fff;
	font-size: 38px;
	line-height: 44px;
}

#egvteam .inner{
	padding-top: 40px;
	text-align: center;
	color: #fff;
	font-size: 20px;
	border-radius: 8px;
}

#egvteam img{
	border-radius: 100%;
	max-width: 160px;
	margin: 60px 0;
	min-height: 200px;
}

#egvteam .name{
	font-weight: bold;
}

.teamslider{
	position: relative;
}

.teamslider .flex-direction-nav a{
	opacity: 1;
	height: 55px;
}

.teamslider .flex-direction-nav a::before{
	color: #fff;
	text-shadow: none;
	font-size: 60px;
	line-height: 60px;
}

.teamslider .flex-direction-nav .flex-prev{
	left: 100px;
}

.teamslider .flex-direction-nav .flex-next{
	right: 100px;
}

.teamslider .flex-control-nav{
	display: none;
}

.black{
	color: #333;
}

#wearehiring{
	height: 550px;
	max-height: 550px;
	background-color: #f8ba16;
	background-repeat: no-repeat;
	background-position: top -30px left -30px;
	background-size: 480px;
	background-image: url(../images/egvkarriere.png);
	text-align: right;
	padding: 40px;
	transition: background-color 0.3s ease-in-out;
}

#wearehiring:hover{
	background-color: #e0081d;
	transition: background-color 0.4s ease-in-out;
	cursor: pointer;
}

#wearehiring a{
	font-size: 38px;
	line-height: 44px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 800;
}

#wearehiring a:hover{
	text-decoration: none;
}

/* === Slider === */

.slick-slider{
	max-height: 660px;
	overflow: hidden;
	margin: 0px;
}

.slick-slider .slick-slide{
	position: relative;
}

.slick-slider .slick-dots{
	position: absolute;
	right: 26px;
	bottom: 20px;
	display: inline-block;
	width: auto;
	height: auto;
	line-height: 0px;
}

.slick-slider .slick-dots li{
	display: inline-block;
	width: auto;
	height: auto;
	margin: 0px 12px 0px 0px;
}

.slick-slider .slick-dots li:last-child{
	margin-right: 0px;
}

.slick-slider .slick-dots li button{
	width: 22px;
	height: 22px;
	background-color: rgba(255, 255, 255, 0.5);
	box-shadow: none;
	padding: 0px;
	border-radius: 22px;
	transition: background-color 0.3s ease;
}

.slick-slider .slick-dots li button:hover,
.slick-slider .slick-dots li.slick-active button{
	background-color: rgba(255, 255, 255, 1);
}

.slick-slider .slick-dots li button::before{
	display: none;
}

.slick-slider .videowrap{
	position: relative;
	width: 100%;
	height: 100%;
	display: block;
}

.slick-slider .videowrap video{
	width: 100%;
	height: auto;
	cursor: pointer;
}

.slick-slider .videowrap video:focus{
	border: 0px;
	outline: 0px;
}


/* === Table === */

table{
	border-collapse: collapse;
	overflow: hidden;
	border-radius: 5px 5px 0 0;
	border-top: 0 !important;
}

table th{
	background-color: #6fa4e0;
	color: white;
}

table tr{
	border-bottom: 0 !important;
}

table td{
	padding: 15px 30px;
}

table tr:nth-child(2n){
	background-color: #f9f9f9;
}

table tr:nth-child(2n+1){
	background-color: #e9e8e9;
}

.tm-main a[href$=".pdf"]{
	background-image: url('/templates/egvgroup/images/pdf.png');
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 28px;
}

/* === Newsflash 2024 === */


.newsflash-2024{}

.newsflash-2024 > .inner{
	display: flex;
	gap: 15px;
}

.newsflash-2024 > .inner > .side__left{
	flex: 0 0 65%;
}

.newsflash-2024 > .inner > .side__right{
	flex: 0 0 calc(35% - 15px);
}

.newsflash-2024 .side__left .newsflash-item{
	height: 100%;
}

.newsflash-2024 .newsflash-item{
	min-height: 180px;
	width: 100%;
	margin: 0 !important;
	position: relative;
	display: block !important;
	overflow: hidden;
}

.newsflash-2024 .newsflash-item .image{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover !important;
	background-position: center !important;
	z-index: 1;
	transition: transform .27s ease-in-out;
}

.newsflash-2024 .newsflash-item:hover > .inner{
	background: rgba(0, 0, 0, .45);
}

.newsflash-2024 .newsflash-item:hover > .image{
	transform: scale(1.05);
}

.newsflash-2024 .newsflash-item > .inner{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: background .27s ease-in-out;
	z-index: 10;
}

.newsflash-2024 .newsflash-item *{
	color: #fff;
}

.newsflash-2024 .newsflash-item .date{
	font-size: 12px;
	line-height: 14px;
	color: #adb5bd;
}

.newsflash-2024 .newsflash-item .newsflash2024-title{
	font-weight: 700;
	margin-bottom: 5px;
}

.newsflash-2024 .newsflash-item .bottom{
	text-align: left;
	background: linear-gradient(0deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 100%, rgba(0, 0, 0, 0));
	padding: 40px 20px 20px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}

.newsflash-2024 .side__right > .newsflash-item:not(:last-child){
	margin-bottom: 15px !important;
}

/*  === DROPDOWN === */

.uk-navbar-dropdown .uk-button-default{
	background-color: transparent !important;
	border: none !important;
	border-bottom: 2px solid #f1f1f1 !important;
	padding: 0px 30px 0px 0px;
	border-radius: 0;
	width: 80% !important;
	text-align: left;
	transition: all .3s ease-in;
	letter-spacing: 1.1px;
	color: #00519e;
}

.uk-navbar-dropdown .uk-button-default:hover{
	border-bottom: 2px solid #00417e !important;
	color: #00417e;
	transition: all .3s ease-in;
}

.uk-navbar-dropdown .uk-nav .el-link{
	color: #777777 !important;
	transition: all .3s ease-in;
}

.uk-navbar-dropdown .uk-nav .el-link:hover{
	color: #00519e !important;
	transition: all .3s ease-in;
}


/* === Visforms === */

.visforms-form select, .visforms-form input, .visforms-form textarea{
	background: #f5f5f5;
	border: none;
}

.visforms-form .form-group{
	margin-bottom: 1rem;
}

.visforms-form textarea{
	resize: none;
	background: #f5f5f5;
	max-height: 200px;
}

.visforms-form select:focus, .visforms-form input:focus, .visforms-form textarea:focus{
	background: #f5f5f5;
	border: 1px solid #00519e;
}

.visforms-form .btn-primary{
	background-color: #00519e;
}

.visforms-form .btn-primary:hover{
	background-color: #00417e;
}


@media only screen and (max-width: 979px){
	.newsflash-2024 > .inner{
		display: block;
		gap: 0;
	}
	
	.newsflash-2024 > .inner > .side__left{
		margin-bottom: 15px;
	}
}

/* https://www.egv-group.de/karriere/jobs */

#onapply__container .job-box{
	display: flex;
	justify-content: space-between;
	margin: 20px 0;
	padding: 20px 0;
	align-items: center;
	border-top: 1px solid #e1e1e1;
}

#onapply__container .job-box:last-child{
	margin-bottom: 0;
}

#onapply__container .department{
	font-size: 25px;
	font-weight: 700;
}

#onapply__container .job{
	line-height: 25px;
	font-size: 20px;
}

#onapply__container .job .location{
	font-size: 14px;
	color: #777;
}

#onapply_filter input,
#onapply_filter select{
	padding: 8px 12px;
	font-size: 15px;
	line-height: 15px;
	background: #ececec;
	box-shadow: none;
	margin: 0;
}

#onapply_filter select{
	height: 38px;
	width: 230px;
	max-width: 100%;
}

#onapply_filter .control-group{
	margin: 0;
}

#onapply_filter{
	margin: 50px 0;
}

#onapply_filter .filter_container{
	display: flex;
	align-items: stretch;
	align-content: baseline;
	flex-wrap: wrap;
	gap: 16px;
}

#onapply_filter .filter_container .spacer{
	width: 16px;
}

#onapply_filter .title > *{
	font-size: 18px;
	line-height: 22px;
	font-weight: 700;
	margin-bottom: 10px;
	display: block;
}

#onapply_filter .filter_container *{
	margin: 0px !important;
	
}

/*
#onapply_filter .filter_container > form > *{
	margin-right: 20px;
	margin-bottom: 10px;
}

#onapply_filter .filter_container > form > :first-child{
	margin-left: 0;
}
*/

@media (max-width: 800px){
	#onapply__container .job-box > *{
		flex: 0 0 100%;
	}
	
	#onapply__container .job-box{
		flex-wrap: wrap;
	}
	
	#onapply__container .button-more{
		margin-top: 17px;
	}
	
	#onapply__container .location{
		margin-top: 3px;
	}
}

/* //////////////////////////////////////////////// AKKORDEON */

.uk-accordion-title{
	padding: 5px 20px;
}

.uk-accordion-title:hover{
	color: #fff !important;
}

section h4{
	cursor: pointer;
	padding: 16px 20px;
	color: white;
	margin: 20px 0 0;
	background-color: #6fa4e0;
	position: relative;
	border-radius: 6px;
	transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

section h4.active{
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	background-color: #337ed3;
}

section h4:hover{
	background-color: #337ed3;
	color: #fff;
	transition: background-color 0.3s ease-in-out, color 0.2s ease-in-out;
}

section h4:hover::after{
	color: #fff;
	transition: background-color 0.3s ease-in-out, color 0.2s ease-in-out;
}

section:not(.ausbildung) .content{
	padding: 20px;
	border-right: 1px solid #ececec;
	border-bottom: 1px solid #ececec;
	border-left: 1px solid #ececec;
	display: none;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
}

section h4::after{
	position: absolute;
	content: url(../images/akkordeon_arrow.png);
	display: inline-block;
	right: 20px;
	top: 15px;
	font-size: 26px;
	font-weight: bold;
	color: #00519e;
	transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	transform: rotate(0deg);
	transition: transform .2s ease-in-out !important;
}

section h4.active::after{
	content: url(../images/akkordeon_arrow.png) !important;
	transform: rotate(90deg);
	top: 17px;
	transition: all .2s ease-in-out;
}

/* Basic.css */

/* GENERAL */

*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	font-family: 'Open Sans', Arial, sans-serif;
}

.clear{
	clear: both;
}

.clear0{
	clear: both;
	height: 0px;
}

.maxwidth{
	/* max-width: 1170px; */
	max-width: 1400px;
	margin: 0 auto;
}

a{
	color: #337ed3;
}

a:hover,
a:focus{
	outline: none;
	color: #00519e;
}

hr{
	border-top: 1px solid #ddd;
}

.page-header, legend{
	border-bottom: 0px;
}

.pull-left{
	margin-right: 16px;
}

.pull-right{
	margin-left: 16px;
}

.wieh1, .wieh2, .wieh3,
.wieh4, .wieh5, .wieh6{
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	font-weight: normal;
	color: #00519e !important;
}

h1, .wieh1{
	font-size: 32px;
	line-height: 36px;
}

h2, .wieh2{
	font-size: 28px;
}

h3, .wieh3{
	font-size: 24px;
}

h4, .wieh4{
	font-size: 20px;
}

h5, h6, .wieh5, .wieh6{
	font-size: 18px;
}

.scrolltable{
	overflow: auto;
}

td, th{
	padding: 12px 18px;
}

table{
	border-top: 1px solid #ddd;
	margin-top: 20px;
}

tr{
	border-bottom: 1px solid #ddd;
}

tr:hover{
	background-color: #f4f4f4;
}

.star{
	color: #337ed3;
}

.btn, input.btn,
.jc_jobdetails_button button,
.application_button button,
.visform input.btn{
	background: #337ed3;
	color: #fff;
	text-shadow: none;
	padding: 7px 14px;
	box-shadow: none;
	border: 0px;
}

.btn:hover, .btn:focus,
.jc_jobdetails_button button:hover,
.jc_jobdetails_button button:focus,
.application_button button:hover,
.application_button button:focus,
.visform input.btn:hover{
	outline: none;
	color: #fff;
	background-color: #00519e;
	border: 0;
	padding: 7px 14px;
}

.hcemail{
	display: none !Important;
}

/* End basic.css */

.hero-text{
	font-size: 20px;
	line-height: 28px;
}

.btn{
	padding: 5px 10px !important;
	border-radius: 5px;
	box-sizing: border-box;
}

.headline-center .page-header h1{
	text-align: center;
	margin-bottom: 15px !important;
}

h1.uk-article-title{
	text-align: center;
}

.bigger{
	font-size: 18px;
	line-height: 26px;
}

.karriereboxdunkel{
	background-color: #ec7506;
	color: #fff;
	padding: 20px;
}

.karrierebox p:last-of-type{
	margin-bottom: 0px;
}

.karriereflex{
	display: flex;
}

.karriereflex.zukunft{
	align-items: center;
}

.karriereflex > .karrierebox{
	width: 60%;
}

.karriereflex > .karrierebewerbung{
	width: calc(40% + 60px);
}

.anforderungen p{
	color: #ec7506;
}

.anforderungen ul{
	margin-top: 10px;
}

.anforderungen .karrierebox{
	padding: 0;
}

.karrierebewerbung{
	background-color: #ec7506;
	position: relative;
	height: 230px;
	display: flex !important;
	justify-content: center;
	align-items: center;
	left: -60px;
}

.karrierebewerbung .bewerbung-inner{
	padding: 50px 150px;
	border: 5px solid white;
}

.karrierebewerbung .bewerbung-inner{
	font-size: 25px;
	color: white;
	font-weight: bold;
}

.karrierebewerbung .bewerbung-inner:hover{
	text-decoration: none;
}

.karrierebewerbung img{
	position: absolute;
	top: calc(50% - 159px);
	left: calc(50% - 289px);
}

.karriere .flexslider .flex-caption-description{
	color: #fff;
	text-transform: uppercase;
	font-size: 36px;
	font-weight: bold;
	position: absolute;
	right: 0;
	bottom: 70px;
	padding-right: 197px;
}

.karriere .flexslider .flex-caption-description::after{
	content: '';
	position: absolute;
	background-image: url('../images/logo-weiss.png');
	width: 181px;
	height: 48px;
	right: 0px;
	bottom: -4px;
}

.karriere .flexslider .flex-caption-inner.maxwidth{
	position: relative;
}

.jobteaser a{
	width: 100%;
	background-color: #337ed3;
	color: #fff;
	font-size: 24px;
	text-transform: uppercase;
	display: block;
	padding: 20px;
	text-align: center;
	font-weight: bold;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	transition: background-color 0.2s ease-in;
}

.jobteaser a:hover{
	text-decoration: none;
	background-color: #00519e;
	transition: background-color 0.2s ease-in;
}

.jobteaser img{
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	width: 100%;
}

.karriere h1{
	text-align: center;
}

.karrierebox{
	border: 3px solid #ec7506;
	padding: 20px 40px;
	text-align: left;
	position: relative;
}

.karrierebox.berufserfahrene{
	padding: 20px 80px;
}

.anforderungen .karrierebox{
	border: none;
}

.ausbildung .text-container{
	height: 30%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.row-fluid.ausbildung{
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	
}

.row-fluid.ausbildung .span6{
	display: flex;
	align-items: center;
	justify-content: center;
}


.box-apply{
	background-color: #ec7506;
	padding: 30px;
	height: 320px;
	display: flex;
}

.box-apply .span8, .box-apply .span4{
	display: flex !important;
	justify-content: space-around;
	flex-direction: column;
}

.box-apply p, .box-apply a{
	color: white;
	font-size: 1rem;
	line-height: 28px;
}

.box-apply .apply-headline{
	font-size: 1.2rem;
	font-weight: bold;
}

.box-apply a:hover{
	text-decoration: none;
}

.box-apply .apply-buttons{
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.box-apply .apply-buttons .btn-apply{
	width: 180px;
	text-align: center;
	display: inline-block;
	box-sizing: border-box;
}

.box-apply .apply-buttons .apply-btn-main{
	background-color: white;
	border-radius: 5px;
	border: 2px solid white;
	padding: 5px 10px;
	color: #337ed3;
}

.box-apply .apply-buttons .apply-btn-main:hover{
	background-color: #e1e1e1;
	border: 2px solid #e1e1e1;
	transition: all .2s ease-in;
}

.box-apply .apply-buttons .apply-btn-secondary{
	background-color: transparent;
	border-radius: 5px;
	border: 2px solid white;
	padding: 5px 10px;
	color: white;
	margin-right: 1em;
}

.icon_email{
	content: url(../images/email.png);
	display: inline-block;
}

.box-apply .apply-buttons .apply-btn-secondary:hover{
	background-color: white;
	color: #337ed3;
	border: 2px solid white;
	opacity: .9;
	transition: all .2s ease-in;
}


.box-apply .apply-now .btn-apply-now{
	font-size: 1.6rem;
	font-weight: bold;
	padding: 80px;
	border: 5px solid white;
	text-align: center;
}


.box-apply .apply-now .btn-apply-now:hover, .karrierebewerbung .bewerbung-inner:hover{
	background-color: #e1e1e1;
	border: 5px solid #e1e1e1;
	transition: all .2s ease-in;
	color: #337ed3
}

/* === Ausbildung Jobslider */
.ausbildung.slideshow .slick-slider{
	max-height: 800px;
}


.ausbildung.slideshow .slick-slide{
	display: flex;
	justify-content: center;
}

.ausbildung.slideshow .slick-slide > div{
	width: 450px !important;
}

.ausbildung.slideshow .slide-headline{
	color: white !important;
}

.ausbildung.slideshow .slick-dots{
	display: none !important;
}

.ausbildung.slideshow .slide-headline a{
	color: white;
	font-weight: bold;
	font-size: 14px;
}

.ausbildung.slideshow .slide-headline-container{
	position: absolute;
	top: -110px;
	left: calc(50% - 135px);
	background-color: #ec7506;
	padding: 10px;
}

.ausbildung.slideshow .slide-headline{
	
	border: 4px solid white;
	width: 250px;
	text-align: center;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.ausbildung.slideshow .slick-slide img{
	width: 100%;
}

.ausbildung.slideshow .slide-inner{
	position: relative;
	background: #f6c08e;
	padding: 15px 15px;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	height: 230px;
}

.ausbildung.slideshow .slide-content a{
	color: white;
	font-weight: bold;
	font-size: 22px;
	line-height: 30px;
}

.ausbildung.slideshow .slide-content{
	padding: 10px 20px;
	text-align: center;
	width: 400px;
}

.ausbildung.slideshow .slide-readmore{
	text-align: center;
}

.slideshow .btn, input.btn, .jc_jobdetails_button button, .application_button button, .visform input.btn{
	background: #ffffffaa;
	color: #3f3f3f;
}

.ausbildung.slideshow .slick-next::before{
	content: url(../images/slick_arrow_right.png);
	display: inline-block;
	width: 20px !important;
}

.ausbildung.slideshow:hover .slick-prev{
	left: 4px;
}

.ausbildung.slideshow:hover .slick-next{
	right: 25px;
}

.ausbildung.slideshow .slick-prev::before{
	content: url(../images/slick_arrow_left.png);
	display: inline-block;
	width: 20px;
}

ul.check{
	list-style-type: none;
	margin-left: 0px;
	margin-bottom: 0px;
	padding-left: 0 !important;
}

ul.check li{
	position: relative;
	padding-left: 25px;
	line-height: 32px;
}

ul.check li::before{
	position: absolute;
	content: '';
	background-image: url('../images/icon_check.png');
	width: 17px;
	height: 22px;
	left: 0;
	top: 11px;
	background-repeat: no-repeat;
	background-size: contain;
}

#myBtn{
	width: 80px;
	font-size: 18px;
	padding: 10px;
	border: none;
	background: #ec7506bb;
	color: #fff;
	cursor: pointer;
	position: absolute;
	left: calc(50% - 40px);
	border-radius: 100px;
	bottom: 35px !important;
}

/* OnApply */

#onapply_filter .controls{
	height: 100%;
}

#onapply_filter .form-select, #onapply_filter .form-control{
	height: 100%;
}

#onapply__container .uk-accordion-title{
	cursor: pointer;
	padding: 16px 20px;
	color: white;
	margin: 20px 0 0;
	background-color: #6fa4e0;
	position: relative;
	border-radius: 6px;
	transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

#onapply__container .uk-accordion-title:hover{
	background-color: #337ed3;
	color: #fff;
	transition: background-color 0.3s ease-in-out, color 0.2s ease-in-out;
}

#onapply__container .uk-open .uk-accordion-title{
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	background-color: #337ed3;
}

#onapply__initiative{
	margin: 75px 0;
	background: #ec7506;
	color: #fff;
	padding: 24px 32px;
	border-radius: 4px;
}

#onapply__initiative > .inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

#onapply__initiative > .inner > :first-child{
	margin-top: 0;
}

#onapply__initiative .btn.btn-big{
	background: none !important;
	color: #fff;
	font-weight: 700;
	font-size: 22px;
	line-height: 26px;
	border: 4px solid #fff;
	padding: 32px 64px;
}

#onapply__initiative h2{
	color: #fff;
}

/* /karriere/ausbildung */

.jobinfo-container{
	margin: 50px;
	display: flex;
	flex-direction: row;
}


#myVideo{
	border: solid 0px black;
	text-align: center;
	display: block;
}

.jobinfo-container .leftside .top{
	background: #dddddd;
	padding: 20px;
	height: 50%;
}

.jobinfo-container .leftside .bottom{
	background: #ec7506;
	color: white;
	padding: 20px;
	height: 50%;
}

.jobinfo-container .rightside{
	position: relative;
	display: flex;
	justify-content: center;
	background: #dddddd;
	padding: 20px 40px;
	margin-left: 0px !important;
}

.jobinfo-container.flex-center{
	align-items: center;
}

.jobinfo-container.no-bg .rightside{
	background: none;
}

.jobinfo-container .span6.leftside{
	flex: 1;
}

.jobinfo-container .span6.leftside .top.full-height{
	height: 100%;
}

.top.full-height.flex-center{
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* Add some content at the bottom of the video/page */
#myVideo .content{
	position: fixed;
	bottom: 0;
	background: #ec7506cc;
	color: #f1f1f1;
	width: 100%;
	padding: 20px;
}

/* Style the button used to pause/play the video */
#myBtn{
	width: 80px;
	font-size: 18px;
	padding: 10px;
	border: none;
	background: #ec7506bb;
	color: #fff;
	cursor: pointer;
	position: absolute;
	bottom: 40px;
	left: calc(50% - 40px);
	border-radius: 100px;
}

#myBtn:hover{
	background: #ec7506;
}

.egv-column-fix{
	padding-left: 0;
}

.egv-column-fix > *{
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	height: 100%;
}