@charset "utf-8";
/* CSS Document */


@media (prefers-color-scheme: light) {
}
	:root {
		--space_color: #FFF;
		
		--main_text_color: #222;
		--second_text_color: #CCC;
		--form_border_color: #CCC;
		--warning_form_red: #d04141;
		--footer_text_color: #999;
		
		--col_bg_color_white: #F8F8F8;
		--col_bg_color_black: #111;
	}


/*
@media (prefers-color-scheme: dark) {
	:root {
		--space_color: #000;
		
		--main_text_color: #CCC;
		--second_text_color: #CCC;
		--form_border_color: #111;
		--warning_form_red: #ab2d2d;
		--footer_text_color: #CCC;
		
		--col_bg_color_white: #111;
		--col_bg_color_black: #111;
	}
}
*/


html, body {
	width: 100%;
	height: 100%;
}

body {
	margin: 0;
	padding: 0;
	
	font-family: source-sans-pro, sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 14px;
	
	color: var(--main_text_color);
	background-color: var(--space_color);
}




.clearfix {
	position: relative;
	zoom: 1;
}

.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
}

.clearfix:after {
	clear: both;
}


div {
	display: block;
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	color: inherit;
}
a:hover {
	cursor: pointer;
}

a.cta_button {
	display: block;
	text-align: center;
	padding: 10px;
	border-radius: 4px;
	color: var(--second_text_color);
	border: 2px solid var(--second_text_color);
}

@media (prefers-color-scheme: light) {
	.pop_up_box a.cta_button {
		color: var(--main_text_color);
		border: 2px solid var(--second_text_color);
	}
}



p,
footer a{
	line-height: 22px;
}

p.smaller {
	font-size: 75%;
}
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.inner {
	position: relative;
	margin: 0 auto;
}

small {
	letter-spacing: 5px;
	text-transform: uppercase;
	opacity: 0.5;
}





 
h1, h2, h3, h4, h5 {
	font-family: source-sans-pro, sans-serif;
	
}

h2, h3 {
	text-transform: uppercase;
	font-weight: 200;
}
.standard h2, .standard h3 {
	font-size: 3vw;
	line-height: 3vw;
	letter-spacing: 4px;
}


.mobile h2 {
	font-size: 35px;
	line-height: 40px;
	letter-spacing: 3.5px;
}

.mobile h3 {
	font-size: 28px;
	line-height: 32px;
	letter-spacing: 3.5px;
}



.out {
	opacity: 0;
}



header {
	position: fixed;
	top: 0;
	z-index: 100;
	
	width: 100%;
	
	user-select: none;
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	
	-webkit-transition: opacity 500ms ease-in 0ms;
	transition: opacity 500ms ease-in 0ms;
	
}
.standard header {
	padding: 30px 5vw;
}

.mobile header {
	padding: 20px;
	height: 70px;
}





@media (prefers-color-scheme: light) {
	header {
		background-color: rgba(255, 255, 255, .75);
	}	
}

@media (prefers-color-scheme: dark) {
	header {
		background-color: rgba(0, 0, 0, .5);
	}	
}






header .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .logo {
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 14px;
	transition: opacity 500ms ease-in 0ms;
}

header .logo .icon {
	margin: 0 15px 0 0;
	width: 30px;
	height: 30px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}






#intro .slogan,
#intro .quote {
	position: absolute;
	-webkit-transition: opacity 500ms ease-in 0ms;
	transition: opacity 500ms ease-in 0ms;
	z-index: 99;
}
#intro .slogan {
    background-color: #EFB361;
    color: #FFF;
    box-shadow: 20px 20px 40px rgb(0 0 0 / 10%);
}



.standard #intro .slogan {
    padding: 24px 40px;
    top: 55%;
    right: 35%;
    font-size: 22px;
	font-weight: 500;
    text-transform: uppercase;
	line-height: 26px;
}

