/* ----------------------------------------------------------------
	Variablen
-----------------------------------------------------------------*/
@font-face {
	font-family: GT Planar;
	src: url(../fonts/GT-Planar-Light.woff2);
	font-weight: 300;
	font-display: swap;
}
@font-face {
	font-family: GT Planar;
	src: url(../fonts/GT-Planar-Medium.woff2);
	font-weight: 500;
	font-display: swap;
}

:root {
	--common-font: 'GT Planar', sans-serif;

	--main-white: #ffffff;
	--main-black: #000000;
	--main-shade-600: #3C3C3B;
	--main-shade-400: hsl(60, 1%, 53%);

	--brown-color: #A59B90;
	--brown-color-light: #B2ABA4;

	--border-full: 99999rem;
	--border-round: 1.75rem;
}

/* ----------------------------------------------------------------
	Basic
-----------------------------------------------------------------*/
html, body {
	padding: 0px;
	margin: 0px;
	font-size: 100%;
	font-family: var(--common-font);
	max-width: 100vw;
	overflow-x: hidden;
}

dl, dt, dd, ol, ul, li, h1, h2, h3, h4, h5, h6, p, span {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

#smooth-content:not(.touch) {
	will-change: transform;
}

section, main, footer {
	position: relative;
	z-index: 3;
}

ul li:before {
	content: "";
	position: absolute;
	top: 1rem;
	left: -1.25rem;
	transform: translateY(-50%);
	height: 1rem;
	width: 1rem;
	background-color: var(--main-shade-600);
	mask-image: url(../sternhoehe-stern.svg);
	-webkit-mask-image: url(../sternhoehe-stern.svg);
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
}
ul li {
	position: relative;
	margin: 0.5rem 0px 0.5rem 1.5rem;
	text-align: left !important;
}
ul li:first-child {
	margin-top: 0px;
}
ul li:last-child {
	margin-bottom: 0px;
}
.list-small ul li {
	margin: 0px 0px 0px 1.5rem;
	font-size: 1rem;
}

::selection {
	background: var(--brown-color);
	color: #FFF;
	text-shadow: none;
}

::-moz-selection {
	background: var(--brown-color); /* Firefox */
	color: #FFF;
	text-shadow: none;
}

::-webkit-selection {
	background: var(--brown-color); /* Safari */
	color: #FFF;
	text-shadow: none;
}

:active,
:focus { outline: none !important; }

/*Media Queries*/
@media only screen and (max-width: 1366px) {
	html, body {
		font-size: 75%;
	}
}
@media only screen and (max-width: 992px) {
	html, body {
		font-size: 95%;
	}
	#smooth-content, .touch {
		will-change: initial;
	}
}
@media only screen and (max-width: 688px) {
	html, body {
		font-size: 85%;
	}
}

/* ----------------------------------------------------------------
	Helper Classes
-----------------------------------------------------------------*/
.fullwidth, .full {
	width: 100%;
}
.fullheight, .full {
	height: 100%;
}
.relative {
	position: relative;
}
.none {
	display: none !important;
}

.flexbox-h, .flexbox-v, .flexbox-hr, .flexbox-vr {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-content: flex-start;
	align-items: center;
}
.flexbox-v, .flexbox-vr {
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}
.flexbox-hr {
	flex-direction: row-reverse;
}
.flexbox-vr {
	flex-direction: column-reverse;
}
.flexbox-c {
	justify-content: center;
	align-content: center;
	align-items: center;
}
.flexbox-c * {
	text-align: center;
}

.content-right, .content {
	box-sizing: border-box;
	padding-right: calc((100% - 1500px) / 2);
}
.content-left, .content {
	box-sizing: border-box;
	padding-left: calc((100% - 1500px) / 2);
}

.flexbox-hr .content-right {
	box-sizing: border-box;
	padding-right: 0px;
	padding-left: calc((100% - 1500px) / 2);
}
.flexbox-hr .content-left {
	box-sizing: border-box;
	padding-left: 0px;
	padding-right: calc((100% - 1500px) / 2);
}

.section-padding {
	padding-top: 15rem;
	padding-bottom: 15rem;
}
.section-padding-small {
	padding-top: 12.5rem;
	padding-bottom: 12.5rem;
}
.section-padding-tiny {
	padding-top: 10rem;
	padding-bottom: 10rem;
}

.top-right, .top-left, .bottom-right, .bottom-left, .center-left {
	position: absolute;
}
.top-right, .top-left {
	top: 0;
}
.bottom-right, .bottom-left {
	bottom: 0;
}
.top-right, .bottom-right {
	right: 0;
}
.top-left, .bottom-left, .center-left {
	left: 0;
}
.center-left {
	top: 50%;
	transform: translateY(-50%);
}

.center {
	align-self: center;
}

.align-left {
	align-items: flex-start;
}
.align-center {
	align-items: center;
}
.align-right {
	align-items: flex-end;
}

.text-left {
	text-align: left;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}

.bg-white, .bg-white-not {
	background-color: var(--main-white);
}
.bg-dark, .bg-dark-not {
	background-color: var(--main-black);
}
.bg-dark-light {
	background-color: var(--main-shade-600);
}
.bg-brown {
	background-color: var(--brown-color);
}
.bg-brown-light, .bg-brown-light-not {
	background-color: var(--brown-color-light);
}

.border-full {
	border-radius: var(--border-full);
	-webkit-border-radius: var(--border-full);
	-moz-border-radius: var(--border-full);
	overflow: hidden;
}
.border-round {
	border-radius: var(--border-round);
	-webkit-border-radius: var(--border-round);
	-moz-border-radius: var(--border-round);
	overflow: hidden;
}

.overflow {
	overflow: hidden;
}

img, video, picture {
    display: inline-block;
	width: 100%;
	height: 100%;
	vertical-align: middle;
}
.full-image, .bg-image {
	object-fit: cover;
	object-position: center;
}
.contain {
	object-fit: contain;
}
.bg-image {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 0;
}

.shadow {
	box-shadow: 1.25rem 1.25rem 3.75rem rgba(0, 0, 0, 0.25)
}

.container-buttons {
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 2.5rem;
}
.primary {
	display: inline-block;
	position: relative;
	box-sizing: border-box;
	padding: 1.25rem 3.25rem 1.25rem 2.5rem;
	margin-top: 3.25rem;
	background-color: var(--brown-color);
	border: 1px solid transparent;
	overflow: hidden;
	cursor: pointer;
	pointer-events: initial;
	transition: background-color 0.25s, border-color 0.25s;
}
.bg-brown .primary {
	background-color: var(--main-black);
}
.primary + .primary {
	margin-top: 0px;
}
.primary:hover, .primary:focus {
	background-color: var(--main-black);
	border-color: var(--main-white);
}
.bg-brown .primary:hover, .bg-brown .primary:focus {
	background-color: var(--brown-color);
}
.primary span {
	font-family: var(--common-font);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1em;
	white-space: nowrap;
	color: var(--main-white);
	transition: color 0.25s;
}
.primary svg {
	position: absolute;
	top: 25%;
	left: calc(100% + 0.125rem);
	transform: translateY(-50%) rotate(-11.25deg);
	transform-origin: center left;
	width: auto;
	height: 500%;
	fill: var(--brown-color-light);
	transition: fill 0.25s, transform 0.25s;
}
.bg-brown .primary svg {
	fill: var(--main-shade-600);
}
.primary svg path:last-child {
	fill: var(--main-white);
}
.primary:hover svg, .primary:focus svg {
	transform: translateY(-50%) rotate(11.25deg);
	fill: var(--main-shade-600);
}
.bg-brown .primary:hover svg, .bg-brown .primary:focus svg {
	fill: var(--brown-color-light);
}

svg .stroke {
	fill: none;
	stroke: var(--main-white);
	stroke-width: 2px;
	transition: stroke 0.25s;
}

.container-slider {
	margin-left: -25%;
	width: 100%;
	align-self: center;
	align-items: flex-end;
}
.container-slide {
	box-sizing: border-box;
	padding: 0px 1.875rem;
	width: 25%;
	flex-shrink: 0;
}
.container-slide img {
	min-height: 20rem;
	aspect-ratio: 1;
	mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 1.0) 33.333%);
	-webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 1.0) 33.333%);
}
.container-slide:nth-child(even) img {
	min-height: 25rem;
	aspect-ratio: 21/26;
}

.radio {
	flex-wrap: wrap;
	justify-content: flex-start;
	overflow: initial;
	z-index: 1;
}
.radio label {
	position: relative;
	margin: 0rem;
	cursor: pointer;
}
.radio label input {
	position: absolute;
	margin: 0px !important;
	width: 0%;
	height: 0%;
	cursor: pointer;
	opacity: 0;
}
.radio label span {
	display: block;
	margin: 1rem 2rem;
	font-family: var(--common-font);
	font-size: 1rem;
	font-weight: 500;
	color: var(--main-white);
	background-color: transparent;
	white-space: nowrap;
	transition: color 0.25s;
}
.radio label input:checked + span {
	cursor: initial;
}
.radio label input:checked + span::after {
	left: 50% !important;
	width: 0px !important;
}
.radio .radio-indicator {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: var(--brown-color);
	pointer-events: none;
	z-index: -1;
}
.bg-brown .radio .radio-indicator {
	background-color: var(--main-black);
}
.radio .radio-indicator svg {
	position: absolute;
	top: 40%;
	left: calc(100% - 1.875rem);
	transform: translateY(-50%) rotate(-11.25deg);
	transform-origin: center left;
	width: auto;
	height: 125%;
	fill: var(--brown-color-light);
	transition: fill 0.25s, transform 0.25s;
}
.bg-brown .radio .radio-indicator svg {
	fill: var(--main-shade-600);
}
.radio .radio-indicator svg path:last-child {
	fill: var(--main-white);
}

