/* SANS */
@font-face {
  font-family: "Moderat-Light";
  src: url("../fonts/Moderat-Light.woff2") format("woff2"), url("../fonts/Moderat-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Moderat-Light-Italic";
  src: url("../fonts/Moderat-Light-Italic.woff2") format("woff2"), url("../fonts/Moderat-Light-Italic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Moderat-Regular";
  src: url("../fonts/Moderat-Regular.woff2") format("woff2"), url("../fonts/Moderat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/* SERIF */
@font-face {
  font-family: "Moderat-Serif-Light";
  src: url("../fonts/Moderat-Serif-Light.woff2") format("woff2"), url("../fonts/Moderat-Serif-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Moderat-Serif-Light-Italic";
  src: url("../fonts/Moderat-Serif-Light-Italic.woff2") format("woff2"), url("../fonts/Moderat-Serif-Light-Italic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
}
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

figure {
  line-height: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Kirby Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-row-gap: calc(var(--unit) * 2);
}

.grid > .column {
  grid-column: span var(--span);
}

.block-type-columns .grid > .column {
  grid-column: span var(--columns);
}

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

.top-medium {
  padding-top: calc(var(--unit) * 2);
}

.top-large {
  padding-top: calc(var(--unit) * 5 - 8px);
}

.top-huge {
  padding-top: clamp(300px, 50vh, 700px);
}

@media screen and (min-width: 65rem) {
  .grid {
    --gutter: calc(var(--unit) * 2);
    grid-template-columns: repeat(12, 1fr);
    grid-gap: var(--unit);
  }
}
@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
:root {
  --unit: 30px;
  --c-bg: #F0EDE7;
  --c-main: #202020;
  --c-lightgrey: #F4F4F2;
  --c-darkgrey: #DFD9CE;
  --font: "Moderat-Serif-Light", Georgia, "Times New Roman", serif;
  --f-sans: "Moderat-Light", Helvetica, Arial, sans-serif;
  --f-sans-reg: "Moderat-Regular", Helvetica, Arial, sans-serif;
  --f-size-base: 24px;
  --f-size-big: calc(var(--f-size-base) * 1.65);
}

@media screen and (max-width: 65rem) {
  :root {
    --unit: 15px;
    --f-size-base: 20px;
    --f-size-big: calc(var(--f-size-base) * 1.25);
  }
}
body {
  font-family: var(--font);
  font-size: var(--f-size-base);
  line-height: 1.2;
  background-color: var(--c-bg);
  color: var(--c-main);
  font-weight: 300;
}

.site-header {
  width: 100%;
  height: 100dvh;
  position: relative;
  z-index: 4;
}

.header-title {
  font-family: var(--f-sans);
  font-size: var(--f-size-big);
  line-height: 0.9;
  letter-spacing: -0.035em;
  display: flex;
  justify-content: space-between;
  padding: var(--unit);
  color: var(--c-lightgrey);
  /* mix-blend-mode: difference; */
  position: relative;
  z-index: 2;
}

.godown a {
  position: absolute;
  bottom: calc(var(--unit) + 10px);
  left: var(--unit);
  display: block;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 18px;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.godown a:hover {
  transform: scale(0.93);
}

.minilogo {
  display: block;
  width: 55px;
  height: 55px;
  position: fixed;
  bottom: 40px;
  right: calc(var(--unit) + 132px);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.minilogo.visible {
  opacity: 1;
  pointer-events: auto;
}

.minilogo a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  border-radius: 8px;
  background-color: white;
  padding: 12px;
}

@media screen and (max-width: 65rem) {
  .godown {
    display: none;
  }
  .minilogo {
    bottom: 15px;
  }
}
.site-footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 800px;
  font-family: var(--f-sans-reg);
  font-size: 16px;
  font-weight: normal;
  padding: var(--unit) var(--unit) 15px;
}
.site-footer .footer-content, .site-footer .footer-nav, .site-footer .legal {
  display: flex;
}
.site-footer .footer-nav {
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
.site-footer .footer-nav .copyright {
  padding-right: calc(var(--unit) * 2);
}
.site-footer .footer-nav .legal-item {
  margin-right: var(--unit);
}
.site-footer .footer-nav .legal-item:last-child {
  margin-right: 0;
}
.site-footer .footer-top img {
  width: 55px;
  height: auto;
  transition: transform 0.3s ease;
}
.site-footer .footer-top img:first-child {
  margin-right: 6px;
}
.site-footer .footer-top img:hover {
  transform: scale(0.92);
}
.site-footer .footer-m {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-bottom: var(--unit);
}
.site-footer .footer-m .footer-address {
  display: flex;
  justify-content: space-between;
  font-size: 22px;
  line-height: 1.1;
}
.site-footer .footer-m .footer-address p {
  padding-bottom: 1em;
  padding-left: var(--unit);
}
.site-footer .footer-m a {
  border-bottom: 1px solid var(--c-main);
}

.footer-logo img {
  max-width: 80%;
  padding-right: var(--unit);
}

@media screen and (max-width: 65rem) {
  .site-footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 1000px;
  }
  .site-footer .footer-nav, .site-footer .legal {
    display: block;
  }
  .site-footer .footer-content {
    flex-direction: column-reverse;
  }
  .site-footer .legal {
    padding-bottom: 1em;
  }
  .site-footer .footer-m {
    display: block;
    padding-bottom: var(--unit);
  }
  .site-footer .footer-m .footer-address {
    display: block;
    font-size: 20px;
    padding-top: 20px;
  }
  .site-footer .footer-m .footer-address .address {
    padding-bottom: 40px;
  }
  .site-footer .footer-m .footer-address p {
    padding-left: 0;
  }
  .footer-top {
    padding-bottom: 20px;
  }
  .footer-logo img {
    max-width: 100%;
    padding-right: 0;
    padding-bottom: 30px;
  }
}
/* NAV */
.menu-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 3;
}

.menu-button {
  background: white;
  color: var(--c-main);
  border: none;
  border-radius: 8px;
  width: 120px;
  height: 55px;
  line-height: 55px;
  font-family: var(--f-sans-reg);
  font-size: 24px;
  padding: 0 10px;
  margin: 0;
  cursor: pointer;
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 4;
}
.menu-button::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  padding-bottom: 4px;
  margin-right: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z' fill='%23202020'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.menu-items {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease;
  background: var(--c-lightgrey);
  padding: var(--unit) var(--unit) 110px;
  border-radius: 12px;
  min-width: 500px;
  font-family: var(--f-sans);
  font-size: var(--f-size-big);
  line-height: 1.3;
}

.menu-items.show {
  display: flex;
  pointer-events: auto;
  animation: fadeup 0.3s ease-in-out 0.2s 1 both;
}

.menu-item {
  opacity: 1;
  transition: opacity 0.3s ease;
  letter-spacing: -0.015em;
}
.menu-item:hover {
  opacity: 0.35;
}

@media screen and (max-width: 65rem) {
  .menu-container {
    bottom: 5px;
    right: 15px;
  }
  .menu-button {
    bottom: 15px;
    right: 25px;
  }
  .menu-items {
    width: calc(100vw - 30px);
    min-width: auto;
    font-size: 34px;
    line-height: 1.3;
  }
}
/* TYPO */
h2, h3, h4 {
  line-height: 1;
  padding: 0 var(--unit);
}

.font-small {
  font-family: var(--f-sans);
}

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

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

.tb-style-small {
  font-family: var(--f-sans);
}

.tb-style-smallserif p {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--unit);
}

.tb-style-large {
  font-family: var(--f-sans);
  font-size: var(--f-size-big);
  letter-spacing: -0.035em;
}
.tb-style-large p {
  padding: 0 var(--unit);
}

.modal-content .t-s-credits {
  font-size: 16px;
  line-height: 1.2;
  margin-top: var(--unit);
}
.modal-content p {
  padding-bottom: 1em;
}
.modal-content p:last-child {
  padding-bottom: 0;
}

/* BLOCKS */
.bg-dgrey {
  background-color: var(--c-darkgrey);
}

.bg-lgrey {
  background-color: var(--c-lightgrey);
}

.bg-white {
  background-color: white;
}

.img-wrap {
  padding: 0 var(--unit);
}

.img-medium {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--unit);
}

.space {
  display: block;
}

.space-default {
  height: var(--unit);
}

.space-medium {
  height: calc(var(--unit) * 2);
}

.space-large {
  height: calc(var(--unit) * 3);
}

.space-huge {
  height: calc(var(--unit) * 6);
}

@media screen and (max-width: 65rem) {
  .img-medium {
    width: 100%;
  }
}
.more-content p {
  padding-top: 1em;
}

.full-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.full-container .text-side {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  padding: var(--unit);
  width: 100%;
  color: var(--c-lightgrey);
}
.full-container .text-side .t-s-head {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: var(--f-size-big);
}
.full-container .text-side .t-s-head h2 {
  padding: 0;
}
.full-container .text-side .content {
  margin-top: 1em;
}
.full-container .text-side .t-s-text p {
  max-width: 940px;
}
.full-container .splide {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.full-container .pj-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  padding: var(--unit);
  color: var(--c-lightgrey);
}
.full-container .pj-text h2 {
  font-family: var(--f-sans);
  font-size: clamp(40px, 9vw, 120px);
  text-align: center;
  white-space: nowrap;
  letter-spacing: -0.035em;
}
.full-container .pj-text button {
  white-space: nowrap;
}

.fullscreen-slider,
.fullscreen-slider .splide__slide {
  width: 100vw;
  height: 100vh;
}

.fullscreen-slider .splide__slide img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  display: block;
}

.splide__slide {
  cursor: grab;
}
.splide__slide:active {
  cursor: grabbing;
}

@media screen and (max-width: 65rem) {
  .full-container .text-side .t-s-head {
    display: block;
  }
}
.container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: var(--unit);
}
.container .text-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.container .text-side h2, .container .text-side .text-l {
  font-size: var(--f-size-big);
  text-align: center;
  line-height: 1;
}
.container .t-s-right {
  padding-left: var(--unit);
}
.container .t-s-left {
  padding-right: var(--unit);
}

