* {
	box-sizing: border-box;
}

body {
	background-color: #fff;
	background: #333;
	color: #373a3c;
	font-family: "Titillium Web", Arial, sans-serif !important;
	font-size: 1em;
	font-weight: 400;
	line-height: 1.5;
	transition: all 0.2s ease-in-out;
	-webkit-font-smoothing: antialiased;
}

h2 {
	position: relative;
	margin: auto;
	margin-bottom: 50px;
	text-align: center;
	font-size: 1.4em;
	font-weight: 600 !important;
}

h2::after {
	position: absolute;
	background: #82BE3C;
	content: "";
	top: -30px;
	width: 50px;
	height: 2px;
	left: calc(50% - 25px);
}

/*.fp-job-detail .description h2 br {
	display: none;
}*/


h3 {
	text-align: center;
}

p {
	text-align: center;
	font-size: 1em;
}

img {
	flex-shrink: 0;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

button {
	border-radius: 100%;
	-webkit-appearance: none;
}

.page-container {
	background: #f3f3f3;
	max-width: 100%;
	overflow: hidden;
}

.container {
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}

.row {
	display: flex;
	flex-wrap: wrap;
}

.fp-catpad {
	padding: 80px 0;
}

.fp-catpad-fix {
	padding-bottom: 40px;
}

.fixedPosition {
	/* position: fixed; */
	overflow: hidden;
}

/* NAVIGATION BAR */

.fp-header {
	z-index: 25;
	background: #333;
	position: fixed;
	top: 0;
	left: 0;
	height: 60px;
	width: 100%;
	box-shadow: 0 7px 10px 0 rgba(0, 0, 0, 0.05);
}

.fp-header_inner {
	display: flex;
	align-items: flex-start;
	position: relative;
	justify-content: space-between;
	padding-left: 111px;
}

.fp-header_cat_holder {
	display: flex;
	height: 100%;
}

.fp-header_cat_holder a:not(:first-of-type) {
	display: none;
}

.fp-header_logo {
	position: absolute;
	left: 0;
	top: 0;
}

.fp-burger {
	position: absolute;
	right: 0;
	top: 20px;
	cursor: pointer;
}

.fp-burger,
.fp-burger span {
	height: 18px;
}

.fp-burger span {
	display: block;
	width: 24px;
	height: 2px;
	background: #fff;
	-webkit-transform-origin: center;
	transform-origin: center;
}

.fp-burger span:not(:last-of-type) {
	margin-bottom: 5px;
}

.fp-MobileMenu {
	z-index: 15;
	position: fixed;
	background: #fff;
	top: 0;
	height: 100vh;
	width: 100vw;
	transform: translateX(100vw);
	-moz-transform: translateX(100vw);
	-webkit-transform: translateX(100vw);
	-ms-transform: translateX(100vw);
	transition: 0.3s all ease-in-out;
}

.fp-MobileMenu--active {
	background: #fff;
	transform: translateX(0);
	-moz-transform: translateX(0);
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transition: 0.3s all ease-in-out;
}

.fp-MobileMenu--close {
	position: absolute;
	right: 15px;
	top: 75px;
	width: 24px;
	height: 24px;
	cursor: pointer;
}

.fp-header_logo img {
	width: 80px;
	height: 80px;
}

.fp-header_cat {
	font-size: 0.9em;
	color: #fff;
	text-transform: uppercase;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	width: 100px;
	height: 100%;
	max-height: 60px;
	background: #333;
	cursor: pointer;
	position: relative;
	transition: all 0.2s ease-in-out;
}

.fp-header_cat_mobile {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: left;
	margin: 20px auto;
	font-size: 1em;
	text-transform: uppercase;
	color: #333;
	background: none;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
}

.fp-header_cat_mobile img {
	position: relative;
	margin-right: 25px;
	margin-bottom: 0;
	width: 50px;
	height: 50px;
}

.fp-MobileMenu--links {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 125px;
}

.fp-MobileMenu--links a::after {
	position: absolute;
	content: "";
	width: 90%;
	height: 2px;
	left: 5%;
	right: 5%;
	background-color: #f3f3f3;
}

.fp-MobileMenu--links a:last-of-type::after {
	display: none;
}

.fp-header_cat_mobile::after {
	position: absolute;
	content: url("../images/chevron.svg");
	width: 8px;
	height: 8px;
	right: 5%;
	margin-top: -8px;
}

.fp-header_cat:hover {
	background: #5e5e5e;
	transition: all 0.2s ease-in-out;
}

.header_svgs {
	max-height: 35px;
	width: auto;
	margin-bottom: 5px;
}

.nav_shoplink {
	position: absolute;
	right: 0;
	top: 0;
	padding: 0;
}

/* NAVIGATION BAR END*/

.fp-hero {
	margin-top: 60px;
	height: 350px;
	background: #fff;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
}

.fp-hero-header {
	z-index: 24;
	position: absolute;
	top: 20%;
	left: 5%;
	width: 90%;
	margin: 0 auto;
	padding: 5px;
	text-align: center;
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0 5px 10px rgba(51, 51, 51, 0.2);
	font-size: 0.8em;
}

.fp-hero-header-title {
	position: absolute;
	left: 5%;
	top: -30px;
	background: #A50A50;
	color: #fff;
	padding: 10px;
	font-size: 1.3em;
	text-transform: uppercase;
	box-shadow: 0 5px 10px rgba(51, 51, 51, 0.2);
	transition: all 0.2s ease-in-out;
}

.fp-hero-header p {
	width: 90%;
	padding: 20px 0;
	margin: 0 auto;
	text-align: left;
	font-size: 1.1em;
}

.go_to_jobs {
	position: absolute;
	right: 5%;
	bottom: -25px;
	background: #82BE3C;
	color: #fff;
	padding: 10px;
	font-size: 1.3em;
	text-transform: uppercase;
	box-shadow: 0 5px 10px rgba(51, 51, 51, 0.2);
	transition: all 0.2s ease-in-out !important;
}

.go_to_jobs:hover {
	transform: scale(1.05) !important;
	box-shadow: 0 16px 10px -12px rgba(0, 0, 0, 0.4);
	transition: all 0.2s ease-in-out !important;
}

.fp-hero .swiper-container {
	height: 100%;
}

.swiper-container {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.swiper-button-prev,
.swiper-button-next {
	position: absolute;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 20;
	height: 30px;
	width: 30px;
	border-radius: 100%;
	background: #fff;
	box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
}

.fp-story .swiper-button-prev,
.fp-story .swiper-button-next {
	display: flex;
	flex-direction: column;
	-ms-flex-direction: column;
}

.fp-gradient {
	position: absolute;
	width: 20%;
	height: 100%;
	top: 0;
	z-index: 5;
	pointer-events: none;
}

.fp-gradient-left {
	left: -2px;
	background-image: -webkit-gradient(
		linear,
		right top,
		left top,
		from(rgba(243, 243, 243, 0)),
		to(#ffffff)
	);
	background-image: linear-gradient(
		270deg,
		rgba(243, 243, 243, 0) 0%,
		#ffffff 100%
	);
}

.fp-gradient-right {
	right: -2px;
	background-image: -webkit-gradient(
		linear,
		left top,
		right top,
		from(rgba(243, 243, 243, 0)),
		to(#ffffff)
	);
	background-image: linear-gradient(
		90deg,
		rgba(243, 243, 243, 0) 0%,
		#ffffff 100%
	);
}

.swiper-pagination {
	position: absolute;
	left: 0;
	bottom: 0 !important;
	width: 100%;
	padding: 2px 0 4px 0;
	margin: 0 auto;
	background: #82BE3C;
}

.swiper-pagination-bullet {
	background: #82BE3C;
	border: 2px solid #f3f3f3;
	bottom: 0;
	align-items: center;
	transition: 0.2s all ease-in-out;
}

.swiper-pagination-bullet-active {
	background: #fff;
	transition: 0.2s all ease-in-out;
}

.swiper-button-prev img,
.swiper-button-next img {
	height: 12px;
	min-height: 12px;
	width: 6px;
	min-width: 6px;
	vertical-align: middle;
	border-style: none;
}

.swiper-button-prev img {
	transform: rotate(180deg);
	margin-right: 5px;
}

.swiper-slide img {
	height: 100%;
	width: auto;
}

/* .fp-badge-green {
	background-image: url("../images/fp-badge-green.png");
	background-size: 50%;
	background-repeat: no-repeat;
	background-position: bottom right;
} */

.fp-facts .row,
.fp-numbers .row {
	justify-content: center;
}

.fp-facts .row div,
.fp-numbers .row div {
	padding: 20px;
	text-align: center;
}

.fp-facts h2 {
	margin-bottom: 10px;
}

.fp-facts h3,
.fp-numbers h3 {
	font-size: 1.3em;
	font-weight: 600;
	margin: 10px auto;
}

.fp-facts img,
.fp-numbers img {
	height: 50px;
	width: auto;
}

.fp-facts .container p {
	font-size: 0.8em;
	margin: 0 auto;
	width: 90%;
}

.fp-facts .container .row p {
	width: 90%;
	text-align: center;
	margin: 0 auto;
}

.fp-facts .container > p {
	margin-bottom: 30px;
}

.fp-employer h2 {
	margin-bottom: 50px;
}

.fp-employer h3 {
	font-weight: 600;
	font-size: 1.1em;
	width: 100px;
	margin-left: auto;
	margin-right: auto;
}

.fp-service_item.active {
	transition: all 0.3s ease-in-out;
}

.fp-employer p {
	max-height: 0;
	overflow: hidden;
	font-size: 0.8em;
	width: 100% !important;
	transition: all 0.2s ease-in-out;
}

.fp-service_item.active p {
	max-height: 500px !important;
	transition: all 0.2s ease-in-out;
}

.fp-numbers img,
.fp-employer img {
	height: 50px;
	width: auto;
}

.fp-story {
	background: #fff;
	margin: 0 auto;
	text-align: center;
}

.fp-story img {
	/* max-height: 900px; */
	max-height: 650px;
	margin: 0 auto;
}

.fp-story-date {
	font-size: 1.5em;
	color: #A50A50;
	margin: 10px auto;
}

.owl-stage {
	margin-top: 25px;
}

.fp-story-timeline-divs {
	display: flex;
	flex-direction: column;
	-ms-flex-direction: column;
	position: relative;
	height: 200px;
	justify-content: center;
	align-items: center;
	margin-top: 1%;
	background-color: #5e5e5e;
	background-size: 100% auto !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
}

.fp-story-city-headers {
	position: relative;
	margin-bottom: -66%;
	align-self: center;
	width: 80%;
	padding: 1px 0;
	font-size: 1em;
	text-transform: uppercase;
	color: #fff;
	background: #A50A50;
}

.fp-story-city-desc {
	position: absolute;
	top: 5%;
	left: 0;
	align-self: center;
	width: 100%;
	margin: 0 auto;
	font-size: 1em;
	font-weight: 600;
	text-align: center;
}

.fp-location-owl .fp-story-city-headers {
	position: absolute;
	bottom: 0;
	left: 10%;
	margin-bottom: -5%;
	align-self: center;
	width: 80%;
	padding: 1px 0;
	font-size: 1em;
	text-transform: uppercase;
	color: #fff;
	background: #A50A50;
}

.fp-location-owl .fp-story-city-desc {
	position: absolute;
	top: 5%;
	font-size: 1em;
	font-weight: 600;
	text-align: center;
}

.fp-social-media {
	background: #494949;
}

.fp-social-media h2 {
	color: #fff;
}

#fb-root {
	padding-top: 5px;
}

/* .fb_reset {
  padding-left: 15px !important;
  padding-right: 15px !important;
} */

/* .fb-post > span {
  background: rgb(105, 105, 105);
} */

.social_media_svg {
	width: 25px;
	height: 25px;
}

.grn-span {
	color: #82BE3C;
	text-transform: uppercase;
}

.fp-job-row {
	margin: 0;
}

.fp-job-cats {
	padding: 150px 0 60px 0;
	background-color: #fff;
}

.fp-job-cats > h2 {
	margin-bottom: 0;
}

.fp-job-cats .job-cats {
	position: relative;
	height: 250px;
	max-height: 250px;
	width: 100%;
	margin: 15px auto;
	text-align: center;
	padding: 0 !important;
	transition: 0.2s all ease-in-out;
}

.fp-job-cats .cat-1,
.fp-job-cats .cat-2 {
	background-size: 150%;
	background-position: center;
	background-repeat: no-repeat;
}

.fp-job-cats .cat-1 {
	background-image: url("../images/fp-jobs/AuslieferungUndLager.jpg");
}

.fp-job-cats .cat-2 {
	background-image: url("../images/fp-jobs/Headquarter.jpg");
}

.darken {
	display: flex;
	opacity: 1;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.35);
	transition: 0.2s all ease-in-out;
}

.job-cats .cat-h {
	align-self: center;
	text-align: center;
	margin: 0 auto;
	font-size: 1.3em;
	font-weight: 600;
	text-transform: uppercase;
	color: #fff;
}

/* .fp-job-cats .job-cats:hover {
  background-size: 103%;
  transition: 0.2s all ease-in-out;
} */

.fp-job-cats .job-cats:hover .darken {
	opacity: 0;
	transition: 0.2s all ease-in-out;
}

.fp-job-cats .job-cats:hover .cat-sh {
	transform: scale(1.05);
	/* box-shadow: 0 5px 10px rgba(51, 51, 51, 0.2); */
	box-shadow: 0 16px 10px -12px rgba(0, 0, 0, 0.2);
	transition: 0.2s all ease-in-out;
}

.cat-sh {
	position: absolute;
	bottom: -15px;
	opacity: 1;
	width: 50%;
	left: 25%;
	margin: 0 auto;
	padding: 2px 0;
	text-align: center;
	font-size: 1.3em;
	text-transform: uppercase;
	color: #fff;
	background-color: #82BE3C;
	transition: 0.2s all ease-in-out;
}

.cat-h {
	top: 50%;
	left: 25%;
}

.fp-jobs {
	margin: 150px auto 50px auto;
}

.fp-jobs h3 {
	z-index: 10;
	width: 90%;
	margin: 0 auto;
	margin-bottom: 1%;
	text-align: center;
	font-size: 1.1em;
	user-select: none;
	-moz-user-select: -moz-none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

.back-to-selection {
	position: relative;
}

.hide-jobs {
	display: none;
}

.jobs-flex-container .container > .row {
	margin-left: -25px;
}

.col-xs-6 {
	width: 50%;
	padding: 0;
}

.two-city-row:first-of-type {
	margin-top: 35px;
}

.row-jobs {
	display: none;
	width: 100%;
	padding-left: 10px;
	padding-right: 0;
}

.row-jobs h3 {
	text-transform: uppercase;
	font-weight: 600;
}

.toggle-jobs-one,
.toggle-jobs-two {
	overflow: hidden;
}

.job-desc-header {
	margin: 10px auto !important;
}

.job-desc {
	width: 100%;
	margin: 10px auto;
}

.job-desc:nth-of-type(2n) {
	align-self: flex-end;
}

.job-city-container {
	display: flex;
	height: calc(230px / 2);
	width: 96%;
	margin: 10px 10px 0 10px;
	justify-content: center;
	align-items: center;
	background-color: #5e5e5e;
	background-size: 125% auto !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	color: #fff;
	text-transform: uppercase;
	cursor: pointer;
	transition: 250ms all ease;
}

/* .job-city-container:hover {
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.25);
  transition: 250ms all ease;
} */

.fp-jobs .darken {
	position: absolute;
	left: 0;
	top: 0;
	margin: 10px;
	height: calc(230px / 2);
	width: 96%;
	background-color: rgba(0, 0, 0, 0.5);
	transition: none;
}

.col-jobs {
	display: flex;
	justify-content: space-evenly;
	background-color: #fff;
	position: relative;
}

.col-jobs > * {
	width: 50%;
}

.col-jobs:nth-of-type(2n) {
	background-color: #f3f3f3;
}

.col-jobs a {
	display: flex;
	flex-direction: row;
	justify-content: center;
	width: 100%;
}

.col-jobs p {
	width: 50%;
	text-align: center;
	margin: 8px 0;
	font-size: 0.8em;
	color: #333;
}

.col-jobs a p:first-of-type {
	text-decoration: underline rgba(255, 255, 255, 0);
	transition: all 0.2s ease-in-out;
}

.col-jobs a:hover p:first-of-type {
	color: #82BE3C;
	text-decoration: underline;
	transition: all 0.2s ease-in-out;
}

.col-jobs .new-job-badge {
	position: absolute;
	right: 0;
	background-color: #82BE3C;
	color: #fff;
	max-width: 40px;
	padding: 0 2px;
	font-size: 0.8em;
}

.fp-slider-holder {
	/* height: 550px; */
	background: #e5e5e5;
}

.fp-slider-holder .swiper-slide div {
	position: absolute;
}

.fp-slider-holder .swiper-slide img {
	height: 60% !important;
}

.fp-slider-holder .swiper-slide img,
.fp-slider-holder .swiper-slide .swiper-desc {
	box-shadow: 0 16px 10px -12px rgba(0, 0, 0, 0.2);
}

.fp-slider-holder .swiper-pagination {
	background: none;
}

.fp-slider-holder .swiper-pagination-bullet {
	border: 2px solid rgb(128, 128, 128);
	background: none;
}

.fp-slider-holder .swiper-pagination-bullet-active {
	background: rgb(128, 128, 128);
}

.fp-location-owl {
	height: 285px;
}

.fp-location-owl .container > h2 {
	margin: 0 auto;
	padding-bottom: 10px;
}

.fp-location-owl .fp-story-timeline-divs {
	display: flex;
	position: relative;
	height: 100px;
	justify-content: center;
	align-items: center;
	margin-top: -15px;
	/* margin-bottom: 20px; */
	background-size: 100% auto;
}

.fp-location-owl .owl-stage-outer {
	height: 150px;
}

.fp-location-owl .owl-item {
	height: 150px;
}

.fp-location-owl .owl-nav div {
	top: 45%;
}

.fp-locations h2 {
	top: 80px;
	margin-bottom: 100px;
}

.fp-locations {
	height: 650px;
	background-color: #fff;
}

.fp-location-swiper {
	height: 425px;
}

.fp-locations .swiper-container {
	width: 100%;
	/* height: 100%; */
}

.fp-locations .swiper-wrapper {
	height: 650px;
}

.fp-locations .swiper-container .swiper-slide {
	display: flex;
	justify-content: center;
	overflow: hidden;
	/* margin-right: 275px; */
}

.fp-locations .swiper-desc {
	display: flex;
	align-items: center;
	width: auto;
	width: 180px;
	padding: 0 25px;
	height: 40px;
	background-color: #A50A50;
	color: #fff;
	text-transform: uppercase;
	position: absolute;
	top: 22%;
	box-shadow: 0 16px 10px -12px rgba(0, 0, 0, 0.2);
}

.fp-locations .swiper-desc p {
	margin: 0 auto;
	font-size: 1.1em;
}

.fp-locations .swiper-slide img {
	height: 25%;
	width: auto;
	box-shadow: 0 16px 10px -12px rgba(0, 0, 0, 0.2);
}

.fp-locations .swiper-pagination {
	background: none;
	bottom: 50px !important;
}

.fp-locations .swiper-pagination .swiper-pagination-bullet {
	opacity: 1;
	width: 10px;
	height: 10px;
	border: 2px solid #82BE3C;
	background: none;
}

.fp-locations .swiper-pagination .swiper-pagination-bullet-active {
	background: #82BE3C;
	border: 2px solid #82BE3C;
}

.fp-process {
	display: none;
	background-color: #fff;
	/* background-image: url("../images/fp-badge-green.png");
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: 25%; */
	text-align: center;
}

.fp-process > h2 {
	margin-bottom: 100px;
}

.fp-process-mobile > h2 {
	margin-bottom: 25px;
}

.fp-process-mobile p {
	font-size: 0.9em;
}

.fp-process .each-process {
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 auto;
	overflow: hidden;
}

.each-process::before {
	z-index: -1;
	content: "";
	position: absolute;
	bottom: 52%;
	left: 0;
	height: 6px;
	width: 100%;
	background-color: #dddddd;
}

.each-process:first-of-type::before {
	right: inherit;
	left: 50%;
}

.each-process:last-of-type::before {
	left: inherit;
	right: 50%;
}

.each-process > * {
	margin: 12px auto;
}

.each-process img {
	height: 100px;
	width: auto;
}

.process-count {
	display: flex;
	align-items: center;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background-color: #fff;
	color: #82BE3C;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.process-count h3 {
	margin: 0 auto;
	font-size: 1.3em;
	font-weight: 600;
}

.each-process .process-sh {
	font-size: 1.2em;
	font-weight: 600;
}

.each-process .process-desc {
	width: 100%;
	word-break: break-word;
}

.fp-process-mobile {
	display: block;
	padding-bottom: 40px;
}

.fp-process-mobile .each-process > * {
	margin: 8px auto;
}

.fp-process-mobile .each-process::before {
	position: absolute;
	width: 6px;
	height: 100%;
	top: 0;
	left: 17px;
	margin-left: 25px;
}

.fp-process-mobile .each-process:first-of-type::before {
	top: 25%;
}

.fp-process-mobile .each-process:last-of-type::before {
	top: -80%;
}

.fp-process-mobile .process-count {
	position: absolute;
	left: 0;
	top: 15%;
	margin-left: 25px;
}

.fp-process-mobile .each-process .process-desc {
	width: 70%;
}

.fp-process-mobile .each-process img {
	height: 50px;
}

.fp-process-mobile .each-process p {
	margin: 5px auto 20px auto;
}

.fp-professions,
.fp-people {
	background-color: #f3f3f3;
}

.fp-professions .row {
	/* justify-content: space-evenly; */
	justify-content: center;
}

.fp-professions .each-profession {
	display: flex;
	flex-direction: column;
	text-align: center;
	overflow: hidden;
	margin: 0 10px;
}

.fp-professions .each-profession:first-of-type {
	margin-bottom: 50px;
}

.each-profession img {
	width: 100%;
	height: auto;
	box-shadow: 0 16px 10px -12px rgba(0, 0, 0, 0.2);
}

.fp-professions .profession-tile {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 60%;
}

.fp-professions .profession-desc {
	z-index: 10;
	display: flex;
	width: 70%;
	justify-content: center;
	margin: 0 auto;
	margin-top: -20px;
	background: #A50A50;
	box-shadow: 0 16px 10px -12px rgba(0, 0, 0, 0.2);
}

@media (min-width: 1200px) {
	.fp-professions .profession-tile {
		height: 42%;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.fp-professions .profession-tile {
		height: 36%;
	}
}

@media (max-width: 450px) {
	.fp-professions .profession-desc {
		width: 75%;
	}
}

.profession-desc p {
	color: #fff;
	align-self: center;
	text-transform: uppercase;
	margin: 0;
	padding: 7px 0;
	font-size: 1em;
}

.profession-desc p::after {
	content: "/in";
	opacity: 0.7;
	padding-left: 2px;
}

.fp-professions .profession-sh {
	display: flex;
	align-items: center;
	width: 300px;
	height: 50px;
	margin: 0 auto;
	background-color: #A50A50;
	color: #fff;
	text-transform: uppercase;
	position: absolute;
	bottom: 30%;
	left: 25%;
}

.profession-sh h3 {
	font-size: 1.4em;
	margin: 0 auto;
}

.profession-facts {
	margin: 20px auto;
}

.profession-facts ul {
	text-align: left;
	padding-left: 0;
	width: 100%;
	list-style: none;
}

.profession-facts ul li {
	width: 95%;
	margin: 10px auto;
	font-size: 1em;
	word-break: normal;
	padding-left: 2em;
}

.profession-facts ul li:before {
	content: url("../images/checked.svg");
	background-size: 20px 15px;
	width: 20px;
	height: 10px;
	display: inline-block;
	position: absolute;
	left: 1em;
	padding-top: 2px;
}

.fp-people {
	background: #fff;
	/* height: 500px; */
	padding-bottom: 0;
}

.fp-people .swiper-slide > .container {
	width: 100%;
}

.fp-people h2 {
	margin-bottom: 25px;
}

.fp-people .row {
	justify-content: center;
	/* max-height: 300px; */
}

.fp-people .fp-people-text,
.fp-people .fp-people-image {
	justify-content: center;
	margin-bottom: -25px;
}

.fp-people .fp-people-text {
	/* width: 50%; */
	align-self: center;
	margin: 0;
	margin-left: 5px;
}

.fp-people .fp-people-text p {
	width: 90%;
	margin: 0 auto;
	margin-bottom: 20px;
	font-size: 0.9em;
}

.fp-people .fp-people-text p:last-of-type {
	margin-top: 20px;
	margin-bottom: 20px;
	display: none;
}

.fp-people .fp-people-image {
	display: flex;
	width: 100%;
	text-align: center;
	align-self: flex-end;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.fp-people-image img {
	max-width: 45%;
	height: auto;
	margin: 0 auto;
	flex-shrink: 0;
}

.fp-people-image p {
	display: block;
	max-width: 30%;
	height: 100%;
	margin-top: 0;
	margin-left: 15%;
	font-size: 0.8em;
}

.fp-people .swiper-button-prev,
.fp-people .swiper-button-next {
	top: 40%;
}

.fp-people .swiper-pagination {
	background: none;
}

.fp-people .swiper-pagination .swiper-pagination-bullet {
	opacity: 1;
	width: 10px;
	height: 10px;
	border: 2px solid #82BE3C;
	background: none;
}

.fp-people .swiper-pagination .swiper-pagination-bullet-active {
	background: #82BE3C;
	border: 2px solid #82BE3C;
}

.fp-people .fp-gradient {
	display: flex;
	width: 5%;
}

.fp-all-people {
	width: 100%;
	overflow: hidden;
}

.fp-all-people img {
	display: block;
	width: 100%;
	clip: rect(0, 0, 500px, 0);
	opacity: 0.8;
	margin-left: auto;
	margin-right: auto;
}

.fp-contacts {
	/* background: url("../images/fp-teams/hr-team.jpg");
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat; */
	background-color: #494949;
	background: url("../images/contact-bg2.jpg");
	background-size: auto 100%;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
	padding: 60px 0 40px 0;
}

.fp-contacts .contact-row {
	display: flex;
	justify-content: center;
	/* margin-top: 10%; */
}

.fp-contacts h2 {
	color: #fff;
	margin-top: 25px;
	margin-bottom: 25px;
	/* padding-bottom: 25px; */
}

.fp-contacts .contact-tile {
	display: flex;
	justify-content: center;
	height: 60px;
	width: 260px;
	margin: 15px;
	text-align: center;
	/* background-color: rgba(255, 255, 255, 0.2); */
	border: 2px solid #fff;
}

.fp-contacts .contact-tile-faq {
	background-color: #82BE3C;
	border: none;
}

.fp-contacts .contact-row h3 {
	color: #fff;
	font-size: 1em;
	margin-bottom: 0;
	align-self: center;
}

.fp-contacts a {
	color: #fff;
}

.white-bg-fix {
	background: #fff !important;
}

.faq-choose {
	display: inline-block;
	width: 100%;
}

.fp-faq {
	min-height: calc(100vh - 76px);
	padding-top: 150px;
	/* background-image: url("../images/fp-badge.png");
	background-repeat: no-repeat;
	background-position: bottom right; */
}

.fp-faq a {
	color: #82BE3C;
	font-weight: 600;
}

.faq-pad {
	padding: 20px 0;
}

.fp-faq .container h3 {
	padding: 0;
	font-size: 1.1em;
	font-weight: 600;
}

.fp-faq-cats h3 {
	text-transform: uppercase;
	user-select: none;
}

.fp-faq .fp-question h3 {
	display: flex;
	flex-direction: row;
	font-weight: 400;
	color: #000;
	font-size: 1em;
	padding: 15px 0;
	margin-bottom: 0;
}

.fp-faq .fp-question img {
	width: 12px;
	height: 12px;
	margin-right: 12px;
	align-self: center;
	vertical-align: middle;
	transform: rotate(45deg);
	transition: all 250ms ease;
}

.fp-faq .fp-question-title {
	text-align: left;
}

.fp-faq-cats {
	background: #fff;
	margin: 0 auto;
	text-align: center;
	height: 150px;
	width: 45%;
	border: 2px solid rgb(230, 230, 230);
	transition: 0.3s;
	cursor: pointer;
}

.fp-faq-headers {
	padding: 25px 0;
	font-size: 1.3em;
	text-align: center;
}

.fp-question-title {
	cursor: pointer;
}

#faq-one,
#faq-two {
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
}

#faq-one {
	background-image: url('../images/fp-faq/FAQ_AuslieferungUndLager.jpg');
}

#faq-two {
	background-image: url('../images/fp-faq/FAQ_HQ.jpg');
}

.faq-darken {
	z-index: 1;
	position: absolute;
	background-color: rgba(0, 0, 0, 0.4);
	top: 0;
	width: 100%;
	height: 100%;
	padding: 20px;
	transition: all 0.3s ease-in-out;
}

#faq-one > h3,
#faq-two > h3 {
	z-index: 10;
	font-size: 1em;
	text-align: center;
	margin: 0 auto;
}

.fp-faq-cats h3 {
	font-weight: 600;
	color: #fff;
	transition: 0.3s all ease-in-out;
}

.active-faq-one, .active-faq-two {
	border-color: #82BE3C;
	transition: all 0.3s ease-in-out;
}

.active-faq-one .faq-darken,
.active-faq-two .faq-darken {
	opacity: 0;
	transition: all 0.3s ease-in-out;
}

.faq-cat-two {
	display: none;
}

.inactive p {
	display: none;
}

.fp-faq .fp-question {
	border-bottom: 1px solid #82BE3C;
}

.fp-faq .fp-question:last-of-type {
	border: none;
}

.fp-faq .swiper-slide h3 {
	text-align: left;
}

.rotate-close {
	transform: rotate(0deg) !important;
}

.fp-question p {
	text-align: left;
	padding-left: 24px;
	font-size: 0.9em;
	color: #5e5e5e;
}

.fp-imprint,
.fp-privacy {
	margin-top: 40px;
}

.fp-imprint {
	min-height: calc(100vh - 146px);
}

/* .fp-privacy {
	background-image: url("../images/fp-badge.png");
	background-repeat: no-repeat;
	background-position: bottom right;
} */

.fp-privacy h4 {
	margin: 30px auto 15px auto;
}

.page--minHeight {
	min-height: 100vh;
	overflow: hidden;
	background: #fff;
	/* background-image: url("../images/fp-badge.png");
	background-repeat: no-repeat;
	background-position: bottom right; */
}

.fp-privacy-container,
.fp-imprint-container {
	margin-left: 20px;
	margin-right: 20px;
}

.fp-imprint a,
.fp-privacy a {
	color: #82BE3C;
	text-decoration: underline;
}

.fp-imprint p,
.fp-privacy p {
	margin: 0 auto;
	margin-bottom: 50px;
	text-align: left;
	font-size: 0.9em;
}

.fp-privacy h4 {
	font-weight: 600;
}

.fp-privacy h3 {
	font-size: 1.1em;
}

.fp-privacy p {
	margin-bottom: 30px;
}

.fp-privacy ul li {
	font-size: 0.9em;
}

.fp-privacy .h-in {
	margin-left: 25px;
}

.fp-privacy .h-in-in {
	margin-left: 50px;
}

.fp-privacy a {
	text-decoration: underline;
}

#back-to-top {
	position: fixed;
	bottom: 5%;
	right: -3%;
	z-index: 30;
	width: 35px;
	height: 35px;
	text-align: center;
	line-height: 30px;
	background: #82BE3C;
	color: #fff;
	cursor: pointer;
	border: 0;
	border-radius: 10px 0 0 10px;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
	opacity: 0;
}