.mobile #intro .slogan {
	padding: 20px;
	top: 42vh;
	left: 10%;
	right: 51%;
}



#intro .quote {
	font-style: italic;
	opacity: 0.75;
}
#intro .quote p {
	line-height: 26px;
}

#intro .quote a {
	background-color: #000;
	color: #FFF;
	padding: 10px 20px;
	font-size: 14px;
}

.standard #intro .quote {
    left: 7vw;
    bottom: 11%;
    right: 50%;
    font-size: 150%;
}
.mobile #intro .quote {
	left: 15vw;
	bottom: 10vh;
	right: 30vw;
}




#intro .quote:before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    translate: -20px -40px;
    background-image: url(../sources/quote.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
	opacity: 0.75;
}



@media (prefers-color-scheme: light) {
	header .logo .icon {
		background-image: url(../sources/logo_black.svg);
	}
}
@media (prefers-color-scheme: dark) {
	header .logo .icon {
		background-image: url(../sources/logo_white.svg);
	}
}

header nav.standard {
	text-transform: uppercase;
}

header nav.standard a {
	margin-left: 20px;
	transition: opacity 500ms ease-in 0ms;
}	
header nav.standard a:first-child {
	margin-left: 0;
}	







body.standard nav.mobile {
	display: none;
}

body.mobile nav.standard {
	display: none;
}





nav.mobile {
	position: fixed;
	left: 0;
	top: 70px;
	height: 0vh;
	width: 100vw;
	background-color: #000;
	z-index: 900;
	overflow: hidden;
	-webkit-transition: height 500ms cubic-bezier(0.8, 0, 0.5, 1) 0ms;
	transition: height 500ms cubic-bezier(0.8, 0, 0.5, 1) 0ms;
}

nav.mobile.open {
	height: calc(100vh - 70px);
}


nav.mobile a {
	display: block;
	padding: 10px 30px;
	text-align: right;
	color: #CCC;
	background-color: #000;
	font-family: source-sans-pro, sans-serif;
	font-size: 35px;
	line-height: 35px;
	font-weight: 200;
	text-transform: uppercase;
	-webkit-transition: opacity 500ms ease-in 0ms;
	transition: opacity 500ms ease-in 0ms;
}

nav.mobile a:first-child {
	margin-top: 5vh;
}

nav.mobile a.mini {
    font-size: 25px;
    line-height: 25px;
}




.standard header .menu_icon {
	display: none;
}

.mobile header .menu_icon {
	display: block;
    position: fixed;
    right: 5px;
    z-index: 9000;
    padding: 25px 16px;
    height: 70px;
    width: 70px;
    text-align: center;
}




/* *******************************************************************************+ */
/* *******************************************************************************+ */
/*																					*/
/*		Intro																		*/
/*																					*/
/* *******************************************************************************+ */
/* *******************************************************************************+ */

#intro {
	position: relative;
	height: 100vh;
	margin: 0;
	overflow: hidden;
}


#intro .image {
	position: absolute;
	height: 100vh;
    width: 100vw;
}


#intro .image .element {
	position: absolute;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	-webkit-transition: opacity 1500ms cubic-bezier(0.8, 0, 0.2, 1) 0ms;
	transition: opacity 1500ms cubic-bezier(0.8, 0, 0.2, 1) 0ms;
	box-shadow: 20px 20px 40px rgb(0 0 0 / 10%);
}

.standard #intro .image .element:nth-child(1) {
	top: 10%;
    left: 5vw;
    right: 20%;
    bottom: 40%;
}
.standard #intro .image .element:nth-child(2) {
	top: 20%;
	left: 60%;
	right: 5vw;
	bottom: 10%;
}


.mobile #intro .image .element:nth-child(1) {top: 10vh;left: 5vw;right: 5vw;bottom: 56%;}
.mobile #intro .image .element:nth-child(2) {top: 40%;left: 60%;right: 0%;bottom: 34%;}


