@charset "UTF-8";

@import url(https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700);

html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

* {
	margin: 0px;
	padding: 0px; 
	box-sizing: border-box; 
}
        
h1, h2, h3, h4, h5, h6, a, p, label, article, li, span {
	font-family: 'Open Sans Condensed', Helvetica Neue, sans-serif;           
}

a, p, label, article, li {
	font-size: 16px;	
	font-weight: 300;
	line-height: 150%;
}

a {
	color: #73141c;
	text-decoration: none;
}
            
a:hover {
	color: #731141c;
	text-decoration: underline;
}
                      
a:link {
	text-decoration: none;
}
            
a:visited {
	text-decoration: none;
}
	
strong {
	font-weight: 700;
}

.clear {
	clear: both;	
}


/* ---------------- START ---------------- */

#start {
	position: relative;
	width: 100%;
	height: 100vh;
	background: url(../img/design/start_background.jpg) no-repeat center center;
	background-size: cover;
	padding: 0px 20px 0px 20px;
}

#start_container {
	position: relative;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	top: 50%;
}

#box_logo {
	position: relative;
	float: left;
	display: block;
	width: 33.33%;
	height: 300px;
	background: rgba(255,255,255,0.8);	
	margin-top: -300px;
}

#box_logo img {
	display: block;
	position: absolute;	
	width: 100%;
	padding: 20px;
	bottom: 0px;
}

#box_text_tr {
	width: 66.66%;
	display: block;
	height: 300px;
	float: right;
	padding: 20px;
	margin-top: -300px;
}

#box_link_1 {
	position: relative;
	float: right;
	display: block;
	width: 33.33%;
	height: 300px;
	background: rgba(115,20,28,0.8);	
	padding: 20px;
}

#box_link_2 {
	position: relative;
	float: right;
	display: block;
	width: calc(100% / 3);
	height: 300px;
	background: rgba(115,20,28,0.5);	
	padding: 20px;
}

#box_link_1 span, #box_link_2 span {
	color: #fff;
	position: absolute;
	bottom: 10px;
	font-size: 35px;
	line-height: 120%;
}

a:hover #box_link_1, a:hover #box_link_2 {
	background: rgba(255,255,255,0.8);	
}

a:hover #box_link_1 span, a:hover #box_link_2 span {
	color: #000;
}

a:hover #box_link_1 span strong, a:hover #box_link_2 span strong {
	color: #73141c;
}

#start_pfeil {
	position: absolute;
	width: 100px;
	bottom: 5px;
	left: 50%;
	margin-left: -50px;
}


/* ---------------- RESPONSIVE START ---------------- */

@media (max-width: 780px) {

	#box_logo, #box_text_tr, #box_link_1, #box_link_2 {
		height: 250px;
	}
	
	#box_logo, #box_text_tr {
		margin-top: -250px;
	}
	
}

@media (max-width: 400px) {

	#start_container {
		top: 50px;	
	}
	
	#box_logo, #box_text_tr, #box_link_1, #box_link_2 {
		position: relative;
		width: 100%;
		height: 100px;
		float: none;
		margin-top: 0px;
	}
	
	#box_logo {
		height: 200px;
		margin-bottom: 100px;	
	}
	
	#box_text_tr {
		display: none;	
	}
	
	#box_link_1 span, #box_link_2 span {
		font-size: 22px;	
	}
	
}


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

#page {
	width: 100%;	
}

#top {
	position: absolute;
	width: 100%;
	height: 40px;
	background: #73141c;
	z-index: 10;
}

#top.scrolled {
	position: fixed;	
	top: 0;
	left: 0;
	z-index: 100;
	box-shadow: #333 0px 0px 10px;
}

#top #inner {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

#logo {
	width: 25%;
	float: left;
	background: #73141c;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	padding: 15px;
}

#menu {
	width: 75%;
	float: left;
	height: 100%;	
}

#menu ul li {
	list-style: none;
	display: block;
	float: left;	
}

#menu ul li a {
	display: block;
	color: #fff;	
	font-size: 18px;
	padding: 7px 18px;
}

#menu ul li a:hover, #menu ul li a.active {
	background: #fff;
	color: #000;
}

#menu ul li a:hover strong, #menu ul li a.active strong {
	color: #73141c;
}


/* ---------------- NAV MOBILE ---------------- */

.nav-r-label {
	position: absolute;
	display: none;
	width: 50px;
	height: 50px;
	top: 15px;
	right: 15px;
	background: none;
	color: #fff;
	float: right;
	font-size: 16px;
	padding: 15px;
	margin-bottom: 0px;
	text-transform: uppercase;
}

