@charset "UTF-8";
/* 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: 0;
}

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

@media screen and (min-width: 65rem) {
  .grid {
    --gutter: calc(var(--unit) * 2);
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 0;
  }
}
/* Animations */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.fade-out {
  animation: fadeOut 0.5s forwards;
}

.fade-in {
  animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    display: none;
  }
}
@font-face {
  font-family: "ESFaceTRIAL-Regular";
  src: url(../fonts/ESFaceTRIAL-Regular.woff) format("woff");
}
:root {
  --unit: 20px;
  --font: "Helvetica Neue", Arial, Helvetica, sans-serif;
  /* --font: 'ESFaceTRIAL-Regular', serif; */
  --c-dark: #000;
  --c-semidark: #5F5F5F;
  --c-light: #fff;
}

/* Dark Mode */
.theme-light {
  --background: #fff;
  --color: #000;
}

.theme-dark {
  --background: #1C1C1C;
  --color: #fff;
}
.theme-dark .control .range {
  background-color: rgba(255, 255, 255, 0.25);
}
.theme-dark .control .range .slider-icon {
  color: black;
}
.theme-dark .control .p-title {
  background-color: rgba(255, 255, 255, 0.25);
}
.theme-dark .control .p-title p {
  color: var(--c-dark);
}
.theme-dark .menu {
  background-color: rgba(255, 255, 255, 0.25);
  color: var(--c-dark);
}
.theme-dark .menu.open ul,
.theme-dark .menu.open li,
.theme-dark .menu.open a {
  color: var(--c-dark);
}
.theme-dark h2,
.theme-dark h3,
.theme-dark h4,
.theme-dark p,
.theme-dark a,
.theme-dark figcaption {
  color: var(--c-semidark);
}
.theme-dark .p-title {
  background-color: rgba(255, 255, 255, 0.25);
}
.theme-dark .p-title h1 {
  color: var(--c-dark);
}
.theme-dark .modal h1,
.theme-dark .modal h2,
.theme-dark .modal h3,
.theme-dark .modal h4,
.theme-dark .modal p,
.theme-dark .modal a,
.theme-dark .modal figcaption {
  color: var(--c-light);
}
.theme-dark .content figcaption {
  color: var(--c-light);
}

/* Default */
body {
  font-family: var(--font);
  background: var(--background);
  color: var(--color);
  font-size: var(--unit);
}

.site-header {
  padding: var(--unit) var(--unit) calc(var(--unit) * 6);
}

.site-footer {
  padding: calc(var(--unit) * 6) var(--unit) 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.site-footer .site-footer-r {
  justify-self: end;
  display: flex;
}
.site-footer .legal {
  display: flex;
}
.site-footer .legal .legal-item:first-child::after {
  content: ", ";
  margin-right: 5px;
}
.site-footer .social-links {
  margin-right: var(--unit);
}

@media screen and (max-width: 45rem) {
  body {
    font-size: 18px;
  }
  .site-header {
    padding: var(--unit) calc(var(--unit) / 2) calc(var(--unit) * 4);
  }
  .site-footer {
    padding: calc(var(--unit) * 4) calc(var(--unit) / 2) calc(var(--unit) / 2);
    display: block;
  }
  .site-footer .site-footer-r {
    display: block;
  }
  .site-footer .legal {
    display: block;
  }
  .site-footer .social-links {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
/* Typo */
h2 {
  /* font-size: clamp(1.25rem, 3vw, 5rem); */
  /* padding-bottom: 1rem; */
  padding-bottom: 10px;
}

.blocks {
  padding: 0 calc(var(--unit) / 2);
}
.blocks .text-large p {
  font-size: 1.5em;
  line-height: 1.1;
}
.blocks p {
  line-height: 1.2;
  padding-bottom: 1em;
}
.blocks p:last-child {
  padding-bottom: 0;
}
.blocks p a {
  text-decoration: underline;
}
.blocks p a:hover {
  text-decoration: none;
}
.blocks .video-container {
  max-width: 1200px;
  margin: 0 auto;
}
.blocks .video-autoplay video {
  display: block;
  width: 100%;
  border-radius: 8px;
}
.blocks .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.blocks .video iframe,
.blocks .video object,
.blocks .video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 45rem) {
  .blocks {
    padding: 0 calc(var(--unit) / 2);
  }
  .blocks .text-large p {
    font-size: 1.25em;
  }
}
/* Page */
.list-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: var(--unit);
  grid-row-gap: calc(var(--unit) * 2);
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--unit) calc(var(--unit) / 2);
}
.list-container .list-cover img {
  border-radius: 12px;
  transform: scale(1);
  transition: all 0.3s;
}
.list-container .list-item:hover img {
  transform: scale(0.95);
}
.list-container figcaption {
  line-height: 1.1;
  margin-top: 5px;
}

