:root {
  --baseColorPatrickHuven: 255, 119, 0;
  --baseColorGhostMotel: 51, 102, 255;
  --baseColorContact: 153, 0, 153;
  --grid__gutter: 0;
  --grid__columns: 12;
  --xPadding: 1.5rem;
  --topPadding: 4rem;
  --maxWidth: 80rem;
}
@media (min-width: 34.375em) {
  :root {
    --grid__gutter: 0 2.5rem;
  }
}
@media (min-width: 48em) {
  :root {
    --xPadding: 4rem;
  }
}

.row {
  display: grid;
  grid-template-columns: repeat(var(--grid__columns), minmax(0, 1fr));
  grid-gap: var(--grid__gutter);
  grid-auto-columns: 1fr;
}

.col-xxl-12, .col-xxl-11, .col-xxl-10, .col-xxl-9, .col-xxl-8, .col-xxl-7, .col-xxl-6, .col-xxl-5, .col-xxl-4, .col-xxl-3, .col-xxl-2, .col-xxl-1, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col-xs-12, .col-12, .col-xs-11, .col-11, .col-xs-10, .col-10, .col-xs-9, .col-9, .col-xs-8, .col-8, .col-xs-7, .col-7, .col-xs-6, .col-6, .col-xs-5, .col-5, .col-xs-4, .col-4, .col-xs-3, .col-3, .col-xs-2, .col-2, .col-xs-1, .col-1 {
  grid-column: 1/-1;
}

.justify-xs-start, .justify-start {
  justify-self: start;
}

.justify-xs-center, .justify-center {
  justify-self: center;
}

.justify-xs-end, .justify-end {
  justify-self: end;
}

.justify-xs-stretch, .justify-stretch {
  justify-self: stretch;
}

.align-xs-start, .align-start {
  align-self: start;
}

.align-xs-center, .align-center {
  align-self: center;
}

.align-xs-end, .align-end {
  align-self: end;
}

.align-xs-stretch, .align-stretch {
  align-self: stretch;
}

.col-xs-1, .col-1 {
  grid-column: span 1/span 1;
}

.col-xs-2, .col-2 {
  grid-column: span 2/span 2;
}

.col-xs-3, .col-3 {
  grid-column: span 3/span 3;
}

.col-xs-4, .col-4 {
  grid-column: span 4/span 4;
}

.col-xs-5, .col-5 {
  grid-column: span 5/span 5;
}

.col-xs-6, .col-6 {
  grid-column: span 6/span 6;
}

.col-xs-7, .col-7 {
  grid-column: span 7/span 7;
}

.col-xs-8, .col-8 {
  grid-column: span 8/span 8;
}

.col-xs-9, .col-9 {
  grid-column: span 9/span 9;
}

.col-xs-10, .col-10 {
  grid-column: span 10/span 10;
}

.col-xs-11, .col-11 {
  grid-column: span 11/span 11;
}

.col-xs-12, .col-12 {
  grid-column: span 12/span 12;
}

.row-span-xs-1, .row-span-1 {
  grid-row: span 1/span 1;
}

.row-span-xs-2, .row-span-2 {
  grid-row: span 2/span 2;
}

.row-span-xs-3, .row-span-3 {
  grid-row: span 3/span 3;
}

.row-span-xs-4, .row-span-4 {
  grid-row: span 4/span 4;
}

