@charset "UTF-8";
/*
colors
blau #0b7189 rgba(11, 113, 137, 0.6);
rot #a44217 rgba(164, 66, 23, 0.6);
grün #507b2e rgba(80, 123, 46, 0.6);

dunkelgrau #514b45 rgba(81, 75, 69, 0.8);
hellgrau #f4f0ed rgba(244, 240, 237, 0.6);
*/

/*					Grundregeln					*/
body {
	background: #f4f0ed;
	margin: 0px;
	padding: 0px;
	line-height: 1.5em;
	font-family: sans-serif;

	cursor:default;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.selectable { /* für alles wo text auswählbar sein soll */
	cursor:auto;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}
.hidden {
	display: none;
}


.c_white {
	color: rgba(244, 240, 237, 1);
}
.c_grey {
	color: rgba(81, 75, 69, 1);
}
.c_green {
	color: rgba(80, 123, 46, .9);
}
.c_blue {
	color: rgba(11, 113, 137, .9);
}
.c_red {
	color: rgba(164, 66, 23, .9);
}
.b_green_light {
	background-color: rgba(80, 123, 46, 0.1);
}
.b_blue_light {
	background-color: rgba(11, 113, 137, 0.1);
}
.b_red_light {
	background-color: rgba(164, 66, 23, 0.1);
}
.b_green {
	background-color: rgba(80, 123, 46, 0.2);
}
.b_blue {
	background-color: rgba(11, 113, 137, 0.2);
}
.b_red {
	background-color: rgba(164, 66, 23, 0.2);
}
.b_white {
	background-color: rgba(255, 255, 255, 1);
}
.b_beige {
	background-color: rgba(244, 240, 237, 1);
}
.b_beige_white {
	background-image: linear-gradient(180deg, rgba(244, 240, 237, 1), rgba(255, 255, 255, 1));
}
.b_white_beige {
	background-image: linear-gradient(180deg, rgba(244, 240, 237, 1), rgba(255, 255, 255, 1));
}

.underline_red {
	border-bottom: 3px solid rgb(164, 66, 23);
}

.bor_blue {
	border-left: 5px solid rgba(11, 113, 137, .9);
}
.bor_important{
	border-left: 5px solid rgb(164, 66, 23);
	background: rgba(164, 66, 23, .7);
	color: rgba(244, 240, 237, 1);
}
.bor_important p{
	color: rgba(244, 240, 237, 1);
}
.bor_important b{
	letter-spacing: .1em;
}

.bor_important_b{
	border-left: 5px solid rgb(11, 113, 137);
	background: rgba(11, 113, 137, .1);
}

a {
	color: #0b7189;
}

p {
	font-size: 1em;
	margin: 0 0 .75em 0;
	color:#514b45;
}

h1 {
	line-height: 1em;
	font-size: 2em;
	font-weight: normal;
	color:#514b45;
}

h2 {
	line-height: 1em;
	font-size: 1.4em;
	font-weight: normal;
	color:#514b45;
}

h3 {
	line-height: 1em;
	font-size: 1.2em;
	font-weight: normal;
	color:#514b45;
}

article {
	position: relative;
	display: block;
	margin: 18px;
	padding: 5px 18px;
	z-index: 51;
}

.small_font {
	font-size: 0.7em;
}

.ul_eye {
  list-style: none;
}

.ul_eye li::before {
  content: "\2022";
  color: white;
  font-weight: bold;
  display: inline-block; 
  width: 1em;
  margin-left: -1em;
}

.article_symbol {
	width: 60px;
	height: 60px;
	background-repeat: no-repeat;
	background-size: cover;
	display: block;
	position: absolute;
	z-index: -1;
	right: 20px;
}
.article_sym_contact {
	background-image: url("../img/contact_w.svg");
}
.article_sym_team {
	background-image: url("../img/team_w.svg");
}
.article_sym_eye {
	background-image: url("../img/eye_w.svg");
}
.article_sym_glossar {
	background-image: url("../img/gloss_w.svg");
}
.article_sym_notfall {
	background-image: url("../img/notfall_w.svg");
}
.shadow {
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
}
.border_rad {
	border-radius: 10px;
}
.border_rad_right {
	border-radius: 0px 10px 10px 0px;
}
.txt_center {
	text-align: center;
}

.container {
	width: 100%;
	height: auto;
	display: flex;
	flex-flow: row wrap; /*column*/
	justify-content: space-around;
	align-items: flex-start;
}

/*@media*/
.item_2 {
	flex-basis: 20%;
	position: relative;
	display: block;
}
.item_25 {
	flex-basis: 25%;
	position: relative;
	display: block;
}
.item_33 {
	flex-basis: 33.333%;
	position: relative;
	display: block;
}
.item_50 {
	flex-basis: 50%;
	position: relative;
	display: block;
}
.item_66 {
	flex-basis: 66.666%;
	position: relative;
	display: block;
}
.item_100 {
	flex-basis: 100%;
	position: relative;
	display: block;
}

.max500w {
	max-width: 500px;
}

/*					Grundgerüst					*/

#header {
	position: fixed;
	height:120px;
	width:100%;
	top:0px;
	background: #f4f0ed;
	z-index: 100;
}

