@import url("https://fonts.googleapis.com/css2?family=PT+Serif:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap");
:root {
  --zb-dunkelblau: rgb(77,107,140);
  --zb-blau: rgb(120,165,215);
  --zb-rot: rgb(170,74,67);
  --zb-braun: rgb(153,122,115);
  --zb-dunkelbraun: rgb(112,98,99);
  --zb-dunkelgrau: #575757;
  --zb-grau: #797979;
  --primary: #4d6b8c;
  --secondary: #9b9b9b;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --font-family-sans-serif: "Roboto", sans-serif;
  --font-family-serif: "PT Serif", serif;
  --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
}

a {
  cursor: pointer;
  color: var(--zb-blau);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

html {
  font-size: 20px;
}

body {
  margin: 0;
  font-family: var(--font-family-serif);
  font-weight: 400;
  line-height: 1.5;
  color: var(--zb-dunkelgrau);
  text-align: left;
  background-color: white;
}

#menu-header {
  display: flex;
  position: fixed;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin: 0 auto;
  padding: 40px 50px;
  width: calc(100vw - 100px);
  background-color: #ffffff;
}
#menu-header.opaque {
  opacity: 0.9;
}
#menu-header.scrolledUp {
  transform: translate3d(0, 0, 0);
  -wekbit-transform: translate3d(0, 0, 0);
  transition-duration: 750ms;
}
#menu-header.scrolledDown {
  transform: translate3d(0, -300px, 0) !important;
  -wekbit-transform: translate3d(0, -300px, 0) !important;
  transition-duration: 1400ms;
  top: -300px !important;
}

.menu-tabs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0 20px;
  margin: 0 0 -5px 0;
}
.menu-tabs.mobile {
  flex-direction: column;
  margin: 25px;
  gap: 20px;
}
.menu-mobile {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  height: 100vh;
  width: 100vw;
  background-color: white;
}
.menu-mobile-container {
  display: none;
  z-index: 2;
  color: var(--zb-blau);
}

#mobile-menu-icon {
  width: 22px;
  height: 17px;
  right: 0;
  transform: rotate(0);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
#mobile-menu-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 22px;
  border: 0;
  background-color: var(--zb-blau);
  opacity: 1;
  left: 0;
  transform: rotate(0);
  transition: 0.25s ease-in-out;
}
#mobile-menu-icon span:nth-child(1) {
  top: 0;
  transform-origin: left center;
}
#mobile-menu-icon span:nth-child(2) {
  top: 8px;
  transform-origin: left center;
}
#mobile-menu-icon span:nth-child(3) {
  top: 16px;
  transform-origin: left center;
}
#mobile-menu-icon.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 0;
  left: 5px;
}
#mobile-menu-icon.open span:nth-child(2) {
  opacity: 0;
}
#mobile-menu-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 15px;
  left: 5px;
}

#logo {
  max-height: 50px;
}

#main {
  margin: 0 auto;
  padding: 130px 0 0 0;
}

section {
  display: flex;
  min-height: -moz-min-content;
  min-height: min-content;
  padding: 200px 50px;
}
section:nth-child(odd) {
  background-color: #faf6ef;
}
section.top {
  min-height: calc(100vh - 130px);
}

.section-content {
  max-width: 1200px;
  margin: auto;
}

/* sections */
#home {
  min-height: calc(100vh - 130px);
  padding: 0;
  background-image: url(../img/canstockphoto1550523.JPG);
  background-size: cover;
  background-size: 100% calc(100vh - 130px);
  background-position: center bottom;
  background-repeat: no-repeat;
}
#home .section-content {
  margin: 5vh auto;
}

#feedback .landingpage-section--intro {
  max-width: none;
}

#info {
  min-height: calc(100vh - 100px);
  padding: 0;
}
#info .video-wrapper {
  margin: 100px auto;
  padding: 0;
  width: 560px;
  height: 315px;
}

#detektiiif-info {
  padding-top: 0;
  padding-bottom: 0;
}

#detektiiif-logo img {
  width: 30%;
  padding-left: 70%;
  margin-bottom: 2%;
}