@media (min-width: 34.375em) {
  .justify-sm-start {
    justify-self: start;
  }
  .justify-sm-center {
    justify-self: center;
  }
  .justify-sm-end {
    justify-self: end;
  }
  .justify-sm-stretch {
    justify-self: stretch;
  }
  .align-sm-start {
    align-self: start;
  }
  .align-sm-center {
    align-self: center;
  }
  .align-sm-end {
    align-self: end;
  }
  .align-sm-stretch {
    align-self: stretch;
  }
  .col-sm-1 {
    grid-column: span 1/span 1;
  }
  .col-sm-2 {
    grid-column: span 2/span 2;
  }
  .col-sm-3 {
    grid-column: span 3/span 3;
  }
  .col-sm-4 {
    grid-column: span 4/span 4;
  }
  .col-sm-5 {
    grid-column: span 5/span 5;
  }
  .col-sm-6 {
    grid-column: span 6/span 6;
  }
  .col-sm-7 {
    grid-column: span 7/span 7;
  }
  .col-sm-8 {
    grid-column: span 8/span 8;
  }
  .col-sm-9 {
    grid-column: span 9/span 9;
  }
  .col-sm-10 {
    grid-column: span 10/span 10;
  }
  .col-sm-11 {
    grid-column: span 11/span 11;
  }
  .col-sm-12 {
    grid-column: span 12/span 12;
  }
  .row-span-sm-1 {
    grid-row: span 1/span 1;
  }
  .row-span-sm-2 {
    grid-row: span 2/span 2;
  }
  .row-span-sm-3 {
    grid-row: span 3/span 3;
  }
  .row-span-sm-4 {
    grid-row: span 4/span 4;
  }
}
@media (min-width: 48em) {
  .justify-md-start {
    justify-self: start;
  }
  .justify-md-center {
    justify-self: center;
  }
  .justify-md-end {
    justify-self: end;
  }
  .justify-md-stretch {
    justify-self: stretch;
  }
  .align-md-start {
    align-self: start;
  }
  .align-md-center {
    align-self: center;
  }
  .align-md-end {
    align-self: end;
  }
  .align-md-stretch {
    align-self: stretch;
  }
  .col-md-1 {
    grid-column: span 1/span 1;
  }
  .col-md-2 {
    grid-column: span 2/span 2;
  }
  .col-md-3 {
    grid-column: span 3/span 3;
  }
  .col-md-4 {
    grid-column: span 4/span 4;
  }
  .col-md-5 {
    grid-column: span 5/span 5;
  }
  .col-md-6 {
    grid-column: span 6/span 6;
  }
  .col-md-7 {
    grid-column: span 7/span 7;
  }
  .col-md-8 {
    grid-column: span 8/span 8;
  }
  .col-md-9 {
    grid-column: span 9/span 9;
  }
  .col-md-10 {
    grid-column: span 10/span 10;
  }
  .col-md-11 {
    grid-column: span 11/span 11;
  }
  .col-md-12 {
    grid-column: span 12/span 12;
  }
  .row-span-md-1 {
    grid-row: span 1/span 1;
  }
  .row-span-md-2 {
    grid-row: span 2/span 2;
  }
  .row-span-md-3 {
    grid-row: span 3/span 3;
  }
  .row-span-md-4 {
    grid-row: span 4/span 4;
  }
}
@media (min-width: 58.75em) {
  .justify-lg-start {
    justify-self: start;
  }
  .justify-lg-center {
    justify-self: center;
  }
  .justify-lg-end {
    justify-self: end;
  }
  .justify-lg-stretch {
    justify-self: stretch;
  }
  .align-lg-start {
    align-self: start;
  }
  .align-lg-center {
    align-self: center;
  }
  .align-lg-end {
    align-self: end;
  }
  .align-lg-stretch {
    align-self: stretch;
  }
  .col-lg-1 {
    grid-column: span 1/span 1;
  }
  .col-lg-2 {
    grid-column: span 2/span 2;
  }
  .col-lg-3 {
    grid-column: span 3/span 3;
  }
  .col-lg-4 {
    grid-column: span 4/span 4;
  }
  .col-lg-5 {
    grid-column: span 5/span 5;
  }
  .col-lg-6 {
    grid-column: span 6/span 6;
  }
  .col-lg-7 {
    grid-column: span 7/span 7;
  }
  .col-lg-8 {
    grid-column: span 8/span 8;
  }
  .col-lg-9 {
    grid-column: span 9/span 9;
  }
  .col-lg-10 {
    grid-column: span 10/span 10;
  }
  .col-lg-11 {
    grid-column: span 11/span 11;
  }
  .col-lg-12 {
    grid-column: span 12/span 12;
  }
  .row-span-lg-1 {
    grid-row: span 1/span 1;
  }
  .row-span-lg-2 {
    grid-row: span 2/span 2;
  }
  .row-span-lg-3 {
    grid-row: span 3/span 3;
  }
  .row-span-lg-4 {
    grid-row: span 4/span 4;
  }
}
@media (min-width: 68.75em) {
  .justify-xl-start {
    justify-self: start;
  }
  .justify-xl-center {
    justify-self: center;
  }
  .justify-xl-end {
    justify-self: end;
  }
  .justify-xl-stretch {
    justify-self: stretch;
  }
  .align-xl-start {
    align-self: start;
  }
  .align-xl-center {
    align-self: center;
  }
  .align-xl-end {
    align-self: end;
  }
  .align-xl-stretch {
    align-self: stretch;
  }
  .col-xl-1 {
    grid-column: span 1/span 1;
  }
  .col-xl-2 {
    grid-column: span 2/span 2;
  }
  .col-xl-3 {
    grid-column: span 3/span 3;
  }
  .col-xl-4 {
    grid-column: span 4/span 4;
  }
  .col-xl-5 {
    grid-column: span 5/span 5;
  }
  .col-xl-6 {
    grid-column: span 6/span 6;
  }
  .col-xl-7 {
    grid-column: span 7/span 7;
  }
  .col-xl-8 {
    grid-column: span 8/span 8;
  }
  .col-xl-9 {
    grid-column: span 9/span 9;
  }
  .col-xl-10 {
    grid-column: span 10/span 10;
  }
  .col-xl-11 {
    grid-column: span 11/span 11;
  }
  .col-xl-12 {
    grid-column: span 12/span 12;
  }
  .row-span-xl-1 {
    grid-row: span 1/span 1;
  }
  .row-span-xl-2 {
    grid-row: span 2/span 2;
  }
  .row-span-xl-3 {
    grid-row: span 3/span 3;
  }
  .row-span-xl-4 {
    grid-row: span 4/span 4;
  }
}
@media (min-width: 87.5em) {
  .justify-xxl-start {
    justify-self: start;
  }
  .justify-xxl-center {
    justify-self: center;
  }
  .justify-xxl-end {
    justify-self: end;
  }
  .justify-xxl-stretch {
    justify-self: stretch;
  }
  .align-xxl-start {
    align-self: start;
  }
  .align-xxl-center {
    align-self: center;
  }
  .align-xxl-end {
    align-self: end;
  }
  .align-xxl-stretch {
    align-self: stretch;
  }
  .col-xxl-1 {
    grid-column: span 1/span 1;
  }
  .col-xxl-2 {
    grid-column: span 2/span 2;
  }
  .col-xxl-3 {
    grid-column: span 3/span 3;
  }
  .col-xxl-4 {
    grid-column: span 4/span 4;
  }
  .col-xxl-5 {
    grid-column: span 5/span 5;
  }
  .col-xxl-6 {
    grid-column: span 6/span 6;
  }
  .col-xxl-7 {
    grid-column: span 7/span 7;
  }
  .col-xxl-8 {
    grid-column: span 8/span 8;
  }
  .col-xxl-9 {
    grid-column: span 9/span 9;
  }
  .col-xxl-10 {
    grid-column: span 10/span 10;
  }
  .col-xxl-11 {
    grid-column: span 11/span 11;
  }
  .col-xxl-12 {
    grid-column: span 12/span 12;
  }
  .row-span-xxl-1 {
    grid-row: span 1/span 1;
  }
  .row-span-xxl-2 {
    grid-row: span 2/span 2;
  }
  .row-span-xxl-3 {
    grid-row: span 3/span 3;
  }
  .row-span-xxl-4 {
    grid-row: span 4/span 4;
  }
}
.col-start-xs-1, .col-start-1 {
  grid-column-start: 1;
}

.col-start-xs-2, .col-start-2 {
  grid-column-start: 2;
}

.col-start-xs-3, .col-start-3 {
  grid-column-start: 3;
}

.col-start-xs-4, .col-start-4 {
  grid-column-start: 4;
}

.col-start-xs-5, .col-start-5 {
  grid-column-start: 5;
}

.col-start-xs-6, .col-start-6 {
  grid-column-start: 6;
}

.col-start-xs-7, .col-start-7 {
  grid-column-start: 7;
}

.col-start-xs-8, .col-start-8 {
  grid-column-start: 8;
}

.col-start-xs-9, .col-start-9 {
  grid-column-start: 9;
}

.col-start-xs-10, .col-start-10 {
  grid-column-start: 10;
}

.col-start-xs-11, .col-start-11 {
  grid-column-start: 11;
}

.col-start-xs-12, .col-start-12 {
  grid-column-start: 12;
}

.row-start-xs-1, .row-start-1 {
  grid-row-start: 1;
}

.row-start-xs-2, .row-start-2 {
  grid-row-start: 2;
}

.row-start-xs-3, .row-start-3 {
  grid-row-start: 3;
}

.row-start-xs-4, .row-start-4 {
  grid-row-start: 4;
}

