<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bgFade {
  0% {
    background-color: unset;
  }
  100% {
    background-color: black;
  }
}
.red-bg {
  font-family: "SemiBold", sans-serif;
}
.red-bg *, .red-bg *:hover {
  color: white;
  font-family: "SemiBold", sans-serif;
}
.red-bg span {
  background-color: var(--color-secondary);
  padding: 0 0.5rem;
}

.back-button {
  text-align: right;
  padding: 2rem 0;
}

/******** LANDSCAPE **********/
/******** PORTRAIT **********/
#hamburger {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
#hamburger section {
  grid-column: 1/span 2;
}
@media screen and (min-width: 576px) {
  #hamburger section {
    grid-column: span 1;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  #hamburger section {
    padding-top: 0;
    padding-right: 1rem;
  }
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  #hamburger {
    grid-template-columns: repeat(4, 1fr);
  }
  #hamburger section {
    grid-column: inherit;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  #hamburger {
    grid-template-columns: repeat(4, 1fr);
  }
  #hamburger section {
    grid-column: inherit;
  }
}

#hamburger {
  position: absolute;
}
@media screen and (min-width: 1400px) {
  #hamburger {
    grid-template-columns: repeat(6, 1fr);
  }
}

#toggle-menu {
  position: absolute;
  left: 0;
  top: -200vh;
  width: 100vw;
  min-height: 100vh;
  transition: top 0.5s ease-in-out;
  background-color: white;
  padding-top: calc(110px + 1rem);
  opacity: 0;
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  #toggle-menu {
    top: -250vh;
  }
}
#toggle-menu.open {
  transform: translate(0);
  top: 0;
  transition: top 0.6s ease;
  opacity: 1;
  z-index: 10;
}
#toggle-menu #menu {
  padding: 0 3rem 5rem;
  font-size: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  display: grid;
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  #toggle-menu #menu {
    padding: 0 2rem 5rem;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  #toggle-menu #menu {
    padding: 0 2rem 5rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  #toggle-menu #menu {
    padding: 0 0 5rem 4rem;
  }
}
@media screen and (min-width: 1200px) {
  #toggle-menu #menu {
    padding: 0 0 5rem 4rem;
  }
}
@media screen and (min-width: 1600px) {
  #toggle-menu #menu {
    padding: 0 0 5rem 16rem;
    font-size: 1.8rem;
  }
}
#toggle-menu #menu section {
  padding: 1rem 0 2rem;
}
@media screen and (min-width: 1200px) {
  #toggle-menu #menu section {
    padding: 1rem 0 0;
  }
}
#toggle-menu #menu .menu-sub-item {
  padding-left: 2rem;
  text-indent: -1rem;
  font-size: 1.3rem;
}
@media screen and (min-width: 1600px) {
  #toggle-menu #menu .menu-sub-item {
    font-size: 1.4rem;
  }
}
#toggle-menu #menu .menu-sub-item span {
  background-color: var(--color-text-bg);
  padding: 0 0.2rem 0 0.5rem;
}
#toggle-menu #menu .menu-sub-item span a {
  color: black;
}
#toggle-menu #menu img {
  width: 100vw;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