#back-to-top img {
	width: 50%;
	height: 50%;
}

#back-to-top.show {
	right: 0;
	opacity: 0.95;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
	transition: all 0.2s ease-in-out;
}

#back-to-top.show:hover {
	transform: scale(1.1);
	transition: all 0.2s ease-in-out;
}

.fp-footer {
	height: 100px;
	background: #333;
}

.fp-footer .container {
	padding: 20px 0;
}

.fp-footer_flex {
	height: 70px;
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	justify-content: space-between;
	text-align: center;
}

.fp-footer_flex p {
	font-size: 14px;
	color: #fff;
	line-height: 18px;
	margin: 0;
}

.fp-footer_flex * {
	flex: 1;
}

.fp-footer_flex a:not(:first-of-type) {
	margin-left: 10px;
}

.fp-footer_flex a {
	font-size: 14px;
	color: #fff;
	line-height: 18px;
	margin: 0;
}

.fp-footer_company {
	text-align: left;
}

.fp-footer_nav {
	text-align: right;
}

/*RESPONSIVE*/
@media (min-width: 450px) {
	.fp-hero {
		height: 400px;
	}

	.fp-hero-header {
		top: 25%;
	}

	.fp-hero-header p {
		padding: 25px 0;
	}

	.fp-story-timeline-divs {
		margin-top: 5%;
	}

	.fp-story-city-desc {
		top: -3%;
	}

	.fp-job-cats .cat-1,
	.fp-job-cats .cat-2 {
		background-size: 100%;
		background-position: center;
		background-repeat: no-repeat;
	}

	.fp-location-owl .fp-story-timeline-divs {
		height: 125px;
	}

	.swiper-button-next, .swiper-button-prev {
		margin-top: -10px;
	}

	.fp-people .fp-people-text p,
	.fp-people-image p {
		font-size: 1em;
	}

	.fp-employer h3 {
		width: 100%;
	}

	.profession-desc p {
		font-size: 1.1em;
	}

	#faq-one, #faq-two {
		background-size: 100% auto;
	}
}

