@font-face {
	font-family: "Heal A";
	src:url(../fonts/HealTheWebA-Regular.otf) format("opentype");
	}
@font-face {
	font-family: "Heal B";
	src:url(../fonts/HealTheWebB-Regular.otf) format("opentype");
	}

*,
*:before,
*:after {
	box-sizing: border-box;
}

html {
	font-family: 'Heal A', serif;
	font-size: 20pt;
	}
body {
	margin: 0;
	padding: 0;
	line-height: 1.3;
	color: white;
	scrollbar-width: none;
	-ms-overflow-style: -ms-autohiding-scrollbar;
	overflow-y: scroll;
	}

::-webkit-scrollbar {
	display: none;
}

a {
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 0.25em;
	color: inherit;
	}
h1, h2, h3, h4, h5 {
	font-size: 1rem;
	margin: 0;
	font-weight: normal;
	}
figure {
	margin: 0;
	}
figure img {
	max-width: 100%;
	display: block;
	margin-bottom: 2rem;
	}
.mobile {
	display: none;
	}
.desktop {
	display: block;
	}

.header {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	z-index: 100;
	position: absolute;
	width: 100%;
	font-family: 'Heal B', serif;
	font-size: 1rem;
	position: fixed;
	padding: 2rem 3rem;
	pointer-events: none;
	}
header a {
	text-decoration: none;
	}

.logo {
	display: flex;
	align-items: center;
	cursor: pointer;
	pointer-events: auto;
	}

.menu {
	display: flex;
	}
.menu a {
  display: inline-block;
	pointer-events: auto;
	}
.menu a::after {
  content: '';
  width: 0px;
  height: 2px;
  display: block;
  background: #fff;
  transition: 300ms;
	}
.menu a:hover::after {
  width: 100%;
	}
.menu a[aria-current] {
	text-decoration: underline;
	}



main {
	margin-top: auto;
	margin-bottom: auto;
	min-height: 100vh;
	z-index: 1;	
	padding: 0 3rem;
	width: 100%;
	}
.main-background,
.main-background-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	transition: opacity 0.8s;
	}
.main-background::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0%;
	left: 0%;
	z-index: -1;
	}
.main-background-overlay {
	opacity: 0;
	}

.content {
	padding-top: 7rem;
	z-index: 1;
	margin-bottom: 10rem;
	}


/* Works Previews Home */

.preview-hover-title {
	position: fixed;
	top: 3.5rem;
	right: 0;
	left: 3rem;
	font-size: 2rem;
	z-index: 1000;
	opacity: 0;
	transition: opacity 0.5s;
	}
.works {
	display: flex;
	padding-bottom: 6rem;
	flex-wrap: wrap;
	gap: 2rem;
	align-items:flex-start;
  align-content:flex-start;
	z-index: 1;
	}
.works .preview-box {
	transition: transform 0.2s;
	margin-bottom: 1rem;
	width: calc(25% - 1.5rem);
	}
.works .work-preview {
	position: relative;
	z-index: 9999;
	width: 100%;
	z-index: 100;
	background: transparent;
	transition: all 0.2s;
	display: block;
	}
.works .work-preview:hover {
	transform: rotate(20deg);
	}
.work-preview img {
	display: block;
	box-shadow: 20px 20px 5px 0px rgba(0,0,0,0.41);
	width: 100%;
	}
.work-preview .preview-hover {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 0.5s;
	}
.work-preview:hover .preview-hover {
	opacity: 1;
	}
.works .preview-box .work-background {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 1;
	background-size: cover;
	background-position: center;
	transition: opacity 1s;
	opacity: 0;
	pointer-events: none;
	}
.works .preview-box .work-preview:hover + .work-background  {
	opacity: 1;
	z-index: -1;
	}
	


/* Work Detail Page */

.work-title {
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
	line-height: 1.1em;
	}

.work-page {
	padding-top: 8rem;
	width: 100%;
	}
.work-page .block,
.work-page .work-header{
	margin-bottom: 4rem;
	}

.block-type-text {
	width: 60%;
	margin: 0 auto;
	margin-bottom: 4rem;
	}	

.work-page h1.work-title{
	font-size: 2rem;
	margin-left: -2rem;
	margin-bottom: 0;
	}
.work-page .image-big{
	display: block;
	text-align: center;
	}
