/*********************************************************************************/
/* General Style                                                                 */
/*********************************************************************************/
:root{
	--colorBackground:rgb(75, 75, 75);
	--colorBackgroundNavi: rgb(147, 205, 18);
	--colorBackgroundContent:#fff;
	--colorTextLink: #000;
	--colorBorder:#fff;
	--colorShadow:#000;
	--colorText:#fff;
	--colorTextNavi:#fff;
	--colorTextNaviHover:rgb(45, 45, 45);

	--colorBoxContainerTitel:#333;
	--colorBoxContainerPost:#999;
	--colorBoxContainerShare:#4444;
	--colorBoxContainerShareLink:#333;
	--colorBoxContainerShareLinkHover:#999;
}

* {
	/*border: 1px solid green;*/
	margin: 0px;
	padding: 0px;

	font-size: 100%;
	font-family: Tahoma, sans-serif;
	
	/* hyphens Silbentrennung */
	-moz-hyphens: auto;
	-o-hyphens: auto;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto; 
}

h1,h2,h3,h4 { text-transform: uppercase; font-weight: normal; }
h1 { font-size: 280%; }
h2 { font-size: 180%; }
h3 { font-size: 140%; margin-top: 5px; margin-bottom: 5px; }
h4 { font-size: 115%; margin-top: 5px; margin-bottom: 10px; }
h5 { font-size: 90%; margin-top: 5px; }

.datenschutz h1{
	font-size: 180%;
}
.datenschutz h2{
	font-size: 140%; margin-top: 5px; margin-bottom: 5px;
}


body { 
	background: var(--colorBackground); 
}
#wrapper {
	display: block;
	width: 96%;
	max-width: 900px;
	margin: 30px auto;
	padding: 0px;
}
.center {
	text-align: center;
}
.clearfix { 
	clear: both; 
}

ul {
    list-style-type: circle;
	padding-top: 1vh;
	margin: 0 0 0 1.5em;
	padding: 0;
}

ul li {
	padding-top: 1vh;
	padding-left: 5px;
}

a:any-link{
	color: var(--colorTextLink);
	text-decoration: none;
}

a:any-link:hover{
	text-decoration: underline;
}


.kontaktdaten{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.daten{
	flex-basis: 66.66%;
}

.qrCode{
	flex-basis: 33.33%;
}


#sidebar .kontaktdaten{
	display: block;
	
}

#sidebar .kontaktdaten img{
	margin: auto;
	display: block;
	/*margin-top: 5px;*/
	width: 60%;
}

/*********************************************************************************/
/* Images                                                                        */
/*********************************************************************************/
img {
	width: 100%;
	height: auto;
	max-width: 100%;
}

.box-container{
	/*min-height: 100vh;*/
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	/*padding-bottom: 80px;*/
  }

.box-container .box{
	height: 400px;
	width: 280px;
	border: 8px solid var(--colorBorder);
	box-shadow: 0 5px 5px var(--colorShadow);
	overflow: hidden;
	margin: 20px 15px;
	position: relative;
}

.box-container .box img{
	height: 100%;
	width: 100%;
	object-fit: cover;
	transform: scale(1.0);
}

.box-container .box:hover img{
	/*filter: grayscale(0%);*/
	transform: scale(1.1);
}

.box-container .box .info{
	text-align: center;
	background: var(--colorBackgroundContent);
	position: absolute;
    bottom: 0;
    width: 100%;
}

.box-container .box .info .titel{
	padding: 10px 0;
	font-size: 20px;
	color: var(--colorBoxContainerTitel);
	text-transform: capitalize;
}

.box-container .box .info .post{
	font-size: 15px;
	color: var(--colorBoxContainerPost);
}
/*********************************************************************************/
/* Stellenbeschreibung                                                           */
/*********************************************************************************/
.stellenbeschreibung_row{
	display: flex;
}
.stellenbeschreibung_column{
	flex: 50%;
	padding: 30px;
}
.stellenbeschreibung_column img{
	border: 8px solid var(--colorBorder);
	box-shadow: 0 5px 5px var(--colorShadow);
}

/*********************************************************************************/
/* Header                                                                        */
/*********************************************************************************/
#header {
	padding-top: 20px;
    text-align: center;
    color: var(--colorText);
}
.header-desktop {
    position: relative;
}
.header-desktop img {
	height: 120px;
	width: auto;
	float: left;
	margin-right: 20px;
}
.header-desktop h1 {
	text-align: left;
	padding-top: 50px;
	height: 70px;
}
/*********************************************************************************/
/* Navigation                                                                    */
/*********************************************************************************/
.navbar {
    overflow: hidden;
    background-color: var(--colorBackgroundNavi);
    margin-top: 20px;
    margin-bottom: 20px;
	box-shadow: 0px -1px 1px 1px var(--colorShadow);
	border-radius: 1px;
}
.navbar a {
    float: left;
    color: var(--colorTextNavi);
    text-align: left;
    text-decoration: none;
    font-size: 110%;
	margin: 15px 2vw;
}
.dropdown {
    float: left;
    overflow: hidden;
}
.dropdown .dropbtn {
	cursor: pointer;
   	border: none;
    outline: none;
    color: var(--colorTextNavi);
    background-color: inherit;
    font-family: inherit;
    font-size: 110%;
    text-align: left;
	margin: 15px 2vw;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--colorBackgroundNavi);
    z-index: 1;
	margin-top: 1px;
	border-top: 5px solid var(--colorBackground);
	border-bottom: 5px solid var(--colorBackground);
}
.dropdown-content a {
    float: none;
    color: var(--colorTextNavi);
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 100%;
	margin: 15px 20px;
}
.navbar a:hover, .dropdown:hover .dropbtn {
	color: var(--colorTextNaviHover);
	text-decoration: none;
}
.dropdown-content a:hover {
    background-color: var(--colorBackgroundNavi);
}
.dropdown:hover .dropdown-content {
    display: block;
}
/*********************************************************************************/
/* Footer                                                                        */
/*********************************************************************************/
#footer {
	display: block;
	text-align: center;
}
#footer ul {
	display:block;
	text-align:center;
	margin: 0px auto;
}
#footer ul li {
	display: inline;
	font-size: 0.8em;
	line-height: 2.8em;
	color: var(--colorText);
	padding: 0em 0.625em 0em 0.625em;
}
#footer ul li a {
	color: var(--colorText);
	text-decoration: none;
	/* hyphens Silbentrennung */
	-moz-hyphens: none;
	-o-hyphens: none;
	-webkit-hyphens: none;
	-ms-hyphens: none;
	hyphens: none; 
}