@media (min-width: 576px) {
	.container {
		width: 540px;
		max-width: 100%;
	}

	.fp-jobs .container {
		width: 100%;
	}

	.row {
		margin-right: -15px;
		margin-left: -15px;
	}

	h2 {
		font-size: 1.8em;
	}

	.fp-header_cat_holder a:not(:first-of-type) {
		display: block;
	}

	.fp-header_logo img {
		width: 111px;
		height: 111px;
	}

	.fp-burger span {
		display: none;
	}

	.fp-header {
		height: auto;
	}

	.fp-header_cat {
		max-height: 76px;
	}

	.fp-hero {
		height: 600px;
		margin-top: 76px;
	}

	.fp-hero-header {
		top: 30%;
		left: 5%;
		margin: 0 auto;
		text-align: center;
		font-size: 1em;
	}

	.fp-hero-header p {
		width: 80%;
	}

	.swiper-pagination {
		padding: 5px 0 7px 0;
	}

	.fp-story-timeline-divs {
		margin-top: 50px;
		margin-bottom: 20px;
	}

	.fp-story-city-headers {
		width: 75%;
		padding: 2px 0;
		font-size: 1.3em;
		text-transform: uppercase;
		color: #fff;
		background: #A50A50;
	}

	.fp-story-city-desc {
		top: -40px;
		font-size: 1.3em;
	}

	.fp-location-owl .fp-story-city-headers {
		font-size: 1.3em;
	}

	.swiper-button-next, .swiper-button-prev {
		margin-top: -22px;
	}

	.fp-story .swiper-button-prev, .fp-story .swiper-container-rtl .swiper-button-next {
		left: -25px;
	}

	.fp-story .swiper-button-next, .fp-story .swiper-container-rtl .swiper-button-prev {
		right: -25px;
	}

	.fp-job-cats .job-cats {
		height: 400px;
		max-height: 400px;
		margin: 25px auto;
	}

	.fp-job-cats .cat-1,
	.fp-job-cats .cat-2 {
		background-size: 100%;
	}

	.row-jobs {
		padding-left: 0;
		padding-right: 12px;
	}

	.job-desc-header {
		padding-left: 15px;
	}

	.fp-people .swiper-slide > .container {
		width: 100%;
	}

	.fp-people .fp-gradient {
		display: flex;
		width: 15%;
	}

	.fp-people .fp-people-text {
		margin: 0;
		width: 50%;
	}

	.fp-people .fp-people-text p {
		font-size: 1em;
		width: 100%;
	}

	.fp-people .fp-people-text p:last-of-type {
		margin-top: 10px;
		display: block;
	}

	.fp-people .fp-people-image {
		display: block;
		width: 30%;
	}

	.fp-people .fp-people-image img {
		max-width: 100%;
	}

	.fp-people-image p {
		display: none;
	}

	.swiper-button-prev,
	.swiper-button-next {
		height: 50px;
		width: 50px;
	}

	.swiper-button-prev img,
	.swiper-button-next img {
		height: 19px;
		min-height: 19px;
		width: 12px;
		min-width: 12px;
	}

	.fp-facts img,
	.fp-numbers img {
		height: 80px;
		width: auto;
	}

	.fp-facts .container p {
		font-size: 0.9em;
	}

	.fp-facts .container > p {
		margin-bottom: 30px;
	}

	.fp-facts .container .row p {
		width: 80%;
		text-align: center;
		margin: 0 auto;
		padding: 0;
	}

	.fp-employer p {
		font-size: 1em;
	}

	.fp-process-mobile .each-process .process-desc {
		width: 60%;
	}

	.fp-process-mobile .each-process img {
		height: 75px;
	}

	.fp-process-mobile p {
		font-size: 1em;
	}

	.process-count {
		width: 50px;
		height: 50px;
	}

	.process-count h3 {
		font-size: 1.5em;
	}

	.fp-process-mobile .each-process::before {
		left: 22px;
	}

	.profession-desc p {
		color: #fff;
		align-self: center;
		text-transform: uppercase;
		margin: 0;
		padding: 7px 0;
	}

	.profession-facts ul li {
		width: 100%;
		margin: 20px auto;
		font-size: 1em;
		padding-left: 40px;
	}

	.job-city-container {
		display: flex;
		height: 160px;
		/* margin: 10px; */
		justify-content: center;
		align-items: center;
		background-color: #5e5e5e;
		background-size: 100% auto !important;
		background-position: center !important;
		background-repeat: no-repeat !important;
		color: #fff;
		text-transform: uppercase;
		cursor: pointer;
		transition: 250ms all ease;
	}

	.fp-jobs h3 {
		font-size: 1.4em;
	}

	.col-jobs p {
		font-size: 1em;
	}

	.job-desc {
		margin-left: 10px;
	}

	.col-jobs .new-job-badge {
		font-size: 1em;
	}

	.fp-jobs .darken {
		position: absolute;
		left: 0;
		top: 0;
		margin: 10px;
		height: 230px;
		width: 96%;
		background-color: rgba(0, 0, 0, 0.5);
		transition: none;
	}

	.fp-location-swiper {
		height: 425px;
	}

	.fp-location-owl .fp-story-city-headers {
		margin-bottom: 0;
	}

	.fp-locations .swiper-slide img {
		height: 25%;
		width: auto;
	}

	.fp-locations .swiper-desc p {
		margin: 0 auto;
		font-size: 1.2em;
	}

	.fp-catpad-fix {
		padding-bottom: 40px;
	}

	.fp-location-owl {
		height: 400px;
	}

	.fp-location-owl .owl-stage-outer {
		height: 285px;
	}

	.fp-location-owl .fp-story-timeline-divs {
		display: flex;
		position: relative;
		height: 200px;
		justify-content: center;
		align-items: center;
		margin-top: 0px;
	}

	.fp-location-owl .container > h2 {
		padding-bottom: 0;
	}

	.fp-story-city-headers {
		font-size: 1.3em;
	}

	.each-process .process-sh {
		font-size: 1.5em;
	}

	.fp-faq .container h3 {
		padding: 20px 0;
		font-size: 1.3em;
	}

	.fp-faq-cats {
		height: 200px;
		width: 45%;
	}

	#faq-one, #faq-two {
		background-size: auto 100%;
	}

	#faq-one > h3,
	#faq-two > h3 {
		left: 25%;
		right: 25%;
		font-size: 1.3em;
	}

	.fp-faq .fp-question h3 {
		font-size: 1.2em;
	}

	.fp-faq .fp-question img {
		width: 17px;
		margin-right: 10px;
	}

	.fp-question p {
		font-size: 1em;
	}

	.fp-privacy-container,
	.fp-imprint-container {
		margin: 0;
	}

	.fp-imprint,
	.fp-privacy {
		margin-top: 80px;
	}

	.fp-privacy h3 {
		font-size: 1.3em;
	}

	.fp-imprint p,
	.fp-privacy p {
		margin: 0 auto;
		text-align: left;
		font-size: 1.1em;
	}

	.fp-privacy ul li {
		font-size: 1.1em;
	}

	.fp-contacts {
		height: unset;
	}

	´ .fp-contacts h2 {
		padding-bottom: 50px;
	}

	.fp-contacts .contact-tile {
		width: 50%;
		height: 70px;
	}

	.fp-contacts .contact-row {
		/* margin-top: -30px; */
		margin-bottom: 10px;
	}

	.fp-contacts .contact-row h3 {
		font-size: 1em;
	}
}