#detektiiif-chrome ol li,
#detektiiif-firefox ol li,
#detektiiif-walkthrough ol li {
  padding: 2% 0;
}
#detektiiif-chrome img,
#detektiiif-firefox img,
#detektiiif-walkthrough img {
  margin: 0;
  width: 100%;
}
#detektiiif-chrome .larger-img,
#detektiiif-firefox .larger-img,
#detektiiif-walkthrough .larger-img {
  width: 75%;
}
#detektiiif-chrome .small-img,
#detektiiif-firefox .small-img,
#detektiiif-walkthrough .small-img {
  padding: 0;
}
#detektiiif-chrome .small-img img,
#detektiiif-firefox .small-img img,
#detektiiif-walkthrough .small-img img {
  margin: 2% 0;
  height: 55px;
  width: 45%;
}
#detektiiif-chrome .smaller-img,
#detektiiif-firefox .smaller-img,
#detektiiif-walkthrough .smaller-img {
  width: 60%;
  padding-top: 1%;
  padding-bottom: 1%;
}
#detektiiif-chrome .smaller-img.one_third,
#detektiiif-firefox .smaller-img.one_third,
#detektiiif-walkthrough .smaller-img.one_third {
  display: inline-block;
  width: 30%;
}
#detektiiif-chrome .smaller-img.one_third img,
#detektiiif-firefox .smaller-img.one_third img,
#detektiiif-walkthrough .smaller-img.one_third img {
  margin: 0;
}

#about .landingpage-section--intro {
  max-width: 80%;
}

/* button */
button {
  font-family: var(--font-family-serif);
  font-size: 1.1em;
  min-width: 150px;
  background-color: #faf6ef;
  color: var(--zb-grau);
  border: none;
  border-radius: 5px;
  box-shadow: 2px 4px 10px 6px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}
button:hover {
  background-color: var(--zb-dunkelblau);
  color: #ffffff;
}
button.inverse {
  background-color: var(--zb-dunkelblau);
  color: #ffffff;
}
button.inverse:hover {
  color: var(--zb-grau);
  background-color: #faf6ef;
}
button.mirador-viewer-link {
  background-image: url(../img/IIIFMiradorViewer-306x281.svg);
  background-size: 1.5em;
  background-position: 0.5em 0.3em;
  background-repeat: no-repeat;
  padding: 0.3em 0.6em 0.31em 2.5em;
  position: absolute;
  bottom: 3em;
  left: calc(50vw - 5em);
}
button.detektiiif-download {
  background-size: 1.5em;
  background-position: 10px 6px;
  background-repeat: no-repeat;
  padding: 0.3em 0.6em 0.31em 2.5em;
}
button.detektiiif-download.chrome {
  background-image: url(../img/logo_chrome.svg);
  background-position: 0.4em 0.25em;
}
button.detektiiif-download.firefox {
  background-image: url(../img/logo_firefox.svg);
  background-position: 0.4em 0.15em;
}
button.guidance-link {
  display: block;
  margin: 100px auto 25px;
  padding: 7px 23px 9px;
}

.toplink {
  margin-top: 20%;
  margin-left: 5%;
}

.info-link {
  height: -moz-min-content;
  height: min-content;
  width: -moz-min-content;
  width: min-content;
  padding: 20px;
  position: absolute;
  bottom: 0;
  left: calc(50vw - 54px);
}

.landingpage-section--intro {
  max-width: 80%;
  text-align: center;
  margin: auto;
}
.landingpage-section--intro.preposition {
  font-size: 1.33rem;
}
.landingpage-section--intro img {
  display: block;
  margin: 100px auto 0;
  height: 50px;
}
.landingpage-section--container {
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: space-around;
}
.landingpage-section--container-item {
  text-align: center;
  min-width: 32%;
}
.landingpage-section--container-item h3 {
  min-height: 2em;
  margin: 0.5em 0 1em;
}
.landingpage-section--container-item img {
  max-width: 150px;
}

.lookout-section--container, .emanuscripta-section--container {
  text-align: center;
}
.lookout-section--container-item, .emanuscripta-section--container-item {
  max-width: 400px;
  margin: 0 auto;
}
.lookout-section--container-item img, .emanuscripta-section--container-item img {
  opacity: 0.25;
}

