/** colors */
:root {
    --black: #191919;
	--blue: #0070b4;

	--aColor: var(--blue);
	--btnBackColor: var( --aColor );
	--bulletColor: var( --black );
	--fontFamily: Nunito;

	--h1Size: 36px;
	--h1Color: var(--blue);
	--h2Color: var(--blue);

}
/** fonts */
@font-face {
    font-family: "Nunito";
    src: url("../../../fonts/nunito-v14-latin-300.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Nunito";
    src: url("../../../fonts/nunito-v13-latin-700.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Nunito";
    src: url("../../../fonts/nunito-v14-latin-300italic.woff") format("woff");
    font-weight: normal;
    font-style: italic;
    font-display: swap
}

/* @font-face {
    font-family: "Nunito";
    src: url("../fonts/bundesserifweb-italic-woff-data.woff") format("woff2"),
		url("../fonts/bundesserifweb-italic-woff-data.woff") format("woff");
    font-weight: normal;
    font-style: italic;
    font-display: swap
} */

/** reset */
* {
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
}

strong:empty,
span:empty,
section:empty,
p:empty,
h2:empty,
div:empty {
    display: none;
}

:root {
    font-size: 16px;
    line-height: 24px;
    font-family: var( --fontFamily );
    color: var( --black );
}
li {
	font-size: 16px;
    line-height: 24px;
}

html, body {
	background-color: #fff;
}

/** base */
#wrapper {
    max-width: 930px;
    margin: auto;
	padding: 0 40px 25px 40px;
	border: solid 1px var( --black );
	overflow: hidden;
}

/** header */
header a {
    line-height: 1px;
	background-image: none;

}
header a img {
    /* padding: 0; */
    /* margin: 25px 0 0 0; */
	max-height: 260px;
	max-width: 100%;
	margin: -25px 0 0 -40px
}

/** main */
main {
	margin-top: 32px;
    clear: both;
	margin-bottom: 20px;
	margin-left: 106px;
	overflow: hidden;
}

#modalities {
	font-weight: normal;
	text-align: center;
}

footer {
	margin-left: 106px;
}
footer img {
	width: 40%;
	max-width: 150px;
}
footer img + img {
	margin-left: 5%;
}

main p {
	margin-bottom: 25px;
}

main p strong {
	font-family: var( --fontFamily );
}


h1 {
	margin-top: 30px;
	margin-bottom: 10px;
	font-family: var( --fontFamily );
	/* font-size: 35px; */
	font-size: var(--h1Size);
	line-height: calc( var(--h1Size) + 10% );
	font-stretch: 100%;
	font-weight: bold;
	-webkit-font-smoothing: antialiased;
	color: var(--h1Color);
	text-transform: uppercase;
}

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(--h2Color);
	text-transform: uppercase;
}

ul  {
	display: list-item;
	margin-bottom: 20px;
	padding-left: 10px;
	line-height: 15px;
	list-style: none;
	list-style-position: outside;
}

ul ul {
	margin-bottom: 0;
}

li {
	list-style-position: outside;
	list-style-type: none;
	padding-left: .25rem;
	/*left: 1rem;*/
	/* line-height: 28.9px; */
	/* font-size: 17px; */
}
/*
li::marker {
	color: var( --bulletColor );
	content: '· ';
	font-weight: bold;
}
*/
li::before {
	color: var( --bulletColor );
	content: '· ';
	font-weight: bold;
	left: -8px;
	width: 14px;
	position: absolute;
}

a[href^="tel:"] {
    white-space: nowrap;
}
a  {
	font-family: var( --fontFamily );
	/* font-weight: bold; */
	text-decoration: none;
	color: var( --aColor );
}

a:hover {
	text-decoration: underline;
	transition: all .2s ease-in-out;
}

img#zitis {
	position: absolute;
	right: 0px;
	width: 25%;
	max-width: 250px;
	margin-top: 26px;
}
@media screen and ( max-width: 640px ) {
	img#zitis {
		margin-top: calc( ( 100% - 260px ) / 12 );
	}
}

@media screen and (min-width:640px) {
	img#zitis {
		display: inline-block;
	}
}

#header {
	width: 110%;
	margin: 0 -5% ;
}
#onboarding, #application img {
	width: 100%;
	margin: 10px 0 20px;
}

#application a.arrow,
#contact a.arrow {
	padding-right: 24px;
}

#application a.btn {
	background-color: var( --btnBackColor );
	background-image: none;
	display: inline-block;
	color:#fff;
	padding: 16px;
	padding-left: 36px;
	padding-right: 36px;
	margin-bottom: 32px;
	border-radius: 3px;
	border: solid 1px var( --btnBackColor );
	margin-top: 40px;
	margin-bottom: 40px;
	font-weight: bold;
	/* text-transform: uppercase; */
}