@media (min-width: 768px) {
	.container {
		width: 720px;
		max-width: 100%;
	}

	.fp-jobs .container {
		width: 720px;
		max-width: 100%;
	}

	.row {
		margin-right: -15px;
		margin-left: -15px;
	}

	.fp-hero {
		height: 700px;
	}

	.fp-header_cat {
		font-size: 0.9em;
		width: 125px;
		padding: 10px 20px;
	}

	.fp-hero-header {
		top: 35%;
		width: 70%;
		left: 15%;
		margin: 0 auto;
		padding-top: 30px;
		padding-bottom: 20px;
		text-align: center;
		font-size: 1em;
	}

	.fp-hero-header-title {
		font-size: 1.5em;
	}

	.fp-job-cats .job-cats {
		height: 400px;
		max-height: 400px;
		margin: 25px auto;
	}

	.fp-jobs {
		margin: 150px auto 50px auto;
	}

	.job-city-container {
		display: flex;
		height: 230px;
		justify-content: center;
		align-items: center;
		background-color: #5e5e5e;
		background-size: 100% auto !important;
		background-position: center !important;
		background-repeat: no-repeat !important;
		color: #fff;
		text-transform: uppercase;
		cursor: pointer;
		transition: 250ms all ease;
	}

	.fp-story-city-headers {
		margin-bottom: -60%;
	}

	.fp-location-owl .fp-story-city-headers {
		margin-bottom: -55%;
	}

	.fp-jobs h3 {
		font-size: 1.8em;
	}

	.fp-jobs .darken {
		top: 2px;
		height: 226px;
	}

	.fp-locations .swiper-desc {
		height: 40px;
		width: 75%;
		padding: 0 25px;
	}

	.fp-location-owl .fp-story-city-headers {
		margin-bottom: -5%;
	}

	.fp-facts h3,
	.fp-numbers h3 {
		font-size: 1.5em;
		margin: 20px auto;
	}

	.fp-facts .container p {
		font-size: 1.1em;
		margin-left: auto;
		margin-right: auto;
		width: 75%;
	}

	.fp-facts img,
	.fp-numbers img {
		height: 75px;
		width: auto;
	}

	.fp-facts .container .row p {
		width: 50%;
		text-align: center;
		margin: 0 auto;
	}

	.profession-desc p {
		font-size: 1.3em;
	}

	.profession-facts ul li::before {
		width: 23px;
		height: 13px;
		margin-top: 2px;
	}

	.fp-people .swiper-slide > .container {
		width: 720px;
	}

	.fp-people-image img {
		max-width: 60%;
		height: auto;
		margin: 0 auto;
	}

	.fp-people .fp-gradient {
		width: 20%;
	}

	.swiper-button-prev,
	.swiper-button-next {
		display: flex;
	}

	#faq-one, #faq-two {
		background-size: 100% auto;
	}

	.fp-contacts {
		background-size: auto 100%;
		/* height: 350px; */
	}

	.fp-contacts.faq-contacts {
		background-size: 100% auto;
		height: 350px;
	}

	.fp-contacts .contact-row h3 {
		font-size: 1em;
	}

	.fp-footer {
		height: 70px;
	}

	.fp-footer .container {
		padding: 0;
	}

	.fp-footer_flex {
		flex-direction: row;
	}

	.fp-footer_flex a:not(:first-of-type) {
		margin-left: 15px;
	}
}

