/** colors */
:root {
	--black: rgb(25, 25, 25);
	--colorLink: #004b76;
	--colorLinkHover: #004b76;
	--colorh2: #004b76;
	--colorBullet: #f58723;
	/* --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;
}

header a img {
	padding: 0;
	margin: 0;
	margin-top: -25px;
	margin-left: -40px;
	height: 260px;
}

/** main */
main {
	margin-top: 32px;
	clear: both;
	margin-bottom: 20px;
	margin-left: 106px;
}

main p {
	margin-bottom: 25px;
}

main p strong {
	font-family: var(--fontFamily);
}


main h1 {
	margin-top: 30px;
	font-family: var(--fontFamily);
	font-size: 35px;
	line-height: 45px;
	font-stretch: 100%;
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
}

main h1 small {
	display: block;
	font-size: 17px;
	line-height: 26px;
	font-weight: normal;
	margin-bottom: 25px;
	margin-top: 3px;
}

main 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;
}

#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: 28px;
	margin-top: 40px;
	margin-bottom: 40px;
}

#application a.btn:hover {
	background-color: var(--colorLinkHover );
}
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;
}

/** **/
@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;
	}

	ul {
		margin-bottom: 10px;
	}
}

.noWrap {
	white-space: pre;
	word-break: keep-all;
  }