.standard #intro .image .element:nth-child(1) {	background-image: url(../sources/moods/Heerstr.18-20_3D-Website.jpg);	}
.standard #intro .image .element:nth-child(2) {	background-image: url(../sources/moods/AV2A5285.jpg);	}
.mobile #intro .image .element:nth-child(1) {	background-image: url(../sources/moods/Heerstr.18-20_3D-Website.jpg);	}
.mobile #intro .image .element:nth-child(2) {	background-image: url(../sources/moods/AV2A5285.jpg);	}


.standard #intro .image.in {	top: 15vh;			bottom: 15vh;	}
.mobile #intro .image.in {		top: 0;			bottom: 0;		}

.standard #content {
	margin: 0 0 0 0;
}

.text_content p a {
	border-bottom: 1px solid;
}


.vfx {
	opacity: 0.0;	transform: translate(-80px, 0px);
	-webkit-transition: transform 1000ms ease-in-out 0ms,
				opacity 1000ms ease-in-out 0ms;
	transition: transform 1000ms ease-in-out 0ms,
				opacity 1000ms ease-in-out 0ms;
}
.vin {		opacity: 1.0;	transform: translate(0px, 0px);		}








/* *******************************************************************************+ */
/* *******************************************************************************+ */
/*																					*/
/*		Content 1																	*/
/*																					*/
/* *******************************************************************************+ */
/* *******************************************************************************+ */


#kohawe {
	position: relative;
	margin: 10vw 0;
}

.standard #kohawe {
	min-height: 130vh;
}






#kohawe .image {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom center;
	background-image: url(../sources/moods/AV2A5173.jpg);
	/*background-image: url(../sources/moods/AV2A5185.jpg);*/
	/*background-image: url(../sources/moods/AV2A5047.jpg);*/
	/*background-image: url(../sources/moods/AV2A5349.jpg);*/
	z-index: 50;
	box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.1);
}
#kohawe .text_content {
	color: #FFF;
	z-index: 49;
}




.standard #kohawe .image {
	position: absolute;
	left: 5vw;
	top: 10vh;
	right: 15vw;
	height: 56%;
	background-position: center;
}
.standard #kohawe .text_content {
	position: absolute;
	padding: 45vh 50px 90px 50px;
	left: 10vw;
	top: 45vh;
	right: 10vw;
	
}
.standard #kohawe .text_content div p {
	margin-top: 0;
}
.standard #kohawe .text_content div {
	column-count: 2;
	column-fill: balance-all;
}

.standard #kohawe .threesixty {
	position: absolute;
    margin: 30px;
    left: 5vw;
    top: 10vh;
    width: 80px;
    height: 80px;
    background-image: url(../sources/360.svg);
    background-position: center;
    background-size: contain;
	opacity: 0.75;
    z-index: 200;
	-webkit-transition: opacity 100ms cubic-bezier(0.8, 0, 0.5, 1) 0ms;
	transition: opacity 100ms cubic-bezier(0.8, 0, 0.5, 1) 0ms;

}
.standard #kohawe .threesixty:hover {
	opacity: 1;
	cursor: pointer;
}








.mobile #kohawe .image {
	width: 90%;
	height: 40vh;
}
.mobile #kohawe .text_content {
	margin: -20px 0 0 5vw;
	padding: 50px 30px;
	width: 95vw;
}



@media (prefers-color-scheme: light) {
	#kohawe .text_content {
		background-color: #73987C;
		box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.1);
	}	
}

@media (prefers-color-scheme: dark) {
	#kohawe .text_content {
		background-color: #000;
	}	
}





/* *******************************************************************************+ */
/* *******************************************************************************+ */
/*																					*/
/*		Content Specs																*/
/*																					*/
/* *******************************************************************************+ */
/* *******************************************************************************+ */


#specs {
	position: relative;
	margin: 10vw 0;
}