#toggle-menu #menu .social {
  padding-top: 1rem;
  display: flex;
  flex-direction: row;
}
@media screen and (min-width: 1200px) {
  #toggle-menu #menu .social {
    padding-top: 1.5rem;
  }
}
#toggle-menu #menu .social .social-icon {
  position: relative;
  width: 3rem;
  height: 2rem;
}
#toggle-menu #menu .social .social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.icon-wrapper {
  grid-column-start: 3;
  margin-left: -2rem;
  z-index: 15;
  height: 110px;
  text-transform: uppercase;
  position: relative;
  font-size: 1rem;
}
.icon-wrapper &gt; div {
  position: relative;
  height: 100%;
  background-color: white;
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  .icon-wrapper {
    grid-column-start: 4;
    position: absolute;
    top: 0;
    right: 0;
  }
  .icon-wrapper &gt; div {
    width: 150px;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .icon-wrapper {
    grid-column-start: 4;
    position: absolute;
    top: 0;
    right: 0;
  }
  .icon-wrapper &gt; div {
    width: 150px;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .icon-wrapper {
    grid-column-start: 6;
  }
}
@media screen and (min-width: 1200px) {
  .icon-wrapper {
    position: relative;
    left: 0;
  }
}
.icon-wrapper .nav-icon {
  float: left;
  margin: 20px 1rem;
  width: 35px;
  height: 40px;
  position: relative;
  cursor: pointer;
}
.icon-wrapper .nav-icon span {
  background-color: var(--color-secondary);
  position: absolute;
  border-radius: 3px;
  transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  width: 100%;
  height: 3px;
  transition-duration: 500ms;
}
.icon-wrapper .nav-icon span:nth-child(1) {
  top: 0;
  left: 0;
}
.icon-wrapper .nav-icon span:nth-child(2) {
  top: 10px;
  left: 0px;
  opacity: 1;
}
.icon-wrapper .nav-icon span:nth-child(3) {
  top: 20px;
  left: 0px;
}
.icon-wrapper &gt; div &gt; span {
  margin: 20px 1rem;
  cursor: pointer;
  float: left;
  color: var(--color-secondary);
  font-family: "SemiBold";
}
.icon-wrapper .languages {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
}
.icon-wrapper.fixed {
  position: fixed;
}
.icon-wrapper.black {
  background-color: var(--color-text);
}

.nav-icon:not(.open):hover span:nth-child(1) {
  transform: translateY(-2px);
}

.nav-icon:not(.open):hover span:nth-child(3) {
  transform: translateY(2px);
}

.nav-icon.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.nav-icon.open span:nth-child(2) {
  opacity: 0;
}

.nav-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

header .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
header .hero-image img {
  width: auto;
}
@media screen and (min-width: 1200px) {
  header .hero-image img {
    width: 100vw;
  }
}
header .title {
  margin: 2rem 1rem;
  width: 50vw;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  header .title {
    margin: 2rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  header .title {
    margin: 2rem;
  }
}
@media screen and (min-width: 1800px) {
  header .title {
    margin: 4rem;
  }
}
header .title h1 {
  color: white;
  font-family: var(--font-headlines);
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  header .title h1 {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1200px) {
  header .title h1 {
    font-size: 3rem;
  }
}
header .title h1 span {
  background-color: var(--color-primary);
}
header .logo {
  color: var(--color-secondary);
  position: absolute;
  bottom: 0;
  right: 1rem;
  font-size: 3rem;
  font-family: var(--font-semi-bold);
  line-height: 0.8;
  cursor: pointer;
  background-color: var(--color-gray-trans);
  text-align: right;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  header .logo {
    right: calc(25vw - 150px + 2rem);
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  header .logo {
    right: calc(16.6666666667vw - 150px + 2rem);
  }
}
@media screen and (min-width: 1800px) {
  header .logo {
    right: calc(22.2222222222vw - 150px + 2rem);
  }
}

.front-image {
  padding: 2rem 0;
}

.news {
  display: grid;
  grid-gap: 1rem;
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  .news {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .news {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-date {
  text-transform: uppercase;
}

.news-card {
  background-color: var(--color-secondary);
  margin: 0.5rem 0;
  color: white;
  position: relative;
}
.news-card .news-title-image {
  text-align: center;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .news-card .news-title-image {
    padding: 0.5rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .news-card .news-title-image {
    padding: 1rem;
  }
}
.news-card .icon {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}
.news-card .news-text {
  padding: 1rem;
  min-height: calc(40px + 2rem);
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .news-card .news-text {
    min-height: 10rem;
  }
}
@media screen and (min-width: 1600px) {
  .news-card .news-text {
    min-height: 8rem;
  }
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-project-big-gallery,
  .page-template-remember-item {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
  }
}
.page-template-project-big-gallery .icon,
.page-template-remember-item .icon {
  display: none;
  width: 3rem;
  position: absolute;
  cursor: pointer;
  z-index: 2;
  transition: 0.3s ease-in-out;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-project-big-gallery .icon,
  .page-template-remember-item .icon {
    display: block;
  }
}
.page-template-project-big-gallery .icon.info,
.page-template-remember-item .icon.info {
  left: calc(50vw - 25px);
  bottom: 2rem;
}
.page-template-project-big-gallery .icon.cross,
.page-template-remember-item .icon.cross {
  right: 1rem;
  top: 1rem;
}
.page-template-project-big-gallery #text,
.page-template-remember-item #text {
  transition: 0.5s ease-in-out;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-project-big-gallery #text,
  .page-template-remember-item #text {
    position: absolute;
    top: 100vh;
    left: 0;
    transition: top 0.3s ease-in-out;
    width: 100vw;
    height: calc(100vh - 110px);
  }
}
.page-template-project-big-gallery #text &gt; div,
.page-template-remember-item #text &gt; div {
  position: relative;
  background-color: white;
  z-index: 5;
}
.page-template-project-big-gallery #text &gt; div .content,
.page-template-remember-item #text &gt; div .content {
  overflow: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  height: 100%;
  padding: 1rem;
}
.page-template-project-big-gallery #text &gt; div .content h1,
.page-template-remember-item #text &gt; div .content h1 {
  padding-top: 0;
}
@media screen and (min-width: 1200px) {
  .page-template-project-big-gallery #text &gt; div .content,
  .page-template-remember-item #text &gt; div .content {
    padding: 120px 2rem;
  }
}
.page-template-project-big-gallery #text &gt; div .content::-webkit-scrollbar,
.page-template-remember-item #text &gt; div .content::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-project-big-gallery #text &gt; div,
  .page-template-remember-item #text &gt; div {
    width: 80vw;
  }
}
@media screen and (min-width: 1200px) {
  .page-template-project-big-gallery #text &gt; div,
  .page-template-remember-item #text &gt; div {
    width: 50vw;
  }
  .page-template-project-big-gallery #text &gt; div .gradient,
  .page-template-remember-item #text &gt; div .gradient {
    width: 100%;
    height: 120px;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), white 60%);
    position: absolute;
  }
}
.page-template-project-big-gallery #text.show,
.page-template-remember-item #text.show {
  top: calc(110px + 1rem);
  transition: top 0.3s ease-in-out;
}
@media screen and (min-width: 1600px) {
  .page-template-project-big-gallery #text.show,
  .page-template-remember-item #text.show {
    top: 110px;
  }
}
.page-template-project-big-gallery .mobile-owl,
.page-template-remember-item .mobile-owl {
  display: none !important;
}

