@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/******** LANDSCAPE **********/
/******** PORTRAIT **********/
.menu {
  display: none;
}
@media screen and (min-width: 1200px) {
  .menu {
    display: grid;
  }
}
.menu .main-menu {
  display: flex;
  flex: row;
  gap: 3rem;
  font-size: 2.5rem;
  align-self: flex-end;
}
.menu .sub-menu {
  display: flex;
  gap: 0.5rem;
  padding-left: 20rem;
  height: 3rem;
  align-items: center;
}
.menu .sub-menu:lang(en) {
  padding-left: 12rem;
}
.menu a {
  border-bottom: none;
  color: var(--color-text);
}
.menu a[active] {
  color: var(--color-primary);
}

/************** LANGUAGE SWITCHER **************/
.languages {
  display: none;
}
.languages a {
  font-family: var(--font-medium);
  text-transform: lowercase;
  color: var(--color-primary);
  font-size: 1.1rem;
}
.languages .active {
  display: none;
}
@media screen and (min-width: 1200px) {
  .languages {
    display: block;
    padding: 1rem;
  }
}

@media screen and (min-width: 1200px) {
  #hamburger {
    display: none;
  }
}

.icon-wrapper {
  position: absolute;
  top: 1em;
  right: 1em;
  z-index: 2;
  height: 60px;
  width: 60px;
}
.icon-wrapper .nav-icon {
  margin: 10px;
  width: 50px;
  height: 40px;
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.icon-wrapper .nav-icon span {
  background-color: white;
  position: absolute;
  border-radius: 3px;
  width: 100%;
  height: 3px;
  transition-duration: 500ms;
}
.icon-wrapper .nav-icon span:nth-child(1) {
  top: 10px;
  left: 0px;
}
.icon-wrapper .nav-icon span:nth-child(2) {
  top: 20px;
  left: 0px;
  opacity: 1;
}
.icon-wrapper .nav-icon span:nth-child(3) {
  top: 30px;
  left: 0px;
}
.icon-wrapper.fixed {
  position: fixed;
}
.icon-wrapper.black {
  background-color: var(--color-text);
}

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

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

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

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

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

/*** MENU ***/
.blocker {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: " ";
}

.blocker.open {
  display: block;
}

#toggle-menu {
  width: 100vw;
  position: absolute;
  overflow-y: auto;
  top: 6rem;
  right: 0;
  height: auto;
  padding-bottom: 5rem;
  transform: translateY(-100vh);
  height: 0;
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  #toggle-menu {
    transform: translateY(-150vh);
  }
}
#toggle-menu.open {
  transform: translate(0);
  transition: transform 0.4s ease-in-out;
  height: auto;
  background-color: var(--color-primary);
  z-index: 10;
  height: 100vh;
  overflow: scroll;
}
#toggle-menu .mobile-menu {
  padding: 3em 1.5em;
}
@media screen and (min-width: 576px) {
  #toggle-menu .mobile-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
  }
}
#toggle-menu .mobile-menu .main-menu {
  grid-column: 1/2;
  grid-row: 2/3;
}
#toggle-menu .mobile-menu .main-menu > div {
  padding-bottom: 1rem;
}
#toggle-menu .sub-menu {
  display: none;
}
#toggle-menu .languages {
  text-align: right;
}
@media screen and (min-width: 576px) {
  #toggle-menu .languages {
    grid-column: 1/3;
    text-align: start;
    padding-bottom: 2rem;
  }
}
#toggle-menu .footer {
  grid-row: 2/3;
  text-align: right;
}
#toggle-menu .footer,
#toggle-menu .languages {
  display: block;
}
#toggle-menu .footer a,
#toggle-menu .languages a {
  text-transform: uppercase;
  font-family: var(--font-light);
  font-size: 1rem;
  border-bottom: none;
  display: block;
}
#toggle-menu a {
  color: white;
  border-bottom: none;
}
#toggle-menu a.main {
  font-size: 1.5rem;
}

body.block {
  height: 100vh;
  overflow: hidden;
  position: fixed;
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  body.block {
    overflow: auto;
  }
}
@media screen and (min-width: 720px) and (orientation: portrait) {
  body.block {
    position: fixed;
  }
}