.emanuscripta-section--container-item {
  max-width: 470px;
}
.emanuscripta-section--container-item img {
  height: 50px;
  margin: 100px auto 50px;
  opacity: 1;
}

.detektiiif-section--download-items {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 25px;
  margin-bottom: 100px;
}

footer {
  text-align: center;
  background-color: #ffffff;
  padding: 20px 0;
}
footer .partner-links {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: space-around;
  flex-wrap: nowrap;
  margin: 0 0 50px 0;
}
footer .partner-links img {
  height: 60px;
}
footer .logo {
  max-width: 220px;
  margin-top: 20px;
  margin-bottom: 10px;
}
footer .logo.seige {
  max-width: 250px;
}
footer .logo:last-child {
  margin-bottom: 30px;
}

.padding7, .cc-window.padding7 {
  padding: 7px;
}

.cc-compliance {
  display: inline-block;
  float: right;
}

.cc-btn {
  padding: 2px 5px;
}

.cc-invisible {
  display: none;
}

#tutorials {
  padding-top: 0%;
}
#tutorials .section-content {
  width: 80%;
}
#tutorials h2 {
  margin: 0;
  font-size: inherit;
  min-height: 3em;
}

#zb-tutorials,
#detektiiif-tutorial {
  display: flex;
  gap: 5%;
  flex-wrap: wrap;
  justify-items: start;
  width: 100%;
}
#zb-tutorials .tutorial,
#detektiiif-tutorial .tutorial {
  width: 40%;
  margin: 0 0 2em;
}
#zb-tutorials .tutorial p,
#detektiiif-tutorial .tutorial p {
  text-align: center;
  margin-bottom: 7%;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  margin: 0 0 2em 0;
  height: 0;
  overflow: hidden;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#detektiiif-tutorial {
  margin-top: 20%;
}

/*  
    media queries
*/
@media screen and (max-width: 1440px) {
  .landingpage-section--intro.preposition {
    font-size: 1.03rem;
  }
}
@media screen and (max-width: 1280px) and (max-height: 600px) {
  #home {
    background-size: 100% 80vh;
  }
  #info .section-content {
    margin: 50px auto 0;
  }
}
@media screen and (max-width: 1024px) {
  :root {
    font-size: 19px;
  }
  section {
    padding: 0 20px;
  }
  section#home {
    background-size: cover;
    min-height: 100vh;
  }
  #zb-tutorials .tutorial,
  #detektiiif-tutorial .tutorial {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  :root {
    font-size: 18px;
  }
  .menu-tabs {
    display: none;
  }
  .menu-tabs.mobile {
    display: flex;
  }
  .menu-mobile.open {
    display: block;
  }
  .menu-mobile-container {
    display: block;
  }
  #mobile-menu-icon {
    display: inline-block;
  }
  section {
    min-height: inherit;
    padding: 100px 20px;
  }
  .landingpage-section--container {
    flex-direction: column;
    gap: 100px;
    margin: 50px 0 0 0;
  }
  footer .partner-links {
    justify-content: center;
    flex-flow: column;
    gap: 50px;
  }
  footer .partner-links img {
    height: 50px;
  }
}
@media screen and (max-width: 600px) {
  .menu-tabs {
    flex-direction: column;
    gap: 4px 0;
    margin: 0;
    text-align: left;
  }
  #menu-header {
    padding: 1em;
    width: calc(100vw - 2em);
  }
  #detektiiif-chrome .smaller-img.one_third {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  :root {
    font-size: 16px;
  }
  .landingpage-section--intro.preposition {
    font-size: 1rem;
  }
  #info .video-wrapper {
    width: auto;
  }
}
@media screen and (max-width: 400px) {
  :root {
    font-size: 14px;
  }
}
@media screen and (orientation: landscape) and (max-height: 350px) {
  #menu-header {
    padding: 10px;
  }
  #main {
    padding: 70px 0 0 0;
  }
}
@media screen and (max-height: 570px) {
  #home {
    background-image: none;
  }
}/*# sourceMappingURL=onepager.css.map */