
/* -------------------------------------------------- */
/*    GLOBAL STUFF                                    */
/* -------------------------------------------------- */

* {
	margin: 0;
	padding: 0;
	border: 0 none;
	outline: 0 none;
}

body {
	font-family: 'Palanquin', sans-serif;;
	text-align: left;
	font-size: 62.5%;  /* 1em = 10px , 1.4em = 14px */
	color: #000;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-weight: 300;
}

textarea,
input,
select {
	font-family: inherit;
	/* for i0S */
	 border-radius: 0;
	 -webkit-appearance: none;
}



a {
	color: #000;
	text-decoration: none;
	border-bottom: 1px solid #000;
}

a:hover {
	border-bottom-width: 2px;
}

article,
nav,
aside {
	display: block;
}



/* -------------------------------------------------- */
/*    POSITIONING                                     */
/* -------------------------------------------------- */

@keyframes flicker {
  0% { filter: brightness(70%) hue-rotate(40deg); }
  10% { filter: brightness(80%) hue-rotate(0deg); }
  11% { filter: brightness(100%) hue-rotate(-10deg); }
  34% { filter: brightness(80%) hue-rotate(0deg); }
  35% { filter: brightness(50%) hue-rotate(10deg); }
  50% { filter: brightness(60%) hue-rotate(0deg); }
  51% { filter: brightness(100%) hue-rotate(5deg); }
  52% { filter: brightness(70%) hue-rotate(0deg); }
  68% { filter: brightness(90%) hue-rotate(30deg); }
  69% { filter: brightness(130%) hue-rotate(40deg); }
  79% { filter: brightness(80%) hue-rotate(30deg); }
  80% { filter: brightness(70%) hue-rotate(10deg); }
  89% { filter: brightness(90%) hue-rotate(0deg); }
  90% { filter: brightness(100%) hue-rotate(-5deg); }
  99% { filter: brightness(50%) hue-rotate(0deg); }
  100% { filter: brightness(70%) hue-rotate(40deg); }
}

#bg {
	position: fixed;
	width: 100vw;
	height: 100vh;
	right: 0;
	top: 0; 
	background: url('/fileadmin/Resources/Public/img/eye-iris.jpg') 50% 50% no-repeat;
	background-size: cover;
	filter: brightness(50%) hue-rotate(30deg);
	animation: flicker 30s  infinite;
}
.row {
	
}


.rowmax {
	text-align: left;
	max-width: 128em;
	overflow: hidden;
	position: relative;
	margin: 0 5em;
	padding: 4em 0;
	box-sizing: border-box;
}

.col {
	float: left;
}
#page {
	position: relative;
	padding-bottom: 8em;
	box-sizing: border-box;
	min-height: 100vh;
}


#head .rowmax {
	border-bottom: 2px solid #fff;
}
#main {
	
}

#footer {
	
}
#footer .rowmax{

}






/*  #####  HEAD ELEMENTS  #####  */

#head {
	color: #fff;
}

#logo {
	float: left;
	width: 97%;
	color: #fff;
}
#logo > * {
	float: left;
	margin-right: 50px;
}

#head a,
#head img,
#head h3 {
	border-bottom: 0 none;
	display: block;
}

#head h3 {
	font-size: 5.6em;
	font-weight: 100;
	margin-bottom: 0;
}
#head .claim {
	font-weight: 900;
	padding-bottom: 0;
}
.claim, #langnav {
	margin-top: 1rem;
}

#langnav {
	float: right;
}


#navtoggle {
	float: right;
	margin-left: 3em;
	cursor: pointer;
	width: 3em;
	height: 3em;
	display: none;
	position: relative;
}

#navtoggle .bar {
	position: absolute;
	left: 0;
	top: 1.3em;
	background: #fff;
	border-radius: 1px;
	height: 4px;
	width: 3em;
	transform: rotate(0deg);
}

#navtoggle .bar.n1{
	top: 0.4em;
	transition: transform 0.3s, top 0.3s ease 0.3s;
}
#navtoggle .bar.n2{
	opacity: 1;
	transition: opacity 1ms linear 0.3s;
}
#navtoggle .bar.n3{
	top: 2.2em;
	transition: transform 0.3s, top 0.3s ease 0.3s;
}