.standard #specs {
	min-height: 110vh;
}



#specs .text_content {
	color: #FFF;
	z-index: 49;
	background-color: #EFB361;
}











#specs .image {
	background-image: url(../sources/moods/AV2A5151-2.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom center;
	z-index: 50;
	box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.1);
}
.standard #specs .image {
	position: absolute;
	left: 60vw;
	top: 10vh;
	right: 10vw;
	height: 80%;
}
.mobile #specs .image {
	width: 90%;
	height: 40vh;
}

.standard #specs .text_content {
    position: absolute;
    padding: 50px;
    left: 15vw;
    top: 20vh;
    right: 40vw;
}

.mobile #specs .text_content {
	margin: 0;
	padding: 50px 30px;
	width: 95vw;
}


.specs_wrapper {
	display: grid;
	margin: 20px 0;
	grid-column-gap: 0px;
	grid-row-gap: 0px;

}
.standard .specs_wrapper {
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(3, 1fr);
}
.mobile .specs_wrapper {
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(4, 1fr);
}

.specs_wrapper .spec {
	
}
.specs_wrapper .spec .specicon {
	font-size: 200%;
}

.specs_wrapper .spec div {
	margin: 20px 20px 20px 0;
}





/* *******************************************************************************+ */
/* *******************************************************************************+ */
/*																					*/
/*		Content History																*/
/*																					*/
/* *******************************************************************************+ */
/* *******************************************************************************+ */


#history {
	position: relative;
	margin: 10vw 0;
}
.standard #history {
	min-height: 65vh;
}




#history .image {
	background-image: url(../sources/moods/AV2A5184.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom center;
	z-index: 50;
	box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.1);

}
#history .text_content {
	padding: 0;
	left: 10vw;
	top: 25vh;
	right: 35vw;
	color: #FFF;
	background-color: #EFB361;
	z-index: 49;
	box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.1);
}


.standard #history .image,
.standard #history .text_content {
	position: absolute;
}

.mobile #history .image,
.mobile #history .text_content {
}



.standard #history .image {
	position: absolute;
	left: 63vw;
	top: 10vh;
	right: 5vw;
	height: 85%;
}
.standard #history .text_content {
	padding: 0;
	left: 10vw;
	top: 25vh;
	right: 35vw;
	color: #FFF;
}
.standard #history .text_content .additional_info{
	padding: 20px;
	color: var(--main_text_color);
	background-color: #eee;
}



.mobile #history .image {
	width: 90%;
	height: 20vh;
}
.mobile #history .text_content {
	padding: 0;
	width: 100vw;
}






#history .text_content.slides {
	display: flex;
	flex-direction: column;
}

.slide_wrapper {
	position: relative;
    display: flex;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
	align-items: flex-start;
	-webkit-transition: height 1000ms cubic-bezier(0.8, 0, 0.5, 1) 0ms;
	transition: height 1000ms cubic-bezier(0.8, 0, 0.5, 1) 0ms;
}
.slide_wrapper::-webkit-scrollbar {
	display: none;
}
.slide {
	width: 100%;
    min-width: 100%;
    scroll-snap-align: start;
}

.standard .slide {
	padding: 50px;
}
.mobile .slide {
	padding: 50px 30px;
}


#history .story_menu {
	overflow-x: scroll;
	overflow-y: hidden;
	height: 50px;
}
#history .story_menu::-webkit-scrollbar {
	display: none;
}
.standard #history .story_menu {
	position: absolute;
	left: 10vw;
	top: 25vh;
	right: 37vw;
	margin: -50px 0 0 0;
}
.mobile #history .story_menu {
    width: 100%;
	margin: 20px 0 0 0;
}

.story_menu_inner {
	display: flex;
	padding: 0 150px 0 20px;
}



#history .story_menu a {
	padding: 10px 10px 40px 10px;
	opacity: 0.5;
	-webkit-transition: opacity 150ms ease-out 0ms;
	transition: opacity 150ms ease-out 0ms;
}

