:root {
  /* Font variables */
  --font-family-hand: "ff-providence-sans-web-pro", sans-serif;
  --font-family-copy: "freight-sans-pro", sans-serif;
  --font-family-condensed: "oso-sans-condensed", sans-serif;
  /* Color variables */
  --color-text: #333;
  --color-link: #333;
  --color-link-hover: #0d66a7;
  /* Breakpoint variables */
  --mobile: 640px;
  --tablet: 768px;
  --laptop: 1024px;
  --desktop: 1280px;
  --large-desktop: 1440px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  transition: ease-in-out 0.2s;
}

ul {
  list-style: none;
}

b {
  font-weight: 500;
}

body {
  font-family: var(--font-family-copy);
  font-weight: 400;
}

div.wrapper {
  position: absolute;
  height: 100vh;
  width: 100vw;
  margin: 0;
  overflow: hidden;
}

div.logo {
  position: absolute;
  top: 4rem;
  width: 20%;
  right: 50%;
  transform: translateX(50%);
}
div.logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.2));
}

.popup {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
  padding: 3rem 3rem 10rem;
  border-radius: 6px;
  color: #333;
  text-align: left;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.25;
  z-index: 500;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
  overflow: auto;
}
.popup .close-btn {
  position: sticky;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  background: none;
  border: none;
  font-size: 2rem;
  text-wrap: pretty;
  cursor: pointer;
  padding: 0.5rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  float: right;
  margin: -1.5rem -1.5rem 1rem 1rem;
}
.popup .close-btn:hover {
  background: rgb(255, 255, 255);
}
.popup.animation iframe {
  text-align: center;
  margin: 0 auto 2rem;
  aspect-ratio: 16/9;
  width: 100% !important;
  height: auto !important;
}
.popup.exhibitions ul {
  margin-bottom: 2rem;
}
.popup.contact p {
  font-family: var(--font-family-copy);
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.popup.contact input[type=text], .popup.contact input[type=email], .popup.contact textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: var(--font-family-copy);
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.2s ease-in-out;
}
.popup.contact input[type=text]:focus, .popup.contact input[type=email]:focus, .popup.contact textarea:focus {
  outline: none;
  border-color: var(--color-link-hover);
  box-shadow: 0 0 5px rgba(13, 102, 167, 0.2);
}
.popup.contact textarea {
  height: 150px;
  resize: vertical;
}
.popup.contact button[type=submit] {
  display: block;
  padding: 0.75rem 2rem;
  background-color: var(--color-text);
  color: white;
  border: none;
  border-radius: 4px;
  font-family: var(--font-family-copy);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.popup.contact button[type=submit]:hover {
  background-color: var(--color-link-hover);
}
.popup.contact .hidden {
  display: none;
}
.popup h2 {
  font-family: var(--font-family-condensed);
  margin-bottom: 2rem;
  font-size: 2rem;
}
.popup h4 {
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: 0.1rem;
  margin-bottom: 0.5rem;
}
.popup p {
  margin-bottom: 2rem;
  font-size: 1.25rem;
}
.popup p:last-child {
  margin-bottom: 0;
}
.popup hr {
  margin-bottom: 2rem;
}
.popup a:link, .popup a:visited {
  color: var(--color-link);
}
.popup a:hover, .popup a:active {
  color: var(--color-link-hover);
}
.popup span.publication {
  font-style: italic;
  font-weight: 500;
}
.popup ul {
  list-style: none;
}
.popup ul:last-child {
  margin-bottom: 0;
}
.popup ul li {
  margin-bottom: 0.5rem;
}
.popup ul li:last-child {
  margin-bottom: 0;
}
.popup figure {
  margin-bottom: 2rem;
}
.popup figure img {
  width: 100%;
  height: auto;
}
.popup figure:last-child {
  margin-bottom: 0;
}

nav {
  position: fixed;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  bottom: 0;
  text-align: center;
  padding: 1rem 1rem;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 1000;
}
nav div {
  display: inline-block;
  margin: 0 1rem 0.5rem;
  text-align: center;
  font-family: var(--font-family-condensed);
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 300;
  text-transform: uppercase;
}
nav div a:link, nav div a:visited {
  color: #fff;
}
nav div a:hover, nav div a:active {
  color: var(--color-link-hover);
}

@media (min-width: 768px) {
  div.logo {
    width: 8%;
    min-width: 100px;
    top: 2rem;
    left: 3rem;
    transform: translateX(0);
  }
  nav {
    padding: 1rem 3rem 1rem;
    background-color: rgba(255, 255, 255, 0.25);
    filter: drop-shadow(0px -10px 10px rgba(0, 0, 0, 0.2));
  }
  nav div {
    font-size: 1.5rem;
    line-height: 1.5;
    margin: 0 1.5rem;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.25);
  }
  nav div a:link, nav div a:visited {
    color: var(--color-link);
  }
  .popup {
    font-size: 1.25rem;
    line-height: 1.25;
    width: auto;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -45%);
    max-height: 71vh;
    padding: 3rem;
  }
  .popup .close-btn {
    display: none;
  }
  .popup h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .popup p {
    margin-bottom: 1rem;
  }
  .popup ul {
    margin-bottom: 1rem;
  }
  .popup li {
    margin-bottom: 1rem;
  }
  .popup.contact {
    width: 40%;
  }
}/*# sourceMappingURL=style.css.map */