@media screen and (max-width: 65rem) {
  .container {
    display: block;
  }
  .container .content {
    padding: 30px 0;
  }
  .container .text-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 50vh;
    padding: 30px 0;
  }
  .container .t-s-right {
    padding-left: 0;
  }
  .container .t-s-left {
    padding-right: 0;
  }
}
button {
  font-family: var(--f-sans-reg);
  font-size: 14px;
  border: none;
  background-color: rgba(32, 32, 32, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 15px;
  border-radius: 4px;
  color: inherit;
  cursor: pointer;
  margin-top: 6px;
  transition: all 0.3s ease;
}
button:hover {
  background-color: white;
  color: var(--c-main);
}

.block-type-columns {
  padding-top: calc(var(--unit) * 2);
}
.block-type-columns ul {
  list-style-type: disc;
  padding-left: 1em;
}
.block-type-columns p {
  max-width: auto;
  padding: 0;
}

.more-txt {
  padding: 0 var(--unit);
}
.more-txt .more-content {
  margin-top: var(--unit);
}
.more-txt button {
  margin-top: 15px;
}
.more-txt h2, .more-txt h3, .more-txt h4 {
  padding: 0;
  margin-bottom: 1em;
}

.splide__pagination__page {
  background: white !important;
  border: 0;
  border-radius: 2px !important;
  display: inline-block;
  height: 5px !important;
  width: 35px !important;
  margin: 3px;
  opacity: 1 !important;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background-color: rgba(255, 255, 255, 0.25) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  transform: scale(1) !important;
  opacity: 1 !important;
  z-index: 1;
}

/* MODAL */
.project .t-s-head {
  display: flex;
  align-items: center;
}
.project .t-s-head button {
  height: 36px;
}

.modal {
  display: none; /* Modal beim Laden verstecken */
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.modal.visible {
  display: flex;
}
.modal.visible .modal-content {
  animation: fadeup 0.3s ease-in-out 1 both;
}

.modal-content {
  background: white;
  padding: var(--unit);
  border-radius: 8px;
  max-width: 800px;
  width: 90%;
  position: relative;
  color: var(--c-main);
  font-family: var(--f-sans);
}
.modal-content h3 {
  padding: 0;
  margin-bottom: 80px;
}

.closeModalBtn {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(32, 32, 32, 0.05);
  line-height: 1;
  cursor: pointer;
}
.closeModalBtn img {
  height: 15px;
  width: auto;
}

@media screen and (max-width: 65rem) {
  .project .t-s-head {
    flex-direction: column;
  }
}
.cta {
  position: absolute;
  left: var(--unit);
  top: calc(100vh - 350px);
  width: 264px;
  height: 308px;
  z-index: 4;
  border-radius: 8px;
  overflow: hidden;
}
.cta object {
  width: 100%;
  height: auto;
}
.cta .close-btn {
  position: absolute;
  top: 5px;
  right: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(32, 32, 32, 0.05);
  line-height: 1;
  cursor: pointer;
}
.cta .close-btn img {
  height: 15px;
  width: auto;
}
.cta .close-btn:hover {
  background: rgba(0, 0, 0, 0.07);
}

@media screen and (max-width: 65rem) {
  .cta {
    width: 204px;
    height: 238px;
    top: calc(100vh - 280px);
  }
}

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