.form {
	min-width: 25rem;
	gap: 1.75rem;
}
.form .container-input {
	width: 100%;
    border: none;
	border-bottom: 2px solid var(--main-white);
}
.form .flexbox-h {
	justify-content: flex-start;
	align-items: flex-start;
}
.form > .flexbox-h:not(.consent):not(.container-inputs) {
	width: 100%;
	gap: 2.5rem;
}
.form input:not([type=submit]):not([type=checkbox]):not([type=range]), .form textarea, .form .file label, .form select, .form label.checkbox {
	box-sizing: border-box;
    padding: 0.25rem 0px 0.75rem 0px;
	width: 100%;
	text-align: left;
	font-family: var(--common-font);
	font-size: 1.25rem;
	font-weight: 300;
	line-height: 1.61em;
    color: var(--main-white);
	background: transparent;
	border: none;
	resize: none;
	white-space: nowrap;
	transition: border-color 0.25s;
}
.form div:not(.consent) label, .form .label, #hinweis, #back-button {
	font-weight: 500;
    color: var(--main-shade-400);
}
.form .flexbox-h > input:not([type=submit]):not([type=file]):not([type=checkbox]), .form .flexbox-h > textarea, .form .radio {
	width: calc(50% - 1.25rem * 0.5);
}
.form input:not([type=submit]):not([type=file]):not([type=checkbox]):focus, .form textarea:focus, .form .file:focus-within {
	border-color: var(--main-black);
}
.form input[type="number"] {
	-webkit-appearance: textfield;
	-moz-appearance: textfield;
	appearance: textfield;
}
.form input[type=number]::-webkit-inner-spin-button, .form input[type=number]::-webkit-outer-spin-button { 
  	-webkit-appearance: none;
  	-moz-appearance: none;
	appearance: none;
}
.form .container-select {
    position: relative;
	width: 100%;
}
.form .container-select select {
	padding-right: 1.5rem;
    -webkit-appearance: none; 
	-moz-appearance: none; 
    appearance: none;
}
.form .container-select select option {
    text-align: left;
	color: var(--main-white);
	background-color: var(--main-black);
}
.form .container-select:after {
	content: " ";
	position: absolute;
	top: 50%;
	right: 1rem;
	transform: translate(50%, -50%);
	width: 0px;
	height: 0px;
	border-left: 0.25rem solid transparent;
	border-right: 0.25rem solid transparent;
	border-top: 0.25rem solid var(--main-white);
	pointer-events: none;
}
.form input[type=checkbox] {
	margin: 0.666rem 1rem 0px 1rem;
	border-radius: 0px;
	-webkit-border-radius: 0px;
}
.form input[type=checkbox], .form input[type=checkbox] + label {
	cursor: pointer;
}
.form input[type=range] {
	transform: translateY(calc(50% + 1px));
	margin: 0px;
	width: 100%;
	height: 1px;
	background: var(--main-white);
	-webkit-appearance: none;
	appearance: none;
}
.form input[type=range]::-webkit-slider-thumb {
	width: 1.25rem;
	height: 1.25rem;
	background: var(--brown-color);
	-webkit-appearance: none;
  	appearance: none;
}
.form input[type=range]::-moz-range-thumb {
	width: 1.25rem;
	height: 1.25rem;
	background: var(--brown-color);
	-webkit-appearance: none;
	appearance: none;
}
.form .primary {
    margin-top: 1.25rem;
	flex-shrink: 0;
}
.form input[type="submit"] {
    padding: 0px;
	margin: 0px;
	font-family: var(--common-font);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1em;
	white-space: nowrap;
	color: var(--main-white);
	background: none;
	border: none;
}
.form input:not([type=submit]):not([type=file]):not([type=checkbox])::placeholder, .form textarea::placeholder, .form .file label {
	font-weight: 300;
	color: var(--main-shade-400);
}
.form.eurocres-form input:not([type=submit]):not([type=file]):not([type=checkbox])::placeholder, .form.eurocres-form textarea::placeholder, .form.eurocres-form .file label {
	font-weight: 300;
	color: var(--main-white);
}
.form .radio {
    justify-content: space-between;
}

input:-webkit-autofill{
    -webkit-text-fill-color: var(--main-white) !important;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0px 0px 0px 9999rem var(--main-black) inset !important;
	box-shadow: 0px 0px 0px 9999rem var(--main-black) inset !important;
}

.form .honeypot {
    position: absolute;
    left: -9999px;
}
/*Media Queries*/
@media only screen and (max-width: 1640px) {
	.content-right, .content {
		padding-right: calc((100% - 1150px) / 2);
	}
	.content-left, .content {
		padding-left: calc((100% - 1150px) / 2);
	}
	.flexbox-hr .content-right {
		padding-left: calc((100% - 1150px) / 2);
	}
	.flexbox-hr .content-left {
		padding-right: calc((100% - 1150px) / 2);
	}
}
@media only screen and (max-width: 1365px) {
	.content-right, .content {
		padding-right: calc((100% - 900px) / 2);
	}
	.content-left, .content {
		padding-left: calc((100% - 900px) / 2);
	}
	.flexbox-hr .content-right {
		padding-left: calc((100% - 900px) / 2);
	}
	.flexbox-hr .content-left {
		padding-right: calc((100% - 900px) / 2);
	}
}
@media only screen and (max-width: 992px) {
	.content-right, .content {
		padding-right: 4rem;
	}
	.content-left, .content {
		padding-left: 4rem;
	}
	.flexbox-hr .content-right {
		padding-left: 4rem;
	}
	.flexbox-hr .content-left {
		padding-right: 4rem;
	}
	.section-padding {
		padding-top: 12.5rem;
		padding-bottom: 12.5rem;
	}
	.section-padding-small {
		padding-top: 10rem;
		padding-bottom: 10rem;
	}
	.section-padding-tiny {
		padding-top: 7.5rem;
		padding-bottom: 7.5rem;
	}
	.container-slider {
		margin-left: -50%;
	}
	.container-slide {
		padding: 0px 1.25rem;
		width: 50%;
	}
	.container-buttons {
		gap: 1.75rem;
	}
	.primary {
		margin-top: 2.5rem;
	}
	.form {
		min-width: initial;
		width: 100%;
	}
	.form .container-input, .form .flexbox-h:not(.consent):not(.checkbox) {
		flex-direction: column;
	}
	.form .flexbox-h > input:not([type=submit]):not([type=file]):not([type=checkbox]), .form .flexbox-h > textarea {
		width: 100%;
	}
	.form .radio {
		width: auto;
	}
	#back-button {
		display: none;
	}
}
@media only screen and (max-width: 688px) {
	.content-right, .content {
		padding-right: 2rem;
	}
	.content-left, .content {
		padding-left: 2rem;
	}
	.flexbox-hr .content-right {
		padding-left: 2rem;
	}
	.flexbox-hr .content-left {
		padding-right: 2rem;
	}
	.section-padding {
		padding-top: 10rem;
		padding-bottom: 10rem;
	}
	.section-padding-small {
		padding-top: 7.5rem;
		padding-bottom: 7.5rem;
	}
	.section-padding-tiny {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
	.container-slider {
		margin-left: -125%;
	}
	.container-slide {
		padding: 0px 0.75rem;
		width: 75%;
	}
	.container-slide img {
		min-height: 10rem;
	}
	.container-slide:nth-child(even) img {
		min-height: 12.5rem;
	}
	.container-buttons {
		gap: 1.25rem;
	}
	.primary {
		margin-top: 1.75rem;
	}
	.form input[type=checkbox] {
		margin: 0.25rem 1rem 0px 1rem;
		border-radius: 0px;
		-webkit-border-radius: 0px;
	}
}

/* ----------------------------------------------------------------
	Blocks
-----------------------------------------------------------------*/
#cookie {
	display: none;
	opacity: 0;
	position: fixed;
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	background-color: rgba(255, 255, 255, 0.5);
	z-index: 999;
}
#cookie .cookie-wrapper {
	width: 38.2%;
	max-height: 100%;
}
#cookie .cookie-container {
	box-sizing: border-box;
	padding: 1.75rem 2.5rem 0.75rem 2.5rem;
	max-height: 100%;
	align-items: stretch;
	justify-content: flex-start;
	gap: 0.75rem;
	overflow-y: auto;
}
#cookie .cookie-container .h4, #cookie .cookie-container p {
	text-align: left;
}
#cookie .container-toggles {
	padding: 0.25rem 0px;
	justify-content: flex-start;
	gap: 0.75rem;
}
#cookie .container-toggles .container-toggle {
	align-items: center;
}
#cookie .container-toggles .container-toggle:not(:first-child) label {
	padding: 0.25rem 0px;
	cursor: pointer;
}
#cookie .container-buttons {
	margin-top: 0px;
	gap: 0.75rem;
}
#cookie .container-buttons .primary {
	margin-top: 0px;
}
#cookie .cookie-container > button {
	flex-shrink: 0;
}
#cookie .wrapper-descriptions {
	gap: 0.75rem;
}
#cookie .wrapper-descriptions > label {
	cursor: pointer;
}
#cookie .wrapper-descriptions > input:checked + label .toggle-show, #cookie .wrapper-descriptions > input:not(:checked) + label .toggle-hide, #cookie .wrapper-descriptions > input:not(:checked) ~ .container-descriptions {
	display: none;
}
#cookie .container-descriptions {
	gap: 0.75rem;
}
#cookie .container-description {
	box-sizing: border-box;
	padding: 1.25rem;
	gap: 0.75rem;
}
#cookie .container-description table {
	border-collapse: collapse;
	background-color: var(--main-white);
}
#cookie .container-description table * {
	text-align: left;
}
#cookie .container-description tr:nth-child(even):not(.divider) {
	background-color: var(--main-white);
}
#cookie .container-description tr.divider {
	background-color: var(--brown-color);
}
#cookie .container-description tr th, #cookie .container-description tr td {
	padding: 0.75rem;
	font-size: 0.8rem;
	border: 1px solid var(--brown-color);
}
#cookie .container-description tr.divider th, #cookie .container-description tr.divider td {
	padding: 0.375rem;
}
#cookie .container-description tr th {
	background-color: var(--main-shade-50);
}
#cookie .line {
	height: 1px;
	background-color: var(--main-shade-600);
	flex-shrink: 0;
}
#cookie .wrapper-descriptions button, #cookie .container-links, #cookie .container-links * {
	font-weight: 400;
}
@media only screen and (max-width: 992px) {
	#cookie .cookie-wrapper {
		width: 75%;
	}
}
@media only screen and (max-width: 688px) {
	#cookie .cookie-wrapper {
		width: 100%;
	}
	#cookie .cookie-container {
		padding: 1.25rem 1.25rem 0.75rem 1.25rem;
	}
}