#application a.btn:hover {
	outline: 1px solid #fff;
	outline-offset: -2px;
	text-decoration: none;
	transition: 0ms;
}

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



ul:has( li[class] ) {
	list-style-type: none;
	display: grid;
	grid-template-columns: 50% 50%;
	gap: 2%;
	padding: 0;
	padding-bottom: 30px;
	top: 20px;
}
ul:has( li[class] ) li {
	list-style-type: none;
	text-align: center;
	padding: 20px 3px 30px;
	top: 40px;
	line-height: 22px;
	color: var(--aColor);
}
ul:has( li[class] ) li::marker {
	content: none;
}
ul:has( li[class] ) li::before {
	margin: auto;
	top: -60px;
	left: 0px;
	margin-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
	content: '';
	display: block;
	width: 100%;
	height: 70px;
	background-repeat: no-repeat;
	background-size: 65px 55px;
	background-position: center;
}


li.dresscode::before {
	background-image: url("../../../img/Dresscode.png");
}
li.fortbildung::before {
	background-image: url("../../../img/Fortbildungsbudget.png");
}
li.arbeitszeit::before {
	background-image: url("../../../img/Arbeitszeit.png");
}
li.ausstattung::before {
	background-image: url("../../../img/TechnAusstattung.png");
}
li.jobticket::before {
	background-image: url("../../../img/Jobticket.png");
}
li.homeoffice::before {
	background-image: url("../../../img/Homeoffice.png");
}
li.hunde::before {
	background-image: url("../../../img/Hunde.png");
}
/*
#modalities ul {
	list-style: none;
	background-color: #eee;
	padding: 15px 15px 5px;
	margin-bottom: 20px;
	font-size: 16px;
    display: grid;
	gap: 0 1%;
    grid-template-columns: 100%;
	line-height: 22px;
}
#modalities li::marker {
	content: none
}
#modalities li {
	display: flex;
}
#modalities span {
	margin-bottom: 5px;
	display: inline-block;
	width: 50%;
}
#modalities strong {
	display: inline-block;
	width: 48%;
}
#modalities strong:has( + span:empty ) {
	display: none;
} */
/*
@media screen and ( min-width: 560px ) {
	#modalities > ul {
	}
} */
/* @media screen and ( min-width: 750px ) {
	#modalities > ul {
		grid-template-columns: 40% 50%;
		grid-template-columns: 19% 30% 18% 30%;
	}
} */

#motto > div,
#contact > div {
	display: grid;
	align-items: center;
	grid-template-columns: 100%;
	gap: 5%;
	margin-bottom: 40px;
}
#motto p,
#contact p {
	margin-bottom: 10px;
}
#motto p:last-child,
#contact p:last-child {
	margin: 0;
}
#motto img,
#contact img {
	width: 100%;
	max-width: 100px;
}

@media ( max-width: 480px ) {
	#wrapper {
		padding-left: 20px;
		padding-right: 20px;
		border: none;
	}

	header a img {
		margin-left: -20px;
	}

	/* main h1 {
		font-size: 30px;
		line-height: 40px;
	} */

	h2 {
		font-size: 21px;
	}

	main, footer {
		margin-top: 2px;
		margin-left: 0;
	}

	ul {
		margin-bottom: 10px;
	}
	ul:has( li[class] ) li {
		/*padding-bottom: 80px;*/
		min-height: 130px;
	}
	h1 {
		font-size: calc( var(--h1Size) * 0.6 );
		line-height: calc( var(--h1Size) * 1.1 * 0.6 );
		font-weight: bold;
		margin-bottom: 20px;
	}
}
@media ( min-width: 420px ) {
	#motto div,
	#contact > div:has( img ) {
		grid-template-columns: 100px auto;
	}
	ul:has( li[class] ) li {
		/*padding-bottom: 80px;*/
		min-height: 130px;
	}
}
@media ( min-width: 600px ) {
	ul:has( li[class]:nth-child(3) ) {
		grid-template-columns: 32% 32% 32%;
	}
}
@media ( min-width: 700px ) {
	ul:has( li[class]:nth-child(4) ) {
		grid-template-columns: 23.5% 23.5% 23.5% 23.5%;
	}
}
@media ( min-width: 800px ) {
	ul:has( li[class]:nth-child(5) ) {
		grid-template-columns: 18.4% 18.4% 18.4% 18.4% 18.4%;
	}
}
@media print {
	@page {
        size: 1000px 1414px;
    }
}

.noWrap {
	white-space: pre;
	word-break: keep-all;
  }