@charset "utf-8";

/*********
Allgemein
*********/
* {
	font-family: 'Klavika-Regular', Helvetica, Arial, sans-serif
}

html {
	height: 100%;
}

a:link,
a:visited,
a:hover,
a:active {
	outline: 0;
}

.right {
	text-align: right;
}

.center {
	text-align: center;
}

/*********
Allgemeine Responsive Klassen für Geräte
*********/
/* Desktop */
@media 
only screen and (min-width : 880px) {
.desktop-off, 
.tablet-on,
.phone-on {
	display: none;
}
.desktop-on, 
.tablet-off, 
.phone-off {
	display: block;
}
}
/* Tablets */
@media 
only screen and (min-width : 600px) and (max-width : 879px) {
.tablet-off,
.desktop-on, 
.phone-on {
	display: none;
}
.tablet-on,
.desktop-off, 
.phone-off {
	display: block;
}
}
/* Mobile */
@media 
only screen and (min-width : 220px) and (max-width : 599px) {
.phone-off,
.desktop-on, 
.tablet-on
 {
	display: none;
}
.phone-on, 
.desktop-off, 
.tablet-off {
	display: block;
}
}

/*********
Allgemeine Content Styles
*********/
h1, h2, h3, h4, p {
	margin: 0;
	padding: 0;
}

h1 {
	font-family: 'Klavika-Bold';
	font-size: 2.5rem;
	font-weight: normal;
	color: #0a1ca2;
	margin-bottom: 30px;
	text-transform: uppercase;
}

.index-site h1 {
	color: #fff;
	font-size: 3.7rem;
	text-shadow: 0.1em 0.1em 0.4em #000;
}

h2 {
	font-family: 'Klavika-Bold';
	font-size: 2rem;
	font-weight: normal;
	font-style: normal;
	color: #0a1ca2;
	margin-bottom: 20px;
	padding-top: 20px;
	text-transform: uppercase;
}

address h2 {
	color: #fff;
	font-size: 2rem;
}

h3 {
	font-family: 'Klavika-Bold';
	font-size: 1.25rem;
	color: #0a1ca2;
	margin-bottom: 15px;
	padding-top: 20px;
	text-transform: uppercase;
}

h3 span {
	font-family: 'Klavika-Regular';
	font-size: 1rem;
}

h4 {
	font-family: 'Klavika-Bold';
	font-size: 1.1rem;
	color: #0a1ca2;
	margin-bottom: 5px;
	padding-top: 20px;
	text-transform: uppercase;
}

h2:first-child,
h3:first-child, 
h4:first-child {
	padding-top: 0;
}

p {
	font-size: 1rem; /* 12px 12/16 = 0.75 */
	margin-bottom: 15px;
}

p.lead {
	font-size: 1.125rem;
	font-weight: 700;
}

.adresse p, 
.adresse a {
	color: #fff;
	font-style: normal;
}

.bg-dunkelbraun h3, 
.bg-dunkelbraun h4, 
.bg-dunkelbraun p {
	color: #fff;
}

.bg-dunkelbraun.programmoptionen h3 {
	color: #0a1ca2;	
}
@media 
only screen and (min-width : 880px) and (max-width : 1285px) {
	.index-site h1 {
		font-size: 2.5rem;
	}
}
@media 
only screen and (min-width : 600px) and (max-width : 879px) {
	.index-site h1 {
		font-size: 1.8rem;
	}
	h2 {
		font-size: 1.8rem;
	}
	address h2 {
		font-size: 1.2rem;
	}
	.adresse p, 
	.adresse a {
		font-size: 0.8rem;
	}
}
@media 
only screen and (min-width : 600px) and (max-width : 670px) {
	.index-site h1 {
		font-size: 1.5rem;
	}
}
@media 
only screen and (min-width : 220px) and (max-width : 599px) {
	h1 {
		font-size: 2rem; /* 30px 32/16 = 2 */
	}
	.index-site h1 {
		font-size: 1rem;
	}
	h2 {
		font-size: 1.5rem;
	}
	h3 {
		font-size: 1.1rem;
		margin-bottom: 5px;
		padding-top: 10px;
	}
	h3 span {
		font-size: 0.9rem;
	}
}