.overlay {
	position: fixed;
	z-index: 111;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.65);
	-webkit-backdrop-filter: blur(0.5rem);
    backdrop-filter: blur(0.5rem);
}
.overlay:not(.show) {
	display: none;
	opacity: 0;
}
.overlay .container-content {
    box-sizing: border-box;
    padding: 3.75rem 6.25rem 5rem 6.25rem;
    min-width: 50%;
    max-width: 100%;
    max-height: 82.5%;
    justify-content: flex-start;
	gap: 5rem;
    overflow-y: auto;
}
.overlay .container-content.small-gap {
	gap: 2.5rem;
}
.overlay > svg:first-child {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	width: 1.75rem;
	height: 1.75rem;
	cursor: pointer;
}
.overlay > svg:first-child .fill {
	fill: var(--main-white);
}
.overlay > svg:first-child .stroke {
	stroke: var(--main-white);
}
.overlay#overlay-eurocres .form:not(#eurocres) {
	flex-wrap: wrap;
	gap: 3.75rem;
}
.overlay#overlay-eurocres .form:not(#eurocres) .container-input {
	width: auto;
}
@media only screen and (max-width: 992px) {
	.overlay .container-content {
		padding: 3.75rem 4rem 5rem 4rem;
		width: 100%;
	}
	.overlay#overlay-eurocres .form:not(#eurocres) .container-input {
		width: 100%;
	}
}
@media only screen and (max-width: 688px) {
	.overlay .container-content {
		padding: 2.5rem 2rem;
		width: 100%;
	}
}

/* ----------------------------------------------------------------
	Typography
-----------------------------------------------------------------*/
p, span, label, ul, h1, h2, h3, h4, h5, h6, .h1-span {
	font-size: 1.25rem;
	line-height: 1.61em;
	font-weight: 300;
	color: var(--main-white);
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
	font-weight: 500;
	line-height: 1.1em;
	margin-bottom: 2.5rem;
}
span {
	display: block;
}

.text-small {
	font-size: 1rem;
}
.text-big {
	font-size: 1.25rem;
}
.text-huge {
	font-size: 1.5rem;
	font-weight: 500;
}
.text-white {
	color: var(--main-white);
}
.text-dark {
	color: var(--main-black);
}

h1, .h1 {
	font-size: 5rem;
	margin-bottom: 1.25rem;
}
h1 > span, .h1 > span {
	position: absolute;
	top: 0px;
	left: 0px;
	transform: translate(-10rem, -55%);
	gap: 1rem;
	font-size: 9rem;
	font-weight: 500;
	line-height: 1em;
	letter-spacing: -0.125rem;
	color: var(--main-shade-600);
	z-index: -1;
}
h1 > span svg, .h1 > span svg {
	transform: translateY(-27.5%);
	width: 7rem;
	height: auto;
	fill: var(--main-shade-600);
}
h2, .h2 {
	font-size: 3.75rem;
	margin-bottom: 1.75rem;
}
h3, .h3 {
	font-size: 2.5rem;
	margin-bottom: 1.375rem;
}
h4, .h4 {
	font-size: 1.75rem;
	margin-bottom: 1.25rem;
}
h5, .h5 {
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
}

.kicker {
	position: absolute;
	top: 0px;
	left: 0px;
	transform: translate(-3.75rem, -61.8%);
	width: 100%;
	font-size: 9rem;
	font-weight: 500;
	line-height: 1em;
	letter-spacing: -0.125rem;
	text-transform: lowercase;
	white-space: nowrap;
	z-index: -1;
}
section.flexbox-c .kicker, section.align-center .kicker {
	left: 50%;
	transform: translate(-50%, -61.8%);
	display: flex;
	justify-content: center;
	text-align: center;
}
.bg-dark .kicker {
	color: var(--main-shade-600);
}
.bg-dark-light .kicker {
	color: var(--main-black);
}
.bg-brown .kicker {
	color: var(--brown-color-light);
}
.bg-brown-light .kicker {
	color: var(--brown-color);
}

a {
	position: relative;
	font-family: var(--common-font);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.75em;
	text-decoration: none;
	color: var(--main-white);
	cursor: pointer;
}
.link-self, .link-inside .inside {
	position: relative;
	transition: color 0.25s;
}
.link-self::after, .link-inside .inside::after {
	content: "";
	position: absolute;
	bottom: 0px;
	left: 50%;
	width: 0px;
	height: 1px;
	background-color: var(--main-shade-600);
	transition: width 0.25s, background-color 0.25s, left 0.25s;
}
.bg-green .link-self::after, .bg-green  .link-inside .inside::after, .bg-brown .link-self::after, .bg-brown  .link-inside .inside::after {
	background-color: var(--main-white);
}
.link-self:hover::after, .link-self:focus::after, .link-inside:hover .inside::after, .link-inside:focus .inside::after {
	left: 0px;
	width: 100%;
	background-color: var(--main-white);
}

.container-text {
	position: relative;
	z-index: 0;
}

.italic {
	font-style: italic;
}

strong {
	font-weight: 500;
}
@media only screen and (max-width: 1640px) and (min-width: 1367px) {
	h1, .h1 {
		font-size: 4rem;
	}
}
@media only screen and (max-width: 992px) {
	h1, .h1 {
		font-size: 3.5rem;
	}
	h1 > span, .h1 > span {
		font-size: 6.25rem;
	}
	.kicker {
		font-size: 5rem;
		transform: translate(-2.5rem, -50%);
	}
}
@media only screen and (max-width: 688px) {
	p, span, label, ul, h1, h2, h3, h4, h5, h6, .h1-span {
		font-size: 1rem;
	}
	h1, .h1 {
		font-size: 2.5rem;
		margin-bottom: 0.5rem;
	}
	h1 > span, .h1 > span {
		font-size: 5rem;
	}
	h2, .h2 {
		font-size: 2rem;
	}
	h3, .h3 {
		font-size: 1.5rem;
	}
	h4, .h4 {
		font-size: 1.25rem;
	}
	.text-huge {
		font-size: 1.375rem;
	}
	.kicker {
		font-size: 3.25rem;
		transform: translate(-1.25rem, -50%);
	}
}

/* ----------------------------------------------------------------
	Complete CSS
-----------------------------------------------------------------*/

