/* RESET CSS */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	box-sizing:border-box;
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	text-decoration: none;
	text-align:left;
	font-family: Georgia, Palatino, Palatino Linotype, Times, Times New Roman, serif;
	letter-spacing: 0.5px;
	line-height: 18px;
    font-size: 14px;
    color:#fff;
    overflow:visible;
    position:relative;
    transform: scale(1);
    -webkit-font-smoothing: antialiased;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}

.text a, h1, h2 {
	opacity: 0.6;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* WEBSITE ELEMENTS */

h1{
	font-size: 20px;
	/*text-transform: uppercase;*/
	padding-bottom: 25px;
	font-weight: bold;

	/*color: #fff;*/
}

h2{
	text-transform: uppercase;
	padding-bottom: 5px;
}
h3{
	/*text-transform: uppercase;*/
	padding-bottom: 5px;
	font-weight: bold;
}

p{	
	padding-bottom: 25px;
}

img{
	width:100%;
	height:auto;
}

li{
	list-style-image: url(../images/stern.png);
	margin-left: 16px;
	padding-bottom: 6px;
}

#content {
	width:100%;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 30px;
	padding-top: 30px;
}

#Logo img{
	padding: 40px;
}

.flexbox {
	display: flex;
}

.box {
	width: calc(50% - 30px);
	margin-right:30px;
	margin-bottom:30px;
}

.text {
	background-color: #BEB5AF;
    padding: 20px;
}

.left {
	float: left;
	margin-top: 0px;

}

.right {
	float: right;
	margin-top: 0px;
}

.mySlides{
	transition: opacity 3s;
	opacity: 0;
	position: absolute;
	top: 0px;
	left: 0px;
}

/* MARKEN-Overlay */
.hover{
	position:absolute; 
    top: 0px; 
    left: 0px; 
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,1);
    transition: opacity 1s;
	opacity: 0;
}

.hover li, .hover li b, .hover li a {
	margin-left: 0px;
 	list-style:none;
 	color: #BEB5AF;
	opacity: 1;
}

.hover li b {
	margin-left: 0px;
 	list-style:none;
 	color: #BEB5AF;
 	font-weight: bold;
	opacity: 1;
}

#Konzepte:hover div.hover{
	opacity: 1;
}

#Ladenlokal:hover div.hover{
	opacity: 1;
}


/* LAGEPLAN */
#Lageplan {
	overflow:hidden;
}

#Lageplan img{
	transition: transform 1s;
	transform: scale(1);
}

#Lageplan:hover img{
	transform: scale(1.05);
}


/* RESPONSIVE */
.desktop{
	display:block;
}

.mobile{
	display:none;
}

@media screen and (max-width: 600px) {
	.desktop{
		display:none;
	}

	.mobile{
		display:block;
	}
	.flexbox { display: block;}
	.box {
/*		width: 100%;*/
		width: calc(100% - 30px);
		height:100%;
	}
}