/********** default **************/
main {
  padding: 1rem;
  display: grid;
  gap: 1rem;
  grid-auto-rows: min-content;
}
@media screen and (min-width: 720px) and (orientation: portrait) {
  main {
    padding: 2rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  main {
    padding: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  main {
    grid-template-columns: 15% 60% 25%;
    padding: 0 0 5rem;
  }
  main > div {
    grid-column: 2/3;
  }
}
@media screen and (min-width: 1600px) {
  main {
    grid-template-columns: 15% 50% 25%;
  }
}
@media screen and (min-width: 2500px) {
  main {
    grid-column: 2/3;
  }
}
main figure {
  padding-bottom: 1rem;
}
main figure.portrait {
  max-width: 50%;
}
main figure figcaption {
  font-size: 1rem;
  line-height: 1.5;
  text-align: right;
}
main#datenschutz .text-container {
  max-width: calc(100vw - 2rem);
  hyphens: auto;
}
@media screen and (min-width: 576px) {
  main#datenschutz .text-container {
    hyphens: none;
  }
}

.page-template-home {
  background-size: cover;
  animation: fadeIn 2s ease;
  padding: 0 1rem;
}
.page-template-home main {
  height: 100vh;
  justify-items: center;
  grid-auto-rows: unset;
  padding: 1rem 1rem 0;
}
@media screen and (min-width: 720px) and (orientation: portrait) {
  .page-template-home main {
    grid-template-columns: 20% 60% 20%;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-home main {
    grid-template-columns: 20% 60% 20%;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-home main {
    padding: 0;
  }
}
@media screen and (min-width: 1200px) {
  .page-template-home main {
    height: calc(100vh - 2.5rem);
  }
}
.page-template-home .logo {
  align-self: end;
}
@media screen and (min-width: 720px) and (orientation: portrait) {
  .page-template-home .logo {
    grid-column: 2/3;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-home .logo {
    grid-column: 2/3;
  }
}
.page-template-home .logo a {
  color: var(--color-primary);
  font-size: 5rem;
  padding-top: 10vh;
  border-bottom: none;
}
@media screen and (min-width: 360px) {
  .page-template-home .logo a {
    font-size: 7rem;
  }
}
.page-template-home .logo > div {
  width: 200px;
  word-wrap: break-word;
  font-family: var(--font-regular);
  line-height: 0.9;
  text-align: center;
}
@media screen and (min-width: 360px) {
  .page-template-home .logo > div {
    width: 300px;
  }
}
.page-template-home .cards {
  align-self: flex-end;
}
@media screen and (min-width: 720px) and (orientation: portrait) {
  .page-template-home .cards {
    grid-column: 2/3;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-home .cards {
    grid-column: 2/3;
  }
}
@media screen and (min-width: 1200px) {
  .page-template-home .cards {
    position: relative;
    padding-top: 2rem;
  }
}
.page-template-home .cards .card {
  padding: 1rem 1rem 0;
  margin: 1rem 0 0;
  background-color: white;
}
@media screen and (min-width: 1200px) {
  .page-template-home .cards .card {
    width: 25vw;
  }
}
.page-template-home .cards .card > div {
  padding-bottom: 1rem;
}
.page-template-home .cards .card > div p {
  font-family: var(--font-regular);
}
.page-template-home .cards .card.app {
  background-color: var(--color-tertiary);
  color: white;
  font-family: var(--font-regular);
}
@media screen and (min-width: 1200px) {
  .page-template-home .cards .card.app {
    display: none;
  }
}
.page-template-home .cards .card.app > p {
  padding-bottom: 1rem;
}
.page-template-home .cards .card.app a {
  color: white;
  border-bottom: 2px solid white;
}
.page-template-home .bubble {
  display: none;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-home .bubble {
    display: flex;
    height: 13rem;
    width: 13rem;
    background-color: var(--color-tertiary-trans);
    border-radius: 50%;
    position: absolute;
    top: -1rem;
    right: 2rem;
    align-items: center;
  }
}
@media screen and (min-width: 1200px) {
  .page-template-home .bubble {
    height: 15rem;
    width: 15rem;
    right: 5rem;
  }
}
@media screen and (min-width: 2500px) {
  .page-template-home .bubble {
    top: 5rem;
  }
}
.page-template-home .bubble .event-infos {
  font-family: var(--font-semi-bold);
  color: white;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.page-template-home .bubble .event-infos .yellow {
  color: yellow;
}
.page-template-home footer {
  display: none;
}
@media screen and (min-width: 1200px) {
  .page-template-home footer {
    display: block;
  }
}
.page-template-home footer > div {
  display: none;
}

.page-template-city-walk main {
  display: grid;
}
@media screen and (min-width: 1200px) {
  .page-template-city-walk main {
    padding: 0;
    grid-template-columns: 60% 40%;
    gap: 1rem;
  }
}
@media screen and (min-width: 1600px) {
  .page-template-city-walk main {
    padding: 0;
    grid-template-columns: 60% 40%;
    gap: 1rem;
  }
}
.page-template-city-walk main .map-container {
  margin: -2rem -1rem 1rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-city-walk main .map-container {
    grid-column: 1/2;
    margin: 0;
    width: 100%;
    position: relative;
    padding: 0 !important;
  }
}
@media screen and (min-width: 1200px) {
  .page-template-city-walk main .map-container {
    height: calc(100vh - 12.5rem);
  }
}
.page-template-city-walk main .map-container a {
  border-bottom: none;
}
.page-template-city-walk main > .explanation details[open] .info {
  padding-bottom: 1rem !important;
}
@media screen and (min-width: 720px) and (orientation: portrait) {
  .page-template-city-walk main > .explanation {
    display: block;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-city-walk main > .explanation {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .page-template-city-walk main > .explanation {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .page-template-city-walk main .content {
    height: calc(100vh - 12.5rem);
    overflow: scroll;
    padding-right: 3rem;
  }
}
.page-template-city-walk main .content > .explanation {
  display: none;
}
@media screen and (min-width: 1200px) {
  .page-template-city-walk main .content > .explanation {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .page-template-city-walk main .content .show-tracks {
    display: none;
  }
}
.page-template-city-walk main .content .audios {
  display: none;
  padding-bottom: 5rem;
  padding-top: 2rem;
}
@media screen and (min-width: 1200px) {
  .page-template-city-walk main .content .audios {
    display: grid;
    padding-top: 1rem;
  }
}
.page-template-city-walk main .content .audios.open {
  display: grid;
}
.page-template-city-walk main .content .audios .map-item details {
  color: var(--color-primary);
}
.page-template-city-walk main .content .audios .map-item details summary {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.page-template-city-walk main .content .audios .map-item details summary > div:first-of-type {
  padding-right: 1rem;
}
.page-template-city-walk main .content .audios .map-item details summary > div:last-of-type {
  min-width: 4rem;
}
.page-template-city-walk main .content .audios .map-item details summary .headline {
  font-family: var(--font-medium);
  display: inline;
}
.page-template-city-walk main .content .audios .map-item details summary .address {
  font-size: 1.1rem;
}
.page-template-city-walk main .content .audios .map-item details summary .play-icon.hide {
  opacity: 0;
}
.page-template-city-walk main .content .audios .map-item details summary a {
  border-bottom: none;
}
.page-template-city-walk main .content .audios .map-item details summary img {
  width: 24px;
  padding-top: 4px;
  padding-right: 4px;
}
.page-template-city-walk main .content .audios .map-item details .marker {
  height: 20px;
  width: 20px;
  line-height: 20px;
  color: var(--color-primary);
  margin-right: 0.2rem;
}
.page-template-city-walk main .content .audios .map-item details div.nav-link {
  padding: 1rem 0;
}
.page-template-city-walk main .content .audios .map-item details .audio {
  padding: 1rem 0;
  margin: 0 -1rem;
}
@media screen and (min-width: 400px) {
  .page-template-city-walk main .content .audios .map-item details .audio {
    margin: 0;
  }
}
@media screen and (min-width: 720px) and (orientation: portrait) {
  .page-template-city-walk main .content .audios .map-item details .audio {
    width: 50%;
    margin: 0;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-city-walk main .content .audios .map-item details .audio {
    width: 50%;
    margin: 0;
  }
}
@media screen and (min-width: 1200px) {
  .page-template-city-walk main .content .audios .map-item details .audio {
    width: 100%;
  }
}
@media screen and (min-width: 1800px) {
  .page-template-city-walk main .content .audios .map-item details .audio {
    width: 70%;
  }
}
.page-template-city-walk main .content .audios .map-item details[open] summary {
  color: var(--color-secondary);
}
.page-template-city-walk main .content .audios .map-item details[open] summary .marker {
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}
.page-template-city-walk main .content .audios .map-item p {
  display: inline;
}
.page-template-city-walk main .content .track-list.open {
  display: none;
}
@media screen and (min-width: 720px) and (orientation: portrait) {
  .page-template-city-walk {
    height: calc(100vh - 10rem);
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-city-walk {
    height: calc(100vh - 10rem);
  }
}

.page-template-track .sub-menu a {
  border-bottom: none;
  color: var(--color-text);
  padding-right: 0.3rem;
  font-family: var(--font-regular);
}
.page-template-track .sub-menu a .marker {
  border: 2px solid var(--color-text);
  height: 27px;
  width: 27px;
  line-height: 27px;
}
.page-template-track .sub-menu a[active] {
  color: var(--color-primary);
}
.page-template-track .sub-menu a[active] .marker {
  border: 2px solid var(--color-primary);
}
.page-template-track main {
  padding-top: 0;
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  .page-template-track main {
    padding-top: 1rem;
  }
}
@media screen and (min-width: 720px) and (orientation: portrait) {
  .page-template-track main {
    padding-top: 1rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-track main {
    grid-template-columns: 70% 30%;
    row-gap: 1rem;
  }
}
@media screen and (min-width: 1200px) {
  .page-template-track main {
    grid-template-columns: 15% 60% 25%;
    padding: 0 0 6rem;
  }
}
@media screen and (min-width: 1400px) {
  .page-template-track main {
    grid-template-columns: 15% 50% 25%;
  }
}
.page-template-track main > div {
  max-width: calc(100vw - 2rem);
  white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
  white-space: -pre-wrap; /* Opera 4-6 */
  white-space: -o-pre-wrap; /* Opera 7 */
  word-wrap: break-word;
}
.page-template-track main .main-col {
  gap: 1rem;
  display: grid;
  grid-auto-rows: min-content;
  order: 1;
}
@media screen and (min-width: 720px) and (orientation: portrait) {
  .page-template-track main .main-col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  .page-template-track main .main-col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 720px) and (orientation: portrait) {
  .page-template-track main .main-col {
    gap: 2rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-track main .main-col {
    gap: 2rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-track main .main-col {
    grid-column: 1/3;
    padding-right: 1rem;
  }
}
@media screen and (min-width: 1200px) {
  .page-template-track main .main-col {
    grid-column: 2/3;
  }
}
@media screen and (min-width: 2500px) {
  .page-template-track main .main-col {
    grid-column: 1/3;
  }
}
.page-template-track main .main-col .sub-menu {
  display: block;
  order: 2;
  line-height: 2;
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  .page-template-track main .main-col .sub-menu {
    grid-column: 1/3;
  }
}
@media screen and (min-width: 720px) and (orientation: portrait) {
  .page-template-track main .main-col .sub-menu {
    grid-column: 1/3;
  }
}
@media screen and (min-width: 1200px) {
  .page-template-track main .main-col .sub-menu {
    display: none;
  }
}
.page-template-track main .main-col .sub-menu .marker {
  height: 25px;
  width: 25px;
  line-height: 25px;
  margin-right: 0.3rem;
}
.page-template-track main .main-col .back-link {
  order: 1;
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  .page-template-track main .main-col .back-link {
    grid-column: 1/3;
  }
}
@media screen and (min-width: 720px) and (orientation: portrait) {
  .page-template-track main .main-col .back-link {
    grid-column: 1/3;
  }
}
.page-template-track main .main-col .audio {
  margin: 0 -1rem;
  order: 4;
}
@media screen and (min-width: 400px) {
  .page-template-track main .main-col .audio {
    margin: 0;
  }
}
@media screen and (min-width: 720px) and (orientation: portrait) {
  .page-template-track main .main-col .audio {
    grid-column: 1/2;
    height: 10rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-track main .main-col .audio {
    grid-column: 1/2;
    height: 10rem;
  }
}
.page-template-track main .main-col .map {
  height: 10rem;
  order: 3;
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  .page-template-track main .main-col .map {
    order: 4;
  }
}
@media screen and (min-width: 720px) and (orientation: portrait) {
  .page-template-track main .main-col .map {
    order: 4;
  }
}
@media screen and (min-width: 720px) and (orientation: portrait) {
  .page-template-track main .main-col .map {
    display: block;
    grid-column: 2/3;
    position: relative;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-track main .main-col .map {
    display: block;
    grid-column: 2/3;
    position: relative;
  }
}
.page-template-track main .main-col .map #map {
  margin: 0 -1rem;
  height: 100%;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-track main .main-col .map #map {
    margin: 0;
  }
}
.page-template-track main .track-content {
  order: 2;
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  .page-template-track main .track-content {
    padding: 2rem 2rem 0 0;
  }
}
@media screen and (min-width: 720px) and (orientation: portrait) {
  .page-template-track main .track-content {
    padding: 2rem 2rem 0 0;
  }
}
.page-template-track main .track-content .track-number {
  color: var(--color-primary);
}
.page-template-track main .track-content .infos p {
  display: inline;
}
.page-template-track main .track-content h2 {
  color: var(--color-primary);
}
.page-template-track main .side-col {
  position: relative;
  order: 3;
}
@media screen and (min-width: 1200px) {
  .page-template-track main .side-col {
    grid-column: 3/4;
    grid-row: 1/3;
    padding-right: 2rem;
    display: grid;
  }
}
@media screen and (min-width: 1800px) {
  .page-template-track main .side-col {
    padding-right: 6rem;
  }
}
@media screen and (min-width: 2500px) {
  .page-template-track main .side-col {
    padding-right: 0;
  }
}
@media screen and (min-width: 1200px) {
  .page-template-track main .side-col .literature {
    position: fixed;
    overflow-y: scroll;
    height: calc(100vh - 20rem);
    padding-bottom: 10rem;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    max-width: 25vw;
  }
  .page-template-track main .side-col .literature::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .page-template-track main .side-col .literature {
    padding-top: 2rem;
  }
}
.page-template-track main .side-col .literature h4 {
  padding-bottom: 1rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-track main .side-col .literature > div {
    width: 80%;
  }
}
.page-template-track main .side-col a {
  border-bottom: none;
}
.page-template-track main .nav-link {
  order: 4;
}
@media screen and (min-width: 1200px) {
  .page-template-track main .nav-link {
    grid-column: 2/3;
  }
}

@media screen and (min-width: 1400px) {
  .page-template-texts main {
    grid-template-columns: 15% 50% 25%;
  }
  .page-template-texts main > div {
    grid-column: 2/3;
  }
}
.page-template-texts main .text-list {
  max-width: 800px;
}
.page-template-texts main h1 {
  color: var(--color-secondary);
  font-family: var(--font-semi-bold);
  font-size: 1.2rem;
}
.page-template-texts main p {
  padding-top: 1rem;
}
.page-template-texts main .literature p {
  font-family: var(--font-medium);
  font-size: 0.9rem;
  padding: 1rem 2rem;
}
.page-template-texts main .literature p a {
  color: var(--color-text);
  border-bottom: 2px solid var(--color-text);
}
.page-template-texts main .text-item {
  padding-bottom: 2rem;
}
@media screen and (min-width: 1200px) {
  .page-template-texts main .text-item {
    padding-bottom: 4rem;
  }
}
.page-template-texts main .text-item a {
  color: var(--color-tertiary);
  border-bottom: 2px solid var(--color-tertiary);
}
.page-template-texts main .text-item h2 {
  font-family: var(--font-extra-light);
  color: var(--color-primary);
  font-size: 1.5rem;
  line-height: 1.2;
  padding: 0.5rem 0;
}
@media screen and (min-width: 576px) {
  .page-template-texts main .text-item h2 {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1600px) {
  .page-template-events main {
    grid-template-columns: 15% 60% 25%;
  }
  .page-template-events main > div {
    grid-column: 2/3;
  }
}
.page-template-events main .event {
  padding-top: 2rem;
  display: grid;
  gap: 1rem;
}
.page-template-events main .event .title-img {
  margin: 0 -1rem;
}
@media screen and (min-width: 720px) and (orientation: portrait) {
  .page-template-events main .event .title-img {
    margin: 0;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-events main .event .title-img {
    margin: 0;
  }
}
@media screen and (min-width: 720px) and (orientation: portrait) {
  .page-template-events main .event .content.has-img {
    grid-column: 2/5;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-events main .event .content.has-img {
    grid-column: 2/5;
  }
}
.page-template-events main .event .content .dates {
  color: var(--color-primary);
  font-family: var(--font-semi-bold);
}
.page-template-events main .event .content h3 {
  color: var(--color-secondary);
}
.page-template-events main .event .content p {
  padding-top: 0.5rem;
}
.page-template-events main .event .content .infos {
  font-size: 0.9rem;
  font-family: var(--font-regular);
  padding: 1rem;
}

#map {
  height: calc(90vh - 12rem);
  transition: all 0.4s ease-in-out;
}
#map.list-open {
  height: calc(50vh - 6rem);
  transition: all 0.4s ease-in-out;
}
@media screen and (min-width: 720px) and (orientation: portrait) {
  #map {
    height: calc(50vh - 6rem);
    margin: 0;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  #map {
    height: calc(50vh - 6rem);
    margin: 0;
  }
}
@media screen and (min-width: 1200px) {
  #map {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
}
#map a {
  border-bottom: none;
}

.marker {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  background-color: white;
  text-align: center;
  display: inline-block;
}
.marker > div {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-family: var(--font-regular);
}

.mapboxgl-popup-content {
  font-family: var(--font-light);
  font-size: 1rem;
  padding: 0;
  max-width: 20rem;
}
.mapboxgl-popup-content a {
  color: var(--color-primary);
}
.mapboxgl-popup-content span {
  font-size: 1.1rem;
  padding-top: 0;
  font-family: var(--font-medium);
}
.mapboxgl-popup-content p {
  padding-bottom: 0.5rem;
}
.mapboxgl-popup-content > div {
  padding: 1rem;
}
.mapboxgl-popup-content .address > * {
  display: inline;
}

#map-modal {
  z-index: 30;
}

.modal {
  display: none;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* Enable scroll if needed */
}

#modal-content {
  background-color: var(--color-background);
  opacity: 0.8;
  padding: 5rem 2rem 2rem 2rem;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
  margin: 0;
  position: relative;
  z-index: 30;
  overflow-y: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
#modal-content::-webkit-scrollbar {
  display: none;
}

/* The Close Button */
.close {
  position: absolute;
  color: black;
  top: 0;
  right: 1rem;
  font-size: 5rem;
  line-height: 0.8;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@font-face {
  font-family: "Regular";
  src: url("../fonts/Outfit-Regular.woff") format("woff");
}
@font-face {
  font-family: "Light";
  src: url("../fonts/Outfit-Light.woff") format("woff");
}
@font-face {
  font-family: "ExtraLight";
  src: url("../fonts/Outfit-ExtraLight.woff") format("woff");
}
@font-face {
  font-family: "Medium";
  font-weight: 500;
  src: url("../fonts/Outfit-Medium.woff") format("woff");
}
@font-face {
  font-family: "Bold";
  src: url("../fonts/Outfit-Bold.woff") format("woff");
}
@font-face {
  font-family: "SemiBold";
  src: url("../fonts/Outfit-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Black";
  src: url("../fonts/Outfit-Black.woff") format("woff");
}
:root {
  --color-text: #3c3e53;
  --color-primary: rgb(255, 81, 67);
  --color-secondary: rgb(139, 41, 57);
  --color-tertiary: rgb(205, 15, 93);
  --color-tertiary-trans: rgb(205, 15, 93, 0.7);
  --color-green: #496c5b;
  --color-grey: rgb(187, 189, 201);
  --color-player-bg: #ebecee;
  --font-extra-light: "ExtraLight", sans-serif;
  --font-light: "Light", sans-serif;
  --font-regular: "Regular", sans-serif;
  --font-medium: "Medium", sans-serif;
  --font-semi-bold: "SemiBold", serif;
  --font-bold: "Bold", sans-serif;
}

* {
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-light);
  color: var(--color-text);
  position: relative;
  min-height: 100vh;
  font-size: 1.2rem;
  line-height: 1.5;
}
@media screen and (min-width: 2500px) {
  body {
    display: grid;
    grid-template-columns: 20% 60% 20%;
    width: 100vw;
  }
}

h1 {
  font-family: var(--font-extra-light);
  color: var(--color-primary);
  font-size: 2rem;
  line-height: 1.2;
  padding: 0.5rem 0;
}

h2 {
  font-size: 1.7rem;
}

h2,
h3 {
  padding-top: 1rem;
}

h3 {
  font-family: var(--font-semi-bold);
  color: var(--color-primary);
  font-size: 1.2rem;
  padding-bottom: 0.5rem;
}

h4 {
  color: var(--color-primary);
  font-size: 1rem;
  padding: 0.5rem 0;
  text-transform: uppercase;
}

h6 {
  font-size: 1rem;
}

p {
  padding-bottom: 1rem;
  max-width: 800px;
}

ul {
  padding-left: 1rem;
}

a {
  text-decoration: none;
  color: var(--color-tertiary);
  border-bottom: 2px solid var(--color-tertiary);
}
a.nav-link {
  font-family: var(--font-semi-bold);
  font-size: 1rem;
  cursor: pointer;
}
@media screen and (min-width: 720px) and (orientation: portrait) {
  a.nav-link {
    margin: 1rem 0;
  }
}

sup.footnote a {
  border-bottom: none;
  font-family: var(--font-bold);
}
sup.footnote:hover .tooltiptext {
  visibility: visible;
}

.tooltiptext {
  visibility: hidden;
  font-size: 1rem;
  text-align: center;
  padding: 1rem 1rem;
  color: var(--color-tertiary);
  background-color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  position: absolute;
  z-index: 1;
}

.footnotes {
  padding-top: 2rem;
}
.footnotes a {
  border-bottom: none;
  font-family: var(--font-bold);
  color: var(--color-text);
}
.footnotes span {
  float: left;
  padding-right: 0.5rem;
  color: var(--color-tertiary);
}
.footnotes li::marker {
  float: left;
  padding-right: 0.5rem;
  color: var(--color-primary);
  font-family: var(--font-bold);
}
.footnotes ol {
  list-style-type: none;
}

.small {
  font-family: var(--font-medium);
  font-size: 1rem;
  padding-bottom: 1rem;
}

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

#btt {
  opacity: 0;
}

div.nav-link {
  cursor: pointer;
  padding: 0;
}
@media screen and (min-width: 1200px) {
  div.nav-link {
    padding: 1rem 0;
  }
}
div.nav-link span {
  font-family: var(--font-semi-bold);
  font-size: 1rem;
  color: var(--color-tertiary);
  border-bottom: 2px solid var(--color-tertiary);
  cursor: pointer;
}

details {
  padding: 0.5rem 0;
}
details summary {
  list-style: none;
  cursor: pointer;
}
details summary span {
  font-family: "SemiBold", serif;
  font-size: 1rem;
  color: var(--color-tertiary);
  border-bottom: 2px solid var(--color-tertiary);
}
details summary::-webkit-details-marker {
  display: none;
}

img {
  width: 100%;
}

.literature {
  font-family: var(--font-medium);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-green);
}

/************** HEADER **************/
header {
  display: grid;
  position: relative;
  width: 100vw;
  background-color: var(--color-primary);
  z-index: 11;
}
@media screen and (min-width: 1200px) {
  header {
    grid-template-columns: 15% 70% 15%;
    background-color: white;
    height: 10rem;
  }
}
@media screen and (min-width: 2500px) {
  header {
    width: auto;
    grid-column: 2/4;
  }
}
header a {
  border-bottom: none;
}
header nav {
  height: 100%;
}
@media screen and (min-width: 1800px) {
  header .languages {
    padding-right: 6rem;
    text-align: right;
  }
}

.logo:not(.page-template-home .logo) {
  width: 6rem;
  cursor: pointer;
  padding-left: 1rem;
  z-index: 11;
  padding-top: 0.5rem;
}
@media screen and (min-width: 1200px) {
  .logo:not(.page-template-home .logo) {
    width: 10rem;
  }
}
@media screen and (min-width: 2500px) {
  .logo:not(.page-template-home .logo) {
    padding-left: 0;
  }
}
.logo:not(.page-template-home .logo) .st0 {
  fill: white;
}
@media screen and (min-width: 1200px) {
  .logo:not(.page-template-home .logo) .st0 {
    fill: var(--color-primary);
  }
}
.logo:not(.page-template-home .logo) .st1 {
  fill: var(--color-primary);
}
@media screen and (min-width: 1200px) {
  .logo:not(.page-template-home .logo) .st1 {
    fill: white;
  }
}
.logo:not(.page-template-home .logo) svg {
  width: 100%;
  box-sizing: border-box;
}

/************** AUDIO **************/
.only-map {
  display: none;
}
.only-map.open {
  display: inline-block;
}

.audio {
  height: 10rem;
  max-width: 400px;
}
@media screen and (min-width: 720px) and (orientation: portrait) {
  .audio {
    max-width: unset;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .audio {
    max-width: unset;
  }
}
.audio .audio-player {
  height: 10rem;
  background-color: var(--color-player-bg);
  --sound-button-width: 3em;
  --space: 0.5em;
}
.audio .audio-player .controls {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  gap: 1rem;
  padding: 2rem;
}
.audio .audio-player .controls .player-button {
  grid-column: 1/2;
  text-align: center;
}
.audio .audio-player .controls .player-button button {
  width: 3.5rem;
  height: 3.5rem;
}
.audio .audio-player .controls .sound-button {
  grid-column: 2/3;
}
.audio .audio-player .controls .sound-button button {
  width: 3rem;
  height: 3rem;
}
.audio .audio-player .controls button {
  cursor: pointer;
  background-color: transparent;
  border: 0;
  padding: 0;
}
.audio .audio-player .controls .time-range {
  grid-column: 1/3;
  width: 100%;
  gap: 0.5rem;
  position: relative;
  display: grid;
  grid-template-columns: 25% 50% 25%;
}
.audio .audio-player .controls .time-range > * {
  font-family: var(--font-regular);
  color: var(--color-text);
  text-align: center;
}
.audio .audio-player .controls .time-range .playing-time {
  left: 0;
}
@media screen and (min-width: 1200px) {
  .audio .audio-player .controls .time-range .playing-time {
    left: 1rem;
  }
}
.audio .audio-player .controls .time-range .total-time {
  right: 1rem;
}
.audio .audio-player .controls .time-range .timeline {
  -webkit-appearance: none;
  height: 0.75em;
  background-color: var(--color-secondary);
  background-size: 0% 100%;
  background-image: linear-gradient(var(--color-primary), var(--color-primary));
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
}
.audio .audio-player .controls .time-range .timeline::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 1em;
  height: 1em;
  cursor: pointer;
  opacity: 1;
  transition: all 0.1s;
  background-color: black;
}
.audio .audio-player .controls .time-range .timeline::-moz-range-thumb {
  -webkit-appearance: none;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  border: 2px solid white;
  cursor: pointer;
  opacity: 0;
  transition: all 0.1s;
  background-color: black;
}
.audio .audio-player .controls .time-range .timeline::-moz-range-thumb {
  appearance: none;
  width: 1em;
  height: 1em;
  cursor: pointer;
  opacity: 1;
  transition: all 0.1s;
  background-color: black;
}
.audio .audio-player .controls .time-range .timeline::-webkit-slider-thumb:hover {
  background-color: var(--color-primary);
}
.audio .audio-player .controls .time-range .timeline:hover::-webkit-slider-thumb {
  opacity: 1;
}
.audio .audio-player .controls .time-range .timeline:hover::-moz-range-thumb {
  opacity: 1;
}
.audio .audio-player .controls .time-range .timeline:hover::-ms-thumb {
  opacity: 1;
}
.audio .audio-player .controls .time-range .timeline::-moz-range-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

.audio-icon {
  width: 90%;
  height: 90%;
}

/************** FOOTER **************/
footer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background-color: var(--color-primary);
  height: 2.5rem;
  justify-content: center;
}
@media screen and (min-width: 1200px) {
  footer {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
  footer > div {
    align-self: center;
  }
}
footer a {
  color: white;
  font-family: var(--font-regular);
  text-transform: uppercase;
  border-bottom: none;
}

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