/* Nav */
nav.main {
	position: fixed !important;
	z-index: 100;
	border-bottom: 1px solid rgba(60, 60, 59, 0);
}
nav .loading {
	height: 100vh;
	height: 100svh;
	backdrop-filter: blur(0.25rem);
}
nav .loading svg, nav .loading span {
	mask-image: linear-gradient(to right, rgba(0, 0, 0, 1.0) -100%,  transparent 0%);
	-webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1.0) -100%,  transparent 0%);
}
nav .loading svg {
	width: 95%;
	height: auto;
	fill: var(--main-shade-600);
}
nav .loading span {
	margin-top: 1.25rem;
	margin-right: 15%;
	font-size: 5rem;
	font-weight: 500;
	align-self: flex-end;
}
nav .container-title {
	right: 25%;
	transform: translateY(-100%);
}
nav .container-title span {
	font-size: 0px;
	font-weight: 500;
	opacity: 0;
}
nav .normal-menu {
	position: relative;
	height: 5rem;
	border-bottom: 1px solid var(--main-black);
}
nav .normal-menu > * {
	flex: 1;
}
nav .normal-menu > *:nth-child(2) {
	justify-content: flex-end;
}
nav .normal-menu > *:last-child {
	justify-content: flex-end;
}
nav .container-logo a {
	display: inline-block;
	height: 2rem;
}
nav .container-logo svg {
	width: auto;
	height: 1.75rem;
	fill: var(--main-white);
}
nav .links-normal-menu {
	height: 100%;
	gap: 2.5rem;
}
nav .links-normal-menu a {
	white-space: nowrap;
}
nav .links-normal-menu a[aria-current = true] {
	opacity: 0;
}
nav .links-normal-menu a:not([aria-current = true]), nav .links-normal-menu a[aria-current = true] svg {
	overflow: hidden;
}
nav .links-normal-menu span {
	font-size: 1rem;
	font-weight: 500;
	transition: color 0.25s;
}
nav .links-normal-menu a:not([aria-current = true]) span, nav .links-normal-menu a .stroke, nav .menu-icon {
	transform: translateY(-100%);
	color: var(--main-shade-600);
}
nav .links-normal-menu a:hover span, nav .links-normal-menu a:focus span {
	color: var(--main-white) !important;
}
nav .links-normal-menu a.icon, nav .mobile-menu a.icon {
	gap: 0.375rem;
}
nav .links-normal-menu a.icon svg, nav .mobile-menu a.icon svg {
	width: 1rem;
	height: auto;
}
nav .links-normal-menu a.icon svg *.fill {
	fill: var(--main-shade-600);
}
nav .links-normal-menu a.icon svg *.stroke {
	stroke: var(--main-shade-600);
}
nav .links-normal-menu a[aria-current = true] svg *.fill, nav .links-normal-menu a:hover.icon svg *.fill, nav .links-normal-menu a:focus.icon svg *.fill {
	fill: var(--main-white);
}
nav .links-normal-menu a[aria-current = true] svg *.stroke, nav .links-normal-menu a:hover.icon svg *.stroke, nav .links-normal-menu a:focus.icon svg *.stroke {
	stroke: var(--main-white);
}
nav .container-contact {
	box-sizing: border-box;
	padding: 2.5rem;
	height: 100%;
	justify-content: flex-end;
	align-items: center;
	gap: 0.75rem;
	border-left: 1px solid rgba(60, 60, 59, 0);
	border-right: 1px solid rgba(60, 60, 59, 0);
}
nav.main .button-menu {
	display: none;
	margin-right: initial;
	margin-left: 1.25rem;
	padding: 0px;
	border: none;
	background: none;
	cursor: pointer;
}
nav.main .button-menu .menu-icon {
	gap: 0.5rem;
}
nav.main .button-menu .menu-icon-bar {
	height: 2px;
	width: 2.5rem;
	background-color: var(--main-shade-600);
	transition: background-color 0.25s, border-color 0.25s, transform 0.25s;
}
nav.main .button-menu.active .menu-icon-bar:nth-child(1) {
	transform: translate(0, 0.5rem) rotate(-45deg);
}
nav.main .button-menu.active .menu-icon-bar:nth-child(2) {
	opacity: 0;
}
nav.main .button-menu.active .menu-icon-bar:nth-child(3) {
	transform: translate(0, -0.5rem) rotate(45deg);
}
nav.main .button-menu:hover .menu-icon:not(.bg) > .menu-icon-bar, nav.main .button-menu:focus .menu-icon:not(.bg) > .menu-icon-bar {
	background-color: var(--main-white);
}
nav .mobile-menu {
	display: none;
	opacity: 0;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	background-color: var(--main-black);
	gap: 1.25rem;
	z-index: -1;
}
nav .mobile-menu a > span {
	font-size: 2.5rem;
}
nav .mobile-menu a[aria-current = true] > span {
	font-weight: 500;
}
nav .mobile-container-links > * {
	margin: 0.75rem 0px;
}
@media only screen and (max-width: 992px) {
	nav .loading span {
		font-size: 3.75rem;
	}
	nav .links-normal-menu, nav .normal-menu .container-icons, nav .normal-menu .container-buttons, nav .mega-menu {
		display: none;
	}
	nav .normal-menu > * {
		flex: initial;
	}
	nav.main .button-menu {
		display: flex;
	}
	nav .mobile-menu a.icon {
		gap: 1rem;
	}
	nav .mobile-menu a.icon svg {
		width: 2.5rem;
	}
}
@media only screen and (max-width: 688px) {
	nav .loading span {
		margin-top: 0.5rem;
		font-size: 2.5rem;
	}
	nav .mobile-menu a > span {
		font-size: 1.75rem;
	}
	nav header::before {
		height: 7.5rem;
	}
	nav .container-logo svg {
		height: 2rem;
	}
	nav .highlight-button {
		display: none;
	}
	nav .mobile-highlight-button {
		display: flex;
	}
	header::before {
		height: 7.5rem;
	}
	nav .mobile-menu a.icon {
		gap: 0.75rem;
	}
	nav .mobile-menu a.icon svg {
		width: 2rem;
	}
}

/* Header */
.section-header {
	align-items: flex-start;
	height: 100vh;
	height: 100svh;
}
.section-header > * {
	z-index: 0;
}
.section-header > *:not(.top-left) {
	width: 50%;
}
.section-header .wrapper-text {
	padding-right: 2.5rem;
	padding-top: 5rem;
	height: 100vh;
	height: 100svh;
}
.section-header > img {
	left: 50%;
	transform: translateX(-50%);
	width: 105%;
}
.section-header .container-text {
	width: 100%;
}
.section-header .container-video {
	height: 100%;
}
.section-header .adress {
	left: calc(50% + 5rem);
	bottom: calc(25% + 3.75rem);
	transform: translateY(50%);
	margin: 0px;
	width: calc(50% - 7.75rem);
}
@media only screen and (max-width: 992px) {
	.section-header .wrapper-text {
		transform: translateX(25%);
		padding-right: 0px;
		width: 66.666%;
		flex-shrink: 0;
	}
	.section-header .container-video {
		width: 50%;
		flex-shrink: 0;
	}
	.section-header .container-text > *:not(h1) {
		width: 80%;
	}
	.section-header .container-buttons {
		justify-content: flex-start;
	}
	.section-header .container-buttons .primary {
		flex-shrink: 0;
	}
	.section-header .adress {
		left: calc(50% + 3.75rem);
		bottom: calc(25% + 2.5rem);
		width: calc(50% - 5.75rem);
		font-size: 1.75rem;
	}
}
@media only screen and (max-width: 688px) {
	.section-header {
		height: 137.5vh;
		height: 137.5svh;
	}
	.section-header .wrapper-text {
		transform: translateX(40%);
		width: 83.333%;
		flex-shrink: 0;
	}
	.section-header .adress {
		left: 0px;
		bottom: 12.5%;
		transform: none;
		width: 80%;
		font-size: 2rem;
		text-align: center;
	}
}

