:root 
{
	--gold: #d7b46a;
	--lightgold: #fad187;
	--dark: #000000;
}

* 
{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body 
{
	font-size: 1.35em;
	color: #fff;
	font-family: 'Footlight', sans-serif;
	font-weight: 300;
	line-height: 1.8;
	overflow-x: hidden;
	background-color: var(--dark);
}

::selection 
{
	background-color: var(--lightgold);
 	color: var(--dark);
}

::-moz-selection 
{
  	background-color: var(--lightgold);
 	color: var(--dark);
}

h1, h2, h3
{
	color: var(--gold);
	font-weight: 300;
	line-height: 1.35;
	font-size: 4em;
}

h2
{
	font-size: 2.5em;
}

h3
{
	font-size: 2em;
}

h3 + table, p + p, ul + p
{
	margin-top: 1em;
}

h2 + p, h2 + ul, h3 + p, h3 + ul
{
	margin-top: 0.5em;
}

.imgFlex h2, .imgFlex h3
{
	color: var(--dark);
}

.wrap
{
	max-width: 1100px;
	display: block;
	margin: auto;
	padding: 0px 40px;
	position: relative;
}

#header
{
	position: sticky;
	position: -webkit-sticky;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 10000;
	transition: all 0.2s;
	background-color: var(--dark);
	border-bottom: 5px solid var(--gold);
}

#navigation ul
{
	text-align: right;
}

#navigation ul li
{
	display: inline-block;
	margin-left: 40px;
	padding: 42px 0px 38px;
}

#navigation ul li a
{
	color: var(--gold);
	text-decoration: none;
	transition: all 0.2s;
	opacity: 0.7;
}

#navigation ul li.active a, #navigation ul li:hover a
{
	opacity: 1;
}

#logo
{
	position: absolute;
	height: 100%;
	padding: 28px 0px;
}

#opener
{
	width: 100%;
	height: 68vh;
	background-size: cover;
	background-position: center;
	position: relative;
	border-bottom: 5px solid var(--gold);
	max-height: 650px;
}

#opener:after, .dividerImg:after
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10;
	background-color: rgba(0,0,0,0.45);
}

#openerContent
{
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 50px;
	z-index: 20;
}

.text
{
	margin: 60px 0px;
}

.dividerLine
{
	width: 250px;
	height: 5px;
	background-color: var(--gold);
	position: relative;
}

.dividerLine:before
{
	content: "";
	position: absolute;
	width: 50vw;
	height: 100%;
	right: 100%;
	background-color: var(--gold);
	top: 0;
}

.imgFlex
{
	display: flex;
}

.imgFlex.right
{
	flex-direction: row-reverse;
}

.imgFlexItem
{
	width: 50%;
}

.textBox
{
	padding: 55px 60px;
	position: relative;
	margin-top: 60px;
	color: var(--dark);
}

.textBox .buttonArea
{
	padding-bottom: 5px;
}

.textBox:before
{
	content: "";
	position: absolute;
	width: 150%;
	height: 100%;
	right: 0;
	top: 0;
	background-color: var(--gold);
	z-index: -10;
}

.right .textBox:before
{
	left: 0;
	right: auto;
}

.inline
{
	width: 100%;
	margin-bottom: -9px!important;
}

.imgFlex .inline
{
	border-right: 5px solid var(--dark);
	border-bottom: 5px solid var(--dark);
}

.imgFlex.right .inline
{
	border-left: 5px solid var(--dark);
	border-right: none;
	border-bottom: 5px solid var(--dark);
}

.text-center
{
	text-align: center;
}