@media (min-width: 992px) {
	.container {
		width: 960px;
		max-width: 100%;
	}

	.fp-jobs .container {
		width: 960px;
		max-width: 100%;
	}

	.row {
		margin-right: -15px;
		margin-left: -15px;
	}

	.row-jobs {
		padding-left: 0;
		padding-right: 19px;
	}

	.two-city-row {
		margin-left: 4px;
	}

	.col-jobs .new-job-badge {
		left: 0;
	}

	.fp-story-city-headers {
		margin-bottom: -66%;
	}

	.swiper-slide img {
		height: auto;
		width: 100%;
		margin: 0 auto;
	}

	.fp-locations .swiper-desc {
		top: 25%;
		width: 50%;
	}

	.fp-hero-header {
		width: 50%;
		left: 25%;
		background: rgba(255, 255, 255, 0.9);
	}

	.fp-hero-header-title {
		font-size: 1.8em;
	}

	.job-city-container {
		display: flex;
		height: 230px;
		margin: 10px;
		justify-content: center;
		align-items: center;
		background-color: #5e5e5e;
		background-size: 100% auto !important;
		background-position: bottom !important;
		background-repeat: no-repeat !important;
		color: #fff;
		text-transform: uppercase;
		cursor: pointer;
		transition: 250ms all ease;
	}

	.job-city-container-hq {
		background-position: top !important;
	}

	.fp-job-cats .job-cats {
		width: 500px;
	}

	.fp-jobs .darken {
		position: absolute;
		left: 0;
		top: 0;
		margin: 10px;
		height: 230px;
		width: 96%;
		background-color: rgba(0, 0, 0, 0.5);
		transition: none;
	}

	.fp-process {
		display: block;
	}

	.fp-process .each-process::before {
		bottom: 55%;
	}

	.fp-process-mobile {
		display: none;
	}

	.fp-people .swiper-slide > .container {
		width: 960px;
	}

	.fp-people h2 {
		margin-bottom: 25px;
	}

	.fp-people .row {
		justify-content: center;
		max-height: 300px;
	}

	.fp-people .fp-people-text,
	.fp-people .fp-people-image {
		width: 40%;
		align-self: center;
		justify-content: center;
	}

	.fp-people-text {
		width: 60%;
	}

	.fp-people-image {
		width: 40%;
		text-align: center;
	}

	.fp-people .fp-people-image img {
		max-width: 60%;
		height: auto;
		margin: 0;
	}

	.fp-professions .each-profession:first-of-type {
		margin-bottom: 0;
	}

	.fp-faq-cats {
		height: 250px;
		width: 48%;
	}

	.faq-cat-one,
	.faq-cat-two {
		padding: unset;
	}

	.fp-faq-cats:hover {
		transform: scale(1.02);
		transition: 0.2s all ease-in-out;
		box-shadow: 0 5px 10px rgba(51, 51, 51, 0.1);
	}

	.fp-badge-green {
		background-size: 25%;
	}

	.swiper-button-prev {
		left: -25px;
	}

	.swiper-button-next {
		right: -25px;
	}

	.fp-hero .swiper-button-prev,
	.fp-people .swiper-button-prev {
		left: 10px;
	}

	.fp-hero .swiper-button-next,
	.fp-people .swiper-button-next {
		right: 10px;
	}

	.fp-professions .each-profession {
		margin: 0 10px;
	}

	.fp-contacts {
		background-size: 100% auto;
		background-position: top;
		height: unset;
	}

	.fp-contacts .contact-tile {
		width: 30%;
	}

	.fp-contacts .contact-row h3 {
		font-size: 1.2em;
	}

	.fp-contacts h2 {
		margin-bottom: 50px;
	}

	.fp-contacts .contact-row {
		margin-bottom: 80px;
	}
}