img {
	border: 0;
}

img.full {
	width: 100%;
	height: auto;
	display: block;
}

img.icon {
	width: 50%;
	height: auto;
	/*display: block;*/
}

.img-right {
	float: right;
	margin-left: 15px;
	margin-bottom: 15px;
}

.img-left {
	float: left;
	margin-right: 15px;
	margin-bottom: 15px;
}

@media 
only screen and (min-width : 220px) and (max-width : 599px) {
	img.icon {
		width: 25%;
	}
	.img-right {
		float: none;
		display: block;
		width: 100%;
		margin-left: 0px;
	}
	.img-left {
		float: none;
		display: block;
		width: 100%;
		margin-right: 0px;
	}
}

ul, ol {
	padding: 0;
	margin: 0;
	margin-bottom: 15px;
} 

li {
	font-size: 1rem;
	
	list-style-type: none;
	background: url(../img/layout/icon-list.svg) left center no-repeat;
	background-size: auto 9px;
	padding-left: 20px;
	padding-bottom: 4px;
	padding-top: 4px;
	margin-left: 0;
}
.bg-dunkelbraun li {
	background-image: url(../img/layout/icon-list-weiss.svg);
	color: #fff;
}

ol li {
	list-style-type: decimal;
}

.downloadlist li {
	/*list-style-type: none;
	background: url(../img/layout/icon-download.svg) left center no-repeat;
	background-size: auto 15px;
	padding-left: 20px;
	padding-bottom: 4px;
	padding-top: 4px;
	margin-left: 0;*/
}

/*Links*/
a {
	color: #000;
	text-decoration: underline;
}

a:hover {
	color: #0a1ca2;
	text-decoration: none;
}

/* Buttons */
.btn a {
	display: block;
	padding: 15px;
	background: #d9cfcd;
	color: #000;
	text-align: center;
	text-decoration: none;
}

.btn a:hover {
	background: #a49693;
}

.btn.inline a {
	display: inline-block;
}

.btn.inline.right {
	text-align: right;
}

.bg-braun .btn a {
	background-color: #a49693;
}
.bg-braun .btn a:hover {
	background: #fff;
}


/*********
Raster-Styles
*********/
body {
	font-size: 100%; /* 16px = 1em */
	height: 100%;
}

body, img, p, tr, td {
	color: #000;
}

.content-block-center {
	width: 100%;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	padding: 30px 0px;
}
.bg-dunkelbraun .content-block-center {
	background: #a49693;
	width: 90%;
	width: calc(90% - 240px);
	padding-left: 120px;
	padding-right: 120px;
	max-width: 860px;
	margin-top: -35px;
}

header {
	overflow: hidden;
}

.logo-support {
	position: absolute;
	top: 30px;
	left: 50%;
	margin-left: -550px;
	width: 1100px;
}

.logo {
	position: absolute;
	left: 0;
	top: 0;
	width: 18%;
}

.index-site .logo {
	width: 21%;
}

.titel-front {
	position: absolute;
	left: 0;
	bottom: 10%;
}

.support {
	position: absolute;
	top: 0;
	right: 0;
}

.support img {
	width: 50px;
	height: auto;
	vertical-align: middle;
}

.support span {
	font-family: 'Klavika-Bold';
	font-size: 1.25rem;
	color: #0a1ca2;
	text-transform: uppercase;
	text-shadow: 0.1em 0.1em 0.6em #fff;
	padding-left: 15px;
}

.support a {
	text-decoration: none;
}

.content {

}

.bg-braun {
	background: #d9cfcd;
}

footer {
	position: relative;
	margin-top: 60px;
}

footer .content-block-center, 
footer .grid-1 {
	padding-bottom: 0;
	margin-bottom: 0;
}

footer .adresse div {
	background-color: #a49693;
	padding: 30px;
}

footer .facebook {
	padding-top: 15px;
	margin-bottom: 5px;
}

footer .facebook img {
	height: 35px;
	width: auto;
}

footer .partner {
	border-top: 1px solid #a49693;
	margin-top: 105px;
	padding-top: 30px;
}