@media (min-width: 34.375em) {
  .col-start-sm-1 {
    grid-column-start: 1;
  }
  .col-start-sm-2 {
    grid-column-start: 2;
  }
  .col-start-sm-3 {
    grid-column-start: 3;
  }
  .col-start-sm-4 {
    grid-column-start: 4;
  }
  .col-start-sm-5 {
    grid-column-start: 5;
  }
  .col-start-sm-6 {
    grid-column-start: 6;
  }
  .col-start-sm-7 {
    grid-column-start: 7;
  }
  .col-start-sm-8 {
    grid-column-start: 8;
  }
  .col-start-sm-9 {
    grid-column-start: 9;
  }
  .col-start-sm-10 {
    grid-column-start: 10;
  }
  .col-start-sm-11 {
    grid-column-start: 11;
  }
  .col-start-sm-12 {
    grid-column-start: 12;
  }
  .row-start-sm-1 {
    grid-row-start: 1;
  }
  .row-start-sm-2 {
    grid-row-start: 2;
  }
  .row-start-sm-3 {
    grid-row-start: 3;
  }
  .row-start-sm-4 {
    grid-row-start: 4;
  }
}
@media (min-width: 48em) {
  .col-start-md-1 {
    grid-column-start: 1;
  }
  .col-start-md-2 {
    grid-column-start: 2;
  }
  .col-start-md-3 {
    grid-column-start: 3;
  }
  .col-start-md-4 {
    grid-column-start: 4;
  }
  .col-start-md-5 {
    grid-column-start: 5;
  }
  .col-start-md-6 {
    grid-column-start: 6;
  }
  .col-start-md-7 {
    grid-column-start: 7;
  }
  .col-start-md-8 {
    grid-column-start: 8;
  }
  .col-start-md-9 {
    grid-column-start: 9;
  }
  .col-start-md-10 {
    grid-column-start: 10;
  }
  .col-start-md-11 {
    grid-column-start: 11;
  }
  .col-start-md-12 {
    grid-column-start: 12;
  }
  .row-start-md-1 {
    grid-row-start: 1;
  }
  .row-start-md-2 {
    grid-row-start: 2;
  }
  .row-start-md-3 {
    grid-row-start: 3;
  }
  .row-start-md-4 {
    grid-row-start: 4;
  }
}
@media (min-width: 58.75em) {
  .col-start-lg-1 {
    grid-column-start: 1;
  }
  .col-start-lg-2 {
    grid-column-start: 2;
  }
  .col-start-lg-3 {
    grid-column-start: 3;
  }
  .col-start-lg-4 {
    grid-column-start: 4;
  }
  .col-start-lg-5 {
    grid-column-start: 5;
  }
  .col-start-lg-6 {
    grid-column-start: 6;
  }
  .col-start-lg-7 {
    grid-column-start: 7;
  }
  .col-start-lg-8 {
    grid-column-start: 8;
  }
  .col-start-lg-9 {
    grid-column-start: 9;
  }
  .col-start-lg-10 {
    grid-column-start: 10;
  }
  .col-start-lg-11 {
    grid-column-start: 11;
  }
  .col-start-lg-12 {
    grid-column-start: 12;
  }
  .row-start-lg-1 {
    grid-row-start: 1;
  }
  .row-start-lg-2 {
    grid-row-start: 2;
  }
  .row-start-lg-3 {
    grid-row-start: 3;
  }
  .row-start-lg-4 {
    grid-row-start: 4;
  }
}
@media (min-width: 68.75em) {
  .col-start-xl-1 {
    grid-column-start: 1;
  }
  .col-start-xl-2 {
    grid-column-start: 2;
  }
  .col-start-xl-3 {
    grid-column-start: 3;
  }
  .col-start-xl-4 {
    grid-column-start: 4;
  }
  .col-start-xl-5 {
    grid-column-start: 5;
  }
  .col-start-xl-6 {
    grid-column-start: 6;
  }
  .col-start-xl-7 {
    grid-column-start: 7;
  }
  .col-start-xl-8 {
    grid-column-start: 8;
  }
  .col-start-xl-9 {
    grid-column-start: 9;
  }
  .col-start-xl-10 {
    grid-column-start: 10;
  }
  .col-start-xl-11 {
    grid-column-start: 11;
  }
  .col-start-xl-12 {
    grid-column-start: 12;
  }
  .row-start-xl-1 {
    grid-row-start: 1;
  }
  .row-start-xl-2 {
    grid-row-start: 2;
  }
  .row-start-xl-3 {
    grid-row-start: 3;
  }
  .row-start-xl-4 {
    grid-row-start: 4;
  }
}
@media (min-width: 87.5em) {
  .col-start-xxl-1 {
    grid-column-start: 1;
  }
  .col-start-xxl-2 {
    grid-column-start: 2;
  }
  .col-start-xxl-3 {
    grid-column-start: 3;
  }
  .col-start-xxl-4 {
    grid-column-start: 4;
  }
  .col-start-xxl-5 {
    grid-column-start: 5;
  }
  .col-start-xxl-6 {
    grid-column-start: 6;
  }
  .col-start-xxl-7 {
    grid-column-start: 7;
  }
  .col-start-xxl-8 {
    grid-column-start: 8;
  }
  .col-start-xxl-9 {
    grid-column-start: 9;
  }
  .col-start-xxl-10 {
    grid-column-start: 10;
  }
  .col-start-xxl-11 {
    grid-column-start: 11;
  }
  .col-start-xxl-12 {
    grid-column-start: 12;
  }
  .row-start-xxl-1 {
    grid-row-start: 1;
  }
  .row-start-xxl-2 {
    grid-row-start: 2;
  }
  .row-start-xxl-3 {
    grid-row-start: 3;
  }
  .row-start-xxl-4 {
    grid-row-start: 4;
  }
}
.mt-2 {
  margin-top: 2rem;
}

@media (min-width: 58.75em) {
  .mt-lg-0 {
    margin-top: 0;
  }
}
@font-face {
  font-family: "Lexend Tera";
  font-style: normal;
  font-weight: 900;
  src: local(""), url("../../files/fonts/lexend-tera-v24-latin-900.woff2") format("woff2");
}
@font-face {
  font-family: "Lexend Tera Outline";
  font-style: normal;
  font-weight: 900;
  src: local(""), url("../../files/fonts/lexend-tera-v24-latin-900-outline.woff2") format("woff2");
}
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 300;
  src: local(""), url("../../files/fonts/rubik-v21-latin-300.woff2") format("woff2");
}
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("../../files/fonts/rubik-v21-latin-600.woff2") format("woff2");
}
.content-hyperlink a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  position: relative;
}
.content-hyperlink a:hover {
  text-decoration: underline;
}
.content-hyperlink a::before {
  content: "";
  display: block;
  width: 0.375rem;
  height: 0.375rem;
  border-width: 0.125rem 0.125rem 0 0;
  border-color: currentColor;
  border-style: solid;
  display: inline-block;
  transform: translate(-0.125rem, -0.125rem) rotate(45deg);
  margin-right: 0.5rem;
}

