/*!
Theme Name: designstanze
Theme URI: https://github.com/derunglaublichebastian
Author: Bastian Wagner
Author URI: https://bastian-wagner.com
Description: Description
Version: 1.0.11
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: designstanze
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

designstanze is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
:root {
	--smartphone-width: 500px;
	--tablet-width: 768px;
	--smalldesktop-width: 1024px;
	--desktop-width: 1224px;
}

/* pt-sans-regular - latin */
@font-face {
	font-family: "Roxie Rossa";
	font-style: normal;
	font-weight: 400;
	src: local(""), url("./fonts/roxie-rossa.woff") format("woff"), url("./fonts/roxie-rossa.ttf") format("truetype");
	/* Safari, Android, iOS */
	font-display: swap;
}

/* pt-sans-regular - latin */
@font-face {
	font-family: "PT Sans";
	font-style: normal;
	font-weight: 400;
	src: local(""), url("./fonts/pt-sans-v16-latin-regular.woff2") format("woff2"), url("./fonts/pt-sans-v16-latin-regular.woff") format("woff");
	/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
	font-display: swap;
}

body.designstanze {
	--height-header: 90px;
	--height-header-scrolled: 90px;
	--font-main: PT Sans, sans-serif;
	--font-secondary: Roxie Rossa, sans-serif;
	--color-light: #ffffff;
	--color-dark: #000000;
	--color-blue: #284a53;
	--color-gold: #b8a272;
	--color-grey: #f4f4f4;
	--fs-big: 62px;
	--fs-medium: 30px;
	--fs-small: 22px;
}

@media (max-width: 1700px) {
	body.designstanze {
		--fs-big: 50px;
		--fs-medium: 27px;
	}
}

@media (max-width: 1223px) {
	body.designstanze {
		--fs-big: 40px;
		--fs-medium: 25px;
		--height-header-scrolled: 70px;
	}
}

@media (max-width: 767px) {
	body.designstanze {
		--fs-big: 30px;
		--fs-medium: 20px;
		--fs-small: 18px;
	}
}

@media (max-width: 499px) {
	body.designstanze {
		--fs-big: 28px;
		--fs-medium: 18px;
	}
}

:root {
	--container-padding: 125px;
	--vertical-padding: 125px;
}

@media (min-width: 1224px) {
	:root {
		--container-padding: 100px;
		--vertical-padding: 100px;
	}
}

@media (max-width: 1223px) {
	:root {
		--vertical-padding: 75px;
		--container-padding: 50px;
	}
}

@media (max-width: 499px) {
	:root {
		--container-padding: 25px;
	}
}

.font-main {
	font-family: var(--font-main);
}

.font-secondary {
	font-family: var(--font-secondary);
}

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* Normalize
--------------------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

h2 {
	font-size: var(--font-size-h2);
}

h2.h3,
h3 {
	font-size: var(--font-size-h3);
}

/* Elements
--------------------------------------------- */
/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

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

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */
a:visited {
	color: inherit;
}

a:focus {
	outline: thin dotted;
}

a:hover, a:active {
	outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type='button'],