/* 3D Model */
.section-model {
	box-sizing: border-box;
	margin-top: -1px;
}
.section-model .wrapper-text {
	padding-bottom: 0px;
	gap: 7.5rem;
}
.section-model .wrapper-text .container-text > *:not(.kicker) {
	max-width: 61.8%;
}
.section-model .container-infos {
	align-items: flex-start;
	justify-content: center;
	gap: 7.5rem;
}
.section-model .container-info {
	width: calc(33.333% - 7.5rem * 2/3);
	gap: 3.75rem;
}
.section-model .container-info svg {
	width: 100%;
	height: auto;
	stroke: var(--main-white);
	fill: transparent;
	stroke-width: 1px;
}
.section-model .container-info svg .etage {
	stroke-width: 2px;
}
.section-model .container-data {
	display: none;
}
.section-model .container-view {
	width: 100%;
	height: 100vh;
	height: 100svh;
	justify-content: flex-end;
	z-index: 4;
}
.section-model canvas {
	width: 100%;
	height: 100%;
	cursor: grab;
}
.section-model canvas:active  {
	cursor: grabbing;
}
.section-model .container-navigators {
	top: 5rem;
	width: 30%;
	height: calc(100% - 5rem);
	pointer-events: none;
}
.section-model .container-navigator {
	display: none;
	opacity: 0;
	width: 100%;
	height: 100%;
	max-height: 100%;
	justify-content: flex-start;
	z-index: 1;
	pointer-events: initial;
}
.section-model .container-navigator .container-images, .section-model .container-navigator .container-image picture {
	pointer-events: none;
}
.section-model .container-navigator .close {
	top: 0.75rem;
	right: 0.75rem;
	box-sizing: border-box;
	padding: 0.25rem;
	width: 2.5rem;
	height: 2.5rem;
	border: none;
	background-color: var(--main-black);
	cursor: pointer;
	z-index: 1;
	transition: background-color 0.2s;
}
.section-model .container-navigator .close .fill {
	fill: var(--main-white);
}
.section-model .container-navigator .close:hover, .section-model .container-navigator .close:focus {
	background-color: var(--brown-color);
}
.section-model .container-navigator .left, .section-model .container-navigator .right {
	top: 50%;
	right: 0.75rem;
	transform: translateY(-50%);
	padding: 0px;
	width: 2.5rem;
	height: 2.5rem;
	border: none;
	background: none;
	cursor: pointer;
	z-index: 1;
}
.section-model .container-navigator .left {
	display: none;
	right: initial;
	left: 0.75rem;
}
.section-model .container-navigator .left  .fill, .section-model .container-navigator .right .fill {
	fill: var(--main-white);
}
.section-model .container-view .container-images > * {
	flex-shrink: 0;
}
.section-model .container-view .container-image.svg, .section-model .container-view .container-image.jpg {
	box-sizing: border-box;
	padding: 1.25rem 2.5rem;
	padding-bottom: 0px;
}
.section-model .container-view .container-image.svg {
	aspect-ratio: 16/9;
}
.section-model .container-view .container-image.jpg {
	min-width: 0px;
	min-height: 0px;
}
.section-model .container-view .container-image.jpg > a.container-image picture {
	transition: scale 0.5s;
}
.section-model .container-view .container-image.jpg > a.container-image:hover picture {
	scale: 1.075;
}
.section-model .container-view .container-image .container-svg > svg {
	position: absolute;
	bottom: 0px;
	max-width: 100%;
	max-height: 100%;
}
.section-model .container-view .container-image .container-svg > svg .stroke {
	fill: transparent;
	stroke: var(--main-white);
	stroke-width: 5px;
}
.section-model .container-view .container-image .container-svg > svg .stroke.g {
	stroke: var(--main-shade-600);
}
.section-model .container-view .container-image .container-svg > svg .fill {
	fill: var(--brown-color);
	stroke: transparent;
	stroke-width: 0px;
}
.section-model .container-view .container-image .container-svg > svg .fill.g {
	fill: var(--main-shade-600);
}
.section-model .container-view .container-text {
	box-sizing: border-box;
	padding: 2.5rem;
}
.section-model .container-view .container-text .list-small {
	gap: 0.5rem;
	align-items: flex-start;
}
.section-model .container-view .container-text .list-small + p {
	margin-top: 1.25rem;
}
.section-model .container-view .container-text .list-small > * {
	width: 100%;
}
@media only screen and (max-width: 992px) {
	.section-model > .wrapper-text > .container-text > *:not(.kicker) {
		max-width: 100%;
	}
	.section-model .container-infos {
		flex-wrap: wrap;
		gap: 2.5rem;
	}
	.section-model .container-info {
		width: calc(50% - 2.5rem * 1/2);
		gap: 2.5rem;
	}
	.section-model .container-view {
		height: 85vh;
		height: 85svh;
	}
	.section-model .container-navigators {
		top: 0px;
		width: 50%;
		height: 97.5%;
	}
	.section-model .container-view .container-text {
		box-sizing: border-box;
		padding: 2rem;
		padding-bottom: 0px;
	}
	.section-model .container-view .container-text .list-small {
		flex-direction: column;
		gap: 0px;
	}
}
@media only screen and (max-width: 688px) {
	.section-model .container-info {
		width: 75%;
		gap: 1.25rem;
	}
	.section-model .container-view {
		height: 60vh;
		height: 60svh;
	}
	.section-model .container-navigators {
		width: 100%;
		height: 100%;
	}
	.section-model .container-navigator .select-floor {
		display: none;
	}
}

/* Facts */
.section-facts {
	margin-top: -1px;
	gap: 5rem;
}
.section-facts .container-text > *:not(.kicker) {
	max-width: 61.8%;
}
.section-facts .container-facts {
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 7.5rem 5rem;
}
.section-facts .container-fact {
	width: calc(33.333% - 2 / 3 * 5rem);
	gap: 1.25rem;
}
.section-facts .container-fact svg {
	width: 7.5rem;
	height: auto;
	stroke: var(--main-white);
	stroke-width: 0px;
	fill: var(--main-white);
}
@media only screen and (max-width: 992px) {
	.section-facts {
		gap: 5rem;
	}
	.section-facts .container-text > *:not(.kicker) {
		max-width: 100%;
	}
	.section-facts .container-facts {
		gap: 5rem 2.5rem;
	}
	.section-facts .container-fact {
		width: calc(50% - 1/2 * 2.5rem);
	}
}
@media only screen and (max-width: 688px) {
	.section-facts {
		gap: 2.5rem;
	}
	.section-facts:not(.bg-dark) {
		padding-top: 0px;
	}
	.section-facts .container-fact {
		width: 100%;
	}
	.section-facts .container-fact h3 {
		margin-bottom: 0px;
	}
}

/* Gallery */
.section-gallery {
	width: 100%;
	margin-top: -1px;
	box-sizing: border-box;
	padding-top: 5rem;
	gap: 5%;
	transform: none;
}
.section-gallery .container-bg, .section-gallery .container-bg svg {
	min-width: 100%;
	min-height: 125%;
}
.section-gallery .container-images {
	gap: 2.5%;
}
.section-gallery .container-image {
	width: 40%;
	flex-shrink: 0;
}
.section-gallery .container-images.grow .container-image {
	width: 50%;
}

/* Suitable */
.section-suitable {
	margin-top: -1px;
	gap: 2.5rem;
}
.section-suitable .container-text > *:not(.kicker) {
	max-width: 61.8%;
}
.section-suitable .container-image img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: calc(100vh - 5rem);
	max-height: calc(100svh - 5rem);
}
.section-suitable picture {
	mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 0) 100%);
	-webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 0) 100%);
}
.section-suitable .container-content {
	gap: 5rem;
}
.section-suitable .container-content p {
	text-align: left;
}
.section-suitable .container-buttons .primary {
	margin: 0px;
}
@media only screen and (max-width: 992px) {
	.section-suitable .container-text > *:not(.kicker) {
		max-width: 100%;
	}
	.section-suitable .container-content {
		flex-direction: column;
		gap: 1.75rem;
	}
	.section-suitable .container-content p {
		text-align: center;
	}
}
@media only screen and (max-width: 688px) {
	
}

/* City */
.section-city {
	margin-top: -1px;
}
.section-city .container-text > *:not(.kicker) {
	max-width: 50%;
}
.section-city .container-content {
	align-items: stretch;
	gap: 5rem;
}
.section-city .wrapper-durations {
	width: calc(50% - 5rem);
}
.section-city .container-durations {
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 1.25rem 5rem;
}
.section-city .h4.margin {
	margin-top: 1.75rem;
}
.section-city .container-duration {
	gap: 0.75rem;
}
.section-city .container-duration svg {
	width: 2.5rem;
	height: auto;
	fill: var(--main-white);
}
.section-city .container-duration span {
	padding: 0px 0.5rem;
	white-space: nowrap;
}
.section-city .container-duration span::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0px;
	width: 100%;
	height: 2px;
	background-color: var(--main-white);
	z-index: -1;
}
.section-city .container-infos {
	display: none;
}
.section-city .container-scrolly {
	width: 50%;
	mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 0) 100%);
	-webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 0) 100%);
}
@media only screen and (max-width: 992px) {
	.section-city .container-text > *:not(.kicker) {
		max-width: 100%;
	}
	.section-city .container-content {
		flex-direction: column;
		align-items: flex-start;
		gap: 2.5rem;
	}
	.section-city .container-content > * {
		width: 100%;
	}
	.section-city .container-scrolly {
		min-height: 10rem;
		aspect-ratio: 16/9;
	}
}
@media only screen and (max-width: 688px) {
	.section-city {
		padding-top: 10rem;
		gap: 2.5rem;
	}
	.section-city > * {
		padding: 0px 2rem;
	}
}

/* Sustainability */
.section-sustainability {
	margin-top: -1px;
	gap: 5rem;
	z-index: 1;
}
.section-sustainability .container-text > *:not(.kicker) {
	max-width: 61.8%;
}
.section-sustainability .container-infos {
	box-sizing: border-box;
	align-items: flex-start;
	justify-content: center;
	gap: 10rem;
}
.section-sustainability .container-icons {
	flex-wrap: wrap;
	gap: 2.5rem;
}
.section-sustainability .container-info {
	width: calc(50% - 1.25rem);
	gap: 1.25rem;
}
.section-sustainability .container-info svg {
	width: 7.5rem;
	height: auto;
	stroke: var(--main-white);
	fill: var(--main-white);
	stroke-width: 0px;
}
.section-sustainability .container-info svg .etage {
	stroke-width: 2px;
}
.section-sustainability .container-info .h4 {
	white-space: nowrap;
}
.section-sustainability .container-content {
	align-items: flex-start;
	z-index: 1;
}
.section-sustainability .container-content > picture {
	width: 60%;
}
.section-sustainability .container-content > div {
	box-sizing: border-box;
	padding-left: 5rem;
	width: 40%;
}
.section-sustainability .container-star {
	bottom: 2.5rem;
	right: 2.5rem;
}
.section-sustainability .container-star svg {
	width: 20rem;
	height: auto;
	fill: var(--main-shade-600);
}
@media only screen and (max-width: 992px) {
	.section-sustainability .container-text > *:not(.kicker) {
		max-width: 100%;
	}
	.section-sustainability .container-content {
		flex-direction: column;
		gap: 2.5rem;
	}
	.section-sustainability .container-content > * {
		width: 100%;
	}
	.section-sustainability .container-content > div {
		padding-left: 0px;
	}
	.section-sustainability .container-infos {
		flex-wrap: wrap;
	}
}
@media only screen and (max-width: 688px) {
	.section-sustainability {
		gap: 6rem;
	}
	.section-sustainability .container-info svg {
		width: 5rem;
	}
}