@media 
only screen and (min-width : 600px) and (max-width : 1190px) {
	.logo-support {
		left: 0;
		margin-left: 45px;
		margin-right: 45px;
		width: 90%;
		width: calc(100% - 90px);
	}
	.content-block-center {
		margin-left: 45px;
		margin-right: 45px;
		width: auto;
	}
}

@media 
only screen and (min-width : 220px) and (max-width : 879px) {
	.bg-dunkelbraun .content-block-center {
		width: auto;
		padding-left: 30px;
		padding-right: 30px;
	}
}

@media 
only screen and (min-width : 220px) and (max-width : 599px) {
	body {
		font-size: 90%; 
	}
	.logo-support {
		left: 0;
		margin-left: 15px;
		margin-right: 15px;
		width: 90%;
		width: calc(100% - 30px);
	}
	.content-block-center {
		margin-left: 15px;
		margin-right: 15px;
		width: auto;
	}
	header img.head {
		height: 128px;
		width: auto;
	}
	.logo, 
	.index-site .logo {
		height: 40px;
		width: auto;
	}
	footer {
		margin-top: 15px;
	}
	footer .partner {
		margin-top: 0px;
	}
}

.skipp {
	position: absolute;
	right: 10px;
	bottom: 10px;
}

.skipp img {
	display: block;
	
	/* IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	/* IE 5-7 */
	filter: alpha(opacity=70);
	/* Netscape/FireFox */
	-moz-opacity: 0.7;
	/* Safari 1.x */
	-khtml-opacity: 0.7;
	/* aktuelle Browser */
	opacity: 0.7;
}
@media 
only screen and (min-width : 220px) and (max-width : 599px) {
.skipp {
	display: none;
}
}

/*********
Tools & spezifische Content-Styles
*********/
ul.list {
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.list li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	background-image: none;
}

.list li a {
	text-decoration: none;
	display: block;
}

.list.fuenf-spalten li {
	width: 17.2%;
	margin-right: 3.5%;
	margin-bottom: 3.5%;
	float: left;
}

.list.vier-spalten li {
	width: 22.375%;
	margin-right: 3.5%;
	margin-bottom: 3.5%;
	float: left;
}

.list.drei-spalten li {
	width: 31%;
	margin-right: 3.5%;
	margin-bottom: 3.5%;
	float: left;
}

.list.zwei-spalten li, 
.list.zwei-spalten.news.front li {
	width: 48.25%;
	margin-right: 3.5%;
	margin-bottom: 3.5%;
	float: left;
}

.list.fuenf-spalten li:nth-child(5n),
.list.vier-spalten li:nth-child(4n),
.list.drei-spalten li:nth-child(3n), 
.list.zwei-spalten li:nth-child(2n), 
.list.zwei-spalten.news.front li:nth-child(2n) {
	margin-right: 0;
}

/* News */
/* Front-News */
.news.tabs .tab-navi {
	width: 17%;
	margin-right: 25px;
	float: left;
}
.news.tabs .tab-content {
	width: 80%;
	width: calc(83% - 25px);
	float: right;
	position: relative;
}
.news.tabs .box {
	background-color: #d9cfcd;
	position: absolute;
	top: 0;
	right: 0;
	width: 47%;
}
.news.tabs .content {
	padding: 20px;
}
.news.tabs .image {
	width: 60%;
	height: auto;
}
/*Liste Alle*/
.list.news li {
	overflow: hidden;
	border-bottom: 1px solid #a49693;
	margin-bottom: 15px;
}
.list.news li:last-child {
	border-bottom: 0;
}
.list.news h3 {
	padding-top: 0;
	margin-bottom: 10px;
}
.list.news li img {
	float: left;
	width: 30%;
	margin-right: 15px;
	margin-bottom: 15px;
}
.list.news li p.date {
	margin-bottom: 5px;
	font-size: 0.8rem;
}

/* Team */
.list.team {
	margin-bottom: 30px;
}
.list.team li {
	overflow: hidden;
	float: left;
	width: 49%;
	margin-right: 1%;
	margin-bottom: 1%;
	background: #A49693
}

.list.team li img.person {
	display: inline-block;
	float: left;
	width: 50%;
	height: auto;
}

.list.team li .infos {
	float: right;
	width: 45%;
	width: calc(50% - 20px);
	padding: 10px;
}