@media (min-width: 1200px) {
	.container {
		width: 1140px;
		max-width: 100%;
	}

	.fp-jobs .container {
		width: 1140px;
		max-width: 100%;
	}

	.row {
		margin-right: -15px;
		margin-left: -15px;
	}

	.row-jobs {
		padding-left: 0;
		padding-right: 22px;
	}

	.alt-hero-size {
		margin-top: calc(-20% + 50px) !important;
	}

	.fp-job-cats .job-cats {
		width: 500px;
	}

	/* .fp-process .each-process::before {
      bottom: 52%;
    } */
	.fp-facts .container .row p {
		width: 95%;
		text-align: center;
		margin: 0 auto;
	}

	.fp-location-swiper {
		height: 625px;
	}

	.fp-hero-header {
		width: 40%;
		left: 30%;
	}

	.fp-story-city-headers {
		margin-bottom: -55%;
	}

	.fp-locations .swiper-desc {
		top: 50.5%;
	}

	.fp-locations .swiper-desc p {
		margin: 0 auto;
		font-size: 1.5em;
	}

	.fp-locations .swiper-slide img {
		height: 50% !important;
		width: auto !important;
	}

	.fp-people h2 {
		margin-bottom: 25px;
	}

	.fp-people .row {
		justify-content: center;
		max-height: 300px;
	}

	.fp-people .fp-people-text,
	.fp-people .fp-people-image {
		align-self: center;
		justify-content: center;
	}

	.fp-people-text {
		width: 60%;
	}

	.fp-people-image {
		width: 40%;
		text-align: center;
	}

	.fp-people-image img {
		max-width: 50%;
		margin: 0 auto;
	}
}

@media (min-width: 1500px) {
	.swiper-slide img {
		margin-top: -100px;
	}
}


/*
 * Job detail page
 */
.fp-job-detail {
	padding-top: 150px;
}
.fp-job-detail .bg-gray {
	background-color: #f3f3f3;
	margin-top: -74px;
	padding-top: 74px;
	padding-bottom: 50px;
}
.fp-job-detail > .bg-gray > h2 {
	margin-bottom: 20px;
}
.fp-job-detail .description h2 strong {
	font-weight: 600;
}
.fp-job-detail .location {
	display: inline-block;
	width: 100%;
}
.fp-job-detail .location a {
	margin-top: 25px;
	margin-bottom: 25px;
}
.fp-job-detail #jetzt-bewerben {
	display: block;
	margin-bottom: 100px;
	width: 100%;
}
form .fp-button {
	margin-top: 15px;
}
form a {
	color: #82BE3C;
}
form a:hover {
	color: #9bdc50;
}
form .is-invalid,
form .fp-checkbox.is-invalid::after {
	border-color: #dc3545 !important;
}
form .is-valid {
	border-color: #28a745 !important;
}
form label.is-invalid {
	color: #dc3545 !important;
}
form .form-group > label {
	padding-top: 10px;
	font-weight: bold;
}
button#jetzt-bewerben-button {
	margin-top: 25px;
	margin-bottom: 20px;
}
div.working-time label {
	font-weight: normal;
	padding-top: 0;
}

