	/* @group reset */

	html, body, div, span, applet, object, iframe,
	h1, h2, h3, h4, h5, h6, p, blockquote, pre,
	a, abbr, acronym, address, big, cite, code,
	del, dfn, em, img, ins, kbd, q, s, samp,
	small, strike, strong, sub, sup, tt, var,
	b, u, i, center,
	dl, dt, dd, ol, ul, li,
	fieldset, form, label, legend,
	table, caption, tbody, tfoot, thead, tr, th, td,
	article, aside, canvas, details, embed,
	figure, figcaption, footer, header, hgroup,
	menu, nav, output, ruby, section, summary,
	time, mark, audio, video {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline;
	}
	/* HTML5 display-role reset for older browsers */
	article, aside, details, figcaption, figure,
	footer, header, hgroup, menu, nav, section {
		display: block;
	}
	body {
		line-height: 1;
	}
	ol, ul {
		list-style: none;
	}
	blockquote, q {
		quotes: none;
	}
	blockquote:before, blockquote:after,
	q:before, q:after {
		content: '';
		content: none;
	}
	table {
		border-collapse: collapse;
		border-spacing: 0;
	}

	/* @end */

@font-face {
	font-family: Roboto;
	src: url("../Roboto/Roboto-light.ttf") format("truetype");
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: Roboto;
	src: url("../Roboto/Roboto-Regular.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: Roboto;
	src: url("../Roboto/Roboto-Bold.ttf") format("truetype");
	font-weight: 500;
	font-style: normal;
}


@font-face {
	font-family: Roboto;
	src: url("../Roboto/Roboto-Italic.ttf") format("truetype");
	font-weight: normal;
	font-style: italic;
}

/* @group variables */

body {

	--backgroundColor: white;
	--yellow: rgb(243, 235, 120);

	--blue: rgb(1, 81, 120);
	--lightblue: rgb(71, 136, 170);
	--backgroundBlue: rgb(245, 250,253);


	--asidewidth: 230px;

}

/* @end */

/* @group Standards */

body {
	font: 16px/1.5em 'Roboto';
	text-rendering: optimizeLegibility;
	background-color: var(--backgroundColor);
	color: var(--blue);
	letter-spacing: 0.8px;
}

p {
    -webkit-hyphens: auto;
    -webkit-hyphenate-limit-before: 3;
    -webkit-hyphenate-limit-after: 3;
    -webkit-hyphenate-limit-chars: 6 3 3;
    -webkit-hyphenate-limit-lines: 2;
    -webkit-hyphenate-limit-last: always;
    -webkit-hyphenate-limit-zone: 8%;

    -moz-hyphens: auto;
    -moz-hyphenate-limit-chars: 6 3 3;
    -moz-hyphenate-limit-lines: 2;
    -moz-hyphenate-limit-last: always;
    -moz-hyphenate-limit-zone: 8%;

    -ms-hyphens: auto;
    -ms-hyphenate-limit-chars: 6 3 3;
    -ms-hyphenate-limit-lines: 2;
    -ms-hyphenate-limit-last: always;
    -ms-hyphenate-limit-zone: 8%;

    hyphens: auto;
    hyphenate-limit-chars: 6 3 3;
    hyphenate-limit-lines: 2;
    hyphenate-limit-last: always;
    hyphenate-limit-zone: 8%;
	margin-bottom: 1em;
}

a:link, a:visited, a:active {
	color: inherit;
	text-decoration: none;
}

a:hover {
}

nav a, nav a:hover {
	text-decoration: none;
}

a:visited {

}

a:focus, input:focus {
	-moz-outline-style: none;
	outline: none;
}

i, em {
	font-style: italic;
}

b, strong {
	font-weight: 500;
}

.clearfloat {
	clear: both;
	display: block;
}

.highlight {
}

/*img[src*=svg] { width: 100%;}*/

img.lazyload {
	background: url(/img/ui/loader.gif) center no-repeat;
	opacity: 0;
	transition: opacity 0.3s;
}

img.lazyloaded {
	opacity: 1;
}

/* @end */

#wrapper {
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
	width: 90%;
	box-sizing: border-box;
	padding-top: env(safe-area-inset-top);
	padding-right: env(safe-area-inset-right);
	padding-bottom: env(safe-area-inset-bottom);
	padding-left: env(safe-area-inset-left);
}

section {
	display: flex;
}

.logo {
	width: var(--asidewidth);
	min-width: 200px;
	margin-bottom: 20px;
	margin-top: 40px;
	background: url(../img/PraxisLogo.svg) no-repeat;
	display: block;
	height: 60px;
}

/* @group aside */

aside {
	margin-right: 30px;
	width: var(--asidewidth);
}

.mobile {
	display: none;
	margin-bottom: 5px;
}

aside .info, .mobileInfo {
	color: var(--lightblue);
}

.mobileInfo {
	display: none;
	margin-bottom: 50px;
	margin-top: -44px;
	float: right;
}