.ce_form span.mandatory {
  padding-left: 0.25rem;
}
.ce_form label {
  display: block;
  margin-bottom: 0.125rem;
}
.ce_form .widget-text input,
.ce_form .widget-textarea textarea {
  background-color: transparent;
  padding: 0.5rem 0.75rem;
  border: 1px solid #fff;
  box-sizing: border-box;
  width: 100%;
  color: #fff;
  font: inherit;
  vertical-align: middle;
  outline: 0;
}
.ce_form .widget-text input:focus,
.ce_form .widget-textarea textarea:focus {
  background-color: #fff;
  color: #1a2135;
}
.ce_form .widget-textarea textarea {
  resize: vertical;
  min-height: 8rem;
}
.ce_form .widget-submit button {
  border: 1px solid #fff;
  background-color: transparent;
  font: inherit;
  font-size: 1.125rem;
  font-weight: bold;
  padding: 0.5rem 1.5rem 0.5rem 3.5rem;
  border-radius: 10rem;
  color: inherit;
  position: relative;
  cursor: pointer;
  outline: 0;
}
.ce_form .widget-submit button::before {
  content: "";
  display: block;
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  left: 1.375rem;
  top: 50%;
  transform: translateY(-50%);
  background-color: currentColor;
  -webkit-mask: url(../../files/svg/send.svg) no-repeat center/contain;
          mask: url(../../files/svg/send.svg) no-repeat center/contain;
  pointer-events: none;
}
.ce_form .widget-submit button:focus {
  background-color: #fff;
  color: #1a2135;
}
.ce_form .widget-explanation, .ce_form .widget-explanation p {
  margin: 0 !important;
  font-size: 0.875rem;
}
.ce_form .widget + .widget {
  margin-top: 1rem;
}
.ce_form .widget-checkbox {
  margin-top: 1.75rem !important;
}
.ce_form .widget-checkbox fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
.ce_form .widget-checkbox span {
  display: block;
  position: relative;
}
.ce_form .widget-checkbox span label {
  padding-left: 2rem;
}
.ce_form .widget-checkbox span input,
.ce_form .widget-checkbox span label::before,
.ce_form .widget-checkbox span label::after {
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 1.125rem;
  height: 1.125rem;
  margin: 0;
  box-sizing: border-box;
  display: block;
}
.ce_form .widget-checkbox span label::before {
  content: "";
  border: 1px solid #fff;
  pointer-events: none;
}
.ce_form .widget-checkbox span label::after {
  content: "";
  -webkit-clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
          clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
  background-color: #fff;
  transform: scale(0.75);
  visibility: hidden;
}
.ce_form .widget-checkbox span input {
  opacity: 0.1;
}
.ce_form .widget-checkbox span input:checked + label::after {
  visibility: visible;
}
.ce_form .widget-checkbox span input:focus + label::before {
  background-color: #fff;
}
.ce_form .widget-checkbox span input:focus + label::after {
  background-color: #1a2135;
}
.ce_form__footer {
  margin-top: 2rem;
}

#main .mod_article {
  max-width: var(--maxWidth);
  padding: 0 var(--xPadding);
  margin: 4rem auto 0;
}
#main .mod_article:not(.opener):first-child {
  margin-top: 6rem;
}
@media (min-width: 58.75em) {
  #main .mod_article:not(.opener):first-child {
    margin-top: 12rem;
  }
}
@media (min-width: 58.75em) {
  #main .mod_article {
    margin-top: 10rem;
  }
}

body {
  --baseColor: rgb(var(--baseColorRGB));
  font-size: 16px;
  margin: 0;
  background: #1a2135 url("../../files/svg/bg.svg") top center;
  font-family: "Rubik";
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.75;
  color: #fff;
}
body.patrick-huven {
  --baseColorRGB: var(--baseColorPatrickHuven);
}
body.ghost-motel {
  --baseColorRGB: var(--baseColorGhostMotel);
}
body.contact {
  --baseColorRGB: var(--baseColorContact);
}

html {
  font-size: 1rem;
}

figure {
  margin: 0;
}

img,
video {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

p {
  margin: 1em 0;
}
p:last-child {
  margin-bottom: 0;
}
p:first-child {
  margin-top: 0;
}

h1 {
  font-family: "Lexend Tera";
  letter-spacing: -0.17em;
  line-height: 1.125;
  font-size: 2rem;
}
@media (min-width: 58.75em) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-family: "Lexend Tera";
  letter-spacing: -0.17em;
  font-size: 1.5rem;
  line-height: 1.375;
  margin: 2rem 0 1.375rem;
}
h2 + div {
  margin-top: 2rem;
}
h2:first-child {
  margin-top: 0;
}
@media (min-width: 58.75em) {
  h2 {
    font-size: 2.25rem;
    line-height: 1.125;
  }
  h2 + div {
    margin-top: 4rem;
  }
}

a {
  color: inherit;
}

#wrapper {
  overflow: hidden;
  min-height: 100vh;
}

#container {
  margin-bottom: 6rem;
}

.invisible {
  display: none;
}

.lighten {
  mix-blend-mode: lighten;
}

.x-padding {
  padding-left: var(--xPadding);
  padding-right: var(--xPadding);
}

#header {
  padding: 1.5rem var(--xPadding);
  position: fixed;
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  z-index: 9;
  margin-top: calc(-1px * var(--offset));
  transition: opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
}
.fonts-loaded #header {
  opacity: 1;
  visibility: visible;
}
#header:not(.notransition) {
  transition: margin-top 0.3s, opacity 0.5s, visibility 0.5s;
}
.nav-open #header {
  margin-top: 0;
}
#header .inside {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  align-items: center;
  max-width: var(--maxWidth);
  margin: 0 auto;
}
#header::before {
  content: "";
  display: block;
  position: fixed;
  top: calc(-1px * var(--offset));
  left: 0;
  width: 100%;
  height: 4.5rem;
  background: #1a2135 url("../../files/svg/bg.svg") center;
  z-index: -1;
  transition: opacity 0.3s, visibility 0.3s, border-bottom-color 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  opacity: 0;
  visibility: hidden;
}
.nav-small #header::before {
  opacity: 1;
  visibility: visible;
}
.nav-open #header::before {
  border-bottom-color: transparent;
}
@media (min-width: 58.75em) {
  #header {
    padding-top: 3rem;
  }
  #header::before {
    height: 8.5rem;
  }
  .nav-open #header {
    margin-top: calc(-1px * var(--offset));
    border-bottom-color: rgba(255, 255, 255, 0.5);
  }
}

.nav-open .header__sociallinks a:not(.invisible), .header__sociallinks .nav-open a:not(.invisible), .nav-open .header__mainnavigation a:not(.invisible), .header__mainnavigation .nav-open a:not(.invisible),
.nav-open .header__mainnavigation strong,
.header__mainnavigation .nav-open strong {
  animation: slideNavItemIn 0.3s ease-in-out both calc(0.03s * var(--index));
}