#history .story_menu a:first-child {
	padding: 10px 10px 40px 0;
	border-left: 0px solid #ccc;
}



#history .story_menu a:hover,
#history .story_menu a.active {
	cursor: pointer;
	opacity: 1;
}



@media (prefers-color-scheme: light) {
	#history .text_content {		background-color: #edaa5b;		box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.1);	}	
	#history .story_menu a {		border-left: 2px solid #ccc;		}
}	

@media (prefers-color-scheme: dark) {
	#history .text_content {		background-color: #111;		}	
	#history .story_menu a {		border-left: 2px solid #111;		}
}	





/* *******************************************************************************+ */
/* *******************************************************************************+ */
/*																					*/
/*		Content 3																	*/
/*																					*/
/* *******************************************************************************+ */
/* *******************************************************************************+ */


#position {
	position: relative;
	margin: 10vw 0;
}

.standard #position {
	min-height: 80vh;
}
.mobile #position {
	padding: 48vh 0 0 0;
}






#position .text_content {
	color: #FFF;
	z-index: 49;
}
.standard #position .text_content {
	position: absolute;
	padding: 50px 50px 50px 50vw;
	left: 5vw;
	top: 25vh;
	right: 10vw;
}





.mobile #position .text_content {
	margin: -20px 0 0 5vw;
	padding: 50px 30px;
	width: 95vw;
}



#slideshow {
	position: absolute;
	left: 10vw;
	top: 10vh;
	right: 50vw;
	height: 90%;
	z-index: 50;
}
.mobile #position #slideshow {
	left: 0;
	right: 0;
	height: 40vh;
}
#slideshow .slide_image_wrapper {
	display: flex;
	width: 100%;
	height: 100%;
	overflow-x: scroll;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	align-items: flex-start;
}

#slideshow .slide_image_wrapper .slide_image {
	width: 85%;
	min-width: 85%;
	height: 100%;
	scroll-snap-align: start;
	
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}


#slideshow .slide_image:nth-child(1) {	background-image: url(../sources/slides/olympiastadion.jpg);				} /* Olympiastadion */
#slideshow .slide_image:nth-child(2) {	background-image: url(../sources/slides/429355350_andreas_rehkopp.jpg);		} /* Schloss Charlottenburg */
#slideshow .slide_image:nth-child(3) {	background-image: url(../sources/slides/325024837_gregor.jpg);				} /* Funkturm  */
#slideshow .slide_image:nth-child(4) {	background-image: url(../sources/slides/90288337_cara-foto.jpg);			} /* Siegessäule */
#slideshow .slide_image:nth-child(5) {	background-image: url(../sources/slides/80345937_spuno.jpg);				} /* Hauptbahnhof */
#slideshow .slide_image:nth-child(6) {	background-image: url(../sources/slides/247542943_bildgigant.jpg);			} /* Alexanderplatz */



#position .arrow {
	position: absolute;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	animation: left_right_ani 1s ease-in-out infinite alternate;
	z-index: 1000;
}
.standard #position .arrow {
	width: 70px;
    height: 140px;
    left: calc(100% - 35px);
    top: calc(50% - 70px);
}
.mobile #position .arrow {
	width: 40px;
    height: 80px;
	top: calc(100% - 40px);
    right: 20px;
}

@media (prefers-color-scheme: light) {
	#position .text_content {
		background-color: #73987C;
		box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.1);
	}
	#position .arrow {
		background-image: url(../sources/arrow_right_fff.svg);
	}
}

@media (prefers-color-scheme: dark) {
	#position .text_content {
		background-color: #000;
	}
	#position .arrow {
		background-image: url(../sources/arrow_right_ccc.svg);
	}
}


@keyframes left_right_ani {
	from {	transform: translate3d(10px, 0, 0);		}
	to {	transform: translate3d(-10px, 0, 0);		}
}