#nav {
	position: fixed;
	height:42px;
	width:100%;
	top:120px;
	background: rgba(81, 75, 69, 0.95);
	border-bottom: 5px solid rgba(244, 240, 237, 0.8);
	z-index: 101;
}

#content {
	display:block;
	position: relative;
	width:100%;
	height:100%;
	max-width: 1300px;
	margin:167px 0px 0px 0px;
}

#footer {
	display: inline-block;
	height:auto;
	width:100%;
	background: rgba(81, 75, 69, 0.9);
	border-top: 5px solid rgba(244, 240, 237, 0.8);
}

.spacer {
	height: 10px;
	width: 100%;
	background-color: rgba(244, 240, 237, 1);
}

/*					Header					*/
.hm_img {
	background-repeat: no-repeat; /* Do not repeat the image */
	background-size: cover;
	background-position: center;
	display: block;
	width: 100%;
}
.hm_img_top {
	background-image: url("../img/hm_passage_L.jpg");
	background-repeat: no-repeat;
	max-width: 1100px;
	vertical-align: middle;
	border-radius: 0px 0px 20px 20px;
}
.hm_img_grad {
	display: block;
	background-image: linear-gradient(90deg, rgba(244, 240, 237, 0.0), rgba(244, 240, 237, 0.5));
	width:100%;
}

#logo_container {
	display: inline-block;
	height: 100px;
	width: auto;
	min-width: 469px;
	background-image: linear-gradient(to right, #fff, #f4f0ed);
	padding: 10px 20px;
}

#logo {
	vertical-align: middle;
	height: 100px;
}

.logo_txt_container {
	display: inline-block;
	vertical-align: middle;
}
.logo_names {
	border-right: 1px solid rgba(81, 75, 69, 0.3);
	padding-right:20px;
	margin-right:13px
}

.logo_txt_r {
	text-align: left;
	display: block;
	font-family: sans-serif;
	font-size: 1.5em;
	color: rgba(81, 75, 69, 1);
}

.logo_txt_l {
	text-align: right;
	display: block;
	font-family: sans-serif;
	font-size: 0.9em;
	line-height: 1.3em;
}

/*					Nav					*/
.nav_list{
	text-decoration: none;
	margin: 0px;
	padding: 0px;
	cursor: pointer;
}

.nav_item {
	display: inline-block;
	position: relative;
	float: left;
	height: 30px;
	width: auto;
	padding: 6px 10px;
	color: #fff;
	transition: 0.4s;
}

.nav_item:hover {
	background: rgba(244, 240, 237, 0.2);
}

.nav_item_active {
	border-bottom: 5px solid #0b7189;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.6);
}

.nav_item span{
	vertical-align: middle;
	font-family: sans-serif;
	font-size: 12pt;
	padding-top: 5px;
}
#nav_menu {
	display: none;
}

.nav_svg {
	vertical-align: middle;
	height: 100%;
	width: auto;
}

#mobile_menu {
	display: none;
	position: fixed;
	left: -300px;
	top: 167px;
	min-width: 300px;
	z-index: 200;
	background: rgba(81, 75, 69, 0.95);
	border-radius: 0px 30px 30px 0px;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.6), 0 3px 10px 0 rgba(0,0,0,0.9);
	transition: 0.4s;
}
.mobile_menu_list{
	text-decoration: none;
	margin: 0px;
	padding: 0px;
	cursor: pointer;
}
.mobile_menu_item {
	display: block;
	position: relative;
	height:50px;
	width: auto;
	padding: 6px 20px;
	font-size: 1.2em;
	letter-spacing: .1em;
	color: #fff;
}
.mobile_menu_item:hover {
	background: rgba(244, 240, 237, 0.2);
}


@media only screen and (max-width: 500px) {
	#logo_names {
		display: none;
	}
	#header {
		height: 60px;
	}
	#nav {
		top: 60px;
	}
	#content {
		margin: 107px 0px 0px 0px;
	}
	#logo_container {
		height: 60px;
		padding: 1px 15px;
	}
	.logo_txt_r {
		display: inline-block;
		font-size: 1.3em;
	}
	#logo {
		height: 58px;
	}
	#mobile_menu {
		top: 107px;
	}
}

