/*
 Theme Name:   Lotte Gold Theme
 Description:  Lotte Gold WordPress Theme
 Author:	   Vanderlicht
 Author URI:   https://vanderlicht.de
 Version:      1.0.0
 Text Domain:  lotte

*/
/**	____________________________________________________________
 *
 *	INHALTE
 *
 *
 *	01 — BASICS
 *	02 — TYPO
 *	03 — GRID
 *	04 — HEADER, FOOTER & MENÜS
 *	05 — UX ELEMENTE
 *	06 — SEITEN
 *	07 — BLÖCKE
 *	08 — RESPONSIVE
 *
 *	____________________________________________________________
*/
/**
 *	01 — BASICS
 *	Basiselemente
 *	____________________________________________________________
*/
*, :before, :after {
    box-sizing: border-box;
}
html, body {
    height: 100%;
}
html {
    font-family: sans-serif;
    line-height: 1;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
/*    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;*/
}
body {
    position: relative;
    margin: 0;
    line-height: 1;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}
a, a:active, a:hover {
    text-decoration: none;
    outline: 0;
    outline-width: 0;
}
p a {
    text-decoration: underline;
}
:focus {
    outline: none;
}
svg {
    transform: translate(0, 0);
    line-height: 1em;
}
img, svg {
    display: block;
    border: 0 none;
    max-width: 100%;
    height: auto;
}
img {
    width: 100%;
}
/* Safari Fix */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    _::-webkit-full-page-media, _:future, :root, img {
        align-self: center;
    }
}
::-moz-selection {
    color: rgb(255, 255, 255);
    background: rgb(0, 0, 0);
}
::selection {
    color: rgb(255, 255, 255);
    background: rgb(0, 0, 0);
}
/**
 *	02 — TYPO, COLORS & ICONS
 *	Schrift- und Farbsettings
 *	____________________________________________________________
*/
/*--- FARBEN ---*/
/* CD Farben */ :root {
    --gruen: rgb(46, 74, 67);
    --beige: rgb(243, 227, 210);
    --braun: rgb(147, 109, 95);
    --gold: rgb(140, 112, 64);
    --goldhell: rgb(175, 152, 111);
}
/* Hintergrund */
.bg-gruen {
    background: var(--gruen);
    background: radial-gradient(circle, rgba(57, 98, 87, 1) 0%, rgba(46, 74, 67, 1) 100%);
}
.bg-beige {
    background-color: var(--beige);
}
.bg-braun {
    background: radial-gradient(circle, rgba(183, 135, 118) 0%, rgba(145, 108, 94) 100%);
}
.bg-weiss {
    background-color: #ffffff;
}
/* SCHRIFT */
@font-face {
    font-family: "monterio";
    src: url("fonts/Monterio-Bold.woff") format("woff"), url("fonts/Monterio-Bold.woff2") format("woff2");
    font-weight: 600;
}
@font-face {
    font-family: "monterio";
    src: url("fonts/MonterioRegular.woff") format("woff"), url("fonts/MonterioRegular.woff") format("woff2");
    font-weight: 400;
}
@font-face {
    font-family: "haboro-soft";
    src: url("fonts/haborosoftnormregular-webfont.woff") format("woff"), url("fonts/haborosoftnormregular-webfont.woff2") format("woff2");
    font-weight: 400;
}
@font-face {
    font-family: "haboro-soft";
    src: url("fonts/haborosoftnormmedium-webfont.woff") format("woff"), url("fonts/haborosoftnormmedium-webfont.woff2") format("woff2");
    font-weight: 500;
}
@font-face {
    font-family: "haboro-soft";
    src: url("fonts/haborosoftnormbold-webfont.woff") format("woff"), url("fonts/haborosoftnormbold-webfont.woff2") format("woff2");
    font-weight: 600;
}
/* Headings */
h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
    margin: 0.5em 0em 1.00em 0em;
    font-family: "monterio";
    font-weight: 400;
    line-height: 1.0em;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, .h1:first-child, .h2:first-child, .h3:first-child, .h4:first-child {
    margin-top: 0;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, .h1:last-child, .h2:last-child, .h3:last-child, .h4:last-child {
    margin-bottom: 0;
}
h2 + h3 {
    margin-top: 0px;
}
/* Size Settings */ :root {
    --body-l: 16; /* px */
    --body-s: 14;
    --h1-l: 7; /* em */
    --h1-s: 3.5;
    --h1: 7;
    --h2: 1.688;
    --h3: 5.188;
    --h4: 1.688;
    --h5: 1.333;
    --p: 1.250;
    /*--h-b1: 38.7;*/
    --rate: calc((var(--h1-l) - 1) / (var(--h1-s) - 1)); /* Vorgegeben durch H1-Verhältnis: Desktop (H1l) 6em, Mobile (H1s) 3em -> Bei H1l wird der Bodytext um 5em vergrößert, Mobile um 2em -> Daraus Verhältnis 5/2 */
}
body {
    font-size: calc(1px * var(--body-s) + (var(--body-l) - var(--body-s)) * ((100vw - 320px) / 1120));
}
:root {
    --v-h1: calc(((1 + ((var(--h1) - 1) / var(--rate))) * var(--body-s) * 1px) + (var(--h1) * var(--body-l) - ((1 + ((var(--h1) - 1) / var(--rate))) * var(--body-s))) * ((100vw - 320px) / 1120));
    --v-h2: calc(((1 + ((var(--h2) - 1) / var(--rate))) * var(--body-s) * 1px) + (var(--h2) * var(--body-l) - ((1 + ((var(--h2) - 1) / var(--rate))) * var(--body-s))) * ((100vw - 320px) / 1120));
    --v-h3: calc(((1 + ((var(--h3) - 1) / var(--rate))) * var(--body-s) * 1px) + (var(--h3) * var(--body-l) - ((1 + ((var(--h3) - 1) / var(--rate))) * var(--body-s))) * ((100vw - 320px) / 1120));
    --v-h4: calc(((1 + ((var(--h4) - 1) / var(--rate))) * var(--body-s) * 1px) + (var(--h4) * var(--body-l) - ((1 + ((var(--h4) - 1) / var(--rate))) * var(--body-s))) * ((100vw - 320px) / 1120));
    --v-h5: calc(((1 + ((var(--h5) - 1) / var(--rate))) * var(--body-s) * 1px) + (var(--h5) * var(--body-l) - ((1 + ((var(--h5) - 1) / var(--rate))) * var(--body-s))) * ((100vw - 320px) / 1120));
    --v-p: calc(((1 + ((var(--p) - 1) / var(--rate))) * var(--body-s) * 1px) + (var(--p) * var(--body-l) - ((1 + ((var(--p) - 1) / var(--rate))) * var(--body-s))) * ((100vw - 320px) / 1120));
    /*--v-h-b1: calc(((1 + ((var(--h-b1) - 1) / var(--rate))) * var(--body-s) * 1px) + (var(--h-b1) * var(--body-l) - ((1 + ((var(--h-b1) - 1) / var(--rate))) * var(--body-s))) * ((100vw - 320px) / 1120));*/
}
@media screen and (min-width: 1440px) {
    body {
        font-size: calc(var(--body-l) * 1px);
    }
    :root {
        --v-h1: calc(var(--h1) * 1em);
        --v-h2: calc(var(--h2) * 1em);
        --v-h3: calc(var(--h3) * 1em);
        --v-h4: calc(var(--h4) * 1em);
        --v-h5: calc(var(--h5) * 1em);
        --v-p: calc(var(--p) * 1em);
        /* --v-h-b1: calc(var(--h-b1) * 1em);*/
    }
}
h1, .p-h1 {
    font-size: var(--v-h2);
}
h2, .p-h2 {
    font-size: var(--v-h2);
    text-transform: uppercase;
    color: var(--goldhell);
    font-family: "haboro-soft";
    font-weight: 600;
    margin-bottom: var(--2em);
    letter-spacing: 0.09em;
}
h3, .p-h3 {
    font-size: var(--v-h3);
    text-transform: uppercase;
    color: var(--goldhell);
    line-height: 0.75em;
}
p + h3 {
    margin-top: 1.0em;
}
h4, .p-h4 {
    font-size: var(--v-h4);
    font-family: "haboro-soft";
    font-weight: 500;
}
h5, .p-h5 {
    font-size: var(--v-h5);
}
p, .p {
    font-size: var(--v-p);
}
.p-h-b1 {
    font-size: var(--v-h-b1);
}
.bg-gruen h2, .bg-gruen h3, .bg-gruen h4, .bg-gruen p, .bg-braun h2, .bg-braun h3 {
    color: var(--beige);
}
.bg-gruen h2::after, .bg-braun h2::after {
    background: var(--beige);
}
.bg-gruen .bts-prev path, .bg-gruen .bts-next path, .bg-braun .bts-prev path, .bg-braun .bts-next path {
    fill: var(--beige);
}
.bg-beige h2, .bg-beige h3 {
    color: var(--gold);
}
.bg-beige h2::after, .bg-beige h2::after {
    background: var(--gold);
}
.the-content h3 {
    margin-bottom: var(--1em);
    font-size: calc(var(--v-h3) - 1.5em);
}
/* Texts */
p {
    margin: 0 0 1.6em;
}
body {
    font-family: "haboro-soft";
    font-weight: 400;
    line-height: 1.6em;
    color: #000000;
}
h2::after {
    content: '';
    display: block;
    width: 86px;
    height: 7px;
    background: var(--goldhell);
    margin-top: 20px;
}
/*@media screen and (min-width: 1280px) {
	body {
		font-size: 0.938vw;
	}
}
@media screen and (min-width: 1920px) {
	body {
		font-size: 18px;
	}
}*/
/*@media screen and (min-width: 320px) {
    body {
        font-size: calc(12px + 4 * ((100vw - 320px) / 1120));
    }
    h1, .h1 {
        font-size: calc(32px + 32 * ((100vw - 320px) / 1120));
    }
}
@media screen and (min-width: 1440px) {
    body {
        font-size: 16px;
    }
    h1, .h1, {
        font-size: 4em;
    }
}*/
.small-caps {
    font-size: 0.66em;
    font-weight: 700;
    text-transform: uppercase;
}
p img {
    margin-top: var(--3em);
}
p:last-child, ul:last-child, li:last-child, ol:last-child {
    margin-bottom: 0;
}
b, strong {
    font-weight: 700;
}
ul, ol {
    margin: 0 0 2.1em;
    padding: 0;
    list-style: disc;
}
h3 + .list-alt {
    margin-top: 45px;
}
/*li:not(.menu-item) {
    position: relative;
    padding: 0px 0px 10px 15px;
}
li:not(.menu-item):after {
    content: '•';
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 0.5em;
}*/
ul li {
    list-style-type: disc;
    list-style-position: inside;
    text-indent: -1em;
    padding-left: 1em;
    font-size: var(--v-p);
    margin-bottom: var(--3-4em);
}
.cookie-box ul li {
    text-indent: 0em !important;
}
/* BUTTONS */
a, .button:focus, button:focus, input[type="button"]:focus, input[type="reset"]:focus, input[type="submit"]:focus {
    outline: none;
}
button {
    border: none;
    font-size: inherit;
    font-weight: 600;
    cursor: pointer;
}
button::-moz-focus-inner {
    border: 0;
    outline: none;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px 30px;
    font-weight: 500;
    font-size: 1em;
    letter-spacing: 0.02em;
    height: 40px;
    background: var(--cd-petrol-01);
    color: #ffffff;
    align-self: baseline;
    border-radius: 20px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}
.button:hover {
    background-color: var(--cd-green-01);
    color: var(--cd-petrol-01);
}
.the-content a._brlbs-btn-cookie-preference {
	border-radius: 0px !important;
}
/**
 *	03 — GRID
 *	Grid Framework
 *	____________________________________________________________
*/
/* Flex */ :root {
    /* Std. Einheit */
    --1em: 10px;
    --1-4em: calc(var(--1em) * 0.25);
    --1-2em: calc(var(--1em) * 0.5);
    --3-4em: calc(var(--1em) * 0.75);
    --2em: calc(var(--1em) * 2);
    --3em: calc(var(--1em) * 3);
    --4em: calc(var(--1em) * 4);
    --5em: calc(var(--1em) * 5);
    --6em: calc(var(--1em) * 6);
    --9em: calc(var(--1em) * 9);
    --12em: calc(var(--1em) * 12);
    --18em: calc(var(--1em) * 18);
}
@media screen and (min-width: 960px) {
    :root {
        /* Std. Einheit */
        --1em: 1.389vw;
    }
}
@media screen and (min-width: 1440px) {
    :root {
        /* Std. Einheit */
        --1em: 20px;
    }
}
@media screen and (min-width: 961px) {
    .row {
        display: flex;
        flex-direction: row;
    }
    .col {
        display: flex;
        flex-direction: column;
        flex: 1;
    }
}
.main-header, .main-content, .main-footer {
    display: flex;
    flex-direction: column;
}
.main-content {
    min-height: calc(100vh - var(--6em) * 2);
}
section {
    position: relative;
    width: 100%;
}
.sec-spaced {
    margin-top: calc(var(--1em) * 6);
    margin-bottom: calc(var(--1em) * 6);
}
.sec-spaced-top {
    margin-top: calc(var(--1em) * 6);
}
.sec-spaced-bottom {
    margin-bottom: calc(var(--1em) * 6);
}
/* Flex */
.boxed {
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Wrapper */
.wrapper {
    margin: 0 auto;
    padding: 0px var(--3em);
}
.wrapper.no-pad {
    padding: 0%;
}
.wrapper-1920 {
    max-width: calc(1920px + var(--6em));
}
.wrapper-1680 {
    max-width: calc(1680px + var(--6em));
}
.wrapper-1440 {
    max-width: calc(1440px + var(--6em));
}
.wrapper-1320 {
    max-width: calc(1320px + var(--6em));
}
.wrapper-1200 {
    max-width: calc(1200px + var(--6em));
}
.wrapper-1080 {
    max-width: calc(1080px + var(--6em));
}
.wrapper-left {
    margin-left: 0;
}
.wrapper-right {
    margin-right: 0;
}
.maxw360 {
    max-width: 360px;
}
.maxw240 {
    max-width: 240px;
}
.maxw120 {
    max-width: 120px;
}
.the-content {
    margin: var(--12em) auto var(--6em);
}
/* Image Crop */
.img-crop {
    position: relative;
}
.img-crop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.img-crop-2-3 {
    aspect-ratio: 2 / 3;
}
.img-crop-3-4 {
    aspect-ratio: 3 / 4;
}
.img-crop-1-1 {
    aspect-ratio: 1 / 1;
}
.img-crop-4-3 {
    aspect-ratio: 4 / 3;
}
.img-crop-3-2 {
    aspect-ratio: 3 / 2;
}
.img-crop-16-9 {
    aspect-ratio: 16 / 9;
}
.img-crop-2-1 {
    aspect-ratio: 2 / 1;
}
.img-crop-3-1 {
    aspect-ratio: 3 / 1;
}
/**
 *	04 — HEADER, FOOTER & MENÜS
 *	Header, Footer, Layer, Meüs, etc.
 *	____________________________________________________________
*/
/* HEADER */
.nav-bar {
    height: 90px;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 3;
    transform: translateY(0%);
    /* transition: transform 0.2s ease-in-out; */
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
}
.nav-bar.nav-up {
    transform: translateY(-100%);
}
.nav-bar .wrapper {
    width: 100%;
}
.menu-download-icon {
    height: 24px;
}
.menu-download-icon path {
    fill: var(--beige);
}
/* FOOTER */
footer {
	min-height: 360px;
}
footer .wrapper.wrapper-1680 {
    height: 100%;
    min-height: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer .row {
    width: 100%;
}
footer .col {
    justify-content: center;
}
footer .col-02 {
    max-width: 380px;
}
.footer-logo {
    max-width: 426px;
}
footer a {
    color: var(--beige);
    text-decoration: underline;
}
footer .col-02 a {
  margin-bottom: var(--2em);
}
footer .col-02 a:last-of-type {
  margin-bottom: 0px;
}
/* MOBILE MENÜ */
.menu-button {
	display: none;
}
/*.menu-wrapper {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}*/
/* Menü Button */
.menu-button {
	align-items: center;
	justify-content: center;
	width: 60px;
	cursor: pointer;
	opacity: 1;
	transition: transform 0s 0s, opacity 0.3s;
	height: 60px;
	z-index: 10;
	max-width: 60px;
	position: fixed;
	right: var(--3em);
	top: 20px;
	background: var(--beige);
}
.menu-button .move {
	transform-origin: center center;
}
.menu-button .hide-01 {
	transform-origin: center left;
}
.menu-button .hide-02 {
	transform-origin: center right;
}
.menu-button .move, .menu-button.aktiv .hide {
	transition: transform 0.3s;
}
.menu-button .hide, .menu-button.aktiv .move {
	transition: transform 0.3s 0.3s;
}
.menu-button.aktiv .hide {
	transform: scaleX(0);
}
.menu-button.aktiv .move-01 {
	transform: rotate(135deg);
}
.menu-button.aktiv .move-02 {
	transform: rotate(225deg);
}
.menu-button.hide {
	opacity: 0;
	transform: translateY(-100%);
	transition: transform 0s 0.3s, opacity 0.3s;
}
.menu-button rect {
	fill: var(--gruen);
}
.menu-button.aktiv rect {
	fill: var(--beige);
}
.menu-button.aktiv  {
	background: var(--gruen);
}
/* MOBILE MENU OVERLAY */
#menu-layer {
	position: fixed;
	top: 0px;
	right: 0px;
	z-index: 5;
	transform: translateX(100%);
	width: 100%;
	height: 100%;
	transition: transform 0.6s;
	display: flex;
	justify-content: center;
	/* align-items: center; */
	max-width: 740px;
	flex-direction: column;
	padding: var(--6em);
}
#menu-layer.aktiv {
	transform: translateX(0);
	transition: transform 0.6s 0.6s;
}
body.layer-aktiv .site-overlay {
	opacity: 1;
	transform: translateY(0%);
	transition: transform 0s 0s, opacity 0.3s 0.3s;
}
.site-overlay {
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 4;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	transform: translateY(-100%);
	transition: transform 0s 0.3s, opacity 0.3s;
}
body.layer-aktiv {
	overflow-y: hidden;
}
.mobile-logo {
	max-width: 300px;
	width: 100%;
	margin-bottom: var(--4em);
}
#mobilemenue li a {
	font-size: 20px;
	color: var(--beige);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	position: relative;
    display: flex;
}
#mobilemenue a.aktiv::after {
	content: '';
	display: block;
	height: 6px;
	width: 54px;
	background: var(--beige);
	position: absolute;
	bottom: -7px;
}
#mobilemenue li a span {
	margin-left: 15px;
}
#mobilemenue li {
	list-style: none;
	margin-bottom: var(--2em);
	padding: 0px;
	text-indent: 0px;
}

