[data-tooltip]:before {
  /* needed - do not touch */
  content: attr(data-tooltip);
  position: absolute;
  opacity: 0;
  /* customizable */
  transition: all 0.15s ease;
  padding: 10px;
  color: #333;
  border-radius: 10px;
  box-shadow: 2px 2px 1px silver;
}

[data-tooltip]:hover:before {
  /* needed - do not touch */
  opacity: 1;
  /* customizable */
  background: yellow;
  margin-top: -50px;
  margin-left: 20px;
}

[data-tooltip]:not([data-tooltip-persistent]):before {
  pointer-events: none;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-family: Roboto, sans-serif;
}

a {
  text-decoration: none;
}

body {
  background-color: #333;
  font-size: 18px;
}

nav {
  display: block;
  width: calc(100vw - 0px);
  position: fixed;
  z-index: 10;
  transition: transform 0.25s ease;
}
@media screen and (max-width: 500px) {
  nav.scroll-active {
    transform: translateY(-55px);
  }
}
nav #info-header {
  background-color: #333;
  color: #f0f0f0;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
nav #info-header .title {
  color: inherit;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 200;
}
@media screen and (max-width: 650px) {
  nav #info-header .title {
    font-size: 25px;
  }
}
@media screen and (max-width: 500px) {
  nav #info-header .title {
    font-size: 15px;
  }
}
@media screen and (max-width: 375px) {
  nav #info-header .title {
    font-size: 14px;
  }
}
nav #info-header .fill {
  flex-grow: 1;
}
nav #info-header .contact {
  color: #f4f4f4;
  border-color: #f4f4f4;
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: color 0.25s, border-color 0.25s;
}
nav #info-header .contact:not(:last-child) {
  margin-right: 40px;
}
@media screen and (max-width: 1150px) {
  nav #info-header .contact:not(:last-child) {
    margin-right: 20px;
  }
  nav #info-header .contact .text {
    display: none;
  }
}
nav #info-header .contact:hover {
  color: #eab840;
  border-color: #eab840;
}
nav #info-header .contact .icon {
  margin-right: 5px;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-width: 1px;
  border-style: solid;
  border-color: inherit;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav #info-header .contact .text {
  margin-left: 5px;
  padding-left: 5px;
  border-color: inherit;
  border-left-width: 1px;
  border-style: solid;
  font-size: 14px;
  font-weight: 200;
}
nav #nav-header {
  border-bottom: 1px solid #333;
  background-color: #f4f4f4;
  color: #333;
  opacity: 0.9;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 500px) {
  nav #nav-header {
    height: initial;
    opacity: 1;
  }
}
nav #nav-header .link {
  display: flex;
  font-size: 18px;
  cursor: pointer;
  margin: 0px 20px;
  transition: border 0.25s linear;
  color: #333;
}
nav #nav-header .link a {
  color: #333;
}
@media screen and (max-width: 500px) {
  nav #nav-header .link {
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    margin: 0px 0px;
    height: 40px;
  }
  nav #nav-header .link a .text, nav #nav-header .link a .icon {
    color: #222 !important;
  }
  nav #nav-header .link:nth-child(1) {
    background-color: #6abdca;
  }
  nav #nav-header .link:nth-child(2) {
    background-color: #64b986;
  }
  nav #nav-header .link:nth-child(3) {
    background-color: #eab840;
  }
  nav #nav-header .link:nth-child(4) {
    background-color: #ee725d;
  }
}
nav #nav-header .link a.info {
  padding-left: 5px;
  color: #eab840;
}
nav #nav-header .link a.info:hover {
  color: #111;
}
@media screen and (max-width: 650px) {
  nav #nav-header .link {
    font-size: 12px;
  }
  nav #nav-header .link .hide {
    display: none;
  }
}
nav #nav-header .link .icon {
  padding-right: 5px;
}
nav #nav-header .link:nth-child(4) .icon {
  color: #6abdca;
}
nav #nav-header .link:nth-child(3) .icon {
  color: #64b986;
}
nav #nav-header .link:nth-child(2) .icon {
  color: #eab840;
}
nav #nav-header .link:nth-child(1) .icon {
  color: #ee725d;
}
nav #nav-header .link:hover:nth-child(4) .text {
  border-top: 2px solid #6abdca;
  border-bottom: 2px solid #6abdca;
}
nav #nav-header .link:hover:nth-child(3) .text {
  border-top: 2px solid #64b986;
  border-bottom: 2px solid #64b986;
}
nav #nav-header .link:hover:nth-child(2) .text {
  border-top: 2px solid #eab840;
  border-bottom: 2px solid #eab840;
}
nav #nav-header .link:hover:nth-child(1) .text {
  border-top: 2px solid #ee725d;
  border-bottom: 2px solid #ee725d;
}

body, html {
  margin: 0;
  padding: 0;
}

body {
  background-size: cover;
}

main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding-top: 130px;
}

.tuerchen {
  width: 22vw;
  height: 22vw;
  border: 1px solid white;
  margin-bottom: 20px;
  border-radius: 2px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.tuerchen .fill {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.25);
}
.tuerchen .tag {
  z-index: 9;
  font-size: 15vw;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Roboto", sans-serif;
  text-shadow: 0px 0px 8px black;
}
.tuerchen .tag:hover {
  color: rgba(255, 255, 255, 0.95);
}
.tuerchen img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  opacity: 0.8;
}
.tuerchen .content {
  display: none;
}
.tuerchen:not(.offen) img {
  display: none;
}

.item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 20;
  background-color: rgba(255, 255, 255, 0.9);
  width: 100vw;
  height: 100vh;
  overflow: auto;
  padding: 20px;
  font-family: "Roboto", sans-serif;
}
.item img {
  object-fit: cover;
  width: 50vw;
}
@media screen and (max-width: 749px) {
  .item img {
    width: 90vw;
  }
}
.item .content p {
  margin-bottom: 10px;
}
.item h1, .item h2, .item h3 {
  font-family: "Playfair Display", serif;
}

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