.header__navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  z-index: -1;
  padding: 5rem var(--xPadding);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.header__navigation::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #1a2135 url("../../files/svg/bg.svg") center;
  -webkit-mask-image: linear-gradient(0deg, transparent 0%, transparent 33.3333333333%, #000 66.6666666667%, #000 100%);
          mask-image: linear-gradient(0deg, transparent 0%, transparent 33.3333333333%, #000 66.6666666667%, #000 100%);
  -webkit-mask-size: 100% 300%;
          mask-size: 100% 300%;
  opacity: 0.95;
  z-index: -1;
}
.nav-open .header__navigation {
  opacity: 1;
  visibility: visible;
  transition: none;
}
.nav-open .header__navigation::before {
  animation: slideNavMaskIn 0.5s ease-in-out both;
}
@media (min-width: 58.75em) {
  .header__navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: static;
    visibility: visible;
    opacity: 1;
    padding: 0;
    overflow: visible;
    z-index: 1;
  }
  .header__navigation::before {
    display: none;
  }
}
.header__mainnavigation {
  white-space: nowrap;
  text-align: center;
}
.header__mainnavigation ul {
  all: unset;
  list-style-type: none;
  display: block;
}
.header__mainnavigation a {
  color: inherit;
  text-decoration: none;
}
.header__mainnavigation .level_1 > li > a, .header__mainnavigation .level_1 > li > strong {
  font-size: 1.75rem;
  line-height: 2;
  font-weight: normal;
  display: block;
  color: #fff;
  transition: color 0.2s;
}
@media (min-width: 58.75em) {
  .header__mainnavigation .level_1 {
    font-size: 1.125rem;
    position: relative;
    display: flex;
    gap: 1.5rem;
  }
  .header__mainnavigation .level_1 > li > a, .header__mainnavigation .level_1 > li > strong {
    color: rgba(255, 255, 255, 0.6);
    font-size: inherit;
  }
  .header__mainnavigation .level_1 > li.active > a, .header__mainnavigation .level_1 > li.active > strong {
    color: #fff;
  }
  .header__mainnavigation .level_1 > li.active .level_2 {
    visibility: visible;
    opacity: 1;
    transition: none;
  }
  .header__mainnavigation .level_1 > li.active .level_2 li {
    opacity: 1;
  }
}
.header__mainnavigation .level_2 {
  margin-bottom: 1rem;
}
@media (min-width: 58.75em) {
  .header__mainnavigation .level_2 {
    margin: 0;
    display: flex;
    gap: 1.5rem;
    position: absolute;
    top: 2.5rem;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s, top 0.3s;
    padding-left: 6rem;
  }
  .header__mainnavigation .level_2::before {
    content: "";
    display: block;
    position: absolute;
    top: 0.9375rem;
    left: 0;
    width: 4.5rem;
    height: 1px;
    background-color: #fff;
  }
  .header__mainnavigation .level_2 li {
    transition: opacity 0.3s;
    opacity: 0;
  }
  .header__mainnavigation .level_2 li:nth-child(1) {
    transition-delay: calc(0.05s * 1);
  }
  .header__mainnavigation .level_2 li:nth-child(2) {
    transition-delay: calc(0.05s * 2);
  }
  .header__mainnavigation .level_2 li:nth-child(3) {
    transition-delay: calc(0.05s * 3);
  }
  .header__mainnavigation .level_2 li:nth-child(4) {
    transition-delay: calc(0.05s * 4);
  }
  .header__mainnavigation .level_2 li:nth-child(5) {
    transition-delay: calc(0.05s * 5);
  }
  .header__mainnavigation .level_2 li:nth-child(6) {
    transition-delay: calc(0.05s * 6);
  }
  .header__mainnavigation .level_2 li:nth-child(7) {
    transition-delay: calc(0.05s * 7);
  }
  .header__mainnavigation .level_2 li:nth-child(8) {
    transition-delay: calc(0.05s * 8);
  }
  .header__mainnavigation .level_2 li:nth-child(9) {
    transition-delay: calc(0.05s * 9);
  }
  .header__mainnavigation .level_2 li:nth-child(10) {
    transition-delay: calc(0.05s * 10);
  }
}
.header__mainnavigation a:not(.invisible),
.header__mainnavigation strong {
  display: inline-block;
  vertical-align: middle;
}
.header__sociallinks {
  line-height: 0;
  margin-top: 3rem;
}
.header__sociallinks ul {
  all: unset;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.header__sociallinks a:not(.invisible) {
  display: inline-block;
  transition: opacity 0.2s;
  opacity: 0.6;
}
.header__sociallinks a:not(.invisible):hover {
  opacity: 1;
}
.header__sociallinks img {
  vertical-align: middle;
  height: 2rem;
  width: auto;
}
.header__sociallinks .youtube img {
  height: 1.625rem;
}
@media (min-width: 58.75em) {
  .header__sociallinks {
    margin-top: 0;
    transform: translateY(-0.125rem);
  }
  .header__sociallinks img {
    height: 1.25rem;
  }
  .header__sociallinks .youtube img {
    height: 1rem;
  }
  .header__sociallinks ul {
    gap: 1rem;
  }
}
.header__contactlink {
  line-height: 0;
  transition: visibility 0.3s, opacity 0.3s;
}
.header__contactlink a {
  white-space: nowrap;
  font-size: 1rem;
  line-height: 2;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-block;
  color: #fff;
}
.header__contactlink a:hover {
  text-decoration: none;
}
.header__contactlink.hidden {
  visibility: hidden;
  opacity: 0;
}
@media (min-width: 58.75em) {
  .header__contactlink a {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
  }
  .header__contactlink.active a {
    color: #fff;
  }
}
.header__burger button {
  all: unset;
  font-size: 0;
  line-height: 0;
  color: transparent;
  display: block;
  position: relative;
  width: 2.25rem;
  height: 2.5rem;
}
.header__burger button::before, .header__burger button::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 0.125rem;
  left: 0;
  top: calc(50% - 0.0625rem);
  background-color: #fff;
  box-shadow: 0 0.75rem #fff, 0 -0.75rem #fff;
  transition: box-shadow 1s, transform 1s;
}
.nav-open .header__burger button::before, .nav-open .header__burger button::after {
  box-shadow: 0 0 #fff, 0 0 #fff;
}
.nav-open .header__burger button::before {
  transform: rotate(45deg);
}
.nav-open .header__burger button::after {
  transform: rotate(-45deg);
}
@media (min-width: 58.75em) {
  .header__burger {
    display: none;
  }
}