/* Concepts */
.section-concepts {
	margin-top: -1px;
	z-index: initial;
	gap: 2.5rem;
}
.section-concepts .container-text > *:not(.kicker) {
	max-width: 50%;
}
.section-concepts .container-content {
	align-items: flex-start;
	gap: 5rem;
}
.section-concepts .container-images {
	width: 60%;
}
.section-concepts .container-images picture {
	cursor: pointer;
}
.section-concepts .container-images picture:first-child {
	opacity: 0.5;
	height: auto;
	z-index: 1;
	transition: opacity 0.25s;
}
.section-concepts .container-images picture:first-child.active {
	opacity: 1;
}
.section-concepts .container-images picture:not(:first-child) {
	height: 100%;
	z-index: 2;
	transition: opacity 0.25s;
}
.section-concepts .container-images picture:not(:first-child):not(.active) {
	opacity: 0;
}
.section-concepts .container-accordions {
	width: calc(40% - 5rem);
	justify-content: flex-start;
	gap: 1.25rem;
}
.section-concepts .container-accordion > button {
	padding: 0.5rem 0px;
	margin: 0px;
	justify-content: space-between !important;
	gap: 1.25rem;
	background: none;
	border: none;
	cursor: pointer;
}
.section-concepts .container-accordion > button svg {
	width: 1.25rem;
	height: 1.25rem;
	fill: var(--main-white);
	vertical-align: initial;
	transition: transform 0.25s;
}
.section-concepts .container-accordion.active > button svg {
	transform: rotate(-90deg);
}
.section-concepts .container-accordion h3, .section-concepts .container-accordion p {
	margin: 0px;
	line-height: 1.61em;
	text-align: left;
	transition: line-height 0.25s;
}
.section-concepts .container-accordion:not(.active) p {
	opacity: 0;
	padding: 0px;
	margin: 0px;
	line-height: 0%;
}
@media only screen and (max-width: 992px) {
	.section-concepts .container-text > *:not(.kicker) {
		max-width: 100%;
	}
	.section-concepts .container-content {
		flex-direction: column;
		gap: 2.5rem;
	}
	.section-concepts .container-content > * {
		width: 100%;
	}
}
@media only screen and (max-width: 688px) {
	.section-concepts .container-accordions {
		gap: 0.5rem;
	}
}

/* Consultation */
.section-consultation {
	margin-top: -1px;
	gap: 2.5rem;
}
.section-consultation .container-bg {
	transform: translateY(-50%);
	z-index: -1;
	pointer-events: none;
}
.section-consultation .container-bg, .section-consultation .container-bg svg {
	min-width: 100%;
}
.section-consultation .container-text > *:not(.kicker) {
	max-width: 61.8%;
}
.section-consultation .container-content {
	width: auto;
}
.section-consultation .wrapper-image {
	z-index: 2;
}
.section-consultation .wrapper-image:not(:first-child) {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 1;
	width: 100%;
	height: 100%;
}
.section-consultation picture, .section-consultation img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: calc(100vh - 10rem);
	max-height: calc(100svh - 10rem);
}
.section-consultation .wrapper-image .container-info {
	transform: translate(-50%, -50%);
	box-sizing: border-box;
	padding: 1.25rem;
	background: var(--brown-color);
	mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 0) 100%);
	-webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 0) 100%);
	will-change: transform;
	z-index: 5;
}
.section-consultation .wrapper-image:not(:first-child) .container-info {
	mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 50%);
	-webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 50%);
}
.section-consultation .container-info:hover, .section-consultation .container-info:focus {
	z-index: 6;
}
.section-consultation .container-info .h5, .section-consultation .container-info p {
	transition: margin 0.25s, width 0.25s, line-height 0.25s, opacity 0.25s;
}
.section-consultation .container-info .h5 {
	margin-bottom: 0px;
}
.section-consultation .container-info:hover .h5, .section-consultation .container-info:focus .h5 {
	margin-bottom: 0.75rem;
}
.section-consultation .container-info p {
	opacity: 0;
	width: 15rem;
	line-height: 0px;
}
.section-consultation .container-info:hover p, .section-consultation .container-info:focus p {
	opacity: 1;
	line-height: 1.25em;
}
.section-consultation .arrow {
	padding: 0px;
	margin: 0px;
	width: 2.5rem;
	height: 2.5rem;
	top: 50%;
	background: none;
	border: none;
	cursor: pointer;
	transition: width 0.25s, height 0.25s;
}
.section-consultation .arrow:hover, .section-consultation .arrow:focus {
	width: 3rem;
	height: 3rem;
}
.section-consultation .arrow.top-right {
	right: calc(100% + 2.5rem);
	transform: translate(50%, -50%);
}
.section-consultation .arrow.top-left {
	left: calc(100% + 2.5rem);
	transform: translate(-50%, -50%);
}
.section-consultation .container-buttons .primary {
	margin: 0px;
}
@media only screen and (max-width: 992px) {
	.section-consultation {
		padding-left: 0px;
		padding-right: 0px;
	}
	.section-consultation .container-text {
		box-sizing: border-box;
		padding-left: 4rem;
		padding-right: 4rem;
	}
	.section-consultation .container-text > *:not(.kicker) {
		max-width: 100%;
	}
	.section-consultation .container-info {
		padding: 1rem;
	}
	.section-consultation .container-info .h5 {
		font-size: 1rem;
	}
	.section-consultation .container-info:hover .h5, .section-consultation .container-info:focus .h5 {
		margin-bottom: 0.25rem;
	}
	.section-consultation .container-info p {
		font-size: 0.9rem;
		width: 12.5rem;
	}
	.section-consultation .arrow {
		top: calc(100% + 4.25rem);
		transform: none;
	}
	.section-consultation .arrow.top-right {
		right: 80%;
	}
	.section-consultation .arrow.top-left {
		left: 80%;
	}
}
@media only screen and (max-width: 688px) {
	.section-consultation .container-text {
		padding-left: 2rem;
		padding-right: 2rem;
	}
	.section-consultation .wrapper-image  .container-info {
		padding: 0.5rem;
	}
	.section-consultation .container-info .h5 {
		font-size: 0.75rem;
	}
	.section-consultation .container-info p {
		font-size: 0.7rem;
		width: 7.5rem;
	}
	.section-consultation .arrow.top-right {
		right: 90%;
	}
	.section-consultation .arrow.top-left {
		left: 90%;
	}
}

/* Logos */
.section-logos {
	padding-top: 5rem;
	padding-bottom: 7.5rem;
	margin-top: -1px;
	gap: 7.5rem;
	z-index: 1;
}
.section-logos .container-text > *:not(.kicker) {
	max-width: 61.8%;
}
.section-logos .container-slider  {
	margin-left: -12.5%;
	align-items: center;
}
.section-logos .container-slide  {
	width: 12.5%;
	padding: 0px 2.5rem;
}
.section-logos .container-slide a {
	opacity: 0.5;
	flex-shrink: 0;
	transition: opacity 0.25s;
}
.section-logos .container-slide a:hover, .section-logos .container-slide a:focus {
	opacity: 1;
}
.section-logos .container-slide svg  {
	width: 100%;
	height: 100%;
	max-width: 10rem;
	max-height: 7.5rem;
	vertical-align: middle;
}
.section-logos .container-content, .section-logos .container-arrows {
	gap: 2.5rem;
}
.section-logos .container-arrows .arrow {
	padding: 0px;
	margin: 0px;
	width: 1.25rem;
	height: 1.25rem;
	top: 50%;
	background: none;
	border: none;
	cursor: pointer;
	transition: scale 0.25s;
}
.section-logos .container-arrows .arrow:hover, .section-logos .container-arrows .arrow:focus {
	scale: 1.2;
}
@media only screen and (max-width: 992px) {
	.section-logos {
		gap: 5rem;
	}
	.section-logos .container-text > *:not(.kicker) {
		max-width: 100%;
	}
	.section-logos .container-slider  {
		margin-left: -25%;
	}
	.section-logos .container-slide  {
		width: 25%;
		padding: 0px 2.5rem;
	}
}

