@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.icon-wrapper {
  top: 0.5rem;
  background-color: var(--color-primary);
  height: 40px;
}
.icon-wrapper .nav-icon {
  margin-left: 10px;
  width: 30px;
  height: 40px;
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.icon-wrapper .nav-icon span {
  background-color: white;
  position: absolute;
  transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  width: 100%;
  height: 5px;
  transition-duration: 500ms;
  left: 0;
}
.icon-wrapper .nav-icon span:nth-child(1) {
  top: 7px;
}
.icon-wrapper .nav-icon span:nth-child(2) {
  top: 17.5px;
}
.icon-wrapper .nav-icon span:nth-child(3) {
  top: 28px;
}
.icon-wrapper .nav-icon.open span {
  top: 18px;
}
.icon-wrapper .nav-icon.open span:nth-child(1) {
  transform: rotate(45deg);
}
.icon-wrapper .nav-icon.open span:nth-child(2) {
  opacity: 0;
}
.icon-wrapper .nav-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
}
.icon-wrapper.fixed {
  position: fixed;
}

/*** MENU ***/
#hamburger {
  position: relative;
  overflow: hidden;
}
#hamburger.open {
  overflow: visible;
}

#toggle-menu {
  position: absolute;
  width: 90vw;
  overflow-y: auto;
  transform: translate(6rem);
  transition: 0.3s ease-in-out;
  z-index: 2;
}
#toggle-menu.open {
  transform: translate(calc((90vw - 6rem) * -1));
}
@media screen and (min-width: 1400px) {
  #toggle-menu {
    transform: translate(calc(6rem + 16.6666666667vw));
    width: 75vw;
  }
  #toggle-menu.open {
    transform: translate(calc((75vw - 6rem) * -1 + 16.6666666667vw));
  }
}
@media screen and (min-width: 1800px) {
  #toggle-menu {
    transform: translate(calc(6rem + 16.6666666667vw));
    width: 60vw;
  }
  #toggle-menu.open {
    transform: translate(calc((60vw - 6rem) * -1 + 16.6666666667vw));
  }
}

.mobile-menu {
  z-index: 2;
}
.mobile-menu .menu-item,
.mobile-menu .sub-menu-item {
  text-align: right;
  background-color: var(--color-primary);
  margin: 0.5rem 0;
  padding: 0.3rem 1rem;
}
@media screen and (min-width: 1200px) {
  .mobile-menu .menu-item.suche,
  .mobile-menu .sub-menu-item.suche {
    display: none !important;
  }
}
.mobile-menu .menu-item.kontakt a, .mobile-menu .menu-item.impressum a, .mobile-menu .menu-item.datenschutz a, .mobile-menu .menu-item.suche a, .mobile-menu .menu-item.language a,
.mobile-menu .sub-menu-item.kontakt a,
.mobile-menu .sub-menu-item.impressum a,
.mobile-menu .sub-menu-item.datenschutz a,
.mobile-menu .sub-menu-item.suche a,
.mobile-menu .sub-menu-item.language a {
  font-family: var(--font-text);
}
.mobile-menu .menu-item.language a,
.mobile-menu .sub-menu-item.language a {
  font-size: 1.5rem;
  text-transform: lowercase;
}
.mobile-menu .menu-item.active,
.mobile-menu .sub-menu-item.active {
  background-color: var(--color-secondary);
}
.mobile-menu .menu-item.active.language,
.mobile-menu .sub-menu-item.active.language {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .mobile-menu .menu-item,
  .mobile-menu .sub-menu-item {
    height: 40px;
    white-space: nowrap;
  }
  .mobile-menu .menu-item .sub-menu-item,
  .mobile-menu .sub-menu-item .sub-menu-item {
    height: 42px;
  }
}
.mobile-menu .languages {
  margin-top: 1.5rem;
}
.mobile-menu summary {
  background-color: var(--color-primary);
  width: 100%;
}
.mobile-menu summary.active {
  background-color: var(--color-secondary);
}
.mobile-menu summary.active > div {
  background-color: var(--color-secondary);
}
.mobile-menu a,
.mobile-menu summary {
  padding-right: calc(6rem - 40px);
  display: block;
  color: white;
  font-family: var(--font-headlines);
  font-size: 1.7rem;
  line-height: 1.1;
  width: 100%;
}
.mobile-menu a:hover,
.mobile-menu summary:hover {
  color: white;
}
@media screen and (min-width: 992px) {
  .mobile-menu a,
  .mobile-menu summary {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1400px) {
  .mobile-menu a,
  .mobile-menu summary {
    padding-right: calc(6rem - 40px + 16.6666666667vw);
  }
}
.mobile-menu .sub-menu-item {
  background-color: var(--color-tertiary);
}
.mobile-menu .sub-menu-item a {
  font-size: 1.5rem;
  font-family: var(--font-text);
}
@media screen and (min-width: 992px) {
  .mobile-menu .sub-menu-item a {
    font-size: 1.7rem;
  }
}
.mobile-menu details {
  margin: 0.5rem 0;
}
.mobile-menu details > summary {
  list-style: none;
}
.mobile-menu details summary::-webkit-details-marker {
  display: none;
}
.mobile-menu details .menu-item {
  margin: 0;
}

body.block {
  height: 100vh;
}

.map-container {
  position: relative;
  margin-top: 1rem;
  height: calc(77vh - 2rem);
  padding: 0 !important;
}
@media screen and (min-width: 768px) {
  .map-container {
    height: calc(100vh - 40px - 4rem);
    width: calc(100% - 1rem);
  }
}
@media screen and (min-width: 992px) {
  .map-container {
    height: calc(100vh - 40px - 2rem);
  }
}

#map {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
#map a {
  border-bottom: none;
}

