/**
	Author: Durani Robben
	Defines how the startpage should look.
*/

/* Menü */

body{
	margin: 0px;
	background-color: #f7f7f7;
	font-family: Roboto;
}

a:hover{
	text-decoration: none;
}

h2{
	margin-bottom: 20px;
}

.m-b-20{
	margin-bottom: 20px;
}

.body{
	width: 70%;
	margin: auto;
	padding-top: 100px;
}

.menubody{
	width: 70%;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.fa{
	font-family: FontAwesome;
}

.menuContainer{
	position: fixed;
	width: 100%;
	
	background: white;
	box-shadow: 0 5px 6px rgba(0, 0, 0, 0.06);
	
	z-index: 1;
}

.menu{
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10;
	background: #fff;
	border-bottom: 1px solid #eee;
	margin-bottom: 40px;
	box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2);
}

.firstTierMenu{
	color: grey;
}
.firstTierMenu:hover div{
	color: white;
}

.burgermenu{
	display: none;
}

.menuelement{
	position: relative;
	padding: 15px;
	font-size: 25px;
}
.menuelement,
.menuelementDropdown{
	color: grey;
	text-align: left;
	text-decoration: none;
}

.menuelement:hover a{
	color: white;
}
.menuelement:hover .menuelementDropdown a{
	color: grey;
}
.menuelementDropdown:hover a{
	color: white !important;
}

.menuelement:hover,
.menuelementDropdown:hover{
	background-color: #0a4b51;
}

.menuelementDropdown{
	display: none;
	position: absolute;
	top: 60px;
	left: 0px;
	
	padding: 15px;
	text-align: left;
	
	background: white;
	border-top: 1px solid white;
	color: black;
}

.mobilemenu{
	margin-top: 20px;
}

.mobilemenuelement{
	width: 100%;
	padding: 0px 15px;
	font-size: 16px;
}

.mobilemenuelementDropdown{
	padding: 0px 30px;
	font-size: 16px;
}

.indexText{
	width: 60%;
	display: inline-block;
	vertical-align: top;
	padding-right: 50px;
	font-size: 17px;
	line-height: 1.5;
}

.indexImage{
	display: inline-block;
}


/* Lebenslauf */

.lebenslaufHeadline {
	font-family: "Segoe UI",Arial,sans-serif;
	font-size: 36px;
	font-style:normal;
}

.lebenslaufContent{
	padding: 20px 25px;
}

.lebenslaufContent div{
	margin-bottom: 10px;
	color: #333;
	font-size: 17px;
	line-height: 1.5;
	position: relative;
}

.lebenslaufContent div::before {
	 /* Muss da sein, sonst wird gar nichts angezeigt */
	content: "\A";
	
	height: 7px;
	width: 7px;
	background-color: #0a4b51;
	border-radius: 50%;
    
	position: absolute;
    left: -15px;
	top: 9px;
	z-index: 1;
}


/* Moderationen */

.moderationen hr{
	margin: 30px 0px;
}

.moderationen{
	padding-top: 20px;
}

.moderation{
	position: relative;
}

.date{
	display: block;
	position: absolute;
	left: 0;
	top: 8px;
	background-color: #0a4b51;
	color: white;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	padding: 5px 5px 5px 10px;
}

.date p{
	margin: 0px;
}

.date strong {
    display: block;
    font-size: 24px;
}

.date::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -15px;
    border-left: solid 15px #0a4b51;
	border-top: solid 35px transparent;
	border-bottom: solid 35px transparent;
}

.moderationsText{
	padding: 15px 10px 15px 100px;
	font-size: 20px;
}

.moderationsText a{
	color: #0a4b51;
	text-decoration: none;
}

.moderationZeit{
	margin-bottom: 2px;
}

.icon{
	width: 19px;
	vertical-align: sub;
}

.moderationsFilter,
.übersetzungsFilter{
	position: absolute;
	top: 15px;
	right: 35px;
	z-index: 1;
	
	padding: 5px;
	width: 200px;
}

.moderationsFilter{
	top: 75px;
	right: 15px;
}


/* Fotos */

.headline{
	
}

.imageBox{
	width: 32%;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 20px;
}

.image{
	width: 100%;
	max-height: 230px;
	overflow: hidden;
}

.imageText{
	text-align: center;
}

.image img{
	width: 100%;
}

.carousel{
	margin-top: 100px;
}

/* Datenschutz */

.datenschutzHeadline{
	font-weight: bold;
}

.datenschutzContent{
	padding: 20px 15px;
}

/* Mobile */

@media (max-width: 1200px) {
	
	.menuelement{
		font-size: 20px;
	}
}


@media (max-width: 991px) {
	
	.menu{
		display: none;
	}
	
	.burgermenu{
		display: block;
		width: 30px;
		height: 30px;
		
		position: absolute;
		top: 20px;
		right: 20px;
		z-index: 20;
	}
	.burgermenu span{
		border-bottom: 1px solid grey;
		height: 10px;
		display: block;
	}
	
	.mobilemenuelement,
	.mobilemenuelementDropdown{
		font-size: 26px;
	}
	
	.lebenslaufHeadline{
		font-size: 42px;
	}
	
	.image{
		max-height: unset;
	}
	
	.übersetzungsFilter,
	.moderationsFilter{
		position: unset;
		margin-bottom: 20px;
		width: 100%;
	}
}



