/* made on sundays while wearing pyjamas */

@font-face {
	font-family: 'Merriweather';
	font-style: normal;
	font-weight: normal;
	src: url('./fonts/Merriweather.eot'); /* IE9 Compat Modes */
	src:
		local('Merriweather Regular'),
		local('Merriweather-Regular'),
		url('./fonts/Merriweather.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
		url('./fonts/Merriweather.woff2') format('woff2'), /* Super Modern Browsers */
		url('./fonts/Merriweather.woff') format('woff'), /* Modern Browsers */
		url('./fonts/Merriweather.ttf') format('truetype'), /* Safari, Android, iOS */
		url('./fonts/Merriweather.svg#Merriweather') format('svg'); /* Legacy iOS */
}

* {
	box-sizing: border-box;
	font-family: Merriweather, "Times New Roman", Times, serif;
}

body {
	margin: 0;
	background-color: #06015e;
	color: #06015e;
	font-size: 1.25rem;
	min-width: 58.5rem;
	overflow-y: scroll;
	padding-bottom: 0.5rem;
}

p {
	line-height: 1.85rem;
	margin: 0;
	text-align: justify;
}

a {
	text-decoration: none;
}

img {
	border: 0;
	outline: none;
}

hr {
	border-top: 1px solid #7774ae;
}

header > nav, footer > nav {
	display: block;
	text-align: center;
}

header > nav {
	font-size: 1.67rem;
	padding-top: 2px;
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
	background-image: url("skyline-outlined.png");
	padding-bottom: 7%;
	margin-bottom: 1rem;
}

footer > nav {
	font-size: 1.15rem;
}

@keyframes fadeinnava {
	0% {
		color: #06015e;
	}
	100% {
		color: #c20808;
	}
}

header > nav > a, footer > nav > a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
}

header > nav > a {
	color: #06015e;
	margin-right: 0;
	margin-left: 0;
	margin-top: 2.5%;
	height: 6rem;
	line-height: 1.67rem;
	width: 11.25rem;
	vertical-align: bottom;
	text-shadow: 0px 0px 6px #ebeaff,
							 0px 0px 10px #ebeaff,
							 0px 0px 14px #ebeaff,
							 0px 0px 18px #ebeaff,
							 0px 0px 22px #ebeaff;
}

header > nav > a.current {
	color: #c20808;
	animation: fadeinnava 0.375s ease-in 1;
}

footer > nav > a {
	padding: 1.25rem;
	padding-left: 2rem;
	padding-right: 2rem;
	color: #ebeaff;
}

.content {
	margin: 0 auto;
	padding: 0;
	width: 58.5rem;
	background-color:#ebeaff;
}

.content h1 {
	margin: 0;
	padding: 1rem;
	padding-bottom: 0.75rem;
	color: #c20808;
	font-size: 2rem;
}

.content.index > section > p {
	padding: 1rem;
	padding-top: 0.75rem;
}

.content.index > section > p > strong {
	font-weight: normal;
	color: #c20808;
}

.content.index > aside > img {
	width: 100%;
	border: 0;
}

.content.duo > article > section > p {
	padding: 1rem;
	padding-top: 1.33rem;
}

.content.duo > article > section > p > strong:first-of-type {
	color: #c20808;
	font-size: 2rem;
}

.content.duo > .members {
	column-count: 2;
	/*column-rule: 1px solid #7774ae;*/
	column-gap: 2rem;
	padding-bottom: 1rem;
}

.content.duo > .members > article {
	break-inside: avoid;
}

.content.duo > .members > article > header > h1  {
	padding-bottom: 0.5rem;
	margin: 0;
	font-size: 1.67rem;
	white-space: nowrap;
}

.content.duo > .members > article > aside > a > img {
	width: 100%;
	display: block;
	border: 0;
	cursor: zoom-in;
}

.content.duo > .members > article > section > ul {
	margin: 0;
	padding-right: 1rem;
	padding-left: 2.25rem;
	list-style-type: square;
}

.content.duo > .members > article > section > ul > li {
	line-height: 1.85rem;
	padding-top: 0.25rem;
	text-align: justify;
}

.content.duo > .members > hr {
	display: none;
}

.content.reppro > article {
	padding: 1rem;
	padding-right: 0;
}

.content.reppro > article > header {
	cursor: pointer;
	height: 3.25rem;
	width: 100%;
}

.content.reppro > article > header > h1 {
	margin: 0;
	padding: 0;
	font-size: 2rem;
	display: inline-block;
}

.accordion:before {
	vertical-align: top;
	font-size: 1.5rem;
	width: 1.5rem;
	color: #c20808;
	display: inline-block;
}

.accordion.closed:before {
	content: '\25B6';
	margin-top: 0.3rem;
}

@supports (-ms-ime-align:auto) {
	.accordion.closed:before {
		font-family: "Segoe UI Symbol"; /* workaround for https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/11635143/ */
	}
}