.shownav #navtoggle .bar.n1{
	top: 1.3em;
	transform: rotate(45deg);	
	transition: top 0.3s, transform 0.3s ease 0.3s;
}
.shownav #navtoggle .bar.n2{
	opacity: 0;	
}
.shownav #navtoggle .bar.n3{
	top: 1.3em;
	transform: rotate(-45deg);	
	transition: top 0.3s, transform 0.3s ease 0.3s;
}

/*  #####  PAGE ELEMENTS  #####  */



#leftcol {
	width: 21em;
}
#globalcont {
	padding-top: 2.6em;
}
#moblangnav {
	display: none;
}
#mainnav {
	margin-top: -4px;
	border-bottom: 2px solid #fff;
	padding-bottom: 2.8em;
}

#maincol {
	margin-left: 26em;
    float: none;
}


#cont .frame {
	padding: 3em 4em;
	background: #fff;
	margin-bottom: 3em;
}

#cont .frame-type-header {
	background: transparent;
	color: #fff;
	margin-bottom: 0;
}
#cont .frame-type-header:first-child {
	padding-top: 0;
}


/*  #####  FOOTER ELEMENTS  #####  */

#footer {
	color: #fff;
	position: absolute;
	width: 100%;
	bottom: 0;
}

#footer div {
	float:left;
	padding-bottom: 0;
}

#footer .frame {
	margin-left: 26em;
}
#footernav {
	float: right;
}

#footernav li {
	padding-left: 3em;
}




/* -------------------------------------------------- */
/*    NAVIGATION                                      */
/* -------------------------------------------------- */

ul.nav {
	list-style:none;
}
ul.nav li{

}
.nav a {
	display: inline-block;
	font-size: 1.8em;
	text-decoration: none;
	padding: 0.2em 0;
	color: #fff;
	border-bottom: 0 none;
	line-height: 1.3em;
}

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


a.act {
	font-weight: bold;
}

#footer li {
	float: left;
}



/* ---- Mainnav ----- */

#mainnav {
	clear: left;
}
#mainnav li ul {
	padding-left: 2em;
}

/* ---- Langnav ---- */
#langnav a,
#moblangnav a {
	font-size: inherit;
	font-weight: 300;
	padding: 0;
}
#langnav,
#moblangnav {
	font-size: 1.8em;
	line-height: 1.5em;
	font-weight: 900;
	text-transform: uppercase;
	color: #FFF;
}
#moblangnav {
	overflow: hidden;
	border-bottom: 1px solid #fff;
	margin-bottom: 1.5em;
}

#moblangnav li {
	float: left;
	margin-right: 1em;
	padding-bottom: 1em;
}
/* ---- footer ----- */
#footer a {
	
}

/* ---- breadcrumb ----- */

#breadcrumb p {

}






/* -------------------------------------------------- */
/*    CONTENT DESIGN                                  */
/* -------------------------------------------------- */



h1,h2 {
	font-size: 3.2em;
	line-height: 1.1em;
}
h1, h3{
	font-weight: 700;
}
h2 {
	font-weight: 100;
	padding-bottom: 0.8em;
}

.frame-type-header h1, .frame-type-header h2, .frame-type-header h3 {
	font-size: 4.8em;
	padding-bottom:0;
}
h3 {
	font-size: 1.8em;
	line-height: 1.5em;
	padding-bottom: 0.2em;
	border-bottom: 2px solid #000;
	margin-bottom: 1.2em;
}

span.spamprotection{
	display: none;
}

.claim, 
.frame p,
.frame li,
.frame td,
form {
	font-size: 1.8em;
	line-height: 1.5em;
	padding-bottom: 0.8em;
}

.frame li {
	margin-left: 1.5em;
}

.frame li p,
.frame td p,
.frame form p {
	font-size: inherit;
}


.frame td {
	vertical-align: top;
	padding-right: 1.6em;
}




/* mitglieder */