@keyframes slideNavItemIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-0.25rem);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes slideNavMaskIn {
  from {
    -webkit-mask-position: 0 100%;
            mask-position: 0 100%;
  }
  to {
    -webkit-mask-position: 0 0;
            mask-position: 0 0;
  }
}
#footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1a2135 url("../../files/svg/bg.svg") center;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0.75rem var(--xPadding);
  box-sizing: border-box;
  transform: translateY(7rem);
  transition: transform 0.3s;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
}
.fonts-loaded #footer {
  opacity: 1;
  visibility: visible;
}
#footer .inside {
  margin: 0 auto;
  max-width: var(--maxWidth);
}
.footer-open #footer {
  transform: translateY(0);
}
@media (min-width: 58.75em) {
  #footer {
    transform: none;
  }
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1a2135 url("../../files/svg/bg.svg") center;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
#loading .lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
#loading .lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
#loading .lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
#loading .lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
#loading .lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
.images-loaded #loading {
  opacity: 0;
  visibility: hidden;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fog {
  background-color: #000;
  position: relative;
}
.fog video {
  width: 100%;
  max-height: 21.75rem;
  height: auto;
  -o-object-fit: fill;
     object-fit: fill;
}
.fog::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--baseColor);
  mix-blend-mode: multiply;
  transition: background-color 0.3s;
}

.opener {
  max-width: none !important;
  padding: 0 !important;
  margin-top: 0 !important;
  mix-blend-mode: lighten;
  background-color: #000;
}
.opener h1 {
  font-family: "Lexend Tera";
  letter-spacing: -0.17em;
  line-height: 1;
  font-size: 15vw;
}
.opener h1 strong {
  font-family: "Lexend Tera Outline";
}
@media (min-width: 34.375em) {
  .opener h1 {
    font-size: 10vw;
  }
}
@media (min-width: 87.5em) {
  .opener h1 {
    font-size: 9rem;
  }
}
.opener img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.opener__group {
  position: relative;
  margin: 0 auto;
  max-width: calc(var(--maxWidth) + var(--xPadding) * 2);
  margin-top: calc(-22vw + 6rem);
}
@media (min-width: 87.5em) {
  .opener__group {
    margin-top: -14rem;
  }
}
.opener__text {
  position: absolute;
  top: 50%;
  left: var(--xPadding);
  z-index: 3;
}
.patrick-huven .opener__image {
  margin-left: auto;
  z-index: 2;
  width: 50%;
  transform: translateX(-10%);
}
@media (min-width: 48em) {
  .patrick-huven .opener__image {
    width: 40%;
  }
}
@media (min-width: 58.75em) {
  .patrick-huven .opener__image {
    width: 35%;
  }
}
@media (min-width: 68.75em) {
  .patrick-huven .opener__image {
    width: 24em;
  }
}
.patrick-huven .opener__image figure {
  position: relative;
}
.patrick-huven .opener__image figure::before {
  content: "";
  display: block;
  position: absolute;
  width: 200%;
  padding-top: 200%;
  top: 50%;
  left: 50%;
  transform: translate(-60%, -45%);
  background: transparent url(../../files/svg/opener-bg-1.svg) no-repeat center/contain;
}
.patrick-huven .opener__text {
  transform: translateY(-50%);
}
@media (min-width: 68.75em) {
  .patrick-huven .opener__text {
    transform: translateY(-25%);
  }
}
.ghost-motel .opener__image {
  width: 75%;
  margin-left: auto;
  opacity: 0.4;
  -webkit-mask-image: linear-gradient(transparent 0%, black 10%, black 90%, transparent 100%);
          mask-image: linear-gradient(transparent 0%, black 10%, black 90%, transparent 100%);
}
@media (min-width: 58.75em) {
  .ghost-motel .opener__image {
    margin-right: -10rem;
  }
}
.ghost-motel .opener__text {
  transform: translateY(-50%);
}
.contact .opener h1 {
  font-size: 2.5rem;
}
@media (min-width: 58.75em) {
  .contact .opener h1 {
    font-size: 4rem;
  }
}
.contact .opener h2 {
  font-size: 2rem;
  margin: 3rem 0 1rem !important;
}
@media (min-width: 58.75em) {
  .contact .opener__group {
    margin-top: -8rem;
  }
}
.contact .opener__image {
  margin-top: 2rem;
}
.contact .opener__image figure {
  position: relative;
}
.contact .opener__image figure::before {
  content: "";
  display: block;
  position: absolute;
  width: 300%;
  padding-top: 300%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent url(../../files/svg/opener-bg-3.svg) no-repeat center/contain;
}
@media (min-width: 58.75em) {
  .contact .opener__image {
    margin-top: 0;
  }
}
.contact .opener__text {
  position: static;
  top: auto;
  left: auto;
  padding: 0 var(--xPadding);
}
@media (min-width: 58.75em) {
  .contact .opener__text {
    padding-right: 0;
  }
}

.introduction {
  mix-blend-mode: lighten;
  padding-top: 4rem !important;
  margin-top: 0 !important;
}
.introduction__image {
  position: relative;
  margin-bottom: 1.5rem;
}
@media (min-width: 58.75em) {
  .introduction__image h2 {
    margin-bottom: 0 !important;
    position: absolute;
    right: 2rem;
    bottom: calc(100% - 3rem);
  }
}
@media (min-width: 68.75em) {
  .introduction__image h2 {
    font-size: 2.25rem;
    right: 4.5rem;
    bottom: calc(100% - 4rem);
  }
}
@media (min-width: 87.5em) {
  .introduction__image h2 {
    font-size: 2.5rem;
    right: 8rem;
    bottom: calc(100% - 4.25rem);
  }
}
@media (min-width: 68.75em) {
  .introduction__image {
    padding-right: 2rem;
  }
}
@media (min-width: 87.5em) {
  .introduction__image {
    padding-right: 5.5rem;
  }
}
.introduction__text p {
  margin: 0;
}
.introduction__text p + p {
  margin-top: 1rem;
}
@media (min-width: 58.75em) {
  .introduction__text p {
    transform: translateY(-0.25rem);
  }
}
@media (min-width: 58.75em) {
  .introduction {
    margin-top: 6rem !important;
  }
}