.accordion.open:before {
	content: '\25BC';
	margin-top: 0.3rem;
}

.accordion ~ section {
	overflow: hidden;
	width: 34rem;
	cursor: pointer;
}

.accordion.closed + section + section {
	animation: accordionClose 0.375s ease both;
}

.accordion.open + section + section {
	animation: accordionOpen 0.375s ease both;
}

@keyframes accordionOpen { 
	0% { 
		max-height: 0;
	}
	100% { 
		max-height: 25rem;
		width: auto;
	}
}

@keyframes accordionClose { 
	0% { 
		max-height: 25rem;
		width: auto;
	}
	100% { 
		max-height: 0;
	}
}

.content.reppro > hr {
	margin: 0;
	padding: 0;
	padding-top: 2rem;
	display: block;
	visibility: hidden;
}

.content.reppro > article > section {
	display: block;
	padding-left: 1.825rem;
}

.content.reppro > article > section > h2 {
	margin: 0;
	margin-top: 1.25rem;
	font-size: 1.67rem;
}

.content.reppro > article > section > ul {
	list-style-type: square;
	margin: 0;
	margin-top: 0.25rem;
	margin-bottom: 1rem;
}

.content.reppro > article > section > ul > li {
	line-height: 1.85rem;
	padding-top: 0.25rem;
}

.content.reppro > article > section > p > a {
	color: #c20808;
}

.content.reppro > article > section > p > a:hover {
	text-decoration: underline;
}

.content.reppro > article > aside img {
	width: 22rem;
	float: right;
	cursor: zoom-in;
}

.content.media {
	padding-bottom: 1px;
}

.content.media > nav {
	display: block;
	padding: 1rem;
	padding-bottom: 0.75rem;
}

.content.media > nav > a {
	color: #06015e;
	font-weight: bold;
	font-size: 2rem;
	padding-right: 4rem;
	outline: 0;
}

.content.media > nav > a.active {
	animation: fadeinnava 0.375s ease-in 1;
	color: #c20808;
}

.content.media > div {
	padding: 0;
	padding-top: 1rem;
	padding-bottom: 0.5rem;
}

.content.media > div > div {
	margin: 0 auto;
}

.content.media > div.hidden {
	display: none;
}

.content.media img.galnav {
	width: 2rem;
	height: 2rem;
	margin: 0.55rem;
	padding: 0;
	border: 0;
	outline: none;
}

.content.media #videogallery iframe {
	width: 832px;
	height: 468px;
	border: 0;
}

.content.media #audiogallery li > p {
	text-align: center;
	padding-bottom: 0.5rem;
}

.content.media #audiogallery li > audio {
	width: 640px;
}

.content.media #photogallery img.galthumb {
	width: auto;
	height: 512px;
	cursor: zoom-in;
}

.enlargedimagefadein {
	animation: imagefadein 0.375s linear;
}

@keyframes imagefadein { 
	0% { 
		opacity: 0;
	}
	100% { 
		opacity: 1;
	}
}

.enlargedimagefadeout {
	animation: imagefadeout 0.375s linear;
}

@keyframes imagefadeout { 
	0% { 
		opacity: 1;
	}
	100% { 
		opacity: 0;
	}
}

.content.contact > aside, .content.contact > section {
	display: inline-block;
}

.content.contact > aside {
	width: 22rem;
}

.content.contact > section {
	padding-left: 2rem;
	width: 34.5rem;
	vertical-align: top;
}

.content.contact > section > p {
	margin-top: 0;
	margin-bottom: 2rem;
}

.content.contact > section > p.error {
	color: red;
}

.content.contact > aside img {
	width: 100%;
	margin-bottom: 1rem;
	cursor: zoom-in;
}

label.kontakt {
	display: inline-block;
	width: 11rem;
	height: 2.5rem;
	vertical-align: top;
	font-size: 1.15rem;
}

label#labelspamschutz.kontakt
	{
		width: 86%;
		min-width: 13em;
		height: auto;
		padding: 0;
		padding-top: 8px;
		padding-bottom: 2px;
		text-align: right;
	}

input.kontakt, textarea.kontakt {
	font-size: 1.15rem;
	width: 21rem;
}

textarea.kontakt {
	height: 14.5rem;
	resize: vertical;
}

input#inputspamschutz.kontakt
	{
		color: #06015e;
		display: inline-block;
		font-family: Merriweather, "Times New Roman", Times, serif;
		font-size: 1em;
		width: 3em;
		min-width: 3em;
		max-width: 3em;
		padding: 0;
		border: none;
		border-bottom-color: #06015e;
		border-bottom-width: 2px;
		border-bottom-style: solid;
		vertical-align: bottom;
	}

#kontaktsubmit {
	padding: 0.75rem;
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
	margin-top: 1rem;
	margin-bottom: 1rem;
}

#kontaktsubmitlabel {
	padding-left: 1.25rem;
	padding-top: 1.25rem;
}