.place {} 
.details {}
.details .item {
	display: inline-block;
	margin: 5px;
	font-size: 80%;
	opacity: 0.7;
}
.details .item .icon-cab {
	margin-right: 7px;
}


/* *******************************************************************************+ */
/* *******************************************************************************+ */
/*																					*/
/*		Content contact																*/
/*																					*/
/* *******************************************************************************+ */
/* *******************************************************************************+ */


#contact {
	position: relative;
	margin: 10vw 0;
}

.standard #contact {
	min-height: 100vh;
}






#contact .image {
	background-image: url(../sources/moods/AV2A5072.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom center;
	z-index: 50;
	box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.1);
}
#contact .text_content {
	color: #FFF;
	z-index: 49;
	background-color: #73987C;
}





.standard #contact .image {
	position: absolute;
    left: 50vw;
    top: 10vh;
    right: 10vw;
    height: 90%;
}
.standard #contact .text_content {
    position: absolute;
    padding: 50px 20vw 50px 50px;
    left: 10vw;
    top: 15vh;
    right: 35vw;
}

.mobile #contact .image {
	width: 90%;
	height: 40vh;
}
.mobile #contact .text_content {
	margin: -20px 0 0 5vw;
	padding: 50px 30px;
	width: 95vw;
}



@media (prefers-color-scheme: light) {
	#contact .text_content {
		background-color: #73987C;
		box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.1);
	}	
}

@media (prefers-color-scheme: dark) {
	#contact .text_content {
		background-color: #000;
	}	
}


.contact_form .input_wrapper,
.contact_form .select_wrapper {
	position: relative;
	margin: 0 0 25px;
}
.content .input_wrapper {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background-color: #333;
}
input, textarea, select {
	/* font-family: 'Open Sans', Verdana, Geneva, sans-serif !important; */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 12px;
}
.contact_form input,
.contact_form textarea {
	width: 100%;
	padding: 20px 0 5px 15px;

	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 0px;

	outline: none;
	font-size: 17px;
	font-weight: lighter;

	background-color: transparent;
	color: inherit;
}
.contact_form textarea {
	resize: none;
	height: 120px;
}

.contact_form label {
	position: absolute;
	font-size: 15px;
	top: 20px;
	opacity: 0.5;
	transition: all 300ms cubic-bezier(0.75, 0, 0, 1) 0ms;
}

.contact_form label.hl {
	color: red;
	opacity: 1;
}

.contact_form label.focused,
.contact_form .select_wrapper label {
	position: absolute;
	font-size: 11px;
	top: 0px;
	opacity: 0.3;
}


.contact_form .select_wrapper select {
	display: block;
	width: 100%;
	padding: 20px 0 5px 15px;

	border: none;
	border-radius: 0px;
	outline: 0;

	background-color: #FFF;
	border-bottom: 1px solid #999;
	font-size: 14px;

	-webkit-appearance: none;
}




a.submit {
	display: block;
	padding: 25px 20px;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
}

















footer {
	padding: 60px 5vw;
}

.mobile footer {
	padding: 50px 30px;
}

footer {
	color: var(--footer_text_color);
	background-color: #111;
}
footer a {
	color: var(--footer_text_color);
}
footer a:hover {
	text-decoration: underline;
}





footer.links a {
	font-size: 10px;
}

footer .inner {
	display: flex;
}
.standard footer .inner {
	flex-direction: row;
}
.mobile footer .inner {
	flex-direction: column;
}

.standard footer .inner .col {
    position: relative;
    width: 100%;
    padding: 20px;
    text-align: left;
}


footer .inner .col .maps {
	width: 100%;
	height: 100%;
}
.standard footer .inner .col .maps {
	background-size: 100% auto;
    background-position: center;
}

.mobile footer .inner .col .maps {
	margin: 20px 0 0 0;
	background-size: auto 115%;
    background-position: center;
}