/**
 *	05 — UX ELEMENTE
 *	Layer, Popups und weitere UX Elemente
 *	____________________________________________________________
*/
#hauptmenue {
    display: flex;
    justify-content: space-between;
    padding-left: 120px;
}
#hauptmenue li {
    margin-bottom: 0;
    list-style: none;
    padding: 0px;
    text-indent: 0px;
}
#hauptmenue a {
    font-size: 20px;
    color: var(--beige);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}
.hauptmenue a.aktiv::after {
	content: '';
	display: block;
	height: 6px;
	width: 54px;
	background: var(--beige);
	position: absolute;
	bottom: 19px;
}
#hauptmenue a span {
	display: none;
}
.fixed-logo {
    max-width: 57px;
    display: block;
    position: fixed;
    top: 20px;
    z-index: 4;
    left: calc(var(--3em) - 3px);
}
/**
 *	06 — SECTIONS & SEITEN
 *	Startseite, Unterseiten, Blog, Singles
 *	____________________________________________________________
*/
/* HOME */
/* BLOG */
/**
 *	07 — BLÖCKE
 *	____________________________________________________________
*/
/* BLOCK: Intro */
.intro-bg {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.gruener-wrapper {
	margin-top: -90px;
	position: relative;
}
.gruener-wrapper::before {
    content: '';
    height: 70%;
    width: 100%;
    display: block;
    position: absolute;
    background: var(--gruen);
    z-index: 0;
}
.gruener-wrapper .row {
    position: relative;
    display: flex;
}
.intro-logo {
    margin: 90px auto 45px;
    max-width: 426px;
}
.intro-bild-links, .intro-bild-rechts {
	max-width: 990px;
	margin: auto;
}
.intro-bild-links {
    margin-left: auto;
}
.gruener-wrapper .row-01 {
    padding: 0px var(--2em);
}
.gruener-wrapper .row-02 .col-01 {
    margin-right: calc(var(--1em) + var(--1-2em));
}
/* BLOCK: Bild & Text */
/* bt-01 */
.bt-01 .row-grid .col {
    max-width: 50%;
    position: relative;
}
/*.bt-01 .row-grid .col-02 {
    max-width: 770px;
    margin-left: var(--3em);
}*/
.bt-01 .row-grid .col-02 {
    /* max-width: 770px; */
    margin-left: var(--3em);
    max-width: calc(50% - var(--3em));
}
.bts-gross-wrapper {
    /*max-width: 960px;*/
}
.bts-klein-wrapper {
    max-width: 216px;
}
.bts-text-wrapper {
	max-width: 490px;
	/* margin-top: auto; */
}
.swiper-slide {
    overflow: hidden;
}
.img-crop img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bts-gross-crop {
    /*aspect-ratio: 960 / 898;*/
    padding-top: 93.54166666666667%;
}
.bts-klein-crop {
    /*aspect-ratio: 216 / 244;*/
    padding-top: 112.962962962963%;
}
.swiper-button-disabled {
    opacity: 0.2;
    pointer-events: none;
}
.slider-navigation {
    display: flex;
    margin-bottom: var(--2em);
}
.slider-navigation svg {
    cursor: pointer;
    max-width: 48px;
}
.bts-prev {
    margin-right: 36px;
}
.block-bild-text {
	overflow: hidden;
}
.block-bild-text h3 {
    margin-bottom: var(--2em);
}
.img-crop.bts-klein-crop {
    margin-bottom: var(--2em);
}
.bt-01 .bt-muster-img {
	position: absolute;
	left: calc(var(--6em) * (-1));
	top: var(--6em);
	width: auto;
}
#highlights .bts-klein-wrapper {
    display: none;
}
/* bt-02 */
.bt-02 .bt-muster-img {
    position: absolute;
    width: auto;
    right: calc(var(--6em) * (-1));
    top: var(--3em);
}
.bt-02 .bts-gross-crop {
    /*aspect-ratio: 960 / 898;*/
    padding-top: 73%;
}
.bt-02 .row-grid .col-01 {
    max-width: 35%;
    position: relative;
}
.bt-02 .row-grid .col-02 {
    max-width: 65%;
    position: relative;
}
/*.bt-02 .row-grid .col-02 {
    max-width: 770px;
    margin-left: var(--3em);
}*/
.bt-02 .row-grid .col-01 .inner-wrapper {
    max-width: 440px;
    margin-right: var(--4em);
}
.bt-02 .bts-klein-wrapper {
    display: none;
}
/* BLOCK: Parallax */
.parallax {
    background-size: cover;
    background-position: center;
    height: calc(42 * var(--1em));
    background-attachment: fixed;
    position: relative;
}
.parallax::after {
    content: '';
    height: 300px;
    width: 100%;
    display: block;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    bottom: 0px;
    z-index: 0;
}
.parallax .wrapper {
    /*	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;*/
    height: 100%;
}
.parallax-bild-wrapper {
    max-width: 320px;
    position: absolute;
    width: 100%;
    height: 100%;
    max-height: 320px;
    bottom: 0;
    transform: translateY(50%);
    z-index: 1;
}
.parallax .row {
    height: 100%;
    display: flex;
}
.parallax .col {
    display: flex;
    flex: 1;
    flex-direction: column;
}
.parallax-bild {
    padding-top: 100%;
}
.parallax .col-01 {
    justify-content: flex-end;
}
.parallax .col-02 {
    align-items: flex-end;
    position: relative;
    justify-content: flex-end;
}
.parallax h3 {
    text-shadow: 0px 3px 0px #000000;
    margin-bottom: var(--3em);
    color: var(--beige);
    position: relative;
    z-index: 1;
}
/* BLOCK: RUNDGANG */
.BorlabsCookie .rundgang-platzhalter {
	background: var(--beige) url("img/rundgang-platzhalter.jpg");
	width: 100%;
	position: relative;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 740px;
}
.BorlabsCookie .map-platzhalter-hinweis {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	padding: 40px;
	text-align: center;
}
.BorlabsCookie .map-platzhalter-hinweis p {
	color: #000000;
	margin: 0 0 1.6em;
	font-size: var(--v-p);
}
.BorlabsCookie ._brlbs-content-blocker.rundgang-platzhalter a._brlbs-btn {
	background: var(--gruen);
	border-radius: 0px;
	margin: auto;
    cursor: pointer;
    color: var(--beige);
}
.BorlabsCookie ._brlbs-content-blocker.rundgang-platzhalter a._brlbs-btn:hover {
	background: #262626;

}
#rundgang ._brlbs-default {
	margin: 0px;
}
#rundgang iframe {
	height: 740px;
	width: 100%;
	border: 0px;
}
.rundgang-platzhalter
{
  background: var(--beige) url("img/rundgang-platzhalter.jpg");
  width: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 740px;
}
/* rundgang Video Version */
.video-wrapper {
	width: 100%;
	height: 740px;
	overflow: hidden;
	position: relative;
}
.video-wrapper video {
    object-fit: cover;
    height: 100%;
    width: 101%;
    object-position: center;
    margin-left: -1px;
    position: relative;
    z-index: 0;
}
.rundgang-buttons {
	display: flex;
	position: absolute;
	bottom: 0px;
	right: 20px;
}
.rundgang-button {
	height: 40px;
	background: var(--goldhell);
	display: flex;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
	color: var(--beige);
	font-weight: 500;
	cursor: pointer;
	padding: 2px 12px 0;
	transform: translateY(-50%);
	text-align: center;
	z-index: 1;
	font-size: var(--v-h5);
	line-height: 1.0em;
	margin-left: 10px;
}
.rundgang-download {
	text-align: center;
	margin-top: 10px;
}
/* BLOCK: Text */
.block-text h2 {
    margin-bottom: var(--6em);
}
.block-text h2:after {
    display: none;
}
.block-text .col-01 {
    margin-right: var(--6em);
}
.block-text .col-02 .inner-wrapper {
    max-width: 490px;
}
/* BLOCK: Lage */
.block-lage .wrapper {
    position: relative;
}
.block-lage h3, .block-lage h2 {
    text-align: center;
    position: relative;
}
.block-lage h2::after {
    margin: 20px auto;
}
.block-lage h3 {
    margin-bottom: var(--6em);
}
#karte {
    width: 100%;
    height: 740px;
    position: relative;
    z-index: 1;
}
.map-platzhalter {
	background: var(--beige) url("img/maps-platzhalter.jpg");
	width: 100%;
	position: relative;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 740px;
}
.map-platzhalter-hinweis {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	padding: 40px;
	text-align: center;
}.map-platzhalter-hinweis p {
	color: #000000;
}
.BorlabsCookie ._brlbs-content-blocker.map-platzhalter a._brlbs-btn {
	background: var(--gruen);
	border-radius: 0px;
	margin: auto;
    cursor: pointer;
    color: var(--beige);
}
.BorlabsCookie ._brlbs-content-blocker.map-platzhalter a._brlbs-btn:hover {
	background: #262626;

}
.BorlabsCookie .map-platzhalter-hinweis a {
    text-decoration: underline;
}
.block-lage .pattern {
	display: block;
	position: absolute;
	height: 100%;
	width: 100%;
	max-width: 925px;
	max-height: 925px;
	z-index: 0;
	top: calc(var(--2em) * (-1));
	left: 0px;
	transform: translateX(-50%);
}
.map-controls {
    display: flex;
    justify-content: space-between;
}
.google-link {
    margin-top: 20px;
    text-decoration: underline;
    color: var(--beige);
}
.map-buttons {
    display: flex;
    margin-right: var(--6em);
}
.map-button {
    height: 60px;
    width: 260px;
    background: var(--goldhell);
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    color: var(--beige);
    font-weight: 500;
    cursor: pointer;
    margin-top: 20px;
}
.map-button.mikrolage {
    margin-right: 10px;
}
.map-button.aktiv {
    background: var(--gold);
}
/* BLOCK: Titel mit Bild */
.block-titel-mit-bild .img-crop {
    padding-top: 50%;
}
.block-titel-mit-bild h3, .block-titel-mit-bild h2 {
    text-align: center;
    position: relative;
}
.block-titel-mit-bild h2::after {
    margin: 20px auto;
}
/* BLOCK: STACKINGPLAN */
.stackingplan-img {
    max-width: 1214px;
}
.stackingplan-infos {
    padding-top: var(--5em);
    max-width: 380px;
    margin-left: var(--3em);
}
.stackingplan-infos h3 {
    margin-bottom: var(--1em);
    color: #000;
    font-size: var(--v-h4);
    font-family: "haboro-soft";
    font-weight: 600;
    text-transform: uppercase;
}
.stackingplan-infos p {
    line-height: 1.6em;
    margin-bottom: var(--3em);
}
.stackingplan-infos img {
    width: 72px;
    margin: 0px;
    display: inline;
    transform: translateY(4px);
}
/* BLOCK: GRUNDRISS SLIDER */
.grundriss-header {
    margin-bottom: var(--6em);
}
.grundriss-header h3, .grundriss-header h2 {
    text-align: center;
    position: relative;
}
.grundriss-header h2::after {
    margin: 20px auto;
}
.grundriss-slider .col-01 {
    margin-right: var(--3em);
}
.grundriss-img {
    max-width: 1320px;
}
.grundriss-slider h3 {
    margin-bottom: var(--1em);
}
.grundriss-slider h4 {
    color: var(--goldhell);
}
.grundriss-slider .col-02 p {
    line-height: 1.6em;
}
.grundriss-slider .col-02 img {
    width: 72px;
    margin: 0px;
    display: inline;
    transform: translateY(4px);
}
.grundriss-slider .col-02 {
	max-width: 280px;
}
.gs-prev {
    margin-right: var(--4em);
}
.grundriss-slider .slider-navigation {
    display: flex;
    margin-bottom: var(--2em);
    margin: auto;
    justify-content: center;
    margin-top: var(--2em);
    margin-bottom: var(--1em);
}
.grundriss-slider .slider-navigation svg path {
    fill: var(--goldhell);
}
.grundriss-slider .swiper-pagination {
    position: relative;
    color: var(--goldhell);
}
.grundriss-download {
    display: flex;
    align-items: center;
    color: var(--goldhell);
    font-weight: 600;
}
.grundriss-download-icon {
    max-width: 25px;
    margin-right: var(--1em);
}
.grundriss-download-icon path {
    fill: var(--goldhell);
}
/* BLOCK: Fakten */
.alle-fakten {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.col.fakt {
    flex-basis: 25%;
}
.col.fakt .p-h3 {
    color: var(--beige);
    font-family: "monterio";
    text-align: center;
    margin-bottom: var(--1em);
}
.fakten-header {
    margin-bottom: var(--3em);
}
.fakten-header h3, .fakten-header h2 {
    text-align: center;
    position: relative;
}
.fakten-header h2::after {
    margin: 20px auto;
}
.fakten-infos {
    text-align: center;
    color: var(--beige);
    max-width: 366px;
    margin: 0px auto var(--4em);
}
.fakten-infos p {
        text-transform: uppercase;
    font-family: "monterio";
    font-size: calc(var(--v-h2) + 0.5em);
}
.fakten-infos::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: var(--beige);
    margin: var(--1em) auto;
    max-width: 178px;
}
.fakten-infos p {
    line-height: 0.8em;
}
/* BLOCK: Kontakt */
.kontakt-header {
    margin-bottom: var(--6em);
}
.kontakt-header h3, .kontakt-header h2, .kontakt-header h4 {
    text-align: center;
    position: relative;
}
.kontakt-header h3 {
    margin-bottom: var(--1-2em);
}
.kontakt-header h4 {
    color: var(--goldhell);
    text-transform: uppercase;
    font-weight: 500;
}
.kontakt-header h2::after {
    margin: 20px auto;
}
.block-kontakt h4, .block-kontakt p {
    color: var(--goldhell);
}
.block-kontakt .col-01 {
    margin-right: var(--6em);
}
.block-kontakt .inner-wrapper {
    max-width: 490px;
}
.kontakt-download-icon {
    max-width: 25px;
    margin-right: var(--1em);
}
.kontakt-download-icon path {
    fill: var(--goldhell);
}
.block-kontakt .download {
    display: flex;
    color: var(--goldhell);
    font-size: var(--v-p);
    font-weight: 600;
    margin-top: var(--3em);
}
.block-kontakt img {
	max-width: 241px;
}
/**
 *	08 — RESPONSIVE
 *	Anpassung des Layouts für mobile Geräte
 *	____________________________________________________________
*/
@media screen and (min-width: 2048px) {}
@media screen and (max-width: 1640px) {}
@media screen and (max-width: 1320px) {
    .bt-02 .bt-muster-img {
        max-width: 70%;
    }
}
@media screen and (max-width: 1280px) {
.nav-bar {
	display: none;
}
    .menu-button {
        display: flex;
    } 
}
}@media screen and (max-width: 1200px) {
    .col.fakt {
	flex-basis: 33%;
}
}
@media screen and (max-width: 1080px) {
    .intro-bg {
        background-attachment: unset;
    }
    .parallax {
        background-attachment: unset;
    }
    .map-buttons {
        margin-right: 0px;
    }
    .parallax-bild-wrapper {
        max-width: 240px;
        max-height: 240px;
    }
    .parallax {
        margin-bottom: 120px;
    }
}
@media screen and (max-width: 960px) {
    .bt-01 .row-grid .col {
        max-width: 100%;
    }
    .bt-01 .row-grid .col-02 {
        margin-left: 0px;
        margin-top: var(--3em);
    }
    .bt-muster-img, .block-lage .pattern {
        display: none;
    }
    .bt-02 .row-grid .col {
        max-width: 100%;
    }
    .bt-02 .row-grid {
        flex-direction: column-reverse;
        display: flex;
    }
    .bt-02 .row-grid .col-01 .inner-wrapper {
        max-width: 440px;
        margin-right: 0px;
        margin-top: var(--3em);
    }
.block-text .col-02 {
	margin-top: var(--6em);
}  
    .grundriss-slider .col-02 {
	max-width: 100%;
	margin-top: var(--3em);
}
.grundriss-slider .col-01 {
	margin-right: 0px;
}    
    footer .col {
	justify-content: center;
	display: flex;
}
footer .col-02 {
	max-width: 100%;
	margin: var(--6em) auto 0px;
	display: flex;
	flex-wrap: wrap;
} 
footer .col-02 a {
	margin-right: 20px;
    margin-bottom: 0px;
}    
}
@media screen and (max-width: 840px) {}
@media screen and (max-width: 767px) {
    .wrapper {
        padding: 0px var(--2em);
    }
    .fixed-logo {
        left: calc(var(--2em) - 3px);
    }
/*    .intro-logo {
        margin: 45px auto 45px;
    }*/
    .map-controls {
        flex-direction: column;
    }
    .parallax .col-01 {
        flex-basis: 66%;
    }
    .parallax .col-02 {
        flex-basis: 33%;
    }
.col.fakt {
	flex-basis: 50%;
	padding: 0px var(--1em);
}
    .menu-button {
	right: var(--2em);

}
}
@media screen and (max-width: 600px) {}
@media screen and (max-width: 546px) {
    .parallax .col-01 {
        flex-basis: 100%;
    }
    .parallax-bild-wrapper {
        display: none;
    }
    .parallax {
        margin-bottom: 0px;
    }
}
@media screen and (max-width: 480px) {
    :root {
        --1em: 10px;
    }
    .map-button {
        font-size: 1.0em;
    }
.col.fakt {
	flex-basis: 100%;
	padding: 0px;
}    
}
/** IE FIXES **/
@media screen\0, @media screen\9 {
    h1, h2, h3, p {
        width: 100%;
    }
    img {
        flex-shrink: 0;
    }
}