.content.disclaimer pre {
	padding: 1rem;
	margin: 0;
	white-space: pre-line;
	font-size: 1rem;
	line-height: 1.25rem;
}

.content.disclaimer pre > strong {
	display: inline-block;
	padding-top: 0.5rem;
	padding-bottom: 0.25rem;
	font-size: 2rem;
	line-height: 2.6rem;
	font-weight: bold;
}

.content.disclaimer > header > pre{
	padding-top: 0;
	padding-bottom: 0;
}

.content.disclaimer > section {
	padding: 1rem;
}

.content.disclaimer > section > pre{
	padding: 0;
}

.content.disclaimer > section > h2 {
	margin: 0;
	padding-bottom: 0.5rem;
	font-size: 1.25rem;
}

.content.disclaimer > section > h3 {
	margin: 0;
	padding-bottom: 0.25rem;
	font-size: 1.15rem;
}

.content.disclaimer > section > p, .content.disclaimer > section > div {
	margin: 0;
	padding-bottom: 1rem;
	padding-left: 1rem;
	font-size: 1.0rem;
	line-height: 1.25rem;
}

.content.disclaimer > section > p > a {
	color: #06015e;
	word-break: break-word;
	overflow-wrap: break-word;
}

/* ##### MOBILE CSS ##### */
/* smartphone is ~62rem or something alike */
/*
@media screen and (max-width: 62rem) and (orientation: portrait) {
	
	p {
		font-size: 1.85rem;
		line-height: 2.15rem;
	}
	
	header > nav > a {
		font-size: 2rem;
		line-height: 2rem;
	}
	
	footer > nav > a {
		font-size: 1.75rem;
		line-height: 1.75rem;
	}
	
	.content {
		width: 100%;
	}
	
	.content.duo > .members {
		column-count: 1;
		padding-top: 2rem;
	}
	
	.content.duo > .members > article > header, .content.duo > .members > article > section {
		padding-left: 1rem;
		padding-right: 1rem;
	}
	
	.content.duo > .members > article > header > h1  {
		font-size: 2rem;
		line-height: 2.5rem;
	}
	
	@media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) {
		.content.duo > .members > article > header > h1  {
			font-size: 3rem;
		}
	}
	
	.content.duo > .members > article > section > ul > li {
		font-size: 1.85rem;
		line-height: 2.15rem;
		padding-top: 0.5rem;
	}
	
	.content.duo > .members > hr {
		padding-top: 2rem;
		display: block;
		visibility: hidden;
	}
	
	.accordion, .accordion ~ section {
		width: 58rem;
	}
	
	.content.reppro > article {
		padding: 0;
		padding-bottom: 1rem;
	}
	
	.content.reppro > article > header, .content.reppro > article > section {
		padding-left: 1rem;
	}
			
	.content.reppro > article > aside img {
		margin: 0 auto;
		margin-bottom: 2rem;
		display: block;
		width: 100%;
		float: none;
	}
	
	.content.reppro > article > header > h1 {
		font-size: 2rem;
	}
	
	.content.reppro > article > section > h2 {
		font-size: 1.85rem;
	}
	
	.content.reppro > article > section > ul > li {
		line-height: 2.15rem;
		font-size: 1.85rem;
	}
	
	.content.media #audiogallery li > p {
		font-size: 1.5rem;
	}
	
	.content.contact > aside, .content.contact > section {
		display: block;
		width: 100%;
	}

	.content.contact > aside {
		padding: 0;
		text-align: center;
		white-space: nowrap;
	}
	
	.content.contact > aside > a {
		display: block;
		float: left;
		width: 50%;
	}
	
	.content.contact > aside > a > img {
		width: 100%;
	}
	
	.content.contact > section {
		padding: 0;
	}
	
	label.kontakt, .content.contact p {
		font-size: 2rem;
		line-height: 2.5rem;
		padding: 1rem;
	}

	input.kontakt, textarea.kontakt {
		font-size: 2rem;
		width: 38rem;
	}
	
	label.kontakt {
		width: 21rem;
		height: 4rem;
	}
	
	textarea.kontakt {
		height: 18rem;
		resize: vertical;
	}
	
	.content.contact > aside img {
		width: 45%;
	}
	
	#kontaktsubmit {
		font-size: 2rem;
		margin-top: 2rem;
		margin-bottom: 2rem;
	}
	
	#kontaktsubmitlabel {
		padding-top: 2.5rem;
	}
	
	.content.disclaimer > section > h2 {
		font-size: 1.85rem;
		line-height: 2.15rem;
	}
	
	.content.disclaimer > section > h3 {
		padding-left: 1rem;
		font-size: 1.5rem;
		line-height: 1.75rem;
	}
	
	.content.disclaimer > section > p, .content.disclaimer > section > div {
		font-size: 1.5rem;
		line-height: 1.75rem;
	}
	
}
*/