input[type='reset'],
input[type='submit'] {
	border: 1px solid;
	border-color: #000;
	border-radius: 3px;
	background-color: #fff;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

input[type='text'],
input[type='email'],
input[type='url'],
input[type='password'],
input[type='search'],
input[type='number'],
input[type='tel'],
input[type='range'],
input[type='date'],
input[type='month'],
input[type='week'],
input[type='time'],
input[type='datetime'],
input[type='datetime-local'],
input[type='color'],
textarea {
	color: #222;
	border: 1px solid #222;
	border-radius: 3px;
	padding: 3px;
}

input[type='text']:focus,
input[type='email']:focus,
input[type='url']:focus,
input[type='password']:focus,
input[type='search']:focus,
input[type='number']:focus,
input[type='tel']:focus,
input[type='range']:focus,
input[type='date']:focus,
input[type='month']:focus,
input[type='week']:focus,
input[type='time']:focus,
input[type='datetime']:focus,
input[type='datetime-local']:focus,
input[type='color']:focus,
textarea:focus {
	color: #000;
}

select {
	border: 1px solid #222;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

:root {
	--app-height: 100vh;
}

html {
	scroll-behavior: smooth;
}

body {
	background-color: #fff;
}

body.no-scroll {
	height: 100vh;
	overflow-y: hidden;
}

:root {
	font-size: 18px;
	--c-width: 1240px;
	--c-width-big: 1440px;
}

.site-main a:not([class]) {
	color: var(--color-blue);
	background: linear-gradient(90deg, currentColor calc(100% / 3), transparent 0 calc(200% / 3), currentColor 0) var(--d, 0%) 90%/300% 0.05em no-repeat;
}

.site-main a:not([class]):hover {
	--d: 100%;
	transition: 1s;
}

a {
	text-decoration: none;
}

body.designstanze {
	/* --color-link: #89150e;
	--color-green: var(--e-global-color-b159efe);
	--color-blue: var(--e-global-color-085a017);
	--color-lightblue: var(--e-global-color-936b984);
	--color-grey: var(--e-global-color-d389e69); */
	--e-global-typography-primary-font-family: "PT Sans", sans-serif;
	--e-global-typography-primary-font-weight: 400;
	--e-global-typography-secondary-font-family: "Roxie Rossa", serif;
	--e-global-typography-secondary-font-weight: 400;
	--e-global-typography-text-font-family: "PT Sans", sans-serif;
	--e-global-typography-text-font-weight: 400;
	--e-global-typography-accent-font-family: "PT Sans", sans-serif;
	--e-global-typography-accent-font-weight: 400;
	width: 100%;
	overflow-x: hidden;
	min-height: var(--app-height, 100vh);
	color: var(--color-blue);
	font-family: var(--e-global-typography-primary-font-family);
	font-weight: var(--e-global-typography-primary-font-weight);
	/* Font sizes. */
	--font-size-sm: 0.875rem;
	--font-size-md: 1rem;
	--font-size-lg: 1.25rem;
	--font-size-xl: 1.5rem;
	--font-size-2xl: 2rem;
	--font-size-3xl: 2.5rem;
	--font-size-4xl: 3.5rem;
	font-size: var(--font-size-md);
	--font-size-h1: 60px;
	--font-size-h2: 32px;
	--font-size-h3: 26px;
	--font-size-logo: 36px;
	--font-size-small: 16px;
}

@media (max-width: 1223px) {
	body.designstanze {
		--font-size-h1: 50px;
		--font-size-h2: 28px;
		--font-size-h3: 24px;
	}
}

@media (max-width: 767px) {
	body.designstanze {
		--font-size-h1: 40px;
		--font-size-h2: 24px;
		--font-size-h3: 20px;
		--font-size-logo: 32px;
	}
}

@media (max-width: 499px) {
	body.designstanze {
		--font-size-h1: 34px;
	}
}

body.designstanze a:visited {
	color: inherit;
}

@media (max-width: 1223px) {
	body.designstanze {
		--c-padding: 25px;
	}
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--e-global-typography-secondary-font-family);
	font-weight: var(--e-global-typography-secondary-font-weight);
}

::-moz-selection,
::selection {
	color: var(--color-gold);
	background: var(--color-blue);
}

.headroom .main-header {
	will-change: height;
	transition: all 200ms linear;
	transition-delay: 200ms;
}

.headroom .main-header:before {
	will-change: opacity;
	transition: opacity 200ms linear;
	transition-delay: 200ms;
}

.headroom--not-top .main-header {
	height: var(--height-header-scrolled);
}

.headroom--not-top .main-header:before {
	transition-delay: 0;
	opacity: 1;
}

body.home .headroom--top .nav--desktop .menu > li > a {
	color: var(--color-light);
}

body.home .headroom--top .nav--desktop .menu > li .sub-menu-toggler:before,
body.home .headroom--top .nav--desktop .menu > li .sub-menu-toggler:after {
	background-color: var(--color-light);
}

.headroom--not-top.logo-white .logo__text {
	color: var(--color-blue) !important;
}

.main-header {
	height: var(--height-header);
}

.main-header:before {
	content: "";
	inset: 0;
	position: absolute;
	/* From https://css.glass */
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	opacity: 0;
}

.container {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--container-padding);
	padding-right: var(--container-padding);
	max-width: var(--c-width);
}

.container--big {
	max-width: var(--c-width-big);
}

.elementor-section.elementor-top-section.elementor-section-boxed
> .elementor-container {
	padding-left: var(--container-padding);
	padding-right: var(--container-padding);
	max-width: var(--c-width);
}