.divider
{
	width: 100%;
	height: 55px;
	background-image: url(icon.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.dividerImg
{
	width: 100%;
	padding: 160px 0px;
	background-size: cover;
	background-position: center;
	position: relative;
}

.dividerImg h2, .dividerImg h3
{
	color: var(--gold);
}

.dividerImg .wrap
{
	position: relative;
	z-index: 20;
}

.text.withButton p a, .text .buttonArea p a, .buttonArea p a
{
	display: inline-block;
	text-decoration: none;
	color: var(--dark);
	background-color: var(--gold);
	line-height: 1.45;
	padding: 0.6em 1.2em 0.42em;
	transition: all 0.2s;
	border-bottom: none!important;
	text-align: center;
}

.text.withButton p a:hover, .text .buttonArea p a:hover, .buttonArea p a:hover
{
	background-color: var(--lightgold);
	color: var(--dark);
}

.withButton
{
	margin-top: -35px;
}

.withMap + .withButton
{
	margin-top: -10px;
}

.buttonArea
{
	margin-top: 25px;
}

.text .textBox .buttonArea p a
{
	background-color: var(--dark);
	color: var(--gold);
}

.text .textBox .buttonArea p a:hover
{
	background-color: var(--lightgold);
	color: var(--dark);
}

table
{
	border-collapse: collapse;
  	width: 100%;
  	position: relative;
}

td
{
	padding-top: 0.8em;
	padding-bottom: 0.7em; 
	vertical-align: top;
}

tr:before, table:after
{
	content: "";
	position: absolute;
	width: 100vw;
	height: 1px;
	background-color: var(--gold);
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

table:after
{
	top: auto;
	bottom: 0;
}

tr td:nth-child(1)
{
	padding-right: 40px;
	font-weight: 800;
}

tr td:nth-child(2)
{
	text-align: right;
	min-width: 120px;
}

tr
{
	position: relative;
}

.slide
{
	height: 55vh;
	max-height: 480px;
	border-left: 5px solid var(--dark);
	border-right: 5px solid var(--dark);
}

.slick-dots
{
	position: relative;
	bottom: 0;
	margin-top: 15px;
}

.slick-dots li button
{
	display: none;
}

.slick-dots li
{
	width: 10px;
	height: 10px;
	border-radius: 100px;
	background-color: #fff;
	transition: all 0.2s;
	cursor: pointer;
	margin: 0 6px;
	padding-left: 0!important;
}

.slick-dots li.slick-active
{
	background-color: var(--gold)!important;
	width: 25px;
}

.slick-arrow
{
	position: absolute;
	width: 40px;
	height: 40px;
	background-color: var(--gold);
	left: 40px;
	top: calc(50% - 24px);
	transform: translateY(-50%);
	cursor: pointer;
	z-index: 50;
	background-size: 53%;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.2s;
}

.slick-arrow:hover
{
	background-color: var(--lightgold);
}

.next
{
	background-image: url(next.svg);
}

.prev
{
	background-image: url(prev.svg);
}

.slick-arrow.next
{
	right: 40px;
	left: auto;
}

.slideshow ul li:before
{
	display: none!important;
}

.slick-dotted.slick-slider
{
	margin-bottom: 0!important;
}

strong, #copy
{
	font-weight: 800;
}

.text p a, .text ul a, #cookieNotice a, form a
{
	color: #fff;
	text-decoration: none;
	border-bottom: 1px dashed #fff;
	transition: all 0.2s;
}

.text p a:hover, .text ul a:hover, #cookieNotice a:hover, form a:hover
{
	color: var(--lightgold);
	border-bottom: 1px solid var(--lightgold);
}

.text .textBox p a, .text .textBob ul a
{
	color: var(--dark);
	border-color: var(--dark);
}

#drdsgvo_map
{
	width: 100%;
	height: 390px;
	font-size: 1rem!important;
	background-color: var(--gold);
}

#copy
{
	position: absolute;
}

#footer
{
	padding: 30px 0px 26px;
	color: var(--dark);
	background-color: var(--gold);
}

#footerList
{
	text-align: right;
}

#footerList li
{
	display: inline-block;
	margin-left: 40px;
}

#footerList li a
{
	color: var(--dark);
	text-decoration: none;
	transition: all 0.2s;
	border-bottom: 1px solid transparent;
}

#footerList li a:hover
{
	border-bottom: 1px solid var(--dark);
}

#start
{
	padding-top: 0px;
	margin-top: 0px;
}

#kontakt
{
	padding-top: 120px;
	margin-top: -180px;
}

#vision
{
	padding-top: 120px;
	margin-top: -160px;
}

.pageSection
{
	padding-top: 120px;
	margin-top: -120px;
}

#cookieNotice
{
	position: sticky;
	position: -webkit-sticky;
	width: 100%;
	left: 0;
	bottom: 0;
	z-index: 100;
	font-size: 0.8em;
	background-color: var(--dark);
	border-top: 5px solid var(--gold);
	padding: 20px 0px;
	margin-top: -5px;
}

#cookieCheckboxes
{
	display: flex;
	flex-wrap: wrap;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

#cookieCheckboxes label
{
	position: relative;
	margin-right: 1.8em;
	padding-left: 1.3em;
	cursor: pointer;
}

#cookieCheckboxes input
{
	position: absolute;
	left: 0;
	top: 44%;
	transform: translateY(-50%);
}

#acceptWrap
{
	text-align: right;
}

#accepted
{
	font-weight: 800;
	cursor: pointer;
	color: var(--gold);
	transition: all 0.2s;
}

#accepted:hover
{
	color: var(--lightgold);
}

@media all and (max-width: 450px){
	tr td:nth-child(1)
	{
		display: block;
		font-weight: 800;
	}

	tr td:nth-child(2)
	{
		display: block;
		min-width: 100%;
		text-align: left;
		margin-top: -1.5em;
	}

	.textBox
	{
		padding: 18px 20px 15px 20px!important;
	}
}

@media all and (max-width: 600px){
	#copy
	{
		position: relative;
		display: block;
	}

	#footerList
	{
		text-align: left;
		margin-bottom: -1px;
	}

	#footerList li
	{
		display: block;
		margin-left: 0;
	}
}

@media all and (max-width: 640px){
	#drdsgvo_map
	{
		height: 220px!important;
	}

	body
	{
		font-size: 1.25em!important;
	}

	h1
	{
		font-size: 2.2em!important;
	}

	h2
	{
		font-size: 1.5em!important;
	}

	h3
	{
		font-size: 1.3em!important;
	}

	.dividerLine
	{
		width: 180px!important;
	}

	.divider
	{
		height: 40px!important;
	}

	.imgFlex
	{
		display: block;
	}

	.imgFlexItem
	{
		width: 100%;
	}

	.textBox:before
	{
		width: 100%;
	}

	.textBox
	{
		margin-top: -5px!important;
	}

	.imgFlex .inline
	{
		border: none!important;
	}

	#opener
	{
		height: 49vh!important;
		min-height: 240px!important;
	}

	.slide
	{
		height: 33vh!important;
		min-height: 170px!important;
	}

	.next, .prev
	{
		display: none!important;
	}

	.slick-dots
	{
		margin-top: 10px;
	}

	.slick-dots li
	{
		width: 8px;
		height: 8px;
		margin: 0 5px;
	}

	.slick-dots li.slick-active
	{
		width: 20px;
	}
}

@media all and (max-width: 1040px){
	#navigation
	{
		display: none;
		position: fixed;
		width: 100%;
		left: 0;
		top: 75px;
		background-color: var(--dark);
		border-bottom: 5px solid var(--gold);
		z-index: 400;
		max-height: calc(100vh - 75px);
		overflow: auto;
	}

	#navigation ul li
	{
		display: block;
		margin-left: 0;
		padding: 0 40px;
	}

	#navigation ul
	{
		padding-bottom: 11px;
	}

	#header .wrap
	{
		height: 80px;
	}

	#logo
	{
		padding: 15px 0px;
	}

	#navOpener
	{
		position: absolute;
		width: 26px;
		height: 20px;
		top: 50%;
		transform: translateY(-50%);
		cursor: pointer;
		right: 40px;
	}

	.line
	{
		position: absolute;
		width: 100%;
		height: 2.5px;
		background-color: var(--gold);
		left: 50%;
		transform: translateX(-50%);
		transition: all 0.2s;
	}

	#navOpener .line:nth-child(1)
	{
		top: 0;
	}

	#navOpener .line:nth-child(2)
	{
		top: 50%;
		transform: translate(-50%, -50%);
	}

	#navOpener .line:nth-child(3)
	{
		bottom: 0;
	}

	#navOpener.active .line:nth-child(1)
	{
		top: 50%;
		transform: translate(-50%, -50%) rotate(45deg);
	}

	#navOpener.active .line:nth-child(2)
	{
		width: 0;
	}

	#navOpener.active .line:nth-child(3)
	{
		bottom: auto;
		top: 50%;
		transform: translate(-50%, -50%) rotate(-45deg);
	}

	#drdsgvo_map
	{
		height: 290px;
	}

	body
	{
		font-size: 1.3em;
	}

	h1
	{
		font-size: 3em;
	}

	h2
	{
		font-size: 2em;
	}

	h3
	{
		font-size: 1.7em;
	}

	.dividerLine
	{
		width: 220px;
	}

	.divider
	{
		height: 45px;
	}

	.text
	{
		margin: 40px 0px;
	}

	.buttonArea
	{
		margin-top: 20px;
	}

	.withButton
	{
		margin-top: -20px;
	}

	.dividerImg
	{
		padding: 100px 0px;
	}

	.textBox
	{
		margin-top: 40px;
		padding: 35px 40px;
	}

	#footer
	{
		padding: 25px 0px 21px;
	}

	.slide
	{
		height: 45vh;
		min-height: 200px;
	}

	#opener
	{
		height: 60vh;
		min-height: 280px;
	}

	#openerContent
	{
		bottom: 30px;
	}

	#kontakt
	{
		padding-top: 80px;
		margin-top: -100px;
	}

	#vision
	{
		padding-top: 80px;
		margin-top: -105px;
	}

	.pageSection
	{
		padding-top: 80px;
		margin-top: -80px;
	}

}

@media all and (min-width: 1041px){
	#navigation
	{
		display: block!important;
	}
}