/* Video */
.section-video {
	padding-top: 0px;
	padding-bottom: 50vh;
	padding-bottom: 50svh;
	margin-top: -1px;
	z-index: initial;
}
.section-video .kicker  {
	top: calc(50% + 3rem);
	font-size: 12.5rem;
	white-space: nowrap;
	z-index: 1;
}
.section-video .container-video {
	box-sizing: border-box;
	padding-top: 5rem;
	mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 0) 100%);
	-webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 0) 100%);
	z-index: 3;
}
.section-video video {
	width: auto;
	max-width: 100%;
	max-height: calc(100vh - 10rem);
	max-height: calc(100svh - 10rem);
}
@media only screen and (max-width: 992px) {
	.section-video {
		padding-top: 0px;
		padding-bottom: calc(75vh + ((100vw - 8rem) * 9/16 * 0.5));
		padding-bottom: calc(75svh - ((100vw - 8rem) * 9/16 * 0.5));
	}
	.section-video .kicker  {
		font-size: 10rem;
	}
	.section-video video {
		width: 100%;
	}
}
@media only screen and (max-width: 688px) {
	.section-video {
		padding-bottom: calc(75vh + ((100vw - 4rem) * 9/16 * 0.5));
		padding-bottom: calc(75svh - ((100vw - 4rem) * 9/16 * 0.5));
	}
	.section-video .kicker  {
		font-size: 5rem;
	}
}

/* Events */
.section-events {
	margin-top: -1px;
	padding-bottom: 5rem;
}
.section-events .container-text > *:not(.kicker) {
	max-width: 61.8%;
}
.section-events .container-events {
	padding-top: 5rem;
	padding-bottom: 5rem;
	gap: 3.75rem;
}
.section-events .container-events svg line {
	stroke: var(--main-shade-600);
	stroke-width: 0.25rem;
}
.section-events .container-event {
	width: calc(50% - 3.75rem);
	justify-content: flex-start;
	gap: 3.75rem;
}
.section-events .container-event:nth-child(even) {
	align-self: flex-end;
}
.section-events .container-event:nth-child(odd) {
	flex-direction: row-reverse;
}
.section-events .container-event .h4 {
	margin: 0px;
}
.section-events .container-event p {
	text-align: left;
}
.section-events .container-event:nth-child(odd) p {
	text-align: right;
}
@media only screen and (max-width: 992px) {
	.section-events .container-text > *:not(.kicker) {
		max-width: 100%;
	}
	.section-events .container-events svg {
		width: 0.25rem;
	}
	.section-events .container-events {
		gap: 5rem;
	}
	.section-events .container-event {
		width: calc(100% - 2.5rem);
		flex-direction: row !important;
		align-self: flex-end !important;
	}
	.section-events .container-event p {
		text-align: left !important;
	}
}
@media only screen and (max-width: 688px) {
	.section-events .container-events {
		gap: 3.75rem;
	}
	.section-events .container-event {
		width: calc(100% - 1.25rem);
		gap: 1.25rem;
	}
}

/* Radio */
.section-radio {
	margin-top: -1px;
	gap: 5rem;
}
.section-radio .container-bg {
	transform: translateY(-99%);
	width: 100%;
	height: auto;
}
.section-radio .container-bg svg {
	vertical-align: middle;
}
.section-radio .container-text  > *:not(.kicker) {
	max-width: 50%;
}
.section-radio .container-content {
	z-index: 1;
}
.section-radio .container-content > * {
	height: 32.5rem;
}
.section-radio .container-content .container-images  {
	width: 60%;
}
.section-radio .container-content .container-options  {
	box-sizing: border-box;
	padding-left: 5rem;
	width: 40%;
	gap: 3.75rem;
}
.section-radio .container-content.flexbox-hr .container-options {
	padding-left: initial;
	padding-right: 5rem;
}
.section-radio .container-images > picture:not(:first-child), .section-radio .container-texts > .container-explanation:not(:first-child) {
	display: none;
	opacity: 0;
}
.section-radio .container-texts > .container-explanation a {
	text-decoration: underline;
}
.section-radio .container-star {
	bottom: 2.5rem;
	right: 2.5rem;
}
.section-radio .container-star svg {
	width: 20rem;
	height: auto;
	fill: var(--main-shade-600);
}
@media only screen and (max-width: 992px) {
	.section-radio {
		gap: 2.5rem;
	}
	.section-radio .container-text  > *:not(.kicker) {
		max-width: 100%;
	}
	.section-radio .container-content {
		flex-direction: column;
		gap: 5rem;
	}
	.section-radio .container-content > * {
		width: 100% !important;
		height: auto;
		min-height: auto;
	}
	.section-radio .container-images {
		aspect-ratio: 16/9;
		min-height: 15rem;
	}
	.section-radio .container-content.flexbox-h .container-options, .section-radio .container-content.flexbox-hr .container-options {
		padding: 0px;
		gap: 1.75rem;
	}
	.section-radio .container-texts {
		min-height: 15rem;
	}
}
@media only screen and (max-width: 688px) {
	.section-radio, .section-radio .container-content.flexbox-h .container-options, .section-radio .container-content.flexbox-hr .container-options {
		gap: 1.25rem;
	}
	.section-radio .container-content {
		gap: 2.5rem;
	}
	.section-radio .container-images {
		min-height: 10rem;
	}
}

/* Map */
.section-map {
	padding-bottom: 5rem;
	margin-top: -1px;
	gap: 10rem;
}
.section-map .container-infos {
	display: none;
}
.section-map .container-scrolly {
	mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 0) 100%);
	-webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 0) 100%);
}
.section-map .container-canvas {
	height: 100vh;
	height: 100svh;
}
.section-map .container-content {
	gap: 5rem;
	z-index: 1;
}
.section-map .container-text > *:not(.kicker), .section-map .container-content > p {
	max-width: 61.8%;
}
.section-map .container-destinations {
	align-items: flex-start;
	gap: 5rem;
}
.section-map .container-durations {
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 1.25rem 5rem;
}
.section-map .container-duration {
	gap: 0.75rem;
}
.section-map .container-duration svg {
	width: 2.5rem;
	height: auto;
	fill: var(--main-white);
	z-index: 1;
}
.section-map .container-duration span {
	padding: 0px 0.5rem;
	white-space: nowrap;
}
.section-map .container-duration span::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0px;
	width: 100%;
	height: 2px;
	background-color: var(--main-white);
	z-index: -1;
}
@media only screen and (max-width: 992px) {
	.section-map .container-canvas {
		aspect-ratio: 16/9;
		height: auto;
		height: auto;
		min-height: 25vh;
		min-height: 25svh;
	}
	.section-map .container-content {
		gap: 5rem;
	}
	.section-map .container-text > *:not(.kicker), .section-map .container-content > p {
		max-width: 100%;
	}
	.section-map .container-destinations {
		flex-wrap: wrap;
		gap: 2.5rem;
	}
	.section-map .container-destination {
		width: calc(50% - 1.25rem);
	}
}
@media only screen and (max-width: 688px) {
	.section-map {
		gap: 5rem;
	}
	.section-map .container-content {
		gap: 2.5rem;
	}
	.section-map .container-destinations {
		flex-direction: column;
	}
	.section-map .container-destination {
		width: 100%;
		align-items: flex-start;
	}
}

/* Surroundings  */
.section-surroundings {
	gap: 5rem;
}
.section-surroundings .container-bg {
	transform: translateY(-37.5%);
	z-index: 0;
	pointer-events: none;
}
.section-surroundings .container-bg, .section-map .container-bg svg {
	min-width: 100%;
}
.section-surroundings .container-text > *:not(.kicker) {
	max-width: 61.8%;
}
.section-surroundings .container-content > * {
	width: 50%;
	height: 30rem;
}
.section-surroundings .container-images {
	z-index: 2;
}
.section-surroundings .container-options {
	box-sizing: border-box;
	padding-left: 10rem;
	gap: 3.75rem;
	z-index: 1;
}
.section-surroundings .container-star {
	width: 10rem;
	height: auto;
	transform: translate(-50%, 50%);
	z-index: 3;
}
.section-surroundings .container-star svg {
	fill: var(--main-white);
}
.section-surroundings .radio-alt {
	flex-wrap: wrap;
	gap: 1.25rem;
}
.section-surroundings .radio-alt label {
	width: calc(33.333% - 2 / 3 * 1.25rem);
	cursor: pointer;
}
.section-surroundings .radio-alt picture {
	opacity: 0.35;
	transition: opacity 0.25s;
}
.section-surroundings input {
	position: absolute;
	margin: 0px !important;
	width: 0%;
	height: 0%;
	cursor: pointer;
	opacity: 0;
}
.section-surroundings input:checked + picture, .section-surroundings label:hover picture, .section-surroundings label:focus picture {
	opacity: 1;
}
.section-surroundings .container-images > picture:not(:first-child), .section-surroundings .container-texts > .container-explanation:not(:first-child) {
	display: none;
	opacity: 0;
}
@media only screen and (max-width: 992px) {
	.section-surroundings {
		gap: 2.5rem;
	}
	.section-surroundings .container-text  > *:not(.kicker) {
		max-width: 100%;
	}
	.section-surroundings .container-content {
		flex-direction: column;
		gap: 5rem;
	}
	.section-surroundings .container-content > * {
		width: 100%;
		height: auto;
		min-height: auto;
	}
	.section-surroundings .container-images {
		aspect-ratio: 16/9;
		min-height: 15rem;
	}
	.section-surroundings .container-content.flexbox-h .container-options, .section-surroundings .container-content.flexbox-hr .container-options {
		padding: 0px;
		gap: 1.75rem;
	}
	.section-surroundings .container-texts {
		min-height: 15rem;
	}
}
@media only screen and (max-width: 688px) {
	.section-surroundings, .section-surroundings .container-content.flexbox-h .container-options, .section-surroundings .container-content.flexbox-hr .container-options {
		gap: 1.25rem;
	}
	.section-surroundings .container-content {
		gap: 2.5rem;
	}
	.section-surroundings .container-images {
		min-height: 10rem;
	}
	.section-surroundings .container-star {
		width: 5rem;
	}
}