.cursor {
	top: -100px;
	left: -100px;
	position: absolute;
	fill: none;
	stroke: #393939;
	stroke-width: 4px;
	filter: url(#filter-1);
	transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: 9999999;
	width: 20px;
	height: 20px;
	transition: fill 0.3s, width 0.3s, height 0.3s;
}

.cursor circle {
	fill: var(--color-blue);
	stroke: none;
}

.cursor.click {
	width: 15px;
	height: 15px;
}

.cursor.link {
	width: 15px;
	height: 15px;
}

.cursor.link circle {
	fill: var(--color-gold);
}

.cursor.link.click {
	width: 10px;
	height: 10px;
}

@media (max-width: 1223px) {
	.cursor {
		display: none;
	}
}

i.instagram {
	background-image: url("img/icon--ig.svg");
	background-repeat: no-repeat;
	background-size: contain;
	width: 1.7em;
	height: 1.7em;
	display: block;
}

.row {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.col {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.flex {
	display: flex;
}

.flex-center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.flex-col {
	display: flex;
	flex-direction: column;
}

.square {
	aspect-ratio: 1 / 1;
}

.hover-underline {
	position: relative;
	background: linear-gradient(90deg, currentColor calc(100% / 3), transparent 0 calc(200% / 3), currentColor 0) var(--d, 0%) 90%/300% 0.05em no-repeat;
}

.hover-underline:hover {
	--d: 100%;
	transition: 1s;
}

.navigation {
	display: none;
}

@media (max-width: 1223px) {
	.navigation {
		display: block;
		z-index: 30;
		width: 100%;
		pointer-events: none;
		color: #fff;
		display: block;
	}
	.navigation__animation {
		animation: foldOutUp 1000ms both;
		transition-property: transform;
		transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
		transition-duration: 150ms;
		position: fixed;
		inset: 0;
	}
	.navigation__background {
		inset: 0;
		position: absolute;
		z-index: 1;
	}
	.navigation__background img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		z-index: 2;
	}
	.navigation__background:before {
		content: "";
		inset: 0;
		position: absolute;
		z-index: 3;
		background-color: var(--color-blue);
		opacity: 0.92;
	}
	.navigation__center {
		width: 100%;
		height: 100%;
		display: flex;
		overflow: scroll;
		z-index: 10;
		position: relative;
		padding-top: 125px;
		padding-bottom: 75px;
		margin: 0 auto;
		align-items: center;
	}
	.navigation__inner {
		display: flex;
		margin-left: -1rem;
		margin-right: -1rem;
		justify-content: center;
		width: calc(100% + 2rem);
		flex-wrap: wrap;
	}
}

@media (max-width: 1223px) and (max-width: 1223px) {
	.navigation__left {
		padding: 1rem;
	}
	.navigation__right {
		padding: 1rem;
	}
}

@media (max-width: 1223px) {
	.navigation__right {
		display: flex;
		justify-content: flex-end;
		flex-direction: column;
	}
	.navigation__bottom {
		position: absolute;
		bottom: 0;
		z-index: 12;
		width: 100%;
	}
}

@media (max-width: 1223px) and (max-width: 767px) {
	.navigation__bottom {
		display: none;
	}
}

@media (max-width: 1223px) {
	.navigation__links {
		display: flex;
		margin-bottom: var(--font-size-md);
		margin-top: 1rem;
		justify-content: center;
	}
	.navigation__links > .nav {
		display: flex;
	}
	.navigation__links > .nav:not(:last-child):after {
		content: "";
		height: 1.2em;
		width: 1px;
		margin-left: 1em;
		margin-right: 1em;
		font-size: var(--font-size-md);
		background-color: #fff;
		margin-top: 0.25em;
	}
	.navigation .animated-parent > .animated-child,
	.navigation .animated-parent.nav--main ul.menu > li {
		opacity: 1;
		transform: matrix(1, 0, 0, 1, 0, 0);
		animation: linkStop 0.6s cubic-bezier(0.65, 0, 0.35, 1) forwards;
	}
	.navigation .animated-parent > .animated-child:nth-child(1),
	.navigation .animated-parent.nav--main ul.menu > li:nth-child(1) {
		animation-delay: 0.05s;
	}
	.navigation .animated-parent > .animated-child:nth-child(2),
	.navigation .animated-parent.nav--main ul.menu > li:nth-child(2) {
		animation-delay: 0.1s;
	}
	.navigation .animated-parent > .animated-child:nth-child(3),
	.navigation .animated-parent.nav--main ul.menu > li:nth-child(3) {
		animation-delay: 0.15s;
	}
	.navigation .animated-parent > .animated-child:nth-child(4),
	.navigation .animated-parent.nav--main ul.menu > li:nth-child(4) {
		animation-delay: 0.2s;
	}
	.navigation .animated-parent > .animated-child:nth-child(5),
	.navigation .animated-parent.nav--main ul.menu > li:nth-child(5) {
		animation-delay: 0.25s;
	}
	.navigation .animated-parent > .animated-child:nth-child(6),
	.navigation .animated-parent.nav--main ul.menu > li:nth-child(6) {
		animation-delay: 0.3s;
	}
	.navigation .animated-parent > .animated-child:nth-child(7),
	.navigation .animated-parent.nav--main ul.menu > li:nth-child(7) {
		animation-delay: 0.35s;
	}
	.navigation .animated-parent > .animated-child:nth-child(8),
	.navigation .animated-parent.nav--main ul.menu > li:nth-child(8) {
		animation-delay: 0.4s;
	}
	.navigation .animated-parent > .animated-child:nth-child(9),
	.navigation .animated-parent.nav--main ul.menu > li:nth-child(9) {
		animation-delay: 0.45s;
	}
	.navigation .animated-parent > .animated-child:nth-child(10),
	.navigation .animated-parent.nav--main ul.menu > li:nth-child(10) {
		animation-delay: 0.5s;
	}
	.navigation .nav .menu {
		display: flex;
		margin: 0;
		list-style: none;
		padding: 0;
	}
	.navigation .nav--hover .menu > li > a {
		opacity: 1;
		transition: all 0.3s ease;
		display: block;
	}
	.navigation .nav--hover:hover li > a {
		opacity: 0.3;
	}
	.navigation .nav--hover:hover li:hover > a {
		opacity: 1;
	}
	.navigation.is-disabled .navigation__animation {
		display: none;
	}
	.navigation.is-active {
		pointer-events: all;
	}
	.navigation.is-active .navigation__animation {
		animation: foldInDown 1000ms both;
	}
	.navigation.is-active .animated-parent > .animated-child,
	.navigation.is-active .animated-parent .nav--main ul.menu > li {
		opacity: 0;
		transform: matrix(1, 0, 0, 1, 0, -30);
		animation: linkStart 0.6s cubic-bezier(0.65, 0, 0.35, 1) forwards;
	}
}

@media (max-width: 1223px) and (max-width: 767px) {
	.navigation__inner {
		flex-direction: column;
	}
}

.nav--desktop {
	width: 100%;
}

.nav--desktop .menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	height: var(--height-header);
	align-items: center;
}

.nav--desktop .menu > li:not(:first-child) {
	margin-left: 2rem;
}

.nav--desktop .menu > li:nth-child(3) {
	margin-left: auto;
}

.nav--desktop .menu > li.current-menu-item > a {
	color: var(--color-gold);
}

.nav--desktop .menu > li.current-menu-item .sub-menu-toggler:before, .nav--desktop .menu > li.current-menu-item .sub-menu-toggler:after {
	background-color: var(--color-gold);
}

.nav--desktop .menu > li .sub-menu-toggler {
	height: 1em;
	width: 1em;
	position: relative;
	top: 0.1em;
	margin-left: 0.4em;
	display: inline-block;
	transform: rotate(0);
	transition: all 0.3s;
	will-change: transform;
}

.nav--desktop .menu > li .sub-menu-toggler:before, .nav--desktop .menu > li .sub-menu-toggler:after {
	content: " ";
	height: 1em;
	width: 1px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	position: absolute;
	background-color: var(--color-blue);
}

.nav--desktop .menu > li .sub-menu-toggler:before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.nav--desktop .menu > li .sub-menu-toggler:after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.nav--desktop .menu > li.menu-item-has-children:hover .sub-menu {
	opacity: 1;
	pointer-events: all;
	transform: translateY(0);
}

.nav--desktop .menu > li.menu-item-has-children:hover .sub-menu-toggler {
	transform: rotate(45deg);
}

.nav--desktop .menu > li > a {
	font-size: var(--font-size-lg);
	font-family: var(--font-secondary);
	color: var(--color-blue);
	line-height: 1.4;
	padding-top: 0.1em;
	position: relative;
	background: linear-gradient(90deg, currentColor calc(100% / 3), transparent 0 calc(200% / 3), currentColor 0) var(--d, 0%) 90%/300% 0.05em no-repeat;
}

.nav--desktop .menu > li > a:hover {
	--d: 100%;
	transition: 1s;
}

.nav--desktop .sub-menu {
	z-index: 9;
	margin: 0;
	padding: 1rem;
	background-color: var(--color-blue);
	list-style: none;
	position: absolute;
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s;
	transform: translateY(-1rem);
	will-change: opacity, transform;
}

.nav--desktop .sub-menu > li:not(:last-child) {
	margin-bottom: 0.5rem;
}

.nav--desktop .sub-menu > li > a {
	font-size: var(--font-size-md);
	font-family: var(--font-secondary);
	color: var(--color-light);
}

@media (max-width: 1223px) {
	.nav--desktop {
		display: none;
	}
}

@media (max-width: 1223px) {
	.nav--main .menu {
		flex-direction: column;
	}
	.nav--main .menu > li > a {
		font-family: var(--font-secondary);
		color: #fff;
		line-height: 1.4;
		padding-top: 0.1em;
		font-size: var(--font-size-h1);
		white-space: nowrap;
	}
	.nav--main .sub-menu {
		display: flex;
		padding: 0;
		list-style: none;
		white-space: nowrap;
		margin-top: -0.5rem;
		margin-left: 3rem;
		margin-bottom: 1em;
	}
	.nav--main .sub-menu > li > a {
		color: #fff;
		text-transform: uppercase;
	}
	.nav--main .sub-menu > li:not(:last-child) {
		margin-right: 1em;
	}
	.nav--main .sub-menu {
		flex-direction: column;
	}
}

@media (max-width: 767px) {
	.nav--main .sub-menu {
		flex-direction: column;
	}
}

.nav--links .menu {
	display: flex;
}

.nav--links .menu > li > a {
	font-size: var(--font-size-md);
	color: #fff;
	line-height: 1.4;
	padding-top: 0.1em;
}

.nav--links .menu > li:not(:last-child) {
	margin-right: 1em;
}

.nav--footer > div {
	display: flex;
}

.nav--footer > div:not(:last-child):after {
	content: "";
	height: 1.4em;
	width: 1px;
	margin-left: 1em;
	margin-right: 1em;
	font-size: var(--font-size-sm);
	background-color: var(--color-blue);
	margin-top: 0.1em;
}

.nav--footer .menu {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
}

.nav--footer .menu-ig > li > a {
	margin-left: 1.8em;
}

.nav--footer .menu-ig > li > a::before {
	margin: -0em 0 0 -1.8em;
	width: 1.5em;
	height: 1.5em;
	position: absolute;
}

.nav--footer .menu > li > a {
	font-size: var(--font-size-sm);
	color: var(--color-blue);
	line-height: 1.4;
	padding-top: 0.1em;
	position: relative;
	background: linear-gradient(90deg, currentColor calc(100% / 3), transparent 0 calc(200% / 3), currentColor 0) var(--d, 0%) 90%/300% 0.05em no-repeat;
}

.nav--footer .menu > li > a:hover {
	--d: 100%;
	transition: 1s;
}

.nav--footer .menu > li:not(:last-child) {
	margin-right: 1em;
}

.nav--footer .menu > li.current_page_item > a, .nav--footer .menu > li.current-menu-item > a {
	color: var(--color-gold);
}

.relative {
	position: relative;
}

.bg {
	inset: 0;
	position: absolute;
}

.bg--img > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@keyframes foldInDown {
	0% {
		opacity: 1;
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
		clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
		transform: matrix(1, 0, 0, 1, 0, -100%);
	}
	100% {
		opacity: 1;
		transform: matrix(1, 0, 0, 1, 0, 0);
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	}
}

@keyframes foldOutUp {
	0% {
		opacity: 1;
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		transform: matrix(1, 0, 0, 1, 0, 0);
	}
	30% {
		opacity: 1;
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		transform: matrix(1, 0, 0, 1, 0, 0);
	}
	100% {
		opacity: 1;
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
		clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
		transform: matrix(1, 0, 0, 1, 0, -100%);
	}
}

@keyframes linkStart {
	0% {
		opacity: 0;
		transform: matrix(1, 0, 0, 1, 0, -30);
	}
	100% {
		opacity: 1;
		transform: matrix(1, 0, 0, 1, 0, 0);
	}
}

@keyframes linkStop {
	0% {
		opacity: 1;
		transform: matrix(1, 0, 0, 1, 0, 0);
	}
	100% {
		opacity: 0;
		transform: matrix(1, 0, 0, 1, 0, -30);
	}
}

.hero {
	min-height: 100vh;
	min-height: var(--app-height);
	background-color: rgba(40, 74, 83, 0.8);
	max-width: 100%;
}

.hero__bg:before {
	content: "";
	inset: 0;
	position: absolute;
	z-index: 3;
	background-color: var(--color-blue);
	opacity: 0.92;
}

.hero__content {
	z-index: 3;
}

.hero__headline {
	align-items: center;
	color: #fff;
	font-size: var(--font-size-h1);
	text-align: center;
}

.hero__headline span {
	line-height: 1;
	white-space: nowrap;
}

.hero__headline span:nth-child(1) {
	margin-bottom: -0.4em;
}

.hero__headline span:nth-child(2) {
	background-image: url("img/designstanze_logo.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 3em;
	height: 3em;
	text-indent: -3333px;
}

.hero__headline span:nth-child(3) {
	margin-top: -0.1em;
}

.theX,
.hero__more {
	height: 60px;
	width: 60px;
	cursor: pointer;
}

.theX:before, .theX:after,
.hero__more:before,
.hero__more:after {
	position: absolute;
	left: 30px;
	content: " ";
	height: 60px;
	width: 2px;
	background-color: var(--color-gold);
}

.theX:before,
.hero__more:before {
	transform: rotate(45deg);
}

.theX:after,
.hero__more:after {
	transform: rotate(-45deg);
}

.theX {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
	position: relative;
	display: block;
}

.hero__more {
	position: absolute;
	left: 50%;
	transform: translateX(-50%) translateY(50%);
	bottom: 0;
}

.hero__more--top {
	top: 0;
	bottom: unset;
}

.header {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
}

.header.logo-white .logo__text {
	color: #fff;
}

.header.open-navigation .main-header:before {
	opacity: 0;
}

.header.open-navigation .logo__text {
	color: #fff !important;
	transition-delay: 0s !important;
}

.main-header {
	width: 100%;
	z-index: 100;
	position: fixed;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
}

.main-header__inner {
	position: relative;
	z-index: 9;
}

.main-header__logo {
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%);
	top: 50%;
	padding-top: 0.25em;
	padding-bottom: 0.25em;
}

@media (max-width: 767px) {
	.main-header__logo {
		left: 0;
		transform: translate(0, -50%);
		top: 55%;
	}
}

body.admin-bar .main-header {
	top: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar .main-header {
		top: 46px;
	}
}

.logo__text {
	transition: all 0.3s ease;
	color: var(--color-blue);
	font-size: var(--font-size-logo);
	transition-delay: 0.3s;
}

@media (max-width: 1223px) {
	.hamburger {
		height: 50px;
		width: 50px;
		cursor: pointer;
		display: flex;
		align-items: center;
		margin-left: auto;
	}
	.hamburger > div {
		position: relative;
		top: 0;
		left: 0;
		background-color: var(--color-gold);
		height: 3px;
		width: 100%;
		transition: all 0.3s ease;
	}
	.hamburger > div:before, .hamburger > div:after {
		content: "";
		position: absolute;
		top: -14px;
		background-color: var(--color-gold);
		width: 100%;
		height: 3px;
		transition: all 0.3s ease;
	}
	.hamburger > div:after {
		top: 14px;
	}
	.hamburger.is-active > div {
		background-color: rgba(0, 0, 0, 0);
	}
	.hamburger.is-active > div:before {
		top: 0;
		transform: rotate(45deg);
	}
	.hamburger.is-active > div:after {
		top: 0;
		transform: rotate(135deg);
	}
}

.instalinks {
	margin-top: 1em;
	margin-bottom: 0.5em;
}

.instalinks ul.menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (max-width: 499px) {
	.instalinks ul.menu {
		flex-direction: column;
	}
	.instalinks ul.menu a {
		margin-right: 0;
		margin-top: 0.5rem;
	}
}

.instalinks a {
	font-size: var(--font-size-sm);
	text-transform: uppercase;
	margin-right: 1em;
	display: flex;
	align-items: center;
	color: var(--color-light);
}

.instalinks a::before {
	margin-right: 0.4em;
}

.instalinks a:hover {
	color: var(--color-gold) !important;
}

.menu-ig a {
	display: flex;
}

.menu-ig a::before {
	margin-right: 0.4em;
	content: "";
	background-image: url("img/icon--ig.svg");
	background-repeat: no-repeat;
	background-size: contain;
	width: 1.7em;
	height: 1.7em;
	display: block;
}

.navinfo__text {
	font-size: var(--font-size-h3);
}

.navinfo__mail {
	color: #fff;
	font-size: 38px;
}

@media (max-width: 767px) {
	.navinfo__mail {
		font-size: 28px;
	}
}

@media (max-width: 499px) {
	.navinfo__mail {
		font-size: 24px;
	}
}

.navinfo__mail:hover {
	color: currentColor;
}

body:not(.home) .site-main {
	padding-top: var(--height-header);
}

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

.site-main__header h1 {
	font-size: var(--font-size-3xl);
	margin-top: 0;
	margin-bottom: 0;
}

.site-main__header h2 {
	color: var(--color-gold);
	font-family: var(--e-global-typography-text-font-family);
	text-transform: uppercase;
	font-size: var(--font-size-sm);
	margin-top: 0;
	margin-bottom: 0;
}

.section {
	position: relative;
	max-width: 100%;
	overflow: hidden;
}

.section--headernav {
	margin: 1rem 0 3rem 0;
}

.section--header {
	padding-bottom: 2.5rem;
	margin-bottom: 2.5rem;
	margin-top: 2.5rem;
	overflow: visible;
}

.elementor-button,
.button,
a.elementor-button[role="button"] {
	color: #fff !important;
	font-family: var(--font-main);
	border-radius: 2em;
	padding: 0.6em 1.4em 0.6em 1.4em;
	line-height: 1;
	background-color: var(--color-gold);
	font-size: var(--font-size-sm);
}

.elementor-button:hover,
.button:hover,
a.elementor-button[role="button"]:hover {
	background-color: var(--color-blue);
}

.projects {
	padding-top: 3%;
	padding-bottom: 3%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.projects__header__title {
	display: flex;
	flex-direction: column;
}

.projects__header__desc {
	color: var(--color-gold);
	font-family: var(--font-main);
	text-transform: uppercase;
	font-size: var(--font-size-small);
	margin-top: -1em;
}

.projects__header__cat {
	color: var(--color-gold);
	font-size: 120%;
}

.projects--2 {
	gap: 2rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.projects--2 .card:nth-child(odd) {
	margin-top: -2rem;
}

.projects--4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.projects--4 .card__tags {
	display: none;
}

@media (min-width: 768px) {
	.projects--big {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 2rem;
		position: relative;
		margin-top: 17%;
	}
	.projects--big .card:nth-child(odd) {
		top: -30%;
	}
}

@media (max-width: 1223px) {
	.projects {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.projects {
		grid-template-columns: 1fr;
	}
}

.catItem {
	white-space: nowrap;
}

.catItems {
	display: flex;
	justify-content: center;
}

@media (max-width: 1223px) {
	.catItems {
		justify-content: initial;
		flex-wrap: nowrap;
		white-space: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: -ms-autohiding-scrollbar;
		margin-right: calc(-1 * var(--container-padding));
	}
	.catItems::-webkit-scrollbar {
		width: 0;
		/* Remove scrollbar space / background: transparent; / Optional: just make scrollbar invisible */
	}
}

.catItem:not(:last-child) {
	margin-right: 1rem;
}

.catItem--current {
	pointer-events: none;
	background-color: var(--color-blue);
}

.card {
	position: relative;
}

.card__link {
	height: 100%;
	width: 100%;
}

.card__image {
	position: relative;
	height: 0;
	width: 100%;
	padding-top: 80%;
	width: 100%;
	background-color: #cecece;
	overflow: hidden;
}

.card__image::before {
	content: "";
	inset: 0;
	background-color: var(--color-blue);
	position: absolute;
	z-index: 9;
	opacity: 0;
	transition: all 0.3s;
	will-change: opacity;
}

.card__image > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	left: 0;
	top: 0;
	display: block;
	position: absolute;
	pointer-events: none;
}

.card__image > .theX {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(0);
	opacity: 0;
	transition: all 0.3s;
	will-change: opacity, transform;
	z-index: 9;
}

.card__image > .theX::after, .card__image > .theX::before {
	background-color: var(--color-light);
}

.card__content {
	margin: 1rem 0;
	flex: 1;
}

.card__content h2 {
	color: var(--color-blue);
	margin-top: 0;
	margin-bottom: 0.1em;
}

.card__tags {
	display: flex;
	margin-top: auto;
}

.card__tag {
	white-space: nowrap;
	text-transform: uppercase;
	font-size: 0.7rem;
	display: flex;
}

.card__tag:not(:last-child):after {
	content: "";
	height: 1em;
	width: 2px;
	margin-left: 0.7em;
	margin-right: 0.7em;
	background-color: var(--color-gold);
	margin-top: 0.1em;
}

.card:hover .card__image::before {
	opacity: 0.8;
}

.card:hover .card__image > .theX {
	opacity: 1;
	transform: translate(-50%, -50%) rotate(45deg);
}

.card:hover .card__link::before {
	opacity: 1;
}

.box {
	float: left;
	width: 160px;
	position: relative;
	height: 160px;
	border: 1px solid var(--color-gold);
	z-index: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.box__image {
	width: 60%;
	height: 60%;
	position: relative;
}

.box__image > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.main-footer {
	width: 100%;
	background-color: var(--color-grey);
}

.main-footer__inner {
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.footerinfo p {
	margin-bottom: 0;
	font-size: var(--font-size-h3);
}

.footerinfo__link {
	color: var(--color-blue);
	margin-top: 0.3em;
	display: inline-block;
	font-size: 38px;
}

@media (max-width: 767px) {
	.footerinfo__link {
		font-size: 28px;
	}
}

@media (max-width: 499px) {
	.footerinfo__link {
		font-size: 24px;
	}
}

.footerinfo__link:hover {
	color: currentColor;
}

.flex-col {
	display: flex;
	flex-direction: column;
}

.font-big {
	font-size: var(--font-size-h2);
	line-height: 1.2em;
}

.color-gold {
	color: var(--color-gold);
}

.fs-primary {
	font-family: var(--e-global-typography-primary-font-family);
}

.fs-secondary {
	font-family: var(--e-global-typography-secondary-font-family);
}

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

.elementor-top-section.color-scheme-light {
	background-color: #fff;
	color: var(--color-blue);
}

.elementor-top-section.color-scheme-gold {
	background-color: var(--color-gold);
	color: #fff;
}

.elementor-top-section.color-scheme-grey {
	background-color: var(--color-grey);
	color: var(--color-blue);
}

.elementor-top-section.enable-padding-default {
	padding-top: var(--vertical-padding);
	padding-bottom: var(--vertical-padding);
}

.elementor-top-section.enable-padding-half {
	padding-top: calc(0.5 * var(--vertical-padding));
	padding-bottom: calc(0.5 * var(--vertical-padding));
}

.padding--default {
	padding-top: var(--vertical-padding);
	padding-bottom: var(--vertical-padding);
}

.padding--top {
	padding-top: var(--vertical-padding);
}

.padding--half {
	padding-top: calc(0.5 * var(--vertical-padding));
	padding-bottom: calc(0.5 * var(--vertical-padding));
}

.elementor-widget-text-editor .elementor-widget-container > p:last-child {
	margin-bottom: 0;
}

.elementor-tabs {
	gap: 100px;
}

.elementor-tabs .elementor-tabs-wrapper {
	flex: 0 0 50%;
}

.elementor-tabs .elementor-tabs-wrapper .elementor-tab-title {
	border-width: 0 !important;
	font-size: var(--font-size-xl);
	padding: 0.5em 1em 0.5em 0em;
	font-family: var(--font-secondary);
}

.elementor-tabs .elementor-tabs-wrapper .elementor-tab-title::before, .elementor-tabs .elementor-tabs-wrapper .elementor-tab-title::after {
	display: none !important;
}

.elementor-tabs .elementor-tabs-content-wrapper {
	border-width: 0 !important;
}

.elementor-tabs .elementor-tabs-content-wrapper .elementor-tab-content {
	border-width: 0 !important;
	font-size: var(--font-size-md);
	font-family: var(--font-main);
}

.single-project__image {
	position: relative;
	height: 0;
	width: 100%;
	padding-top: 36%;
	width: 100%;
	background-color: #cecece;
}

.single-project__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	left: 0;
	top: 0;
	display: block;
	position: absolute;
	pointer-events: none;
}

@media (min-width: 1224px) {
	.single-project__title {
		margin-right: 6rem;
	}
}

@media (max-width: 1223px) {
	.single-project__title {
		margin-bottom: 1rem;
	}
}

.single-project__teaser {
	display: flex;
	padding: 3rem 0;
}

.single-project__teaser h1 {
	margin-top: 0;
	margin-bottom: 0.1em;
}

@media (max-width: 1223px) {
	.single-project__teaser {
		flex-direction: column;
	}
}

.single-project__excerpt {
	width: 100ch;
	max-width: 60%;
}

.single-project__excerpt > *:first-child {
	margin-top: 0;
}

@media (max-width: 1223px) {
	.single-project__excerpt {
		max-width: 100%;
	}
}

.logos {
	display: flex;
	flex-wrap: wrap;
	margin-left: -1rem;
	margin-right: -1rem;
	justify-content: center;
}

.logos__logo {
	position: relative;
	flex: 0 0 25%;
	padding: 0.5rem;
}

@media (max-width: 1223px) {
	.logos__logo {
		flex: 0 0 33.33%;
	}
}

@media (max-width: 767px) {
	.logos__logo {
		flex: 0 0 50%;
	}
}

.logos__logo__inner {
	width: 100%;
	height: 0;
	padding-top: 60%;
	position: relative;
	background-color: #f4f4f4;
}

.logos__logo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.logos__logo a {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
}

.logos__logo a:before {
	content: "";
	inset: 0;
	background-color: var(--color-blue);
	position: absolute;
	z-index: 9;
	opacity: 0;
	transition: all 0.3s;
	will-change: opacity;
}

.logos__logo a > .theX {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(0);
	opacity: 0;
	transition: all 0.3s;
	will-change: opacity, transform;
	z-index: 9;
}

.logos__logo a > .theX::after, .logos__logo a > .theX::before {
	background-color: var(--color-light);
}

.logos__logo a:hover::before {
	opacity: 0.8;
}

.logos__logo a:hover > .theX {
	opacity: 1;
	transform: translate(-50%, -50%) rotate(45deg);
}

.alltopics {
	display: flex;
	position: relative;
	z-index: 11;
	justify-content: space-between;
	align-items: flex-start;
}

.alltopics__bg {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
}

.alltopics__bg:before {
	content: "";
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-color: #464646;
	mix-blend-mode: multiply;
	z-index: 5;
}

.alltopics__bg__single {
	position: absolute;
	opacity: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
}

.alltopics__bg__single > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.alltopics__bg__single.active {
	opacity: 1;
}

.alltopics__select {
	padding-right: 3rem;
	flex: 0 0 50%;
	position: relative;
}

.alltopics__select .theX {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.alltopics__select__single {
	margin-top: 0;
	opacity: 0.3;
	font-size: 30px;
	margin-bottom: 1em;
	cursor: pointer;
}

.alltopics__select__single:last-child {
	margin-bottom: 0;
}

.alltopics__select__single:hover, .alltopics__select__single.active {
	opacity: 1;
}

.alltopics__content {
	padding-left: 6rem;
	position: relative;
	flex: 0 0 50%;
	font-family: var(--font-main);
	font-weight: 400;
}

.alltopics__content__desc {
	margin-bottom: 1em;
}

.alltopics__content__single {
	display: none;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1.5em;
	font-size: 22px;
	height: 100%;
}

.alltopics__content__single .button {
	margin-top: auto;
}

.alltopics__content__single.active {
	display: flex;
	z-index: 1;
}

@media (max-width: 767px) {
	.alltopics {
		text-align: center;
		flex-direction: column;
	}
	.alltopics .alltopics__content,
	.alltopics .alltopics__select {
		flex: 1;
		padding: 0;
		width: 100%;
	}
	.alltopics .alltopics__select {
		padding-bottom: 3rem;
	}
	.alltopics .alltopics__select .theX {
		top: 100%;
		left: 50%;
		right: unset;
		transform: translate(-50%, -50%);
	}
	.alltopics .alltopics__content {
		padding-top: 3rem;
	}
	.alltopics .alltopics__content__single {
		align-items: center;
	}
}

.elementor-form {
	max-width: 600px;
	margin: 0 auto;
}

.elementor-form .elementor-button[type="submit"] {
	flex-basis: auto !important;
}

.elementor-form .elementor-field-type-submit {
	margin-top: 1rem;
	display: flex;
	justify-content: center;
}

.elementor-field-group .elementor-field-textual {
	border-width: 0 0 2px 2px;
	border-radius: 0;
	border-color: var(--color-gold);
	padding: 1em 0.5em;
	color: var(--color-blue);
}

.elementor-field-group.elementor-field-type-acceptance .elementor-field-option input {
	position: absolute;
	height: 0px;
	width: 0px;
}

.elementor-field-group.elementor-field-type-acceptance .elementor-field-option input:checked + label::after {
	transform: translate(-50%, -50%) scale(1);
}

.elementor-field-group.elementor-field-type-acceptance .elementor-field-option label {
	font-size: var(--font-size-small);
	padding-left: 2rem;
	display: block;
	position: relative;
}

.elementor-field-group.elementor-field-type-acceptance .elementor-field-option label:after, .elementor-field-group.elementor-field-type-acceptance .elementor-field-option label:before {
	content: "";
	position: absolute;
	left: 0.5rem;
	top: 0.5rem;
}

.elementor-field-group.elementor-field-type-acceptance .elementor-field-option label:before {
	width: 1rem;
	height: 1rem;
	border: 2px solid var(--color-gold);
	transform: translate(-50%, -50%);
}

.elementor-field-group.elementor-field-type-acceptance .elementor-field-option label::after {
	width: 0.5rem;
	height: 0.5rem;
	background-color: var(--color-gold);
	transform: translate(-50%, -50%) scale(0);
	transition: all 0.3s;
	will-change: transform;
}

.collage {
	display: flex;
	margin-top: calc(-1.5 * var(--vertical-padding));
	align-items: flex-end;
	margin-bottom: 4rem;
}

.collage__item {
	position: relative;
}

.collage__item:nth-child(1) {
	flex: 0 0 47%;
	max-width: 47%;
	top: 1rem;
	z-index: 1;
}

.collage__item:nth-child(1) .collage__item__inner {
	padding-top: 83%;
}

.collage__item:nth-child(2) {
	flex: 0 0 47%;
	width: 47%;
	top: -1rem;
	margin-left: -20%;
	z-index: 3;
}

.collage__item:nth-child(2) .collage__item__inner {
	padding-top: 133%;
}

.collage__item:nth-child(3) {
	width: 34%;
	z-index: 2;
	flex: 0 0 34%;
	top: 3rem;
	margin-left: -7%;
}

.collage__item:nth-child(3) .collage__item__inner {
	padding-top: 165%;
}

.collage__item__inner {
	position: relative;
	height: 0;
	width: 100%;
}

.collage__item__inner img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/*# sourceMappingURL=style.css.map */