.frame-type-menu_subpages ul {
	list-style: none;
	overflow: hidden;
}
.frame-type-menu_subpages li {
	margin-left: 0;
	float: left;
	width: 25%;
}

.frame-type-menu_subpages a {
	border-bottom: 0 none;
}


.rpid13 .frame table {
	width: auto !important;
}

.rpid13 .frame td {
/*	border-top: 1px solid #999; */
}
.rpid13 .frame td:first-child {
	width: 170px;
	color: #999;
	padding-right: 0;
}

.rpid13.level3 h2 {
	padding-left: 170px;
}



/*
	READ MORE ACCORDION
*/

.accordion {
	margin-top: 10px;
}
.acccont {
	display: none;
	padding-top: 10px;
}
.acchead {
	cursor: pointer;
	font-weight: bold;
}
.accicon {
	display: inline-block;
	width: 32px;
	height: 32px;
	background: url('/fileadmin/Resources/Public/img/more.svg') left top no-repeat;
	vertical-align: middle;
	margin-right: 10px;
	transition: transform 0.3s;
}

.acchead::after {
	content: 'mehr';
	display: inline;
}

.open .acchead::after {
	content: 'weniger';
}
.open .accicon {
	transform: rotateZ(180deg);
}


html[lang="fr"] .acchead::after {
	content: 'en plus';
	display: inline;
}

html[lang="fr"] .open .acchead::after {
	content: 'moins';
}



/* forms */

textarea,
input,
button {
	font-size: inherit;
	line-height: inherit;
}
input[type="text"],
input[type="password"]{
	border: 0 none;
	border-bottom: 2px dashed #000;
	width: 100%;
}
input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus {
	border-style: solid;
}
button {
	border: 2px solid #000;
	padding: 0.5em 2em;
	background: transparent;
	cursor: pointer;
}

.form-group {
	overflow: hidden;
	padding-bottom: 1em;
}
label {
	width: 33%;
	float: left;
	border-bottom: 2px solid #000;
}
.input {
	width: 67%;
	float: left;
}

textarea {
	border: 0 none;
	width: 100%;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='30'><path fill='none' stroke='%23BBBBBB' stroke-width='2' d='M 0 28 H 200' /></svg>") top left;
	height: 9em;
	background-attachment: scroll;
	line-height: 30px;
}

form .row {
	overflow: hidden;
}
form .row > div {
	float: left;
	width: 50%;
	padding-left: 1em;
	box-sizing: border-box;
}
form .row > div:first-child {
	padding-right: 1em;
	padding-left: 0;
}


.btn-toolbar {
    overflow: hidden;
}
span.next {
    float: right;
}

.ce-intext.ce-right .ce-gallery {
	margin-top: 3em;
}

.ce-intext .ce-gallery{
	max-width: 30%;
}

.ce-gallery img {
	max-width: 100%;
	height: auto;
}

.ce-gallery[data-ce-columns="2"] .ce-column,
.ce-gallery[data-ce-columns="3"] .ce-column {
	float: left;
	margin-right: 2%;
}

.ce-gallery[data-ce-columns="3"] .ce-column {
	width: 32%;
}

.ce-gallery[data-ce-columns="3"] .ce-column:nth-child(3n) {
	margin-right: 0;
}

.ce-gallery[data-ce-columns="3"] .ce-column:nth-child(3n+1) {
	clear: left;
}


.ce-gallery[data-ce-columns="2"] .ce-column {
	width: 49%;
}

.ce-gallery[data-ce-columns="2"] .ce-column:nth-child(2n) {
	margin-right: 0;
}
.ce-gallery[data-ce-columns="2"] .ce-column:nth-child(2n+1) {
	clear: left;
}

.ce-row {
    margin-bottom: 2%;
}
.ce-row:last-child {
    margin-bottom: 0;
}


#globalcont .ce-row {
    margin-bottom: 2.6em;
}






/* 	######################
		RESPONSIVE
	######################	*/



* {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}