.list.team li .infos h4 {
	color: #000;
	margin-bottom: 0;
}

.list.team li .infos p {
	margin-bottom: 0;
	padding-top: 3px;
	font-size: 0.9rem;
}

.list.team li:nth-child(4n+3) img.person, 
.list.team li:nth-child(4n+4) img.person{
	float: right;
}

.list.team li:nth-child(4n+3) .infos, 
.list.team li:nth-child(4n+4) .infos{
	float: left;
}

.list.team li p.powerd {
    margin-top: 10px;
    font-size: 0.8rem;
}

/* Partner */
.list.partner li a {
	padding: 20px;
	border: 1px solid #d9cfcd;
}

/* Support Teamviewer */
.list.teamviewer li {
}
.list.teamviewer li a {
	margin-bottom: 15px;
	padding-left: 50px;
	background: url(../img/layout/icon-teamviewer.svg) left top no-repeat;
	background-size: auto 40px;
	height: 40px;
}


@media 
only screen and (min-width : 220px) and (max-width : 879px) {
	.list.team li {
		float: none;
		display: block;
		width: 100%;
		margin-right: 0;
		margin-bottom: 3%;
	}
	.list.team li .infos {
		width: calc(50% - 40px);
		padding: 20px;
	}
		.list.team li .infos p {
		padding-top: 8px;
	}
}

@media 
only screen and (min-width : 600px) and (max-width : 879px) {
	.list.team li:nth-child(4n+3) img.person, 
	.list.team li:nth-child(4n+4) img.person {
		float: left;
	}
	.list.team li:nth-child(2n) img.person {
		float: right;
	}

	.list.team li:nth-child(4n+3) .infos, 
	.list.team li:nth-child(4n+4) .infos {
		float: right;
	}
	.list.team li:nth-child(2n) .infos {
		float: left;
	}
}

@media 
only screen and (min-width : 220px) and (max-width : 940px) {
	.news.tabs .tab-navi ul {
		display: none;
	}
	.news.tabs .tab-content {
		width: 100%;
		float: none;
	}
	.news.tabs .tab-content a {
		text-decoration: none;
	}
	.news.tabs .box {
		position: inherit;
		width: 100%;
	}
	.news.tabs .content {
		margin-bottom: 20px;
	}
	
	.news.tabs .image {
		width: 100%;
		height: auto;
		display: block;
	}
}
@media 
only screen and (min-width : 220px) and (max-width : 599px) {
	.list.team li img.person, 
	.list.team li:nth-child(4n+3) img.person, 
	.list.team li:nth-child(4n+4) img.person, 
	.list.team li:nth-child(2n) img.person, 
	.list.team li .infos, 
	.list.team li:nth-child(4n+3) .infos, 
	.list.team li:nth-child(4n+4) .infos,
	.list.team li:nth-child(2n) .infos {
		float: none;
		display: block;
		width: 100%;
	}
	.list.team li .infos, 
	.list.team li:nth-child(4n+3) .infos, 
	.list.team li:nth-child(4n+4) .infos,
	.list.team li:nth-child(2n) .infos {
		width: calc(100% - 30px);	
	}
	
	.list.team li {
		margin-bottom: 5%;
	}
	
	
}

/*********
Navigation
*********/
.main-nav ul {
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.main-nav ul li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: block;
	background-image: none;
}

.main-nav li a {
	display: block;
	margin-bottom: 10px;
	color: #a49693;
	font-size: 1rem;
	text-decoration: none;
	text-transform: uppercase;
}

.main-nav li a.active, 
.main-nav li a:hover {
	color: #0a1ca2;
}

.main-nav ul ul {
	display: none;
}

.main-nav ul li.active ul {
	display: block;
}

.main-nav li li a {
	margin-left: 15px;
}

/*********
Tabellen
*********/
table, tbody, thead {
	width: 100%;
	padding: 0;
	margin: 0;
	border: 0px;
	margin-bottom: 10px;
}

tr, td, th {
	border: 0px;
}

/*tr:nth-child(even) {
	background-image:url(../img/layout/bg_weiss60.png);
}*/

tr {
	padding: 0px;
	margin: 0px;
}