/* DNA & Goal */
.section-dna {
	gap: 10rem;
}
.section-dna .container-row {
	align-items: stretch;
}
.section-dna .container-row > * {
	width: 50%;
	height: auto;
}
.section-dna .container-row.flexbox-h .wrapper-text {
	box-sizing: border-box;
	padding-right: 10rem;
}
.section-dna .container-row.flexbox-hr .wrapper-text {
	box-sizing: border-box;
	padding-left: 10rem;
}
.section-dna .container-icons {
	margin-top: 2.5rem;
	gap: 2.5rem;
}
.section-dna .container-icon {
	gap: 1.25rem;
}
.section-dna .container-icon h3 {
	margin: 0px;
}
.section-dna .container-icon svg {
	width: 2.5rem;
	height: auto;
	fill: var(--main-white);
	stroke: transparent;
	stroke-width: 0px;
}
@media only screen and (max-width: 992px) {
	.section-dna {
		gap: 7.5rem;
	}
	.section-dna .container-row {
		flex-direction: column-reverse;
		gap: 5rem;
	}
	.section-dna .container-row > * {
		width: 100%;
	}
	.section-dna .container-row.flexbox-h .wrapper-text, .section-dna .container-row.flexbox-hr .wrapper-text {
		padding: 0px 4rem;
	}
}
@media only screen and (max-width: 688px) {
	.section-dna {
		gap: 5rem;
	}
	.section-dna .container-row.flexbox-h .wrapper-text, .section-dna .container-row.flexbox-hr .wrapper-text {
		padding: 0px 2rem;
	}
}

/* Image */
.section-image {
	margin-top: -100vh;
	margin-top: -100svh;
	margin-bottom: -25vh;
	margin-bottom: -25svh;
	height: 100vh;
	height: 100svh;
	z-index: 0;
}
.section-image.cta picture {
	opacity: 0.65;
}
.section-image .container-text {
	will-change: transform;
}

/* Link */
.section-link {
	margin-top: -1px;
	gap: 10rem;
	z-index: 2;
}
.section-link .container-bg {
	transform: translateY(-99%);
	width: 100%;
	height: auto;
}
.section-link .container-bg svg {
	vertical-align: middle;
}
.section-link .container-video {
	width: 50%;
}
.section-link .container-text {
	width: calc(50% - 10rem);
}
.section-link h2 {
	margin: 0px;
}
@media only screen and (max-width: 992px) {
	.section-link {
		flex-direction: column;
		gap: 5rem;
	}
	.section-link .container-video, .section-link .container-text {
		width: 100%;
	}
}

/* CTA */
.section-cta {
	padding-bottom: 7.5rem;
	gap: 15rem;
}
.section-cta .container-content {
	gap: 7.5rem;
}
.section-cta .container-bg, .section-cta .container-bg svg {
	width: 100%;
	height: 100%;
}
.section-cta .container-cta > * {
	width: 50%;
}
.section-cta .container-star {
	width: 10rem;
	height: auto;
	transform: translate(-50%, -50%);
	z-index: 3;
}
.section-cta .container-star svg {
	fill: var(--main-white);
}
.section-cta .container-cta img {
	height: 40rem;
}
.section-cta h2 {
	margin-left: -12.5%;
	line-height: 1.5em;
}
.section-cta .container-offset {
	margin-left: 5rem;
}
.section-cta .container-offset .container-buttons {
	justify-content: flex-start;
}
.section-cta .container-slider {
	margin-top: 5rem;
}
.section-cta .h4 {
	padding: 1.75rem;
	margin: 0px;
	font-weight: 500;
	line-height: 1em;
	white-space: nowrap;
}
@media only screen and (max-width: 992px) {
	.section-cta, .section-cta .container-content {
		gap: 10rem;
	}
	.section-cta .container-cta {
		flex-direction: column;
		gap: 1.25rem;
	}
	.section-cta .container-cta > *:not(.container-star) {
		width: 100%;
	}
	.section-cta .container-cta img {
		height: 25rem;
	}
	.section-cta h2 {
		margin-left: 0px;
	}
	.section-cta h2:not(.h3) {
		font-size: 2.5rem;
		margin-bottom: 1.375rem;
	}
	.section-cta .container-offset {
		margin-left: 0px;
	}
	.section-cta .container-slider {
		margin-top: 0px;
	}
}
@media only screen and (max-width: 688px) {
	.section-cta, .section-cta .container-content {
		gap: 5rem;
	}
	.section-cta .container-cta img {
		height: 20rem;
	}
	.section-cta h2:not(.h3) {
		font-size: 1.5rem;
	}
	.section-cta .h4 {
		padding: 1.25rem;
	}
}

/* Form */
.section-form {
	margin-top: -1px;
	gap: 5rem;
}
.section-form .container-text > *:not(.kicker) {
	max-width: 61.8%;
}
.section-form .container-form {
	align-items: stretch;
}
.section-form .container-form > * {
	width: 50%;
}
.section-form .container-form picture {
	height: auto;
}
.section-form .container-form .form {
	box-sizing: border-box;
	padding-left: 10rem;
}
@media only screen and (max-width: 992px) {
	.section-form {
		gap: 2.5rem;
	}
	.section-form .container-text > *:not(.kicker) {
		max-width: 100%;
	}
	.section-form .container-form {
		flex-direction: column;
		gap: 3.75rem;
	}
	.section-form .container-form > * {
		width: 100%;
	}
	.section-form .container-form .form {
		padding-left: 0px;
	}
}
@media only screen and (max-width: 688px) {
	.section-form {
		padding-top: 0px;
	}
}

/* Footer */
footer {
	border-top: 2px solid var(--main-shade-600);
}
footer .container-content {
	align-items: stretch;
	padding-top: 7.5rem;
	padding-bottom: 7.5rem;
	border-bottom: 1px solid var(--main-shade-600);
	gap: 2.5rem 5rem;
}
footer .container-content > * {
	width: auto;
	justify-content: flex-start;
}
footer .container-content h3 {
	color: var(--main-shade-600);
}
footer .container-brand {
	max-width: 27.5rem;
	gap: 2.5rem;
}
footer .container-brand > svg {
	margin-top: -1.25rem;
	width: auto;
	height: 5rem;
}
footer .container-brand > p {
	font-size: 1rem;
}
footer .container-lists {
	align-items: flex-start;
	gap: 2.5rem 10rem;
	white-space: nowrap;
}
footer .container-text > svg {
	transform: translateX(-41px);
	margin-top: -10px;
	margin-bottom: 1.375rem;
	width: auto;
	height: 3rem;
	fill: var(--main-shade-600);
}
footer .container-lists a {
	font-size: 1.25rem;
	font-weight: 300;
}
footer .container-copyright {
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
}
footer .container-copyright > * {
	flex: 1;
}
footer .container-links, footer .container-links a, footer #cookie-settings {
	display: inline-block;
	color: var(--main-shade-600);
}
footer #cookie-settings {
	padding: 0px;
	font-family: var(--common-font);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.75em;
	background: none;
	border: none;
	cursor: pointer;
	transition: color 0.25s;
}
footer .container-links a:hover, footer .container-links a:focus, footer #cookie-settings:hover, footer #cookie-settings:focus {
	color: var(--main-white);
}
footer .copyright {
	text-align: left;
}
footer .container-maveo {
	justify-content: flex-end;
}
footer .container-maveo a {
	background-image: -webkit-linear-gradient(180deg, var(--main-shade-600) 50%, #b87345 50%, #ceaa6d 100%);
	background-clip: text;
	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;
	background-size: 200% 100%;
	background-position: top left 100%;
	transition: background-position 0.35s;
}
footer .container-maveo a:hover, footer .container-maveo a:focus {
	background-position: top left !important;
}
/*Media Queries*/
@media only screen and (max-width: 992px) {
	footer .container-content {
		flex-wrap: wrap;
	}
}
@media only screen and (max-width: 688px) {
	footer .container-content {
		padding-bottom: 2.5rem;
	}
	footer .container-lists {
		flex-wrap: wrap;
	}
	footer .container-text > svg {
		transform: translateX(-1rem);
		height: 1.625rem;
	}
	footer .container-lists a {
		font-size: 1rem;
	}
}

/* ----------------------------------------------------------------
	Extra Blocks
-----------------------------------------------------------------*/

/* Article */
.section-content {
	margin-top: -1px;
}
.section-content > * {
	max-width: 65%;
}
.section-content p, .section-content ul {
	margin-bottom: 2.5rem;
}
.section-content a {
	text-decoration: underline;
}
@media only screen and (max-width: 992px) {
	.section-content > * {
		max-width: 100%;
	}
}