@media (max-width: 1560px){

	#page {
		padding-right: 7%;
	}
	.rowmax {
		margin: 0 4em;
		padding: 3em 0;
	}
	#cont .frame {
		padding: 2em 3em;
		margin-bottom: 2em;
	}
	#cont .frame-type-header {
		margin-bottom: 1em;
	}
	#head img {
		width: 103px;
	}

	#leftcol {
		width: 16em;
	}
	#maincol,
	#footer .frame  {
		margin-left: 20em;
	}

	#head h3 {
		font-size: 4.8em;
		line-height: 0.7em;
	}

	.claim,
	#langnav {
		line-height: 1.3em;
		margin-top: -0.4rem;
	}

	#logo > * {
		margin-right: 30px;
	}


} 

@media (max-width: 1240px){ 

	#page {
		padding-right: 0;
	}

	h1,h2 {
		font-size: 2.8em;
	}
	.frame-type-header h1, .frame-type-header h2, .frame-type-header h3 {
		font-size: 3.6em; 
	}
	#head h3 {
		font-size: 4.2em;
		line-height: 0.9em;
	}
	#langnav,
	.claim,
	h3,
	.nav a,
	.frame p,
	.frame td,
	.frame li {
		font-size: 1.6em;
	}
	#langnav,
	.claim {
		margin-top: 0;
	}

	#leftcol {
		width: 14em;
	}
	#maincol,
	#footer .frame  {
		margin-left: 18em;
	}
}


@media (max-width: 940px){

	#page {
		overflow-x: hidden;
	}
	#leftcol {
		position: absolute;
		right: -20em;
		z-index: 10;
	}

	#maincol,
	#footer .frame {
		margin-left: 0;
	}
	#navtoggle,
	#moblangnav {
		display: block;
	}
	#langnav {
		display: none;
	}
	#logo {
		width: 86.5%;
	}
	#logo > * {
		margin-right: 15px;
	}
	#head img {
		width: 64px;
	}
	#head h3 {
		font-size: 2.8em;
	}
	#head .claim {
		font-size: 1.2em;
		line-height: 1.1em;
	}
	#langnav {
		margin: -0.4rem 0;
	}
	
	#main .rowmax {
		overflow: visible;
		position: relative;
		transition: left 0.6s;
		left: 0;
	}
	.shownav #main .rowmax {
		left: -20em;
	}

	#main {
		padding-bottom: 70vh;
	}
}

@media (max-width: 730px){ 

	#logo img{
		display: none;
	}
	#navtoggle {
		margin-left: 2em;
	}
	.rowmax {
		margin: 0 3em;
		padding: 2em 0;
	}
	#cont .frame {
		padding: 2em;
		margin-bottom: 2em;
	}
	#cont .frame-type-header {
		margin-bottom: 0;
	}


	.ce-intext.ce-right h3 {
		margin-right: 45%;
	}
	.ce-right .ce-bodytext {
		overflow: initial;
	}

	.ce-intext.ce-right .ce-gallery {
		margin-left: 30px;
		margin-bottom: 20px;
		max-width: 40%;
		margin-top: 0;
	}

	form .row > div {
		width: auto;
		float: none;
		padding: 0 !important;
	}
}



@media (max-width: 600px){
	#logo {
		width: 19em;
	}
	#logo h3 {
		font-size: 2.2em;
	}
	#logo .claim {
		padding-top: 0.5em;
		margin-right: 0;
		font-size: 1em;
	}

	h1,h2 {
		font-size: 2.2em;
	}
	.frame-type-header h1, .frame-type-header h2, .frame-type-header h3 {
		font-size: 2.8em; 
	}

	.rpid13 .frame table,
	.rpid13 .frame tr,
	.rpid13 .frame td {
		display: block;
	}
	.rpid13 .frame td:first-child {
		width: auto;
		padding-bottom: 0;
	}

	.rpid13.level3 h2 {
		padding-left: 0;
	}

}
@media (max-width: 540px){ 
	#footernav {
		float: none;
		clear: left;
	}
	#footernav li {
		padding-left: 0;
		padding-right: 3em;
	}
}


@media (max-width: 360px){ 

	.rowmax {
	    margin: 0 1em;
	}

}