@media screen and (max-width: 45rem) {
  .list-container {
    padding: calc(var(--unit) / 2);
    grid-column-gap: calc(var(--unit) / 2);
  }
  .list-container figcaption {
    font-size: 13px;
  }
  .list {
    padding: calc(var(--unit) / 2);
    grid-column-gap: calc(var(--unit) / 2);
    grid-row-gap: calc(var(--unit) * 1.5);
  }
  .list .list-cover img {
    border-radius: 6px;
  }
}
/* Control Center */
.control {
  display: flex;
  width: 500px;
  height: 45px;
  font-size: 16px;
  position: fixed;
  bottom: calc(var(--unit) * 2);
  left: 50%;
  transform: translateX(-250px);
  z-index: 10;
}
.control .range {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 405px;
  margin-right: 5px;
  border-radius: 6px;
  padding: 0 15px;
}
.control .range .list {
  cursor: pointer;
}
.control .range .slider-icon {
  font-size: 26px;
  margin-top: -5px;
}
.control .range .mode {
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
.control .range .mode img {
  transform: rotate(0);
  transition: transform 0.3s;
}
.control .range .mode:hover img {
  transform: rotate(180deg);
}
.control .range #slider-container {
  position: relative;
  top: -5px;
}
.control .range #slider-container #reversed-value {
  display: none;
}
.control .range #columns-slider {
  -webkit-appearance: none;
  width: 220px;
  height: 2px;
  background: var(--c-dark);
  outline: none;
}
.control .range #columns-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--c-dark);
  border-radius: 50%;
  cursor: pointer;
}
.control .range #columns-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--c-dark);
  border-radius: 50%;
  cursor: pointer;
}
.control .menu-button {
  cursor: pointer;
}

.menu {
  display: none;
  background-color: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px var(--unit);
  border-radius: 5px;
  font-size: 18px;
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  height: 55px;
  line-height: 35px;
  z-index: 10;
}
.menu.open {
  display: inline-block;
}
.menu.open ul {
  display: flex;
  justify-content: space-between;
}
.menu.open ul a:hover {
  text-decoration: underline;
}
.menu.open ul li {
  padding: 0 10px;
}

.btn {
  position: relative;
  background-color: black;
  color: white;
  text-align: center;
  width: 90px;
  height: 45px;
  line-height: 45px;
  border-radius: 6px;
  z-index: 20;
}

.c-btn a {
  display: inline-block;
  position: relative;
  background-color: black;
  color: white;
  text-align: center;
  width: 90px;
  height: 45px;
  line-height: 45px;
  border-radius: 6px;
  z-index: 20;
}

/* Modal-Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 30;
}

/* Modal-Container */
.modal {
  width: 100%;
  max-height: 100%;
  padding: calc(var(--unit) * 4) var(--unit);
  text-align: left;
  overflow-y: auto;
}

/* Links im Modal */
.modal a {
  display: block;
}
.modal a h2 {
  font-size: clamp(1.25rem, 5.2vw, 10rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
}

/* Schließen-Button */
.close-modal {
  position: fixed;
  bottom: calc(var(--unit) * 2);
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
  background-color: black;
  color: white;
  text-align: center;
  width: 90px;
  height: 45px;
  line-height: 45px;
  border-radius: 6px;
  cursor: pointer;
}

@media screen and (max-width: 65rem) {
  .control {
    display: flex;
    width: 184px;
    height: 45px;
    position: fixed;
    bottom: calc(var(--unit) * 1.5);
    left: 50%;
    transform: translateX(-92px);
    z-index: 10;
  }
  .control .range {
    width: 90px;
    padding: 0 10px;
  }
  .control .range .slider-icon {
    display: none;
  }
  .control .range #slider-container {
    display: none;
  }
  .menu {
    width: 190px;
    height: 210px;
  }
  .menu.open {
    display: block;
  }
  .menu.open ul {
    width: 150px;
    display: block;
    text-align: center;
  }
  .menu.open ul a:hover {
    text-decoration: underline;
  }
}
.item video {
  display: block;
  width: 100%;
  border-radius: 12px;
}

.content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.content img {
  border-radius: 12px;
}
.content figcaption {
  position: absolute;
  display: block;
  border-radius: 6px;
  padding: 10px 20px;
  line-height: 1;
  color: var(--c-light);
  background-color: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  visibility: hidden;
}
.content .blur {
  transition: all 0.3s ease-in-out;
}
.content img {
  transform: scale(1);
  transition: all 0.3s;
}
.content video {
  transform: scale(1);
  transition: all 0.3s;
}
.content:hover img {
  transform: scale(0.95);
}
.content:hover video {
  transform: scale(0.95);
}
.content:hover figcaption {
  visibility: visible;
}

@media screen and (max-width: 45rem) {
  .content {
    display: block;
    position: static;
  }
  .content figcaption {
    position: static;
    margin-top: 10px;
    visibility: visible;
    display: block;
    border-radius: 0;
    padding: 0;
    color: black;
    font-size: 13px;
    hyphens: auto;
    hyphenate-limit-chars: auto 3;
    hyphenate-limit-lines: 4;
  }
  .content:hover img {
    transform: scale(1);
  }
}

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