/** colors */
:root {
	--black: rgb(25, 25, 25);
	--colorLink: #006f97;
	--colorLinkHover: #006f97;
	--colorh2: #6b7581;
	--colorBullet: #6b7581;
	/* --fontFamily: "BundesSerif"; */
	--fontFamily: "BundesSansWeb";
	--btnShadow: 0 2px 8px 0 #89919a;
}

/** fonts */
@font-face {
	font-family: "BundesSansWeb";
	src: url("../fonts/bundessansweb-regular-woff-data.woff") format("woff2"), url("../fonts/bundessansweb-regular-woff-data.woff") format("woff");
	font-weight: 300;
	font-style: normal;
	font-display: swap
}

@font-face {
	font-family: "BundesSansWeb";
	src: url("../fonts/bundessansweb-bold-woff-data.woff") format("woff2"), url("../fonts/bundessansweb-bold-woff-data.woff") format("woff");
	font-weight: bold;
	font-style: normal;
	font-display: swap
}

@font-face {
	font-family: "BundesSerif";
	src: url("../fonts/bundesserifweb-regular-woff-data.woff") format("woff2"), url("../fonts/bundessansweb-regular-woff-data.woff") format("woff");
	font-weight: 300;
	font-style: normal;
	font-display: swap
}

@font-face {
	font-family: "BundesSerif";
	src: url("../fonts/bundesserifweb-italic-woff-data.woff") format("woff2"), url("../fonts/bundesserifweb-italic-woff-data.woff") format("woff");
	font-weight: 300;
	font-style: italic;
	font-display: swap
}

/** reset */
* {
	margin: 0;
	padding: 0;
	position: relative;
	box-sizing: border-box;
}
html, body {
	background-color: #fff;
}

h2:empty,
div:empty {
	display: none;
}

:root {
	font-size: 17px;
	line-height: 26px;
	font-family: var(--fontFamily);
	color: var(--black);
}

/** base */
#wrapper {
	max-width: 900px;
	margin: auto;
	/* padding: 25px 40px; */
	border: solid 1px var(--black);
}

header {
	min-height: 130px;
	overflow: hidden;
}

/** header */
header a {
	line-height: 1px;
	/* background-image: none; */

}

header a img {
	padding: 0;
	margin: 0;
	/* margin-top: 25px; */
	margin-left: 0px;
	/* height: 160px; */
	width: 100%;
}

/** main */
main {
	margin-top: 32px;
	clear: both;
	margin-bottom: 20px;
	margin-left: 70px;
	padding: 25px 40px;
}

main p {
	margin-bottom: 25px;
}

main p strong {
	font-family: var(--fontFamily);
}

#title {
	text-align: center;
}

h1 {
	margin-top: 30px;
	font-family: var(--fontFamily);
	font-size: 35px;
	line-height: 45px;
	font-stretch: 100%;
	font-weight: bold;
	-webkit-font-smoothing: antialiased;
}

h1 small {
	display: block;
	font-size: 17px;
	line-height: 26px;
	font-weight: normal;
	margin-bottom: 25px;
	margin-top: 3px;
}

h1 sup {
	font-size: 20px;
}

h2 {
	font-size: 22px;
	line-height: 30px;
	margin-bottom: 12px;
	margin-top: 0px;
	font-family: var(--fontFamily);
	font-weight: bold;
	color: var(--colorh2);
}

ul {
	margin-bottom: 20px;
	padding-left: 20px;
	line-height: 15px;
	list-style: none;
}

li {
	list-style-type: disc;
	padding-left: .25rem;
	line-height: 28.9px;
	font-size: 17px;
}

li::marker {
	color: var(--colorBullet);
}

a {
	font-family: var(--fontFamily);
	font-weight: bold;
	text-decoration: none;
	color: var(--colorLink);
}

a:hover {
	text-decoration: underline;
	transition: all .2s ease-in-out;
}

section {
	overflow: hidden;
}

#application a.arrow,
#contact a.arrow {
	padding-right: 24px;
}

#application a.btn {
	width: fit-content;
	background-color: var(--colorLink);
	background-image: none;
	display: block;
	color: #fff;
	padding: 16px;
	padding-left: 36px;
	padding-right: 36px;
	margin-bottom: 32px;
	box-shadow: var( --btnShadow );
	border-radius: 8px;
	margin-top: 40px;
	margin-bottom: 40px;
}

#application a.btn:hover {
	background-color: var(--colorLinkHover );
	outline: solid 1px #fff;
	outline-offset: -3px;
	text-decoration: none;
}
a:hover {
	color: var(--colorLink);
}

#application a.btn p {
	font-family: var(--fontFamily);
	display: inline;
	font-weight: normal;
	margin: 0;
	padding-right: 6px;
	text-transform: uppercase;
}

#contact a {
	background-image: none;
	padding-right: 0;
}

#summary p {
	font-family: var(--fontFamily);
	font-weight: normal;
}

.noMg {
	margin-bottom: 0;
}