.mobileInfo p {
	margin-bottom: 0;
}

aside .info a:before {
}

.day, .fon {
	width: 30px;
	display: inline-block;
}

aside li a {
	padding-right: 5px;
	padding-left: 5px;
	margin-left: -5px;
}

aside nav {
	position: relative;
}

aside nav ul > li > ul {
	background-color: var(--backgroundBlue);
	padding: 10px;
	display: none;
	position: absolute;
	margin-top: -20px;
	margin-left: 87px;
	border: 1px solid var(--blue);
}

aside nav ul > li > ul > li a {
	display: inline-block;
	line-height: 1.1em;
}

aside nav ul > li > ul > li {
	margin-bottom: 6px;
}

aside nav ul > li:hover > ul {
	display: block;
}

aside nav li:hover > a, .active > a {
	font-weight: 500;
}

/* @end */

/* @group content */

main {
	width: calc(100% - var(--asidewidth));
}


main h1 {
	font-size: 1.8em;
	margin-bottom: 0.4em;
	font-weight: 300;
	line-height: 1.2em;
	margin-top: 1.5em;
}

main h2 {
	margin-bottom: 0.4em;
	line-height: 1.2em;
	margin-top: 1.5em;
	font-size: 1.2em;
}

main h2:first-of-type, main .headline:first-of-type h1 {
	margin-top: 0;
}

main h3 {
	font-size: 1.05em;
	font-weight: 500;
	margin-bottom: 0.5em;
}

main .text h3:first-of-type {
}

main h4 {
	font-size: 1em;
	font-weight: 500;
	margin-bottom: 0.6em;
}

main ul {
	margin-bottom: 1em;
}

main article li {
	list-style-type: disc;
	list-style-position: inside;
}

article {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 80%;
}

article .text a:link {
	text-decoration: underline;
}

article .fas {
	margin-right: 9px;
	display: inline-block;
}

article .text, article .headline, article .movie, .header {
	width: 100%;
}

iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
}

figure img {
	width: 100%;
	height: auto;
	margin-bottom: 50px;
}

.team {
	width:46%;
	margin-top: 30px;
}

.team h2 {
	font-size: 1.56em;
}

/* @end */

/* @group footer */

footer {
	--padding: 10px;
	font-size: 0.875em;
	margin-top: 50px;
}

footer p {
	margin-bottom: 0;
	line-height: 1.5em;
}

footer h3 {
	font-weight: 500;
	margin-bottom: 1em;
	font-size: 0.875em;
}

footer li {
	height: 1.5em;
}

.columns {
	background-color: var(--backgroundBlue);
	color: var(--lightblue);
	padding: var(--padding);
	display: flex;
	justify-content: space-between;
}

.subLine .text {
	display: flex;
	justify-content: space-between;
	padding: var(--padding);
	color: var(--lightblue);
}

.subLine p {
	display: inline-block;
}

/* @end */

@media (prefers-color-scheme: dark) {

	body {
		--backgroundColor:  rgb(0, 119, 177);
		--yellow: rgb(243, 235, 120);

		--blue: white;
		--lightblue: rgb(89, 171, 213);
		--backgroundBlue: rgb(245, 250,253);
	}

	aside nav ul > li > ul, aside li:hover a {
		color: var(--backgroundColor);
	}

	.logo {
		background: url(../img/PraxisLogo-dark.svg) no-repeat;
	}

}

@media (prefers-color-scheme: dark) and (max-width: 1024px) {

	aside nav ul > li > ul {
		color: var(--blue);
	}


}

@media screen and (max-width: 1024px) {

	#wrapper {
		width: 97%;
	}

	.logo {
		width: 60%;
	}

	aside nav ul > li > ul {
		background-color: var(--backgroundColor);
		padding: 0 0 0 10px;
		display: block;
		position: relative;
		margin-top: 0;
		margin-left: 0;
		border: none;
	}

	article {
		width: 100%;
	}

}

@media screen and (max-width: 579px) {

	body {
		font-size: 20px;
	}

	#wrapper {
		width: 96%;
	}

	.logo {
		width: 100%;
	}

	section, aside, main, article, .team, .columns, .subLine .text {
		width: 100%;
		display: block;
		box-sizing: border-box;
		clear: both;
	}

	.mobileInfo {
		display: block;
	}

	.info {
		display: none;
	}

	.mobile {
		display: block;
		font-size: 1.8em;
	}

	aside nav ul {
		background-color: var(--backgroundBlue);
		padding: 10px;
		position: absolute;
		margin-top: -28px;
		margin-left: 39px;
		border: 1px solid var(--blue);
		display: none;
	}

	aside nav ul.open {
		display: block;
	}

	aside nav ul > li > ul {
		background-color: var(--backgroundBlue);
	}

	aside nav ul > li {
		margin-bottom: 4px;
	}

}

@media print {


}