/*					Content					*/
.topic {
	padding: 10px 20px;
}
.topic_home {
	background: rgba(80, 123, 46, 0.1);
}

#link_kontakt {
	display: inline-block;
	min-width: 162px;
	background-color: rgba(11, 113, 137, 1);
	color: rgba(244, 240, 237, 1);
	padding: 6px 10px;
	margin: 0px 0px 15px 0px;
	border-radius: 10px;
	box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
}
#link_kontakt:hover {
	background-color: rgba(11, 113, 137, 0.8);
	cursor: pointer;
}

#link_stellen {
	display: inline-block;
	min-width: 162px;
	background-color: rgba(164, 66, 23, 1);
	color: rgba(244, 240, 237, 1);
	padding: 6px 10px;
	margin: 0px 0px 15px 0px;
	border-radius: 10px;
	box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
}
#link_stellen:hover {
	background-color: rgba(164, 66, 23, 0.8);
	cursor: pointer;
}

#kontaktformular_section {
	display: none;
}

#stellen_section {
	display: none;
}

.check_button {
	cursor: pointer;
	display: inline-block;
	padding: 10px;
	margin: 3px;
	background: #fff;
	border-radius: 10px;
	color: rgba(11, 113, 137, 1);
	border: 1px solid rgba(11, 113, 137, 0);
}
.check_button:hover {
	border: 1px solid rgba(11, 113, 137, 1);
}
.check_button_active {
	background: rgba(11, 113, 137, .5);
	color: #fff;
}

input, textarea, button{
	font-size: 1em;
	font-family: sans-serif;
	margin-top:5px;
	padding: 6px;
	border-radius: 10px;
	border: none;
	box-shadow: 1px 2px 4px rgba(0, 0, 0, .5);
}
input, textarea {
	color: #514b45;
}

textarea{
	border-bottom-right-radius: 5px;
	line-height: 1.5em;
}

button:hover{
	background-color: #514b45;
	color: rgba(244, 240, 237, 1);
	cursor: pointer;
}

#form_out {
	display: none;
	background-color: rgba(11, 113, 137, 0.8);
	color: rgba(244, 240, 237, 1);
	padding: 6px;
	margin-top: 5px;
	border-radius: 5px;
}

.topic_leistungen {
	background: rgba(11, 113, 137, 0.1);
}
#list_leistungen li {
	font-family: sans-serif;
	font-size: 12pt;
	color:#514b45;
}

.content_text {
	display: inline-block;
	position: relative;
	max-width: 400px;
	vertical-align: top;
}
.content_image {
	display: inline-block;
	position: relative;
	vertical-align: top;
}

#home span {
	display: inline-block;
}

.img_team {
	width: 100%;
	margin-top: 10px;
	border-bottom: 1px solid rgba(81, 75, 69, 0.3);
}

.hm_img_leistung {
	background-image: url("../img/kacheln_reihe.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 100%;
	max-width: 700px;
	height: 100px;
}

.kachel_img {
	position: relative;
	width: 100px;
	height: 100px;
	background-image: url("../img/kacheln.png");
	background-repeat: no-repeat;
	border-radius: 10px;
}
.kachel_fd {
	background-position: -2px -2px;
}
.kachel_oct {
	background-position: -104px -2px;
}
.kachel_fag {
	background-position: -206px -2px;
}
.kachel_aug {
	background-position: -308px -2px;
}
.kachel_iris {
	background-position: -410px -2px;
}
.kachel_rat {
	background-position: -512px -2px;
}
.kachel_blank {
	background-position: 100px -2px;
	background-color: #fff;
}

.gloss_item {
	display: block;
	border-radius: 10px;
	padding: 2px 5px;
	cursor: pointer;
	color: rgba(11, 113, 137, .9);
}
.gloss_item:hover {
	background-color: rgba(11, 113, 137, .1);
}
.gloss_box {
	margin: 2px 0px 5px 12px;
	padding: 5px 5px 1px 5px;
	border-left: 1px solid rgba(11, 113, 137, .5);
	color:rgba(81, 75, 69, 1);
	transition: 0.4s;
	display: none;
}

#impressum_section {
	display: none;
}
#datenschutz_section {
	display: none;
}

/*					Footer					*/
.footer_headline {
	font-size: 1em;
	padding: 5px 15px;
	margin: 20px 10px 10px 10px;
	color: rgba(244, 240, 237, 0.8);
	list-style-type: none;
	border-bottom: 1px solid rgba(244, 240, 237, 0.2);
}

.footer_text {
	font-size: .8em;
	color: rgba(244, 240, 237, 0.8);
	padding: 5px 15px 30px 15px;
}

.footer_link {
	text-decoration: underline;
	color: #fff;
	cursor: pointer;
}

/*			To do			*/
/*
  -
  -
*/