.player__audio {
  background-color: rgba(255, 255, 255, 0.05);
  position: relative;
  margin: 1rem 0 0 1rem;
  padding: 1.25rem 1.5rem 1.25rem 6.5rem;
}
.player__audio + .player__audio {
  margin-top: 2rem;
}
.player__audio h3 {
  font-size: 1rem;
  margin: 0;
}
.player__audio p {
  margin: 0;
}
.player__audio figure {
  position: absolute;
  display: block;
  top: -1rem;
  left: -1rem;
}
@media (min-width: 58.75em) {
  .player__audio figure {
    top: -2rem;
    left: -2rem;
  }
}
.player__audio img {
  width: 6rem;
  height: 6rem;
}
@media (min-width: 58.75em) {
  .player__audio img {
    width: 8rem;
    height: 8rem;
  }
}
.player__audio button {
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  position: absolute;
  left: 0.5rem;
  top: 2rem;
  transform: translateY(-50%);
  border-radius: 50%;
  font-size: 0;
  line-height: 0;
  color: transparent;
  border: 1px solid #fff;
  background-color: rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s, background-color 0.3s;
}
.player__audio button:not(.playing):hover {
  box-shadow: 0 0 1rem rgba(255, 255, 255, 0.2);
}
.player__audio button::before {
  --image: url(../../files/svg/play.svg);
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background-color: #fff;
  -webkit-mask: var(--image) no-repeat center/contain;
          mask: var(--image) no-repeat center/contain;
  transform: translateX(16%);
}
.player__audio button.playing {
  background-color: var(--baseColor);
  border-color: var(--baseColor);
  box-shadow: 0 0 1rem rgba(var(--baseColorRGB), 0.2);
}
.player__audio button.playing::before {
  --image: url(../../files/svg/pause.svg);
  transform: scale(1.2);
}
@media (min-width: 58.75em) {
  .player__audio button {
    background-color: rgba(255, 255, 255, 0.1);
    left: auto;
    right: 2rem;
    top: 50%;
  }
}
@media (min-width: 58.75em) {
  .player__audio {
    margin: 2rem 0 0 2rem;
    padding: 2rem 7rem 2rem 8rem;
  }
  .player__audio + .player__audio {
    margin-top: 4rem;
  }
}
.player__video {
  overflow: hidden;
  border-radius: 0.5rem;
}
.player__video video {
  width: 100%;
  height: auto;
  cursor: pointer;
}
.player__video figure {
  position: relative;
}
.player__video figure::before, .player__video figure::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
}
.player__video figure::before {
  width: 10%;
  padding-top: 10%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s, background-color 0.3s;
}
.player__video figure::after {
  width: 3.5%;
  padding-top: 3.5%;
  background-color: #fff;
  -webkit-mask: url(../../files/svg/play.svg) no-repeat center/contain;
          mask: url(../../files/svg/play.svg) no-repeat center/contain;
  transform: translate(-40%, -50%);
}
.player__video:hover figure::before {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 1rem rgba(255, 255, 255, 0.5);
}
.player__video figcaption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.25rem;
  box-sizing: border-box;
  font-family: "Lexend Tera";
  font-size: 1rem;
  letter-spacing: -0.17em;
  line-height: 1.5;
  background: linear-gradient(357.92deg, rgba(73, 88, 220, 0.6) 2.13%, rgba(73, 88, 220, 0) 98.63%);
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s;
  visibility: hidden;
  opacity: 0;
}
@media (min-width: 58.75em) {
  .player__video figcaption {
    padding: 1.5rem 2rem;
    font-size: 1.5rem;
  }
}
.player__video.overlay figure::before,
.player__video.overlay figure::after {
  visibility: visible;
  opacity: 1;
}
.player__video.overlay figcaption {
  visibility: visible;
  opacity: 1;
}

.overlayplayer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.625rem;
  white-space: nowrap;
  font-size: 0.875rem;
}
.overlayplayer__progress {
  flex-grow: 1;
}
.overlayplayer__progress .progress {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.25rem;
  transition: opacity 0.3s;
  cursor: pointer;
}
.overlayplayer__progress .progress__bar {
  height: 0.125rem;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  position: relative;
}
.overlayplayer__progress .progress__bar::before {
  content: "";
  display: block;
  height: 100%;
  width: calc(100% * var(--value, 0));
  background-color: #fff;
}
.overlayplayer__progress .progress__bar::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% * var(--value, 0));
  transform: translate(-50%, -50%);
  width: 0.5rem;
  height: 0.5rem;
  background-color: #fff;
  border-radius: 50%;
  transition: opacity 0.3s;
  pointer-events: none;
}
@media (min-width: 58.75em) {
  .overlayplayer__progress .progress {
    opacity: 0.5;
  }
  .overlayplayer__progress .progress__bar::after {
    opacity: 0;
  }
  .overlayplayer__progress .progress:hover {
    opacity: 1;
  }
  .overlayplayer__progress .progress:hover .progress__bar::after {
    opacity: 1;
  }
}
.overlayplayer__title {
  position: relative;
  padding-left: 1.5rem;
  flex-grow: 1;
  width: calc(100% - 4rem);
}
.overlayplayer__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.75rem;
  height: 100%;
  background-color: #fff;
  -webkit-mask: url(../../files/svg/tone.svg) no-repeat center/contain;
          mask: url(../../files/svg/tone.svg) no-repeat center/contain;
}
@media (min-width: 58.75em) {
  .overlayplayer__title {
    width: 20rem;
    flex-grow: 0;
  }
}
.overlayplayer__text {
  overflow: hidden;
}
.overlayplayer__buttongroup {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.overlayplayer__buttongroup button {
  all: unset;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
  transition: opacity 0.3s;
  cursor: pointer;
}
.overlayplayer__buttongroup button::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-mask: var(--image) no-repeat center/contain;
          mask: var(--image) no-repeat center/contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  transform: scale(0.8);
}
.overlayplayer__buttongroup button.prev {
  --image: url(../../files/svg/prev.svg);
  display: none;
}
.overlayplayer__buttongroup button.play {
  --image: url(../../files/svg/play.svg);
}
.overlayplayer__buttongroup button.pause {
  display: none;
  --image: url(../../files/svg/pause.svg);
}
.overlayplayer__buttongroup button.next {
  --image: url(../../files/svg/next.svg);
  display: none;
}
.overlayplayer__buttongroup button.volume {
  width: 1.5rem;
  --image: url(../../files/svg/volume.svg);
}
@media (min-width: 58.75em) {
  .overlayplayer__buttongroup button {
    opacity: 0.6;
  }
  .overlayplayer__buttongroup button.prev, .overlayplayer__buttongroup button.next {
    display: block;
  }
  .overlayplayer__buttongroup button:hover {
    opacity: 1;
  }
}
.overlayplayer__buttongroup--mobile {
  flex-basis: 100%;
  justify-content: center;
  gap: 1.5rem;
  margin: 1rem 0;
}
.overlayplayer__buttongroup--mobile button {
  width: 3rem;
  height: 3rem;
}
.overlayplayer__buttongroup--mobile button.prev, .overlayplayer__buttongroup--mobile button.next {
  display: block !important;
}
@media (min-width: 58.75em) {
  .overlayplayer__buttongroup--mobile {
    display: none;
  }
}
@media (min-width: 58.75em) {
  .overlayplayer__buttongroup {
    margin: 0 1rem;
  }
}
.overlayplayer__time, .overlayplayer__duration {
  font-size: 0.75rem;
  width: 2.25rem;
  text-align: center;
}
.overlayplayer__break {
  flex-basis: 100%;
}
@media (min-width: 58.75em) {
  .overlayplayer__break {
    display: none;
  }
}
.overlayplayer.playing button.pause {
  display: block;
}
.overlayplayer.playing button.play {
  display: none;
}
.overlayplayer__time, .overlayplayer__progress, .overlayplayer__duration {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
}
.overlayplayer--seekbar .overlayplayer__time, .overlayplayer--seekbar .overlayplayer__progress, .overlayplayer--seekbar .overlayplayer__duration {
  visibility: visible;
  opacity: 1;
}