.marker {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  cursor: pointer;
}
@media screen and (min-width: 1200px) {
  .marker {
    width: 20px;
    height: 20px;
  }
}

.mapboxgl-popup:hover {
  display: block;
}

.mapboxgl-popup-content {
  font-family: var(--font-text);
  font-size: 1rem;
  padding: 0;
}
.mapboxgl-popup-content > div {
  width: 100%;
  height: 100%;
  cursor: pointer;
  padding: 0.5rem 1rem;
}
.mapboxgl-popup-content > div > span {
  font-family: var(--font-bold);
}
.mapboxgl-popup-content .mapboxgl-popup-close-button {
  font-size: 2rem;
  right: 2px;
  top: 5px;
}

#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-transparent);
  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 #image {
  max-height: 50vh;
}
#modal-content #image img {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  #modal-content #image img {
    width: 50%;
  }
}
#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/BeVietnamPro-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Light";
  src: url("../fonts/BeVietnamPro-Light.woff2") format("woff2");
}
@font-face {
  font-family: "Bold";
  src: url("../fonts/BeVietnamPro-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Italic";
  src: url("../fonts/BeVietnamPro-Italic.woff2") format("woff2");
}
@font-face {
  font-family: "Black";
  src: url("../fonts/BeVietnamPro-Black.woff2") format("woff2");
}
@font-face {
  font-family: "Rakkas";
  src: url("../fonts/Rakkas-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Decoration";
  src: url("../fonts/RedactedScript-Bold.woff2") format("woff2");
}
:root {
  --color-text: #000;
  --color-background: #f3f3f1;
  --color-background-transparent: rgb(243, 243, 241, 0.8);
  --color-primary: #c069aa;
  --color-secondary: #a62b79;
  --color-tertiary: #33375b;
  --font-headlines: "Bold", serif;
  --font-text: "Regular", serif;
  --font-light: "Light", serif;
  --font-bold: "Bold", serif;
  --font-italic: "Italic", serif;
}

* {
  margin: 0;
  padding: 0;
}

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

body {
  overflow: hidden;
  font-family: var(--font-text);
  color: var(--color-text);
  animation: fadeIn 1.5s ease;
}

h1 {
  font-family: var(--font-headlines);
}
@media screen and (min-width: 1200px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-family: var(--font-light);
}
@media screen and (min-width: 1200px) {
  h2 {
    font-size: 1.8rem;
  }
}

li {
  list-style: none;
  float: left;
  padding: 1em 3em;
}

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

.pdf-link {
  border-bottom: none !important;
}

/************** HEADER **************/
header {
  position: relative;
  z-index: 3;
  width: 100vw;
  height: 40px;
}
@media screen and (min-width: 768px) {
  header {
    background-color: var(--color-secondary);
  }
}
header a {
  color: white;
  font-family: var(--font-bold);
}
header a:hover {
  color: white;
}
header .logo {
  padding-left: 1rem;
}
header .languages div {
  padding: 0.5rem;
}
header .languages a {
  text-transform: lowercase;
}
header .languages .active {
  display: none;
}
@media screen and (min-width: 1200px) {
  header .languages {
    padding-right: 8.3333333333vw;
  }
}
@media screen and (min-width: 1400px) {
  header .languages {
    padding-right: 16.6666666667vw;
  }
}

.menu {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}
.menu > div {
  margin-top: 0.5rem;
  width: 6rem;
  background-color: var(--color-primary);
  height: 40px;
}
@media screen and (min-width: 1400px) {
  .menu > div {
    width: calc(6rem + 16.6666666667vw);
  }
}
@media screen and (min-width: 768px) {
  .menu {
    top: calc(80px - 0.5rem);
  }
}
.menu > .search-box {
  display: none;
}
@media screen and (min-width: 1400px) {
  .menu > .search-box {
    display: inherit;
  }
  .menu > .search-box .search-form {
    width: 0;
    transition: width 0.3s;
    overflow: hidden;
  }
  .menu > .search-box.active .search-form {
    width: 80%;
    transition: width 0.3s linear;
  }
  .menu > .search-box .search-btn {
    cursor: pointer;
    margin: 5px 10px;
    width: 40px;
  }
  .menu > .search-box .search-btn img {
    height: 100%;
  }
}
.menu .map-box {
  cursor: pointer;
}
.menu .map-box a {
  width: 100%;
  height: 100%;
  display: inherit;
}
.menu .map-box a img {
  padding: 5px 10px;
  height: 100%;
}

@media screen and (min-width: 1600px) {
  main {
    font-size: 1.1rem;
    line-height: 1.6;
  }
}
main strong {
  font-family: var(--font-bold);
}
main em {
  font-family: var(--font-italic);
  font-style: normal;
}

.decoration {
  position: relative;
  font-family: "Rakkas", cursive;
  font-size: 2.5rem;
  line-height: 1.2;
  height: 23vh;
  overflow: hidden;
  padding: 1rem;
  hyphens: auto;
  margin-bottom: 2vh;
}
.decoration:not(main .decoration) {
  margin: 0 0 5vh;
}
.decoration .decoration-term {
  position: relative;
  display: inline-block;
}
.decoration .decoration-term .decoration-overlay {
  position: absolute;
  height: 100%;
  left: 0;
  bottom: -0.5rem;
  color: white;
  font-family: "Decoration";
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: 0.1rem;
  hyphens: auto;
}
@media screen and (min-width: 768px) {
  .decoration .decoration-term .decoration-overlay {
    font-size: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .decoration .decoration-term .decoration-overlay {
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 1400px) {
  .decoration .decoration-term .decoration-overlay {
    font-size: 4.5rem;
  }
}
@media screen and (min-width: 768px) {
  .decoration {
    height: 100%;
    text-align: left;
    padding: 0 1rem;
  }
}
@media screen and (min-width: 992px) {
  .decoration {
    hyphens: none;
  }
}
.decoration span {
  position: relative;
  padding-right: 1rem;
}
@media screen and (min-width: 768px) {
  .decoration {
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 992px) {
  .decoration {
    font-size: 4rem;
  }
}
@media screen and (min-width: 1400px) {
  .decoration {
    font-size: 4.5rem;
  }
}
.decoration .circle {
  position: absolute;
  top: 60vh;
  right: 0;
  background-color: var(--color-primary);
  height: 20vw;
  width: 20vw;
  border-radius: 50%;
  z-index: 2;
}
.decoration .circle > div {
  padding-bottom: 1rem;
  font-family: var(--font-bold);
  font-size: 1.8rem;
}
@media screen and (min-width: 992px) {
  .decoration .circle > div {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1400px) {
  .decoration .circle > div {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .decoration .circle {
    height: 15vw;
    width: 15vw;
    right: 3rem;
  }
}
.decoration .circle:hover {
  background-color: var(--color-secondary);
}

/************** CONTENT **************/
.text-template .content {
  background-color: var(--color-background);
  padding: 1rem;
}
.text-template .content > * {
  padding: 0 1rem;
}
.text-template .content ul {
  padding-left: 2rem;
}

.content {
  padding: 0;
}
.content > p {
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .content > *:not(.text-box):first-of-type {
    padding-right: 6rem;
  }
}
@media screen and (min-width: 992px) {
  .content {
    padding: 0 1rem;
  }
}
.content img {
  max-width: 100%;
}
.content .text-box {
  background-color: var(--color-background);
  padding: 2rem;
  margin-bottom: 2rem;
}
.content .text-box img {
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .content .text-box.glossary {
    padding: 2rem 6rem 2rem 2rem;
  }
  .content .text-box:first-of-type {
    padding-right: 6rem;
  }
}
@media screen and (min-width: 992px) {
  .content .text-box .title-image {
    grid-column: 1/3;
  }
  .content .text-box .text-box-gallery {
    align-self: end;
  }
  .content .text-box.bottom .text-box-gallery {
    column-count: 3;
  }
  .content .text-box.right {
    display: grid;
    justify-content: space-between;
    grid-template-columns: 65% 30%;
  }
  .content .text-box.left {
    display: grid;
    justify-content: space-between;
    grid-template-columns: 30% 65%;
  }
  .content .text-box.left .text-box-gallery {
    order: 2;
  }
  .content .text-box.left .text {
    order: 3;
  }
}
.content .text-block {
  background-color: var(--color-background);
  padding: 2rem;
  margin-bottom: 2rem;
}
.content .video,
.content .audio {
  text-align: left;
  padding: 1rem;
}
.content .video video,
.content .video audio,
.content .audio video,
.content .audio audio {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .content .video video,
  .content .video audio,
  .content .audio video,
  .content .audio audio {
    width: 50%;
  }
}
.content .video > span,
.content .audio > span {
  display: block;
}
@media screen and (min-width: 768px) {
  .content .video,
  .content .audio {
    padding: 2rem;
  }
}
.content .video,
.content figure {
  padding: 0 !important;
}
@media screen and (min-width: 768px) {
  .content .video,
  .content figure {
    padding: 2rem !important;
  }
}
.content iframe {
  width: 100%;
  aspect-ratio: 16/9;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .content iframe {
    padding: 2rem 2rem 0;
  }
}
.content figcaption {
  font-size: 1rem;
  line-height: 1.2em;
  font-weight: 200;
  font-family: var(--font-bold);
  color: black;
  text-align: right;
  width: 100%;
  display: block;
  padding: 0 2rem;
}
.content figcaption .copyright {
  font-family: var(--font-text);
}
.content .image-container {
  position: relative;
}
.content .image-container .image-overlay {
  position: absolute;
  top: 0;
  left: 5%;
  transition: all 2s ease-in-out;
  background-image: url(/assets/img/image-overlay.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  height: 100%;
}
.content .image-container .image-overlay:hover {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.content a {
  border-bottom: solid 1px black;
}
.content ul {
  padding-left: 1rem;
}
.content ul li {
  list-style: disc;
  padding: 0;
  float: none;
}

.gallery-container {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .gallery-container {
    width: 70%;
  }
}
.gallery-container .gallery {
  z-index: 0;
}
.gallery-container .gallery .grid-sizer {
  width: 50%;
}
.gallery-container .gallery .grid-item {
  padding: 0.5rem;
}
@media screen and (min-width: 576px) {
  .gallery-container .gallery .grid-item {
    right: 50%;
  }
  .gallery-container .gallery .grid-item.landscape {
    width: 50%;
  }
  .gallery-container .gallery .grid-item.portrait {
    width: 30%;
  }
}

.pswp__bg {
  background: white !important;
}

.pswp--custom-icon-colors {
  --pswp-icon-color: black !important;
  --pswp-icon-color-secondary: black !important;
}

.pswp__dynamic-caption {
  color: var(--color-text) !important;
}
.pswp__dynamic-caption h1 {
  font-size: 1.3rem;
}

.pswp__dynamic-caption--mobile {
  background: unset !important;
  padding: 10px 30px !important;
}
.pswp__dynamic-caption--mobile h1 {
  font-size: 1rem;
  line-height: 1.2em;
}

.pswp__icn {
  fill: black !important;
  color: white !important;
}

.pswp__counter {
  color: black !important;
  text-shadow: unset !important;
  opacity: 1 !important;
}
@media screen and (min-width: 992px) {
  .pswp__counter {
    padding: 1rem !important;
  }
}

.suche .query {
  color: var(--color-secondary);
  font-family: var(--font-bold);
}

.search-template .search-form {
  padding: 1rem;
}
.search-template input[type=search] {
  border: 2px solid var(--color-secondary);
  padding: 0.5rem;
}
.search-template input[type=submit] {
  border-radius: 50%;
  height: 50px;
  width: 50px;
  background-color: var(--color-primary);
  border: none;
}
.search-template .search-form {
  height: 25vh;
  background-color: var(--color-background);
}

.search-box input[type=search] {
  padding: 5px;
  margin-top: 3px;
  width: 100%;
  height: 100%;
  border: none;
  background-color: white;
}
@media screen and (min-width: 1400px) {
  .search-box .search-form {
    height: 40px;
    padding: 0;
    background-color: unset;
  }
}

input[type=search]:focus {
  outline: solid 2px var(--color-secondary);
}

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