tr:hover {
	background-color: #e3b2b3;
}

th {
	padding: 2px;
	border-bottom: 1px solid #333;
	vertical-align: top;
	text-align: left;
	color: #fff;
	font-weight: bold;
	background-color: #C00;
}


td {
	margin: 0;
	padding: 2px;
	border-bottom: 1px dotted #333;
	vertical-align: top;
	text-align: left;
}

/*********
Formulare
*********/
form {
	overflow: hidden;
}

fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

form p {
	padding-bottom: 10px;
}

legend {
	padding: 0;
	margin: 0;
	margin-bottom: 7px;
	font-size: 1rem;
	text-transform: uppercase;
}

label {
	display: block;	
	font-size: 0.75rem;
	margin-bottom: 5px;
}

label.inline {
	display: inline;
}

input, 
select, 
textarea {
	background-color: #fff;
	color: #000;
	border: 0;
	padding: 8px;
	font-size: 0.75rem;
	width: 100%;
	margin-bottom: 8px;
}

input, 
textarea {
	width: 90%;
	width: calc(100% - 16px);
}

textarea {
	height: 120px;
}

input:focus {
	/*border-color: #2A8E01;*/
}

input[type="checkbox"], 
input[type="radio"] {
	width: auto;
	margin-right: 5px;
	border: 0;
}

input[type="checkbox"] {
	border: 0;
	background: #fff;
	padding: 0px;
}

input[type="submit"], 
button[type="submit"] {
	background-color: #fff;
	width: 100%;
}

input[type="submit"]:hover {
}

input.pflicht, 
textarea.pflicht {
	/*border-right: 3px solid #000;*/
}

.validationerror {
	background: #CB0003;
	color: #fff;
	padding: 8px;
	margin-bottom: 1px;
	width: 50%;
	
}

@media 
only screen and (min-width : 220px) and (max-width : 879px) {
input, 
select,
textarea,
input[type="submit"],
button[type="submit"],
input[type="submit"]:hover, 
.validationerror
 {
	width: 90%;
	width: calc(100% - 16px);
}

input, 
select, 
input[type="submit"],
button[type="submit"],
input[type="submit"]:hover {
	width: 100%;
}
}

/*********
Transparenzen
*********/
.opac70 {
	/* IE 8 */
	  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	  /* IE 5-7 */
	  filter: alpha(opacity=70);
	  /* Netscape/FireFox */
	  -moz-opacity: 0.7;
	  /* Safari 1.x */
	  -khtml-opacity: 0.7;
	  /* aktuelle Browser */
	  opacity: 0.7;
}

.opac100 {
	/* IE 8 */
	  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	  /* IE 5-7 */
	  filter: alpha(opacity=100);
	  /* Netscape/FireFox */
	  -moz-opacity: 1.0;
	  /* Safari 1.x */
	  -khtml-opacity: 1.0;
	  /* aktuelle Browser */
	  opacity: 1.0;
}

/*********
Tabs
*********/
.ui-tabs-vertical.ui-widget {
	border: none;
	padding: 0;
}
.ui-tabs-vertical .ui-tabs-nav { 
	padding: 0;
	background: none;
	border: none;
	/*float: left;*/
}
.ui-tabs-vertical .ui-tabs-nav li { 
	background-color: #ffffff;
	/*clear: left;*/
	width: 100%;
	border: 0;
	margin: 0;
}
.ui-tabs-vertical .ui-tabs-nav .ui-tabs-anchor {
	float: none;
}
.ui-tabs-vertical .ui-tabs-nav li:hover {
	background-color: #ffffff;
}
.ui-tabs-vertical .ui-tabs-nav li:hover a {
	color: #0a1ca2;
}
.ui-tabs-vertical .ui-tabs-nav li a { 
	display: block;
	color: #000000;
}
.ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active a {
	color: #ffffff;
}
.ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active {
	margin: 0;
	padding: 0;
	border: 0;
}
.ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active a {
	background-color: #a49693;	
}
.ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active:after {
    content: url("../img/layout/pfeil-right.svg");
    position: absolute;
    right: -20px;
    top: 6px; 
}
.ui-tabs-vertical .ui-tabs-panel {
	padding: 0;
	/*float: right;*/
}

