@charset "UTF-8";
*, *:before, *:after {
  box-sizing: border-box;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-size-adjust: none;
}

footer, header, nav, section, main {
  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;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

:root {
  --gap: 2rem;
  --page-padding: var(--gap);
  --gradient-1: linear-gradient(45deg, #c3d5d5, #ea7255);
  --gradient-2: inear-gradient(45deg, #ea7255, #c3d5d5);
  --border-radius: 0.5rem 0.5rem 0 0.5rem;
  --border-radius-alt: 0.5rem 0.5rem 0.5rem 0;
  --black: #111;
  --transparent-background-color: rgba(255,255,255,0.4);
  --transparent-background-blur: 10px;
  --orange: #d35e41;
  --grey: #c0d7d5;
  --font-size-small: 0.8rem;
}
@media only screen and (max-width: 767.98px) {
  :root {
    --font-size-small: 1rem;
  }
}

main {
  padding: var(--page-padding);
}

.content-wrapper-8,
.wp-block-group {
  width: 100%;
  max-width: 45rem;
  margin: 0 auto;
  margin-bottom: calc(3 * var(--gap));
}
.content-wrapper-8.headline,
.wp-block-group.headline {
  margin-bottom: 0;
}

.content-wrapper-10,
.wp-block-group.has-large-font-size {
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
  margin-bottom: calc(3 * var(--gap));
}

.content-wrapper-12,
.wp-block-group.has-x-large-font-size {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  margin-bottom: calc(3 * var(--gap));
}

.two-columns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: var(--gap);
  width: 100%;
}
.two-columns > * {
  width: 50%;
}
.two-columns.large-gap {
  gap: 16.666%;
}
.two-columns .left, .two-columns .right {
  width: 40%;
}
@media only screen and (max-width: 767.98px) {
  .two-columns .left, .two-columns .right {
    width: 100%;
  }
}
@media only screen and (max-width: 767.98px) {
  .two-columns {
    flex-direction: column;
  }
  .two-columns > * {
    width: 100%;
  }
  .two-columns.large-gap {
    gap: var(--gap);
  }
}

@font-face {
  font-family: "GT Alpina";
  src: url("../fonts/GT-Alpina-Standard-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}
.page-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: var(--gap);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  backdrop-filter: blur(10px);
}
.page-header .logo {
  height: 1.5rem;
  width: auto;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-header .logo img {
  width: auto;
  height: 100%;
}
.page-header .logo .subline {
  margin-left: 1em;
}
@media only screen and (max-width: 1199.97px) {
  .page-header .logo .subline {
    display: none;
  }
}
@media only screen and (max-width: 767.98px) {
  .page-header .navigation {
    display: none;
  }
}
.page-header .navigation ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.page-header .navigation ul li {
  padding: 0 1em;
  text-align: center;
}
.page-header .navigation ul .current_page_item a {
  -webkit-text-stroke: 1px var(--black);
  text-stroke: 1px var(--black);
}
.page-header .navigation ul a {
  font-weight: normal;
  text-decoration: none;
}
.page-header .navigation ul a:hover {
  -webkit-text-stroke: 1px var(--black);
  text-stroke: 1px var(--black);
}
.page-header .navigation ul .contact-button {
  border: 1px solid var(--black);
  border-radius: var(--border-radius);
  padding: 0.25em 1em;
  display: inline-block;
  margin-left: 1em;
}
.page-header .navigation ul .contact-button:hover {
  background: var(--black);
}
.page-header .navigation ul .contact-button:hover a, .page-header .navigation ul .contact-button:hover a:hover {
  color: white;
  -webkit-text-stroke: 0px;
  text-stroke: 0px;
}

.mobile-navigation {
  position: fixed;
  display: none;
  opacity: 0;
  justify-content: center;
  align-items: center;
  z-index: 9;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: var(--transparent-background-color);
  backdrop-filter: blur(var(--transparent-background-blur));
}
@media only screen and (min-width: 768px) {
  .mobile-navigation {
    display: none;
  }
}
.mobile-navigation ul {
  font-family: "GT Alpina";
  font-size: 2rem;
  text-align: center;
}
.mobile-navigation ul li {
  padding: 0.2em;
}
.mobile-navigation ul a {
  text-decoration: none;
}

.button.mobile-menu-button {
  display: inline-block;
  position: fixed;
  z-index: 10;
  top: var(--gap);
  right: var(--gap);
  padding: 0;
  border: 0;
}
.button.mobile-menu-button:hover {
  color: var(--black);
  background: 0;
}
@media only screen and (min-width: 768px) {
  .button.mobile-menu-button {
    display: none;
  }
}

.trigger-warning {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 101;
  background-color: var(--transparent-background-color);
  backdrop-filter: blur(10px);
}
.trigger-warning .trigger-warning-inner {
  width: 100%;
  height: 100%;
  position: relative;
  padding: calc(var(--gap) / 1.75);
  text-align: center;
  display: flex;
  justify-content: center;
}
.trigger-warning p {
  font-size: var(--font-size-small);
  text-align: left;
  max-width: 150ch;
}
.trigger-warning .close-trigger-warning {
  font-size: 1.5rem;
  background: none;
  border: none;
  position: absolute;
  right: 0;
  top: 0;
  color: var(--black);
}

.exit-button {
  position: fixed;
  bottom: var(--gap);
  right: var(--gap);
  background: var(--black);
  color: white;
  text-decoration: none;
  padding: 0.75em 1.5em;
  border-radius: var(--border-radius);
  color: white;
  z-index: 100;
}
.exit-button:hover {
  background-color: var(--transparent-background-color);
  backdrop-filter: blur(var(--transparent-background-blur));
  color: var(--black);
}

.page-footer {
  padding: var(--page-padding);
  background-color: var(--transparent-background-color);
  backdrop-filter: blur(var(--transparent-background-blur));
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: row;
  gap: var(--gap);
  flex-wrap: wrap;
}
.page-footer .left {
  width: calc(40% - var(--gap));
}
.page-footer .right {
  width: calc(60% - var(--gap));
}
.page-footer .title {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "GT Alpina";
  max-width: 27ch;
  display: inline-block;
}
@media only screen and (max-width: 767.98px) {
  .page-footer {
    flex-direction: column;
    padding-bottom: 6em;
  }
  .page-footer .list-2col {
    flex-direction: column;
  }
  .page-footer .left, .page-footer .right {
    width: 100%;
  }
}
.page-footer .links {
  width: 100%;
}
.page-footer .links a {
  display: inline-block;
}
.page-footer .links a + a {
  margin-left: 0.75em;
}
@media only screen and (max-width: 767.98px) {
  .page-footer .links a {
    display: block;
  }
  .page-footer .links a + a {
    margin-left: 0;
    margin-top: 0.2em;
  }
}

summary {
  display: block;
  color: var(--black);
  position: relative;
  cursor: pointer;
  outline: transparent;
  font-weight: bold;
}

details {
  padding: 1em 2em;
  font-weight: normal;
  border-radius: var(--border-radius);
  background: var(--transparent-background-color);
  backdrop-filter: blur(var(--transparent-background-blur));
  margin-bottom: 0.5em;
}

details > summary {
  list-style: none;
}

details > summary::marker,
details > summary::-webkit-details-marker {
  display: none;
}

details[open] > summary:before {
  transform: rotate(45deg);
}

summary:before {
  content: "+";
  opacity: 1;
  color: var(--black);
  position: absolute;
  top: -0.6rem;
  right: 0;
  font-size: 2.5rem;
  font-weight: 200;
  transform: rotate(0deg);
  transition: 0.25s transform ease;
}

details .content {
  padding-top: 1.5em;
}

.overlay {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  z-index: 11;
}
.overlay .overlay-content {
  overflow-y: auto;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: calc(2 * var(--page-padding)) var(--page-padding);
}
.overlay .overlay-content .content-wrapper-8 {
  margin: 0;
}
@media only screen and (max-width: 767.98px) {
  .overlay .overlay-content {
    justify-content: flex-start;
  }
}

.overlay .contact-layout {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 5fr 1fr;
  gap: calc(var(--gap) / 2);
}
@media only screen and (max-width: 767.98px) {
  .overlay .contact-layout {
    display: flex;
    flex-direction: column;
  }
}
.overlay .contact-layout .box-one {
  grid-column: 1;
  grid-row: 1;
}
.overlay .contact-layout .box-two {
  grid-column: 1;
  grid-row: 2;
}
.overlay .contact-layout .box-three {
  text-align: center;
  grid-column: 2;
  grid-row: 1/span 2;
}
.overlay .contact-layout .box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0;
}

.button.close-button {
  display: inline-block;
  position: fixed;
  z-index: 100;
  top: var(--gap);
  right: var(--gap);
  padding: 0;
  border: 0;
}
.button.close-button:hover {
  color: var(--black);
  background: 0;
}

html {
  font-size: 16px;
}
@media only screen and (min-width: 768px) {
  html {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1300px) {
  html {
    font-size: 22px;
  }
}
@media only screen and (min-width: 2400px) {
  html {
    font-size: 24px;
  }
}

p {
  font-size: 1rem;
  line-height: 1.25em;
}
p + p {
  margin-top: 1em;
}

strong, b {
  font-weight: bold;
}

body {
  font-family: "Source Sans 3", sans-serif;
  font-size: 1rem;
  min-height: 100vh;
  color: var(--black);
}

main {
  padding: var(--page-padding);
  padding-top: calc(4 * var(--page-padding));
}
@media only screen and (max-width: 767.98px) {
  main {
    padding-top: calc(3 * var(--page-padding));
  }
}

a {
  color: var(--black);
  font-weight: normal;
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
}

h1, h2, h3, h4 {
  font-weight: bold;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  line-height: 1.1;
}

h1 {
  font-family: "GT Alpina";
  font-weight: bold;
  font-size: 3.5rem;
  letter-spacing: -0.02em;
  hyphens: manual;
}
@media only screen and (max-width: 767.98px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-family: "GT Alpina";
  font-weight: bold;
}

h2, h3 {
  font-family: "GT Alpina";
  font-weight: bold;
  font-size: 1.7rem;
}

h4 {
  font-weight: bold;
  font-size: 1.25rem;
}

#background {
  background: #ccc;
  background-image: radial-gradient(circle at 100% 100%, #d35e41 20%, rgba(255, 255, 255, 0.5)), radial-gradient(circle at 0 0%, #b6f8ff 20%, rgba(255, 255, 255, 0.5));
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}

.center {
  text-align: center;
}

.button {
  cursor: pointer;
  font-size: 1rem;
  display: inline-block;
  background: transparent;
  text-decoration: none;
  padding: 0.75em 1.5em;
  border-radius: var(--border-radius);
  color: var(--black);
  border: 1px solid var(--black);
  border-radius: var(--border-radius);
}
.button:hover {
  background: var(--black);
  color: white;
}

.special-button {
  font-size: 1rem;
  display: inline-block;
  border: 1px solid var(--black);
  border-radius: var(--border-radius);
  text-decoration: none;
  padding: 1.5em 1.5em;
  font-weight: normal;
  text-align: center;
  display: fleX;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.special-button > * {
  margin: 0;
  text-decoration: none;
}
.special-button:hover {
  background: var(--black);
  color: white;
  text-decoration: none;
}

.list-2col {
  display: flex;
  flex-direction: row;
  gap: calc(var(--gap) / 2);
  margin: 1em 0;
}
.list-2col li {
  width: 50%;
}

.list-3col {
  display: flex;
  flex-direction: row;
  gap: calc(var(--gap) / 2);
  margin: 1em 0;
}
.list-3col li {
  width: 30%;
}

.thumb {
  background: var(--transparent-background-color);
  backdrop-filter: blur(var(--transparent-background-blur));
  border-radius: var(--border-radius);
  width: 100%;
  aspect-ratio: 4/5;
  margin-bottom: 1em;
  overflow: hidden;
  cursor: pointer;
}
.thumb img  {
  object-fit: cover;
  width: 100%;
  height: auto;
}
.thumb img.pdf-thumbnail,
.thumb img.wp-post-image {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}
.thumb:hover {
  opacity: 0.8;
}

.box {
  padding: 1em 2em;
  font-weight: normal;
  border-radius: var(--border-radius);
  background: var(--transparent-background-color);
  backdrop-filter: blur(var(--transparent-background-blur));
  margin-bottom: 0.5em;
  text-align: left;
}
.box.hollow {
  background: transparent;
  backdrop-filter: none;
  border: 1px solid white;
}

.download-list {
  text-align: left;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(var(--gap) * 2);
  margin: 2em 0;
}
@media only screen and (max-width: 767.98px) {
  .download-list {
    grid-template-columns: repeat(1, 1fr);
    gap: calc(var(--gap) / 2);
  }
  .download-list h4, .download-list p {
    hyphens: auto;
  }
}
.download-list p {
  font-size: var(--font-size-small);
}

.event-list {
  text-align: left;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(var(--gap) * 2);
  margin: 2em 0;
}
@media only screen and (max-width: 767.98px) {
  .event-list {
    grid-template-columns: repeat(1, 1fr);
    gap: calc(var(--gap) / 2);
  }
  .event-list h4, .event-list p {
    hyphens: auto;
  }
}
.event-list p {
  font-size: var(--font-size-small);
}

.download-events {
  grid-template-columns: repeat(2, 1fr);
  display: grid;
  gap: calc(var(--gap) * 2);
}
@media only screen and (max-width: 1199.97px) {
  .download-events {
    grid-template-columns: repeat(1, 1fr);
  }
}
.download-events ul {
  hyphens: auto;
  margin-top: var(--gap);
  display: grid;
  gap: calc(var(--gap));
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 767.98px) {
  .download-events ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.download-events p {
  font-size: var(--font-size-small);
}

.q-a {
  display: flex;
  flex-direction: column;
}
.q-a .q, .q-a .a {
  display: inline-block;
  padding: 0.5em 1em;
  background: transparent;
  border-radius: var(--border-radius-alt);
  max-width: 70%;
  width: fit-content;
  margin: 0.5em;
  position: relative;
}
.q-a .q:before, .q-a .a:before {
  content: "Q";
  width: 2em;
  height: 2em;
  border-radius: 100%;
  background: black;
  color: white;
  position: absolute;
  left: -3em;
  bottom: 0;
  display: flex;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  line-height: 0.95;
}
.q-a .q > *, .q-a .a > * {
  font-size: 1rem;
}
.q-a .q > ul, .q-a .a > ul {
  margin: 1em 0;
}
.q-a .q > ul li, .q-a .a > ul li {
  text-align: left;
  padding-left: 2em;
  position: relative;
  margin-bottom: 0.5em;
}
.q-a .q > ul li:before, .q-a .a > ul li:before {
  content: "→";
  font-family: "Source Sans 3";
  font-size: 1.2em;
  font-weight: 200;
  position: absolute;
  left: 0.5em;
  top: 0;
}
.q-a .q {
  border: 1px solid var(--black);
  margin-left: 3em;
  font-weight: bold;
}
.q-a .a {
  align-self: flex-end;
  text-align: left;
  border: 0;
  background: var(--transparent-background-color);
  backdrop-filter: blur(var(--transparent-background-blur));
  margin-right: 3em;
  border-radius: var(--border-radius);
}
.q-a .a:before {
  content: "A";
  background: var(--transparent-background-color);
  backdrop-filter: blur(var(--transparent-background-blur));
  color: var(--black);
  left: unset;
  right: -3em;
}

.timeline {
  display: flex;
  flex-direction: row;
  font-size: 0.8rem;
  line-height: 1.3;
  margin: 2em 0;
}
.timeline li {
  width: 25%;
  padding-top: 2em;
  position: relative;
  padding-right: 2em;
  margin-bottom: 2em;
}
.timeline li:before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  right: 0;
  width: 100%;
  border-top: 1px solid var(--black);
}
.timeline li:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1em;
  border-left: 1px solid var(--black);
}
@media only screen and (max-width: 767.98px) {
  .timeline {
    flex-direction: column;
  }
  .timeline li {
    width: 100%;
  }
}

.arrow-list,
.wp-block-list {
  margin: 2em 0;
}
.arrow-list li,
.wp-block-list li {
  text-align: left;
  padding-left: 2em;
  position: relative;
  margin-bottom: 0.5em;
}
.arrow-list li:before,
.wp-block-list li:before {
  content: "→";
  font-family: "Source Sans 3";
  font-size: 1.2em;
  font-weight: 200;
  position: absolute;
  left: 0;
  top: 0;
}

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