.active-label {
	background: #fff url(../img/design/icon_menu_333.png) no-repeat center center;
	background-size: 40px;
}

.active-label:hover {
	background: #fff url(../img/design/icon_menu_333.png) no-repeat center center;
	background-size: 40px;
}

.inactive-label {
	background: url(../img/design/icon_menu.png) no-repeat center center;
	background-size: 40px;
	border: 1px solid #fff;
}

.inactive-label:hover {
	background: url(../img/design/icon_menu.png) no-repeat center center;
	background-size: 40px;
	border: 1px solid #fff;
}

.inactive-label span	{
	font-size: 18px;
	color: #fff;
	line-height: 100%;
	font-weight: normal;
	display: block;
}

.inactive-label:hover span {
	color: #f1e7e8;
}

.nav-r-content {
	position: relative;
	width: 100% !important;
	float: right;
	text-align: left;
	display: none;
	padding: 0;
	z-index: 65;
}

.nav-r-content a {
	display: block;
	width: 100%;
	background: #a5a5a5;
	font-size: 18px;
	padding: 15px 10px;
	text-transfom: uppercase;
	color: #fff;
	border-bottom: 1px solid #fff;
}

.nav-r-content a:hover {
	background: #73141c;
	text-decoration: none;
}


/* ------------- BASE ------------- */

#slider {
	width: 100%;
	margin-top: 0px;	
}

#quicklinks {
	display: none;
	position: fixed;
	bottom: 15px;
	right: 15px;
	float: right;
	z-index: 50;	
}

#quicklinks.scrolled {
	display: inline;	
}

#quicklinks_icon {
	position: relative;
}

#quicklinks_icon a {
	width: 28px;
	height: 28px;
	float: none;
	margin-bottom: 8px;
	background: #73141c;
	border-radius: 3px;
	position: relative;
	font-size: 20px;
	padding-top: 2px;
	color: #fff;	
	display: block;
	text-align: center;
	line-height: 110%;
	z-index: 55;
}

#quicklinks_icon span {
	display: none;
	position: absolute;
	top: 0;
	right: 20px;
	background: #a5a5a5;
	color: #fff;
	text-align: right;
	z-index: 52;
	height: 28px;
	padding: 2px 12px 0 5px;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
	font-size: 16px;
}

#quicklinks_icon:hover > span {
	display: block;
}

#quicklinks_icon:last-of-type a {
	margin-bottom: 0;	
}



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

#content {
	width: 100%;
	max-width: 940px;
	margin: 0 auto;
	margin-top: 50px;
	padding: 0 20px;
}

section {
	padding-top: 30px;
	padding-bottom: 30px;
}

h1, h2 {
	font-weight: 300;
	font-size: 30px;
	line-height: 120%;
	margin-bottom: 15px;
}
	
h3 {
	font-weight: 300;
	font-size: 22px;
	line-height: 120%;
	margin-bottom: 10px;
}

h1 strong, h2 strong, h3 strong {
	color: #73141c;
}

p {
	font-size: 16px;
	line-height: 140%;
	margin-bottom: 10px;	
}

#content ul {
	margin-bottom: 10px;
}

#content ul li {
	list-style: none;
	padding-left: 15px;
	background: url(../img/design/list-point.png) no-repeat;
	background-size: 6px;
	background-position: 0px 8px;
}

#content p:last-of-type {
	margin-bottom: 0px;	
}

#col_left, #col_right {
	width: calc(50% - 10px);	
	float: left;
	margin-bottom: 20px;
}

#col_left {
	margin-right: 20px;	
}

#box {
	width: 100%;
	background: #ebebeb;
	padding: 15px;
	border-radius: 4px;
	margin-bottom: 20px;	
}

#box.red {
	background: #f1e7e8;	
}


/* ---------------- RESPONSIVE CONTENT ---------------- */

@media (max-width: 780px) {

	#top {
		height: 110px;
	}

	#menu {
		display: none;
	}
	
	#slider {
		margin-top: 80px;
	}
	
	#logo {
		width: 100%;
		max-width: 210px;	
		background: 0;
	}
	
	.nav-r-label {
		display: block;	
	}
	
}

@media (max-width: 400px) {
	
	#col_left, #col_right {
		width: 100%;
	}
	
	#quicklinks {
		bottom: 8px;
		right: 8px;	
	}
	
}