/** logos **/
p:has( .charta ) {
	display: flex;
	vertical-align: top;
}
.charta {
	width: 65%;
	max-width: 400px;
	margin-top: 30px;
/* 	float: right; */
}
.family {
	width: 20%;
	max-width: 110px;
	margin-right: 40px;
	margin-top: 0px;
}
.cert div {
	vertical-align: top;
}
.cert div img {
	/* display: inline-block; */
	float: left;
}
img.faz {
	max-width: 110px;
	width: 30%;
}
img.ingenieur,
img.it {
	max-width: 86px;
	margin-left: 5%;
	/* margin-left: 40px; */
	width: 23%;
	margin-top: 3px;
	margin-bottom: -3px;
}

/** **/
@media screen and (max-width: 480px) {
	#wrapper {
		/* padding-left: 20px;
		padding-right: 20px; */
		border: none;
	}

	/* header a img {
		height: 20vh;
		margin-left: -25px;
	} */

	main h1 {
		font-size: 30px;
		line-height: 40px;
	}

	h2 {
		font-size: 21px;
	}

	main {
		margin-top: 2px;
		margin-left: 0;
		padding: 15px;
	}

	ul {
		margin-bottom: 10px;
	}
}

footer div {
	height: 10px;
	display: block !important;
	margin-top: 2px;
}
footer div:nth-child(2) {
	background-color: #fcbd02;
	margin-top: -2px;
}
footer div:nth-child(3) {
	background-color: #c7d302;
}
footer div:nth-child(4) {
	background-color: #006f97;
}
footer div:nth-child(5) {
	background-color: #007a7f;
}


#benefits {
	list-style: none;
	display: grid;
	grid-template-columns: 100%;
	grid-gap: 2px;
	padding: 0;
}
#benefits li {
	list-style-type: none;
	padding-left: 62px;
	padding-right: 10px;
	min-height: 50px;
	margin-bottom: 2px;
	/* border: solid 1px red; */
	line-height: 20px;
	display: flex;
	align-items: center;
	background-color: #f2f2f2;
}
#benefits li::before {
	position: absolute;
	content: '';
	display: inline-block;
	margin-left: -60px;
	margin-top: 2px;
	width: 50px;
	height: 50px;
	background-size: contain;
	/* border: solid 1px #999; */
}
.arbeitszeit::before {
	background-image: url("../img/arbeitszeit.png");
}
.sport::before {
	background-image: url("../img/sport.png");
}
.homeoffice::before {
	background-image: url("../img/homeoffice.png");
}
.coaching::before {
	background-image: url("../img/coaching.png");
}
.vorsorge::before {
	background-image: url("../img/vorsorge.png");
}
.zimmer::before {
	background-image: url("../img/zimmer.png");
}
.gesundheit::before {
	background-image: url("../img/gesundheit.png");
}
.urlaub::before {
	background-image: url("../img/urlaub.png");
}
.praktikum::before {
	background-image: url("../img/praktikum.png");
}
.jobticket::before {
	background-image: url("../img/jobticket.png");
}
.standorte::before {
	background-image: url("../img/60Standorte.jpg");
}
.standorteB::before {
	background-image: url("../img/standorteB.png");
}
.uebernahme::before {
	background-image: url("../img/uebernahme.png");
}
.weiterbildung::before {
	background-image: url("../img/weiterbildung.png");
}
.tarif::before {
	background-image: url("../img/Entgelt.jpg");
}
.tablet::before {
	background-image: url("../img/tablet.png");
}
.parken::before {
	background-image: url("../img/Parkplaetze.jpg");
}
.verbeamtung::before {
	background-image: url("../img/verbeamtung.png");
}
.bezahlung::before {
	background-image: url("../img/vergütung.png");
}
.kostenerstattung::before {
	background-image: url("../img/kostenerstattung.png");
}
@media screen and (min-width: 600px) {
	#benefits {
		grid-template-columns: 50% 50%;
	}

}

footer a {
	color: var(--black);
	font-weight: normal;
}
footer ul {
	list-style: none;
	display: grid;
	grid-template-columns: 70% 30%;
	grid-gap: 2px;
	padding: 0;
	width: 80%;;
	margin-left: 10%;
}
footer li {
	list-style-type: none;
	text-align: right;
}
footer li:nth-child(1) img {
	max-width: 300px;
}
footer li:nth-child(2) img {
	max-width: 100px;
	width: 80%;
}
footer li:nth-child(3) {
	grid-column-start: 1;
	grid-column-end: 2;
	text-align: left;
	padding-top: 40px;
	padding-left: 7%;
}
@media screen and (min-width: 600px) {
	footer ul {
		grid-template-columns: 50% 40% 15%;
	}
	footer li:nth-child(3) {
		grid-column-start: 1;
		grid-column-end: 1;
		grid-row: 1;
	}
	footer li:nth-child(2) {
		grid-column-start: 3;
		grid-column-end: 3;
	}
	footer li:nth-child(1) {
		grid-column-start: 2;
		grid-column-end: 2;
	}
}

.noWrap {
    white-space: pre;
    word-break: keep-all;
}