.fp-button {
	border-radius: 0;
	color: #fff;
	padding: 7px 20px 8px;
	display: inline-block;
	text-align: center;
	text-transform: uppercase;
	font-size: 14px;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 0;
	cursor: pointer;
	outline: 0!important;
	background: #82BE3C;
	-webkit-transition-duration: 250ms;
	transition-duration: 250ms;
	border-color: #82BE3C;
}
.fp-button:hover {
	background: #9bdc50;
	color: #fff;
}
.fp-initiative {
	margin-top: 100px;
	margin-bottom: 75px;
	padding: 0 10px;
}
.alert {
	border-radius: 0;
}
.custom-file .fp-input {
	overflow: hidden;
}
.custom-file .fp-input input {
	margin-left: -15px;
}
.form-group [type=checkbox],
.form-group [type=radio],
.form-group legend {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
}
.form-group .form-check {
	padding-left: 4px;
	margin-right: 25px;
}
.form-group .fp-checkbox_input {
	opacity: 0;
	pointer-events: none;
	position: absolute;
	left: -9999999px;
}
.form-group input[type=checkbox], .fp-row input {
	outline: 0!important;
	border: 1px solid #d1d1d1;
}
.form-group input[type=checkbox] {
	-webkit-appearance: none;
	width: 19px;
	height: 19px;
}
.form-group .fp-checkbox {
	position: relative;
	padding-left: 30px;
	line-height: 22px;
	cursor: pointer;
	margin-left: -3px;
}
.form-group .fp-checkbox:after,
.form-group .fp-checkbox:before {
	content: "";
	position: absolute;
	-webkit-transition-duration: 250ms;
	transition-duration: 250ms;
}
.form-group .fp-checkbox:before {
	background: url(../images/checkmark.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	z-index: 1;
	width: 15px;
	height: 11px;
	left: 2px;
	top: 7px;
	opacity: 0;
}
.form-group .fp-checkbox_input:checked+label:before {
	opacity: 1;
}
.form-group .fp-checkbox:after {
	border: 1px solid #d1d1d1;
	width: 20px;
	height: 20px;
	left: 0;
	top: 2px;
}
.form-group .fp-checkbox_input:checked+label:after {
	background: #82BE3C;
}
.form-group .fp-checkbox:hover:after {
	border-color: #82BE3C;
}

.form-group .fp-input {
	margin-top: 7px;
	margin-bottom: 7px;
}

.form-group .fp-input {
	position: relative;
}
.form-group .fp-input input,
.form-group .fp-input textarea {
	outline: 0;
	width: 100%;
	height: auto;
	padding: 15px 10px 5px;
	font-size: 16px;
	background: #fff;
	border: 1px solid #d1d1d1;
	border-radius: 0;
	box-shadow: none;
}
.form-group .fp-input input:focus,
.form-group .fp-input select:focus,
.form-group .fp-input textarea:focus {
	border-color: #9bdc50;
	outline: 0;
	box-shadow: none;
}
.form-group .fp-input label {
	position: absolute;
	left: 10px;
	top: 10px;
	color: #333;
	opacity: .8;
	-webkit-transition: all 400ms ease;
	transition: all 400ms ease;
	pointer-events: none;
}
.form-group .fp-input input[type='text']:focus+label,
.form-group .fp-input input[type='number']:focus+label,
.form-group .fp-input textarea:focus+label {
	top: 1px;
	font-size: 12px;
	color: #82BE3C;
}

.form-group .fp-input textarea {
	border-top: none;
	padding-top: 0;
	transition: all 0.4s;
}
.form-group .fp-input.filled textarea,
.form-group .fp-input textarea:focus {
	margin-top: 44px;
}
.form-group .fp-input textarea+label {
	content: '';
	top: 0;
	left: 0;
	border: 1px solid #d1d1d1;
	border-bottom: 0;
	padding-left: 10px;
	padding-top: 10px;
	display: block;
	width: 100%;
	transition: all 0.4s;
}
.form-group .fp-input textarea:focus+label {
	top: -28px;
	border-color: #82BE3C;
}
.form-group .fp-input.filled textarea+label {
	top: -28px;
}

.form-group .fp-input.filled label {
	top: 1px;
	font-size: 12px;
}
.form-group .fp-input--caret:after {
	position: absolute;
	content: '';
	background: url(../images/caret.svg);
	width: 8px;
	height: 4px;
	right: 15px;
	top: calc(50% - 2px);
}
.form-group select {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0 30px 0 5px;
	-webkit-padding-end: 30px!important;
	-webkit-padding-start: 10px!important;
	-webkit-appearance: none;
	background: 0 0;
	outline: 0!important;
	-moz-appearance: none;
	border: 1px solid #d1d1d1;
	height: 46px;
	width: 100%;
	border-radius: 0;
	box-shadow: none;
}
.form-group select::-ms-expand {
	display: none;
}
.form-group .text-muted {
	margin-left: 4px;
	margin-top: -2px;
	height: 24px;
}

.form-row > .form-group {
	margin-bottom: 0;
}
.form-row > .form-group > .fp-input {
	margin-top: 0;
}
.form-group .custom-file * {
	cursor: pointer !important;
}
.form-group .custom-file * {
	cursor: pointer !important;
}
.form-group .custom-file .text-muted {
	margin-top: -8px;
}
.form-group .custom-file label {
	border: 1px solid #d1d1d1;
	left: 0;
	border-radius: 0;
	height: 46px;
	top: 0;
	line-height: 30px;
	background-color: #e9ecef;
	overflow: hidden;
}
.form-group .custom-file label::after {
	content: "Datei auswählen";
	height: 44px;
	border-radius: 0;
	line-height: 30px;
	transition: background-color 0.4s;
}
.no-touch .form-group .custom-file:hover label:after {
	background-color: #dce2cc;
}
.touch .form-group .custom-file label:after {
	background-color: #dce2cc;
}
.fp-checkbox {
	min-width: 150px;
}

.working-time .form-group > label {
	font-size: 0.8rem;
	font-weight: bold;
	/*white-space: nowrap;*/
	/*overflow: hidden;*/
	/*text-overflow: ellipsis;*/
	width: 100%;
}

.working-time .form-group > .form-check > label {
	min-width: 60px;
}

input[type=number] {
	-webkit-appearance: none;
	-moz-appearance: textfield;
	appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.form-group .custom-file input.custom-file-input {
	max-width: 100%;
	overflow: hidden;
	padding-right: 150%;
}


/**
 * Schnuppertag
 */
.form-group.schnuppertag.tag-1,
.form-group.schnuppertag.tag-3 {
	width: 50%;
	float: left;
	margin-bottom: 5px;
}
.form-group.schnuppertag.tag-2,
.form-group.schnuppertag.tag-4 {
	width: 50%;
	float: left;
	margin-bottom: 5px;
}
.form-group.schnuppertag.headline {
	margin-bottom: -10px;
}
.form-group.schnuppertag.datum {
	width: 50%;
	margin-top: -69px;
}
.form-group.schnuppertag.tag-5 .form-check {
	margin-left: 50%;
}
@media screen and (max-width: 1199px) {
	.form-group.schnuppertag.tag-1,
	.form-group.schnuppertag.tag-3 {
		width: 60%;
	}
	.form-group.schnuppertag.tag-2,
	.form-group.schnuppertag.tag-4 {
		width: 40%;
	}
	.form-group.schnuppertag.datum {
		width: 60%;
	}
	.form-group.schnuppertag.tag-5 .form-check {
		margin-left: 60%;
	}
}
@media screen and (max-width: 767px) {
	.form-group.schnuppertag.tag-1,
	.form-group.schnuppertag.tag-2,
	.form-group.schnuppertag.tag-3,
	.form-group.schnuppertag.tag-4 {
		width: 100%;
	}
	.form-group.schnuppertag.tag-5 > .form-check {
		margin-top: 50px;
	}
	.form-group.schnuppertag.tag-5 > .form-check ~ .form-check {
		margin-top: 0;
	}
	.form-group.schnuppertag.datum {
		width: 100%;
		margin-top: -120px;
		margin-bottom: 50px;
	}
	.form-group.schnuppertag.tag-5 .form-check {
		margin-left: 0;
	}
}




@media screen and (max-width: 991px) {
	.fp-job-detail .description h2 {
		margin-bottom: 0;
	}
}

@media screen and (max-width: 767px) {
	.working-time .form-group > label {
		margin-bottom: 0;
		margin-top: 8px;
	}

	.form-check-label a {
		word-break: break-all;
	}
}

@media screen and (max-width: 575px) {
	.fp-job-detail .bg-gray {
		margin-top: -90px;
		padding-top: 90px;
	}

	label,
	.form-group .fp-input input,
	.form-group .fp-input textarea,
	.form-control {
		font-size: 0.85rem;
	}

	.form-group .fp-input input,
	.form-group .fp-input textarea {
		padding-left: 11px;
	}

	.form-group .fp-input label:not(.custom-file-label) {
		left: 11px;
	}

	form .form-group .fp-input textarea+label:not(.custom-file-label) {
		left: 0;
		padding-left: 11px;
	}
}

@media screen and (max-width: 380px) {
	.form-group .fp-input label:not(.custom-file-label) {
		left: 7px;
	}

	form .form-group .fp-input textarea+label:not(.custom-file-label) {
		left: 0;
		padding-left: 7px;
	}

	.form-group .fp-input input,
	.form-group .fp-input textarea {
		padding-left: 7px;
	}

	.form-group .fp-input select {
		padding-left: 7px !important;
	}

	.form-group .custom-file .text-muted {
		font-size: 75%;
	}
}

.form-group.label-headline .fp-input.filled label,
.form-group.label-headline label {
	position: relative;
	top: 0;
	left: 0;
	font-size: 1em;
	font-weight: bold;
	padding: 10px 0 0;
}

.form-group.label-headline .fp-input textarea {
	border-top: 1px solid #d1d1d1;
	padding-top: 5px;
}

.form-group.label-headline .fp-input.filled textarea,
.form-group.label-headline .fp-input textarea:focus {
	margin-top: 0;
	border-top: 1px solid #82BE3C;
}


div.label {
	font-weight: bold;
	padding-top: 10px;
	margin-bottom: .5rem;
}


.form-group.label-headline .fp-input .form-control::placeholder {
	opacity: 1;
}

.form-group .fp-input .form-control::placeholder {
	opacity: 0;
	-webkit-transition: all ease-in-out .15s;
	-moz-transition: all ease-in-out .15s;
	-ms-transition: all ease-in-out .15s;
	-o-transition: all ease-in-out .15s;
	transition: all ease-in-out .15s;
}

.form-group .fp-input.filled .form-control::placeholder,
.form-group .fp-input .form-control:focus::placeholder {
	opacity: 1;
}

legend {
	font-size: 1rem;
}


/* Sponsoring [START] */
.fp-strip {
	padding-top: 70px;
	padding-bottom: 70px;
}

.fp-strip h1 {
	color: #82BE3C;
	font-size: 24px;
}

.fp-strip h4 {
	font-size: 16px;
}

@media screen and (min-width: 768px) {
	.fp-strip h1 {
		font-size: 30px;
	}

	.fp-strip h4 {
		font-size: 18px;
	}
}

@media screen and (min-width: 992px) {
	.fp-strip h1 {
		font-size: 40px;
	}

	.fp-strip h4 {
		font-size: 24px;
	}
}

.fp-hero-sponsor {
	margin-top: 60px;
	margin-left: auto;
	margin-right: auto;
	padding: 70px 0;
	width: 90%;
}

@media screen and (min-width: 576px) {
	.fp-hero-sponsor {
		margin-top: 76px;
	}
}

.fp-hero-sponsor .owl-stage {
	margin-top: 0;
}

.fp-hero-sponsor .item.item-1 {
	background-image: url("../images/fp-wg-sponsoring/anthony-delanoix-15928-e1513069838353.jpg");
}

.fp-hero-sponsor .item.item-2 {
	background-image: url("../images/fp-wg-sponsoring/michael-discenza-199756.jpg");
}

.fp-hero-sponsor .item.item-3 {
	background-image: url("../images/fp-wg-sponsoring/pexels-photo-341858.jpeg");
}

.fp-hero-sponsor .item {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 35px;
	height: 270px;
}

@media screen and (min-width: 768px) {
	.fp-hero-sponsor .item {
		height: 320px;
	}
}

@media screen and (min-width: 992px) {
	.fp-hero-sponsor .item {
		height: 450px;
	}
}

@media screen and (min-width: 1200px) {
	.fp-hero-sponsor .item {
		height: 500px;
	}
}

.fp-hero-sponsor .item .text {
	background-color: rgba(232,232,232,0.19);
	padding: 30px;
	margin: 0 auto;
	font-size: 46px;
	font-weight: 300;
	color: #fff;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	width: 100%;
	max-width: 930px;
	opacity: 0;
	-webkit-transition: all ease 1s;
	-moz-transition: all ease 1s;
	-ms-transition: all ease 1s;
	-o-transition: all ease 1s;
	transition: all ease 1s;
	-webkit-transform: translateY(100%);
	-moz-transform: translateY(100%);
	-ms-transform: translateY(100%);
	-o-transform: translateY(100%);
	transform: translateY(100%);
}

.fp-hero-sponsor .item .text h2 {
	margin: 0;
	font-size: 20px;
	font-weight: 300 !important;
}

@media screen and (min-width: 768px) {
	.fp-hero-sponsor .item .text h2 {
		font-size: 26px;
	}
}

@media screen and (min-width: 992px) {
	.fp-hero-sponsor .item .text h2 {
		font-size: 46px;
	}
}

.fp-hero-sponsor .item .text h2::after {
	display: none;
}

.fp-hero-sponsor .active .item  .text {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

.fp-form-sponsoring .fp-input--caret {
	margin-bottom: 0;
}

@media screen and (min-width: 280px){
	.fp-form-sponsoring .fp-input-date {
		max-height: 46px;
	}
}

.fp-form-sponsoring-cats #success-message,
.fp-form-sponsoring-cats #error-message {
	margin: 0 auto 6rem;
}
/* Sponsoring [END] */

.fp-terms {
	background-image: url("../images/fp-badge.png");
	background-repeat: no-repeat;
	background-position: bottom right;
	margin-top: 76px;
}

.fp-terms-container {
	margin-left: 20px;
	margin-right: 20px;
}

.fp-terms p {
	margin: 0 auto 1em;
	text-align: left;
	font-size: 0.9em;
}

.fp-terms h3 {
	font-size: 1.1em;
	margin-bottom: 3em;
}

.fp-terms h4 {
	margin: 30px auto 15px auto;
	font-weight: 600;
}

.fp-terms ul {
	padding-left: 1em;
}

.fp-terms ul li {
	font-size: 0.9em;
	margin-bottom: 0.15em;
}

.fp-terms a {
	color: #82BE3C;
	text-decoration: underline;
}

/* PRESS PAGE */
.fp-press {
	margin-top: 40px;
	min-height: calc(100vh - 146px);
	background-color: #f3f3f3;
}

.fp-press p, .fp-press a {
	text-align: left;
}

.fp-press--links {
	color: #82BE3C;
	text-decoration: underline;
}

.fp-press--links:hover {
	color: #9bdc50;
}

.fp-press-intro {
	display: flex;
	flex-direction: row;
}

.fp-press-intro-text {
	width: 50%;
}

.fp-press-intro-contact {
	width: auto;
	min-width: 30%;
	margin-left: auto;
	font-size: 14px;
}

.fp-press-intro-contact p {
	margin-bottom: 0;
	line-height: 24px;
}

.fp-press-intro-text p {
	width: 95%;
	margin-bottom: 25px;
	text-align: left;
	font-size: 16px;
	line-height: 26px;
}

.fp-press-subheader {
	text-transform: uppercase;
	font-weight: 400;
	font-size: 12px;
	color: #373A3C;
	margin-bottom: 10px;
}

.fp-press-numbers {
	margin-top: 36px;
}

.fp-press-numbers table, .fp-press-numbers tr {
	width: 100%;
}

.fp-press-numbers tr {
	line-height: 28px;
	box-shadow: inset 0px -1px 0px rgba(166, 166, 166, 0.5);
}

.fp-press-numbers tr td:first-of-type {
	font-weight: 600;
	width: 40%;
}

.fp-press-current,
.fp-press-downloads,
.fp-press-distribution {
	display: flex;
	flex-direction: column;
	margin: 50px auto;
}

.fp-press--headers {
	font-size: 20px;
	line-height: 30px;
	text-align: left;
	color: #373A3C;
}

.fp-press-current {
	align-items: flex-start;
}

.fp-press-current-articles-slider {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
}

.fp-press-article-slide-link {
	text-decoration: none;
	width: 30%;
	height: auto;
	margin-top: 20px;
	margin-bottom: 20px;
}

.fp-press-article-slide {
	width: 100%;
	height: 100%;
	padding: 15px;
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: 0.2s all ease-in-out;
}

.fp-press-article-slide:hover {
	box-shadow: 0 16px 10px -12px rgba(0, 0, 0, 0.2);
	transform: scale(1.05);
	transition: 0.2s all ease-in-out;
	cursor: pointer;
}

.fp-press-article-slide--header {
	display: flex;
	flex-direction: row;
}

.fp-press-article-slide--subhead {
	display: flex;
	flex-direction: column;
	width: 70%;
}

.fp-press-article-slide h5 {
	margin-bottom: 0;
	font-size: 15px;
	line-height: 20px;
	font-weight: 600;
	color: #000;
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fp-press-article-slide span {
	font-size: 12px;
	line-height: 24px;
	color: rgba(0, 0, 0, 0.5);
}

.fp-press-article-slide--header img {
	width: 90px;
	height: 60px;
	margin-left: auto;
}

.fp-press-article-slide p {
	margin-top: 10px;
	margin-bottom: 0;
	font-size: 12px;
	line-height: 20px;
	color: #000;
	display: -webkit-box;
	-webkit-line-clamp: 7;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.fp-press-download-container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.fp-press-download-box {
	width: 30%;
	min-width: 355px;
	height: 425px;
	margin-top: 20px;
	margin-bottom: 20px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
	transition: 0.2s all ease-in-out;
	overflow: hidden;
}

.fp-press-download-box--overlay {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52.14%, #000000 100%);
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
}

.fp-press-download-box--overlay h3,
.fp-press-download-box--overlay span,
.fp-press-download-box--overlay a {
	color: #fff;
}

.fp-press-download-box--overlay h3 {
	font-weight: 600;
	font-size: 20px;
	line-height: 26px;
}

.fp-press-download-box--overlay span,
.fp-press-download-box--overlay a {
	text-transform: uppercase;
}

.fp-press-download-box--overlay span {
	font-size: 12px;
	line-height: 20px;
}

.fp-press-download-box--overlay a {
	text-decoration: none;
	border: 1px solid #fff;
	padding: 10px;
	margin: 24px auto 30px auto;
	transition: 0.2s all ease-in-out;
}

.fp-press-download-box--overlay a:hover {
	background-color: #A50A50;
	border-color: #A50A50;
	transition: 0.2s all ease-in-out;
}

.fp-press-distribution-container {
	display: flex;
	flex-direction: row;
}

.fp-press-distribution-container > p {
	width: 33%;
	line-height: 26px;
	margin-top: 2px;
}

#press-application-form {
	width: 50%;
	margin-left: auto;
}

#press-application-form p {
	font-size: 12px;
	line-height: 18px;
	margin: 10px auto;
}

#press-application-form p a {
	color: #5e5e5e;
	font-weight: 700;
}

#press-application-form button {
	margin-top: 0;
	height: 46px;
}