.standard footer .inner .col:nth-child(1) {	width: 100px;	}
.standard footer .inner .col:nth-child(2) {	width: 500px;	}
.standard footer .inner .col:nth-child(3) {		}
.standard footer .inner .col:nth-child(4) {	text-align: right;	}
*/
.mobile footer .inner .col {
	width: 100%;
}





















.communicator {
	position: fixed;
	padding: 5px 0 5px 5px;
	right: 0;
	background-color: #222;
	border-radius: 20px 0 0 20px;
	z-index: 100;
}
.standard .communicator {
	top: calc(50% - 80px);
}
.mobile .communicator {
	bottom: 50px;
}
.communicator a {
	display: block;
	color: #f8f8f8;
	padding: 15px;
}








.cookie_box_wrapper {
	display: none;
	position: fixed;
	width: 100%;
	bottom: 0;
	z-index: 1000;
}

#cookie_box {
	margin: 0 auto;
	padding: 1px 20px 20px 20px;
	
	max-width: 450px;
	max-height: 400px;
	overflow-y: scroll;
	
	-webkit-backdrop-filter: blur(10px) brightness(0.35);
	backdrop-filter: blur(10px) brightness(0.35);
	color: #CCC;
}
.mobile #cookie_box {
	width: 100%;
}
#cookie_box ul {
	display: flex;
	padding: 0;
	margin: 0 0 30px;
}
#cookie_box ul li {
	margin: 5px 5px 5px 0;
	list-style: none;
}

#cookie_box ul li label {
	font-size: 12px;
	margin: 0 15px 0 0;
}

#cookie_box ul li input {
	margin: 0 7px 0 0 ;
	list-style: none;
	vertical-align: -2px;
}







#cookie_box input[type="checkbox"] {
	appearance: none;
	width: 13px;
	height: 13px;
	background-color: #FFF;
	border: 2px solid #fff;
	border-radius: 2px;
	outline: none;
}
#cookie_box input[type="checkbox"]:disabled {
	opacity: 0.55;
}
#cookie_box input[type="checkbox"]:checked {
	background-color: #000;
}

#cookie_box .cookie_box_content_additional {
	display: none;
	margin: 30px 0;
}


#cookie_box table td {
	vertical-align: top;
	padding: 3px;
}
#cookie_box table td:nth-child(1) {
	width: 30px;
}
#cookie_box table td:nth-child(2) {
	width: 120px;
}
#cookie_box table {
	font-size: 10px;
}
#cookie_box table input {
	margin: 0 0 0 0 ;
	list-style: none;
	vertical-align: -2px;
}




.cookie_box_footer {
	text-align: center;
}
.cookie_box_footer a {
	color: #fff;
	opacity: 0.5;
	font-size: 10px;
}

.cookie_box_footer a:hover {
	text-decoration: underline;
	opacity: 1.0;
}

















.standard section#imprint {		margin-top: 50px !important;    max-width: 1000px;		}
.mobile section#imprint {		margin-top: 20px !important;	}

.mobile section#imprint h2 {
	font-size: 25px;
	line-height: 25px;
}

.standard section#imprint h3{
	font-size: 25px;
	line-height: 35px;
	margin-top: 70px !important;
}
.standard section#imprint h4 {
	font-size: 18px;
	line-height: 18px;
}


.mobile section#imprint h3 {
	font-size: 18px;
    line-height: 18px;
	margin-top: 40px !important;
}

.mobile section#imprint h4 {
	font-size: 15px;
    line-height: 15px;
}






section#imprint {
	margin: 0 auto;
	max-width: 1000px;
	margin-top: 10vh;
	padding: 50px;
	background-color: var(--col_bg_color_white);
}


section#imprint h2 {font-weight: bold; }
section#imprint h3 {font-weight: normal;}
section#imprint h4 {font-weight: normal;}
section#imprint p {}