.page-template-project-small-gallery .overlay {
  height: 100%;
}

.page-template-project-small-gallery main,
.page-template-remember main {
  padding-top: 110px;
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  .page-template-project-small-gallery main,
  .page-template-remember main {
    padding-top: 0;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-project-small-gallery main,
  .page-template-remember main {
    padding-top: 110px;
  }
}
.page-template-project-small-gallery main #text,
.page-template-remember main #text {
  transition: 0.5s ease-in-out;
}
.page-template-project-small-gallery main .photoswipe,
.page-template-remember main .photoswipe {
  display: none;
}
.page-template-project-small-gallery main .photoswipe img,
.page-template-remember main .photoswipe img {
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease-in-out;
}
.page-template-project-small-gallery main .photoswipe img:hover,
.page-template-remember main .photoswipe img:hover {
  filter: contrast(1.3);
  transition: 0.3s ease-in-out;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .page-template-project-small-gallery main .photoswipe,
  .page-template-remember main .photoswipe {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 10rem;
    padding: 1rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-project-small-gallery main .photoswipe,
  .page-template-remember main .photoswipe {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 10rem;
    padding: 1rem;
  }
}
@media screen and (min-width: 1200px) {
  .page-template-project-small-gallery main .photoswipe,
  .page-template-remember main .photoswipe {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 10rem;
    padding: 1rem;
  }
}
@media screen and (min-width: 1400px) {
  .page-template-project-small-gallery main .photoswipe,
  .page-template-remember main .photoswipe {
    grid-auto-rows: 15rem;
  }
}
@media screen and (min-width: 1800px) {
  .page-template-project-small-gallery main .photoswipe,
  .page-template-remember main .photoswipe {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 20rem;
  }
}
.page-template-project-small-gallery main .mobile-owl,
.page-template-remember main .mobile-owl {
  display: block;
}
.page-template-project-small-gallery main .mobile-owl:first-of-type,
.page-template-remember main .mobile-owl:first-of-type {
  margin-top: 30px;
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  .page-template-project-small-gallery main .mobile-owl:first-of-type,
  .page-template-remember main .mobile-owl:first-of-type {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .page-template-project-small-gallery main .mobile-owl,
  .page-template-remember main .mobile-owl {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-project-small-gallery main .mobile-owl,
  .page-template-remember main .mobile-owl {
    display: none !important;
  }
}

@media screen and (min-width: 768px) and (orientation: portrait) {
  .page-template-remember main .photoswipe {
    grid-auto-rows: unset;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-remember main .photoswipe {
    grid-auto-rows: unset;
  }
}
@media screen and (min-width: 1200px) {
  .page-template-remember main .photoswipe {
    grid-auto-rows: unset;
  }
}
@media screen and (min-width: 1400px) {
  .page-template-remember main .photoswipe {
    grid-auto-rows: unset;
  }
}
@media screen and (min-width: 1800px) {
  .page-template-remember main .photoswipe {
    grid-auto-rows: unset;
  }
}
.page-template-remember .remember-items {
  display: grid;
  grid-gap: 1rem;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .page-template-remember .remember-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-remember .remember-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .page-template-remember .remember-items {
    grid-template-columns: repeat(3, 1fr);
  }
}
.page-template-remember .remember-items img {
  transition: 2s ease-in-out;
  filter: contrast(2);
  opacity: 1;
}
.page-template-remember .remember-items img:hover {
  filter: contrast(1);
  opacity: 0.9;
  transition: 0.5s ease-in-out;
}

.page-template-remember-item .title-img {
  padding-top: 110px;
  filter: contrast(1.75);
  background-color: red;
  cursor: pointer;
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  .page-template-remember-item .title-img {
    padding-top: 0;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-remember-item .title-img {
    padding-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .page-template-remember-item .title-img {
    padding-top: 0;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-remember-item .title-img {
    position: fixed;
    left: 0;
    top: 0;
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .page-template-remember-item .title-img {
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 1400px) {
  .page-template-remember-item .title-img img {
    top: -10%;
    height: 100%;
    width: auto;
  }
}
.page-template-remember-item .icon:not(.info, .cross) {
  display: block;
  position: absolute;
  top: 25%;
  width: 10vw;
}
@media screen and (min-width: 576px) {
  .page-template-remember-item .icon:not(.info, .cross) {
    top: 25%;
  }
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  .page-template-remember-item .icon:not(.info, .cross) {
    top: 40vh;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .page-template-remember-item .icon:not(.info, .cross) {
    top: 30%;
    width: 8vw;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-remember-item .icon:not(.info, .cross) {
    top: 40%;
    width: 5vw;
  }
}
@media screen and (min-width: 1200px) {
  .page-template-remember-item .icon:not(.info, .cross) {
    top: 40%;
    width: 5vw;
  }
}
@media screen and (min-width: 1600px) {
  .page-template-remember-item .icon:not(.info, .cross) {
    top: 45%;
    width: 3vw;
  }
}
.page-template-remember-item .icon:not(.info, .cross).prev {
  left: 1rem;
}
.page-template-remember-item .icon:not(.info, .cross).next {
  right: 1rem;
}
.page-template-remember-item .icon:not(.info, .cross).disabled {
  cursor: inherit;
}

.page-template-write main {
  padding-top: 110px;
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  .page-template-write main {
    padding-top: 0;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-write main {
    padding-top: 110px;
  }
}
.page-template-write .write-items {
  display: grid;
  gap: 0.5rem;
}
@media screen and (min-width: 576px) {
  .page-template-write .write-items {
    grid-template-columns: repeat(2, 1fr);
    padding: 1rem;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .page-template-write .write-items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-write .write-items {
    grid-template-columns: repeat(3, 1fr);
  }
}
.page-template-write .write-items .write-card {
  background-color: var(--color-secondary);
  height: 4rem;
  width: 100%;
  color: white;
  font-family: var(--font-semi-bold);
  font-size: 2.5rem;
  text-align: center;
  cursor: pointer;
}
.page-template-write .write-items .write-card.open {
  background-color: var(--color-primary);
}
.page-template-write .write-items .modal {
  display: none;
  flex-direction: column;
  position: fixed;
  z-index: 15;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 5s;
}
.page-template-write .write-items .modal-content {
  background-color: #fefefe;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
  border: 1px solid #888;
  max-width: 90%;
  width: auto;
}
.page-template-write .write-items .modal-content h2 {
  padding: 3rem 0 2rem;
}
@media screen and (min-width: 1200px) {
  .page-template-write .write-items .modal-content {
    margin: 6rem auto;
    max-width: 80%;
  }
}
@media screen and (min-width: 1400px) {
  .page-template-write .write-items .modal-content {
    padding: 4rem;
  }
}
@media screen and (min-width: 1600px) {
  .page-template-write .write-items .modal-content {
    max-width: 60%;
  }
}
.page-template-write .write-items .close {
  position: absolute;
  cursor: pointer;
  z-index: 2;
  transition: 0.3s ease-in-out;
  right: 1rem;
  top: 1rem;
  width: auto;
}
.page-template-write .write-items .close img {
  width: 15vw;
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  .page-template-write .write-items .close img {
    width: 6vw;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .page-template-write .write-items .close img {
    width: 6vw;
  }
}
@media screen and (min-width: 1200px) {
  .page-template-write .write-items .close img {
    width: 4vw;
  }
}

.text-list {
  padding-top: 2rem;
}
.text-list a {
  text-align: right;
}

.ausstellungen td {
  min-width: 4rem;
}
.ausstellungen .project-info {
  padding-top: 2rem;
  text-align: right;
}
.ausstellungen h4 {
  padding-bottom: 1rem;
}

@font-face {
  font-family: "Regular";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Bold";
  src: url("../fonts/Inter-Bold.woff") format("woff");
}
@font-face {
  font-family: "Light";
  src: url("../fonts/Inter-Light.woff") format("woff");
}
@font-face {
  font-family: "Medium";
  src: url("../fonts/Inter-Medium.woff") format("woff");
}
@font-face {
  font-family: "SemiBold";
  src: url("../fonts/Inter-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "JostRegular";
  src: url("../fonts/Jost-Regular.woff") format("woff2");
}
@font-face {
  font-family: "JostBold";
  src: url("../fonts/Jost-Bold.woff") format("woff");
}
@font-face {
  font-family: "JostItalic";
  src: url("../fonts/Jost-Italic.woff") format("woff");
}
@font-face {
  font-family: "MerriweatherRegular";
  src: url("../fonts/Merriweather-Regular.woff") format("woff");
}
@font-face {
  font-family: "MerriweatherBold";
  src: url("../fonts/Merriweather-Bold.woff") format("woff");
}
@font-face {
  font-family: "MerriweatherItalic";
  src: url("../fonts/Merriweather-Italic.woff") format("woff");
}
@font-face {
  font-family: "VictorMonoRegular";
  src: url("../fonts/VictorMono-Regular.woff") format("woff");
}
@font-face {
  font-family: "VictorMonoBold";
  src: url("../fonts/VictorMono-Bold.woff") format("woff");
}
@font-face {
  font-family: "VictorMonoItalic";
  src: url("../fonts/VictorMono-Italic.woff") format("woff");
}
@font-face {
  font-family: "GloockRegular";
  src: url("../fonts/Gloock-Regular.woff") format("woff");
}
:root {
  --color-text: rgb(76, 75, 75);
  --color-primary: rgb(255, 0, 125);
  --color-secondary: rgb(255, 0, 51);
  --color-text-bg: #dedede;
  --color-gray: #696969;
  --color-gray-trans: #ffffffd9;
  --color-light-gray: #e0dddc;
  --font-headlines: "SemiBold", sans-serif;
  --font-text: "Regular", sans-serif;
  --font-bold: "Bold", sans-serif;
  --font-semi-bold: "SemiBold", sans-serif;
  --font-light: "Light", sans-serif;
}

* {
  margin: 0;
  padding: 0;
}

/************** GENERAL STYLING **************/
html,
body {
  overflow-x: hidden;
}

body {
  font-family: var(--font-text);
  color: var(--color-text);
  animation: fadeIn 1.5s ease;
  min-height: 100vh;
  font-size: 1.1rem;
  padding-bottom: 2rem;
}
body.open {
  height: 100vh;
}
@media screen and (min-width: 1200px) {
  body.open {
    overflow: hidden;
  }
}
@media screen and (min-width: 1800px) {
  body {
    font-size: 1.3rem;
  }
}

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

.jp-audio, .jp-audio::before,
.jp-audio::after {
  box-sizing: unset;
}

h1,
h2,
h3 {
  font-family: var(--font-headlines);
  color: black;
  padding-top: 2rem;
}

h1 {
  font-size: 2.5rem;
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  h1 {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  color: var(--color-secondary);
}

h3 {
  color: var(--color-secondary);
  font-size: 1.1rem;
}

h4 {
  color: var(--color-secondary);
  font-family: var(--font-light);
}

a,
a:hover {
  text-decoration: none;
  color: var(--color-secondary);
}

img {
  width: 100%;
}

.icon {
  width: 30px;
}

strong {
  font-family: var(--font-bold);
  font-weight: normal;
}

.red-text {
  color: white;
  line-height: 1.8;
  padding: 1rem 0;
}
.red-text span {
  background-color: var(--color-secondary);
  font-family: var(--font-bold);
  padding-top: 0.25rem;
}

.main-text .red-text {
  font-size: 1.5rem;
}

.two-columns-text {
  display: grid;
  grid-gap: 1rem;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .two-columns-text {
    grid-template-columns: repeat(3, 1fr);
  }
  .two-columns-text &gt; div {
    grid-column: 2/4;
  }
  .two-columns-text &gt; div:first-of-type {
    text-align: right;
    grid-column: 1/2;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .two-columns-text {
    grid-template-columns: repeat(3, 1fr);
  }
  .two-columns-text &gt; div {
    grid-column: 2/4;
  }
  .two-columns-text &gt; div:first-of-type {
    text-align: right;
    grid-column: 1/2;
  }
}
.two-columns-text .red-text {
  padding: 0;
}

.project-info {
  padding-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.3;
  font-family: var(--font-semi-bold);
}

.overlay {
  animation: bgFade 5s forwards;
}

.font-merriweather * {
  font-family: "MerriweatherRegular", serif;
}
.font-merriweather strong {
  font-family: "MerriweatherBold", serif;
  font-weight: normal;
}
.font-merriweather em {
  font-family: "MerriweatherItalic", serif;
  font-style: normal;
}

.font-victormono * {
  font-family: "VictorMonoRegular", serif;
}
.font-victormono strong {
  font-family: "VictorMonoBold", serif;
  font-weight: normal;
}
.font-victormono em {
  font-family: "VictorMonoItalic", serif;
  font-style: normal;
}

.font-gloock * {
  font-family: "GloockRegular", serif;
}

.font-jost * {
  font-family: "JostRegular", serif;
}
.font-jost strong {
  font-family: "JostBold", serif;
  font-weight: normal;
}
.font-jost em {
  font-family: "JostItalic", serif;
  font-style: normal;
}

#btt-button {
  opacity: 0;
  position: fixed;
  bottom: 3rem;
  right: 0;
  z-index: 5;
  cursor: pointer;
  padding: 15px;
  transition: all 0.2s ease-in-out;
}
#btt-button:hover {
  transform: scale(1.1);
  transition: all 0.5s ease-in-out;
}
#btt-button img {
  height: 3rem;
  object-fit: contain;
}
@media screen and (min-width: 1200px) {
  #btt-button img {
    height: 4rem;
  }
}
@media screen and (min-width: 1200px) {
  #btt-button {
    right: 30px;
  }
}

/************** HEADER **************/
header {
  position: relative;
  background-color: var(--color-tertiary);
  height: 30rem;
  width: 100vw;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  header {
    height: 20rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  header {
    height: 25rem;
  }
}
@media screen and (min-width: 1200px) {
  header {
    height: 25rem;
  }
}
@media screen and (min-width: 1600px) {
  header {
    height: 50vh;
  }
}

/************** LANGUAGE SWITCHER **************/
.languages .active {
  display: none;
}

.big-font {
  font-size: 1.5rem;
}
@media screen and (min-width: 1200px) {
  .big-font {
    font-size: 2rem;
  }
}

hr {
  color: var(--color-secondary);
  height: 2px !important;
  opacity: 1 !important;
  margin-bottom: 3rem;
}

/************** CONTENT **************/
@media screen and (min-width: 768px) and (orientation: portrait) {
  main {
    padding: 0;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  main {
    padding: 0 calc(16.6666666667vw - 150px + 2rem);
  }
}

.content {
  padding: 1rem 1rem 5rem;
}
.content .block-type-gallery,
.content .block-type-photoswipe-gallery .photoswipe {
  padding: 1rem 0;
  display: grid;
  grid-gap: 1rem;
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  .content .block-type-gallery,
  .content .block-type-photoswipe-gallery .photoswipe {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .content .block-type-gallery,
  .content .block-type-photoswipe-gallery .photoswipe {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .content .block-type-gallery,
  .content .block-type-photoswipe-gallery .photoswipe {
    grid-template-columns: repeat(2, 1fr);
  }
}

.block-type-image {
  padding-bottom: 2rem;
}

figcaption {
  padding: 1rem;
  font-size: 0.9rem;
  line-height: 1.3;
  text-align: right;
}

.owl-carousel {
  position: inherit;
  margin-top: 140px;
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  .owl-carousel {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .owl-carousel {
    margin-top: 110px;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .owl-carousel {
    position: inherit !important;
    margin-top: 0;
    top: 0;
    left: 0;
  }
  .owl-carousel .owl-item {
    height: 100vh;
  }
}
.owl-carousel.full-screen .image-container .image img {
  object-fit: cover;
}
.owl-carousel .image-container {
  background-color: white;
  position: relative;
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  .owl-carousel .image-container {
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .owl-carousel .image-container {
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
  }
}
.owl-carousel .image-container .image {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1400px) {
  .owl-carousel .image-container .image {
    margin-left: auto;
    margin-right: auto;
  }
}
.owl-carousel .image-container .image img {
  object-fit: cover;
  height: 100%;
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  .owl-carousel .image-container .image img {
    object-fit: contain;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .owl-carousel .image-container .image img {
    object-fit: contain;
  }
}
.owl-carousel .image-container .image.portrait {
  height: 50vh;
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  .owl-carousel .image-container .image.portrait {
    height: 100vh;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .owl-carousel .image-container .image.portrait {
    height: calc(100vh - 110px);
  }
}
.owl-carousel .image-container .image.portrait img {
  height: 100%;
  width: auto !important;
  margin-left: auto;
  margin-right: auto;
}
.owl-carousel .img-caption {
  padding: 1rem 1rem 0;
  text-align: right;
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  .owl-carousel .img-caption {
    padding-bottom: 1rem;
  }
}
.owl-carousel .img-caption h3 {
  background-color: var(--color-secondary);
  padding: 0 0.5rem;
  color: var(--color-text-bg);
}
.owl-carousel .img-caption h4 {
  font-size: 1.35rem;
}
.owl-carousel .img-caption p {
  color: var(--color-secondary);
  font-size: 0.8rem;
  font-family: var(--font-semi-bold);
  margin-bottom: 0;
}
@media screen and (min-width: 1200px) {
  .owl-carousel .img-caption p {
    font-size: 0.9rem;
  }
}
@media screen and (min-width: 1600px) {
  .owl-carousel .img-caption p {
    font-size: 1rem;
  }
}
.owl-carousel .img-caption p span {
  background-color: white;
  padding: 0 0.5rem;
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  .owl-carousel .img-caption {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 40vw;
    min-width: 18vw;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .owl-carousel .img-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    transition: 0.3s ease-in-out;
  }
  .owl-carousel .img-caption.hide {
    opacity: 0;
    transition: 0.3s ease-in-out;
  }
}
@media screen and (min-width: 1600px) {
  .owl-carousel .img-caption {
    right: 2rem;
  }
}
.owl-carousel .owl-nav {
  display: none;
  position: absolute;
  top: 45%;
  left: 0;
  width: 100vw;
}
.owl-carousel .owl-nav button {
  position: absolute;
  top: 0;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  width: 3rem;
  height: 3rem;
}
@media screen and (min-width: 1200px) {
  .owl-carousel .owl-nav button {
    width: 4rem;
    height: 4rem;
  }
}
.owl-carousel .owl-nav button span {
  display: none;
}
.owl-carousel .owl-nav .owl-prev {
  left: 1rem;
  background-image: url("../img/icons/chevron-left-circle_red.svg") !important;
}
.owl-carousel .owl-nav .owl-prev.disabled {
  background-image: url("../img/icons/chevron-left-circle_gray.svg") !important;
  cursor: inherit;
}
.owl-carousel .owl-nav .owl-next {
  right: 1rem;
  background-image: url("../img/icons/chevron-right-circle_red.svg") !important;
}
.owl-carousel .owl-nav .owl-next.disabled {
  background-image: url("../img/icons/chevron-right-circle_gray.svg") !important;
  cursor: inherit;
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  .owl-carousel .owl-nav {
    display: block;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .owl-carousel .owl-nav {
    display: block;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .owl-carousel .owl-nav .owl-prev {
    left: 2rem;
  }
  .owl-carousel .owl-nav .owl-next {
    right: 2rem;
  }
}
.owl-carousel .owl-dots {
  text-align: center;
  position: absolute;
  top: -30px;
  left: 0;
  width: 100vw;
}
.owl-carousel .owl-dots .owl-dot {
  text-align: center;
}
.owl-carousel .owl-dots .owl-dot span {
  opacity: 0.8;
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: var(--color-gray);
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-carousel .owl-dots .owl-dot.active span {
  background: var(--color-secondary);
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  .owl-carousel .owl-dots {
    display: none;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .owl-carousel .owl-dots {
    display: none;
  }
}

.news-item h2 {
  padding-top: 0.5rem;
}
.news-item a {
  color: unset;
}

iframe {
  width: 100%;
  aspect-ratio: 16/9;
  padding: 0;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  iframe {
    padding: 1rem 1rem 0;
  }
}

.fold-text.close {
  display: none;
}
.fold-text .expand {
  display: block;
  text-decoration: underline;
  cursor: pointer;
}
.fold-text.active :is(.expand, .ellipsis) {
  display: none;
}

table tbody,
table td,
table tfoot,
table th,
table thead,
table tr {
  min-width: 6rem;
  padding-bottom: 0.5rem;
  vertical-align: top;
  hyphens: auto;
}
@media screen and (min-width: 360px) {
  table tbody,
  table td,
  table tfoot,
  table th,
  table thead,
  table tr {
    min-width: 9rem;
  }
}
@media screen and (min-width: 576px) {
  table tbody,
  table td,
  table tfoot,
  table th,
  table thead,
  table tr {
    min-width: 12rem;
    hyphens: none;
  }
}
table tbody p,
table td p,
table tfoot p,
table th p,
table thead p,
table tr p {
  margin-bottom: 0;
}

/**** contact form *****/
#form-container {
  background-color: var(--color-light-gray);
  padding: 1rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  #form-container {
    margin: 2rem calc((16.6666666667vw - 150px + 2rem) * -1) -2rem;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  #form-container &gt; div {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(3, 1fr);
    padding: 1rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  #form-container &gt; div {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(3, 1fr);
    padding: 1rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  #form-container &gt; div {
    margin: 0 calc(16.6666666667vw - 150px + 2rem);
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  #form-container &gt; div .introduction {
    grid-column: 2/4;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  #form-container &gt; div .introduction {
    grid-column: 2/4;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  #form-container &gt; div .contactform {
    grid-column: 1/4;
    padding-bottom: 1em;
    position: relative;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  #form-container &gt; div .contactform {
    grid-column: 1/4;
    padding-bottom: 1em;
    position: relative;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  #form-container &gt; div .contactform form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  #form-container &gt; div .contactform form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
#form-container &gt; div .contactform form &gt; div:nth-of-type(1) {
  grid-column: 1/3;
}
#form-container &gt; div .contactform form &gt; div:nth-of-type(2) {
  grid-column: 3/4;
}
#form-container &gt; div .contactform form .field {
  position: relative;
  display: grid;
  grid-template-columns: min-content auto;
}
#form-container &gt; div .contactform form .field label {
  left: 0;
  margin: 0.5rem 0;
  background: white;
}
#form-container &gt; div .contactform form .field label span {
  color: white;
  background: red;
  font-family: var(--font-headlines);
  font-size: 2.5rem;
  height: 100%;
  padding: 0.4rem 0;
}
#form-container &gt; div .contactform form .field input {
  padding: 0 0.5rem 0;
}
#form-container &gt; div .contactform form input {
  width: 100%;
  border: none;
  padding: 0 0.5rem;
  margin: 0.5rem 0;
  min-height: 60px;
}
#form-container &gt; div .contactform form textarea {
  width: 100%;
  border: none;
  padding: 0.5rem;
  margin: 0.5rem 0;
  height: 150px;
}
#form-container &gt; div .contactform form input:focus,
#form-container &gt; div .contactform form textarea:focus {
  outline: none !important;
}
#form-container &gt; div .contactform form #submit-btn {
  background-color: var(--color-secondary);
  color: white;
  font-family: var(--font-headlines);
  letter-spacing: 0.03em;
  border: none;
  font-size: 2.5rem;
  width: auto;
}
#form-container &gt; div .contactform form .uniform__potty {
  position: absolute;
  left: -9999px;
}
#form-container &gt; div .contactform form #privacy-hint {
  text-align: end;
  font-size: 0.9em;
}

/*# sourceMappingURL=main.css.map */
</pre></body></html>