.work-page .image-big img{
	max-height: 90vh;
	display: block;
	margin: 0 auto;
	box-shadow: 20px 20px 5px 0px rgba(0,0,0,0.41);
	}
.work-page .image-gallery{
	display: block;
	}
.work-page .image-gallery img{
	box-shadow: 20px 20px 5px 0px rgba(0,0,0,0.41);
	max-height: 90vh;
	display: block;
	margin: 0 auto;
	margin-bottom: 2rem;
	}
.work-page .work-infos {
	width: 60%;
	margin: 0 auto;
	margin-bottom: 5rem;
	padding: 1rem;
	border-radius: 1rem;
	background: #fff;
	color: #000;
	position: relative;
	z-index: 2000;
	}
.work-page .work-infos p{
	margin: 0;
	}

 .work-page .work-infos a[href^="mailto:"] { 
	background: #000;
	color: #fff;
	padding: 0.3em 0.4em;
	border-radius: 0.5em;
	margin-top: 0.3em;
	display: inline-block;
	transition: background 0.2s;
	text-decoration: none;
	}
.work-page .work-infos a[href^="mailto:"]:before { 
	content: '\2197';
	margin-right: 0.5em;
	}
.work-page .work-infos a[href^="mailto:"]:hover { 
	background: blue;
	}

/* About  */

.about-text {
	padding-bottom: 1rem;
	}


/* Footer */


footer {
	display: block;
	background: #fff;
	z-index: 2000;
	color: #000;
	position: relative;
	padding: 2rem 3rem;
	box-shadow: inset -1em 1em 2em #aaa;
	}
footer .imprint-content {
	display: flex;
	}
footer .imprint-content div{
	width: 50%;
	}
footer .privacy {
	display: none;
	font-size: 0.7rem;
	columns: 2;
	margin-top: 3rem;
	}
footer .privacy p{
	margin: 0;
	margin-bottom: 1rem;
	}
#d-toggler {
	cursor: pointer;
	}
#d-toggler .arrow {
	transition: transform 1s;
	display: inline-block;
	}
#d-toggler .arrow.active {
	transform: rotate(180deg);
	}



@media screen and (max-width:800px) {
.mobile {
	display: block;
	}
.desktop {
	display: none;
	}

html {
	font-family: 'Heal A', serif;
	font-size: 16pt;
	}	
.header {
	position: relative;
	display: block;
	flex-wrap: wrap;
	position: relative;
	padding: 2rem 1rem;
	pointer-events: none;
	}
header a {
	text-decoration: none;
	}

.logo {
	display: flex;
	align-items: center;
	cursor: pointer;
	pointer-events: auto;
	}

.menu {
	display: flex;
	}
.menu a {
	display: block;
	pointer-events: auto;
	}
.menu a[aria-current] {
	text-decoration: underline;
	}

main {
	margin-top: auto;
	margin-bottom: auto;
	min-height: 100vh;
	z-index: 1;	
	padding: 0 1rem;
	width: 100%;
	}
.content {
	padding-top: 0rem;
	z-index: 1;
	}
.works {
	gap: 1rem;
	}	
.works .preview-box {
	transition: transform 0.2s;
	margin-bottom: 1rem;
	width: calc(50% - 0.5rem);
	}
.works .preview-box .work-preview{
	text-decoration: none;
	}

.works .preview-box .work-preview-title{
	margin-top: 1em;
	}



.block-type-text {
	width: 100%;
	}	
.work-page .work-infos {
	width: 100%;
	}


footer {
	display: block;
	background: #fff;
	z-index: 2000;
	color: #000;
	position: relative;
	padding: 1rem 1rem;
	box-shadow: inset -0.5em 0.5em 1em #aaa;
	}
footer .imprint-content {
	display: block;
	}
footer .imprint-content div{
	width: 100%;
	}
footer .privacy {
	display: none;
	font-size: 0.7rem;
	columns: 1;
	margin-top: 3rem;
	}
footer .privacy p{
	margin: 0;
	margin-bottom: 1rem;
	}
}






.transition-main {
  transition-property: opacity, transform;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  transform: translateY(0);
  opacity: 1;
}

html.is-animating .transition-main {
  opacity: 0;
  transform: translateY(-10em);
}



html.is-leaving .transition-main {
  transform: translateY(100em);
}


html.is-animating.to-left .transition-main {
  opacity: 0;
  transform: translateY(100em);
}

html.is-leaving.to-left .transition-main {
  transform: translateY(-100em);
}