.imagefilm h2 {
  margin-bottom: 2rem;
}
@media (min-width: 58.75em) {
  .imagefilm h2 {
    margin-bottom: 4rem;
  }
}

.biography p {
  margin: 0;
}
.biography .rte {
  overflow: auto;
}
.biography__slider {
  max-width: 40rem;
  margin: 0 auto;
}
.biography__labelgroup {
  display: flex;
  align-items: flex-end;
  height: 2.5rem;
  line-height: 1;
  position: relative;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 0.5rem;
  margin-top: 3rem;
  font-size: 2.5rem;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 58.75em) {
  .biography__labelgroup {
    padding-bottom: 2rem;
    height: 6rem;
    font-size: 6rem;
    gap: 3rem;
  }
}
.biography__label {
  font-family: "Lexend Tera Outline";
  letter-spacing: -0.1em;
  margin: 0;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.biography__label h3 {
  position: relative;
  margin: 0;
  transform: scale(0.75) translateX(-0.5rem);
  transition: transform 0.5s;
}
.biography__label h3::before {
  font-family: "Lexend Tera";
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.5s, opacity 0.5s;
}
.biography__label h3::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: radial-gradient(closest-side, var(--baseColor) 0%, transparent 100%);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.5s, opacity 0.5s;
}
@media (min-width: 58.75em) {
  .biography__label h3::after {
    transform: scale(0.75) translateX(-2rem);
    width: 5.5rem;
    height: 5.5rem;
    bottom: -1.75rem;
    left: -0.75rem;
  }
}
.biography__label.active h3 {
  transform: scale(1) translateY(-0.5rem);
}
.biography__label.active h3::before, .biography__label.active h3::after {
  opacity: 1;
  visibility: visible;
}
.biography__label.active + * h3 {
  transform: scale(0.75) translateX(0.5rem);
}
@media (min-width: 58.75em) {
  .biography__label.active + * h3 {
    transform: scale(0.75) translateX(2rem);
  }
}
.biography__textgroup {
  display: flex;
  align-items: flex-start;
  margin: 0 auto;
  transition: height 1s;
}
.biography__text {
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.5s, opacity 0.5s;
}
* + .biography__text {
  margin-left: -100%;
}
.biography__text.active {
  visibility: visible;
  opacity: 1;
}
@media (min-width: 58.75em) {
  .biography {
    margin-top: 10rem;
  }
  .biography h2 {
    margin-bottom: 4rem;
  }
}

.projects img {
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
}
.projects figcaption {
  font-family: "Lexend Tera";
  letter-spacing: -0.17em;
  line-height: 1.125;
  text-align: center;
}
.projects .row {
  grid-gap: 2rem var(--xPadding);
}
@media (min-width: 58.75em) {
  .projects img {
    margin-bottom: 2rem;
  }
  .projects figcaption {
    font-size: 1.25rem;
  }
  .projects .row {
    grid-gap: var(--grid__gutter);
    grid-row-gap: 3.5rem;
  }
}

.presskit img {
  width: 100%;
  height: auto;
}
.presskit__image {
  margin-top: 2rem;
}
@media (min-width: 58.75em) {
  .presskit__image {
    margin-top: 0;
  }
  .presskit__image--1 {
    margin-bottom: 4rem;
  }
  .presskit__image--3 {
    margin-top: 4rem;
  }
}

.ghost-motel-introduction {
  margin-top: 2rem !important;
}
.ghost-motel-introduction h2 {
  margin-top: 0;
}
.ghost-motel-introduction__image {
  margin-top: 4rem;
  mix-blend-mode: lighten;
}
.ghost-motel-introduction__image figure {
  position: relative;
}
.ghost-motel-introduction__image figure::before {
  content: "";
  display: block;
  position: absolute;
  width: 150%;
  padding-top: 150%;
  bottom: 0;
  left: 50%;
  transform: translate(-45%, 0);
  background: transparent url(../../files/svg/opener-bg-2.svg) no-repeat center/contain;
}
.ghost-motel-introduction__image img {
  position: relative;
}
@media (min-width: 58.75em) {
  .ghost-motel-introduction__image {
    margin-top: 0;
    transform: translateX(5%);
  }
}
@media (min-width: 68.75em) {
  .ghost-motel-introduction__image {
    transform: none;
  }
}
@media (min-width: 58.75em) {
  .ghost-motel-introduction {
    margin-top: 6rem !important;
  }
}

.videos .row {
  row-gap: 2rem;
}

.impressions .row {
  row-gap: 2rem;
}
@media (min-width: 58.75em) {
  .impressions .row {
    row-gap: 4rem;
  }
}
@media (min-width: 58.75em) {
  .impressions__image--1 {
    margin-top: 2rem;
  }
}
@media (min-width: 58.75em) {
  .impressions__image--3 {
    margin-top: 4rem;
  }
}

.footernavigation {
  margin: 4rem auto 0;
  max-width: var(--maxWidth);
  padding: 0 var(--xPadding);
}
.footernavigation ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  line-height: 1;
}
.footernavigation li + li {
  margin-left: 0.5rem;
  padding-left: 0.5rem;
  border-left: 1px solid #fff;
}
.footernavigation a {
  color: inherit;
  text-decoration: none;
}
.footernavigation a:hover {
  text-decoration: underline;
}
@media (min-width: 58.75em) {
  .footernavigation {
    margin-top: 8rem;
  }
}

#background-music {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 7;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s, visibility 0.5s;
}
#background-music::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1a2135 url("../../files/svg/bg.svg") center;
  opacity: 0.9;
  z-index: -1;
}
#background-music.hidden {
  opacity: 0;
  visibility: hidden;
}
#background-music .rte {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: center;
}
#background-music h3 {
  margin: 0;
  line-height: 1.25;
}
#background-music .content-text {
  border: 1px solid #fff;
  padding: 2rem;
  border-radius: 1rem;
  background: #1a2135 url("../../files/svg/bg.svg") center;
  box-shadow: 0 0 1rem rgba(255, 255, 255, 0.3);
}
#background-music p {
  margin: 0 auto;
}
#background-music a {
  margin: 0 auto;
  width: 12rem;
  display: block;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0.5rem;
  padding: 0 0.5rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25;
  transition: background-color 0.2s;
}
#background-music a strong {
  display: block;
  font-size: 2rem;
  font-family: "Lexend Tera";
  line-height: 1.5;
  letter-spacing: -0.17em;
}
#background-music a:hover {
  background: rgba(255, 255, 255, 0.1);
}
@media (min-width: 34.375em) {
  #background-music .rte {
    grid-template-columns: 1fr 1fr;
  }
  #background-music h3 {
    grid-column: span 2;
  }
  #background-music a {
    width: 8rem;
  }
}/*# sourceMappingURL=main.css.map */