@media (min-width: 1200px) {
	.fp-press-article-slide-link {
		min-width: 355px;
	}
}

@media (max-width: 1199px) {
	.fp-press-article-slide-link {
		width: 32%;
	}

	.fp-press-download-box {
		width: 32%;
		min-width: 220px;	
	}
}

@media (max-width: 991px) {
	.fp-press-current-articles-slider {
		flex-direction: column;
	}

	.fp-press-article-slide-link {
		width: 100%;
	}

	.fp-press-download-box {
		height: 350px;
	}

	.fp-press-download-box--overlay a {
		margin: 10px auto 25px auto;
		padding: 5px 10px;
	}
}

@media (max-width: 767px) {
	.fp-press-intro {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.fp-press-intro-text {
		width: 100%;
	}

	.fp-press-intro-contact {
		width: 100%;
		margin: 60px auto 80px 0;
	}

	.fp-press-download-container {
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.fp-press-download-box {
		width: 100%;
		margin: 10px auto;
		background-size: 100% auto;
		background-position: center;
	}

	.fp-press-distribution-container {
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.fp-press-distribution-container > p,
	#press-application-form {
		width: 100%;
	}
}

@media (min-width: 576px) {
	.fp-press {
		margin-top: 76px;
	}
}

@media (max-width: 575px) {
	.fp-press-article-slide--header img {
		width: 70px;
		height: 40px;
	}
}
	/* PRESS OVERVIEW PAGE */
.fp-press-overview {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
}

.fp-press-overview-year {
	margin-bottom: 50px;
}

.fp-press-overview .fp-press-year {
	width: 30%;
	margin-right: auto;
	text-align: left;
}

.fp-press-overview-list {
	display: flex;
	flex-direction: column;
}

.fp-press-overview-list .fp-press-article-slide-link {
	margin: 5px auto;
	width: 100%;
}

@media (max-width: 992px) {
	.fp-press-overview-year {
		flex-direction: column;
	}
}

@media (max-width: 767px) {
	.fp-press-overview .fp-press-year {
		font-size: 1.3em;
	}
}
	/* PRESS OVERVIEW PAGE [END] */

	/* PRESS ARTICLE PAGE */
.fp-press--article {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.fp-press--article > h2 {
	width: 50%;
}

.fp-press--date {
	text-align: center;
	margin: 0 auto;
}

.fp-press--image {
	width: 540px;
	margin: 60px auto;
	width: 50%;
}

.fp-press--text {
	width: 50%;
	margin-bottom: 60px;
}

.fp-press--footer {
	display: flex;
	flex-direction: row;
	width: 50%;
}

.fp-press--footer-downloads {
	display: flex;
	flex-direction: column;
	width: 50%;
}

.fp-press--footer-downloads a {
	color: #82BE3C;
	margin-top: 5px;
	margin-bottom: 5px;
}

.fp-press--footer .fp-press-intro-contact {
	width: 50%;
	margin: 0 0 0 auto;
	font-size: 1em;
}

@media (max-width: 991px) {
	.fp-press--article h2,
	.fp-press--image,
	.fp-press--text,
	.fp-press--footer {
		width: 90%;
	}
}

@media (max-width: 575px) {
	.fp-press--article h2,
	.fp-press--image,
	.fp-press--text,
	.fp-press--footer {
		width: 100%;
	}

	.fp-press--footer {
		flex-direction: column;
		align-items: flex-start;
	}

	.fp-press--footer .fp-press--footer-downloads,
	.fp-press--footer .fp-press-intro-contact {
		margin: 30px 0;
	}
}


/* PRESS PAGE [END] */

/* Jobs disturber strip [START] */
.jobs-disturber {
	display: none;
	background: #ED691C;
	margin-top: -74px;
	padding-top: 35px;
	padding-bottom: 92px;
	text-align: center;
	color: #FFFFFF;
}

.jobs-disturber .headline {
	font-style: normal;
	font-weight: 600;
	font-size: 29px;
	line-height: 34px;
	margin-bottom: 10px;
}

@media screen and (max-width: 575px) {
	.jobs-disturber {
		margin-top: -90px;
		padding-top: 30px;
		padding-bottom: 104px;
	}

	.jobs-disturber .headline {
		font-size: 22px;
		line-height: 27px;
	}
}

/* Jobs disturber strip [END] */
/* PRESS ARTICLE PAGE [END] */
/* PRESS PAGE [END] */

/* Custom Radio Styling for radio percent button [START] */
.custom-radio.custom-radio-percent {
	display: inline-block;
	padding-left: 0;
	padding-right: 5px;
}

.custom-radio.custom-radio-percent .custom-control-label {
	border: 1px solid #d1d1d1;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #5B5B5B;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
	width: 60px;
	height: 40px;
	cursor: pointer;
	margin-bottom: 10px;
}

.custom-control.custom-radio.custom-radio-percent .custom-control-label::before,
.custom-control.custom-radio.custom-radio-percent .custom-control-label::after {
	display: none;
}

.custom-radio.custom-radio-percent .custom-control-input:checked~.custom-control-label {
	background-color: #82BE3C;
	color: #FFFFFF;
}
/* Checkbox persent button [END] */


/* Sponsoring Strip [START] */
.fp-sponsoring-strip {
	padding: 0 15px 10px 15px;
}

.fp-sponsoring-strip > .row {
	margin-left: -5px;
	margin-right: -5px;
}

.fp-sponsoring-strip > .row > div[class^="col-"]{
	padding-top: 10px;
	padding-left: 5px;
	padding-right: 5px;
}

.card-sponsoring {
	border: none;
	border-radius: 0;
}

.card-sponsoring .card-img-top {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 0;
	padding: 20px;
	min-height: 300px;
}

@media screen and (min-width: 1380px) {
	.card-sponsoring .card-img-top {
		padding-left: 60px;
	}
}

.card-sponsoring .card-img-top .card-title {
	font-weight: 600;
}

.card-sponsoring.item-1 .card-img-top{
	background-image: url(../images/fp-wg-sponsoring/anthony-delanoix-15928-e1513069838353.jpg);
}

.card-sponsoring.item-2 .card-img-top {
	background-image: url("../images/fp-wg-sponsoring/michael-discenza-199756.jpg");
}

.card-sponsoring.item-3 .card-img-top {
	background-image: url("../images/fp-wg-sponsoring/pexels-photo-341858.jpeg");
}

.card-sponsoring .card-body {
	padding: 20px;
}

@media screen and (min-width: 1380px) {
	.card-sponsoring .card-body {
		padding-left: 60px;
	}
}

.card-sponsoring .btn-arrow {
	padding: 0;
	color: #373A3C;
	font-size: 20px;
	line-height: 26px;
	text-transform: uppercase;
}

.card-sponsoring .btn-arrow::after {
	content: '';
	display: inline-block;
	background-image: url("data:image/svg+xml,%3Csvg width='23' height='16' viewBox='0 0 23 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.3215 1.5802L21.2087 8.5802L15.3215 14.6096' stroke='%235B5B5B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cline x1='21.1901' y1='8.5802' x2='1.60342' y2='8.5802' stroke='%235B5B5B' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
	margin-left: 1rem;
	width: 22px;
	height: 16px;
}

.card-sponsoring .btn-arrow:hover {
	color: #7f9700;
}

.card-sponsoring .btn-arrow:hover::after {
	background-image: url("data:image/svg+xml,%3Csvg width='23' height='16' viewBox='0 0 23 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.3215 1.5802L21.2087 8.5802L15.3215 14.6096' stroke='%237f9700' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cline x1='21.1901' y1='8.5802' x2='1.60342' y2='8.5802' stroke='%237f9700' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}
/* Sponsoring Strip [END] */
