/**
* Color Primary
*/
/**
* Color Neutral
*/
header {
  padding: 24px;
  border-bottom: 1px solid #1a1a1a;
  top: -100px;
  transition: top 0.25s ease-in-out;
  width: calc(100% - 48px);
  background-color: white;
}
header.sticky {
  position: fixed;
  top: 0;
  z-index: 10;
}
header nav {
  max-width: 87.5em;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav .logo {
  width: 96px;
}
@media (min-width: 60em) {
  header nav .logo {
    width: 148px;
  }
}
header nav ul {
  display: none;
  list-style: none;
}
@media (min-width: 60em) {
  header nav ul {
    display: flex;
    gap: 1.25rem;
  }
  header nav ul li a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.125rem;
  }
  header nav ul li a:hover, header nav ul li a.active {
    color: #999999;
    transition: color 0.25s ease-in-out;
  }
}
header nav #hamburger {
  color: #1a1a1a;
  padding: 0;
}
@media (min-width: 60em) {
  header nav #hamburger {
    display: none;
  }
}

aside#sidebar {
  position: fixed;
  background: white;
  height: 100%;
  z-index: 20;
  top: 0;
  width: 15rem;
  transform: translateX(-18rem);
  transition: transform 0.25s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 24px;
  left: 0;
}
aside#sidebar ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
}
aside#sidebar ul li.nav-item-sm a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  display: block;
  font-size: 0.875rem;
}
aside#sidebar ul li.nav-item-sm a:hover, aside#sidebar ul li.nav-item-sm a.active {
  color: #999999;
  transition: color 0.25s ease-in-out;
}

aside#sidebar.open {
  transform: translateX(0);
}

footer {
  display: flex;
  padding: 24px;
  border-top: 1px solid #1a1a1a;
  justify-content: space-between;
  font-size: 0.875rem;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 60em) {
  footer {
    padding: 80px 120px;
    flex-direction: row;
    gap: 0;
  }
}
footer .footer-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  letter-spacing: 1.5px;
}
footer .footer-item .address {
  color: #999999;
}
footer .footer-item .social-media {
  text-align: right;
}
footer .footer-item .social-media a {
  color: #000000;
}

/**
* Color Primary
*/
/**
* Color Neutral
*/
.home-figure p.fig-caption {
  font-family: "Marcellus";
  padding: 12px;
  font-size: 0.875px;
}
@media (min-width: 60em) {
  .home-figure p.fig-caption {
    font-size: 16px;
    padding: 24px;
  }
}

/**
* Color Primary
*/
/**
* Color Neutral
*/
section#search {
  padding-top: 64px;
  padding-bottom: 64px;
}
section#search .form-group {
  margin-top: 12px;
  margin-bottom: 12px;
}
section#search .form-group button {
  padding-left: 12px;
  padding-right: 12px;
}
section#search .form-control {
  padding-top: 14px;
  padding-bottom: 14px;
}
@media (min-width: 60em) {
  section#search .form-control {
    width: auto;
  }
}
section#search .suggestion-container {
  display: flex;
  gap: 0.5rem;
}
section#search .suggestion-container a {
  color: #000000;
  transition: color 0.25s ease-in-out;
}
section#search .suggestion-container a:hover, section#search .suggestion-container a.active {
  color: #999999;
}

/**
* Color Primary
*/
/**
* Color Neutral
*/
section#artist-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 1.5rem;
  column-gap: 3rem;
}
@media (min-width: 40em) {
  section#artist-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 60em) {
  section#artist-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
section#artist-container .artist-item img {
  width: 100%;
  margin-bottom: 0.25rem;
  height: 250px;
  object-fit: cover;
}
section#artist-container .artist-item a {
  font-weight: 600;
  color: #1a1a1a;
  transition: color 0.25s ease-in-out;
}
section#artist-container .artist-item a:hover {
  color: #999999;
}

#exhibited-artist {
  background-color: #000000;
  color: white;
  padding-top: 48px;
  padding-bottom: 48px;
}
#exhibited-artist .title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 36px;
}
#exhibited-artist .exhibited-artist-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
  justify-content: space-between;
}
@media (min-width: 40em) {
  #exhibited-artist .exhibited-artist-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 60em) {
  #exhibited-artist .exhibited-artist-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
#exhibited-artist .exhibited-artist-container a {
  color: white;
  font-weight: 600;
}

/**
* Color Primary
*/
/**
* Color Neutral
*/
.border-b-gray-200 {
  border-bottom: 1px solid #e6e6e6;
}

.section-title {
  font-family: "MabryPro";
  font-size: 1.75rem;
  margin-bottom: 24px;
  text-transform: uppercase;
}

#artist-container {
  padding-top: 24px;
  padding-bottom: 24px;
}
#artist-container #profile {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  flex-direction: column;
}
#artist-container #profile .img-container {
  max-width: 500px;
}
#artist-container #profile .img-container img {
  width: 100%;
}
@media (min-width: 60em) {
  #artist-container #profile {
    flex-direction: row;
  }
}
#artist-container #profile .biography-container {
  width: 100%;
}
@media (min-width: 60em) {
  #artist-container #profile .biography-container {
    width: 75%;
  }
}
#artist-container #profile .biography-container .biography {
  position: relative;
  max-height: 350px;
  overflow: hidden;
  margin-bottom: 8px;
  font-size: 1.25rem;
  transition: max-height 0.5s ease-in-out;
}
#artist-container #profile .biography-container .biography.open {
  max-height: 9999px;
}
#artist-container #profile .biography-container .biography .blurry-effect {
  position: absolute;
  bottom: 0;
  width: 100%;
}
#artist-container #profile .biography-container .biography .blurry-effect .gradient {
  height: 50px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0, #fff 100%);
}
#artist-container #profile .biography-container #show-more {
  color: #000000;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}
#artist-container #profile .biography-container #show-more .icon.rotate {
  rotate: 180deg;
}

#selected-works-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
#selected-works-container img {
  cursor: pointer;
  width: 100%;
  transition: opacity 0.25s ease-in-out;
}
#selected-works-container img:hover {
  opacity: 0.5;
}
@media (min-width: 40em) {
  #selected-works-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 60em) {
  #selected-works-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 87.5em) {
  #selected-works-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

#work-modal {
  position: fixed;
  inset: 0;
  height: 100%;
  z-index: 10;
  background: white;
  padding: 24px;
}
#work-modal .work-modal-header {
  display: flex;
  justify-content: space-between;
}
#work-modal .work-modal-header a {
  color: #000000;
}
#work-modal .work-modal-body {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
#work-modal .work-modal-body img {
  width: 40%;
  max-height: 600px;
  object-fit: contain;
}
#work-modal .work-modal-body a {
  color: #000000;
  transition: color 0.25s ease-in-out;
}
#work-modal .work-modal-body a:hover {
  color: #999999;
}
#work-modal .work-modal-footer > * {
  font-family: "Marcellus";
}

#exhibition-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 1.5rem;
  column-gap: 2rem;
}
@media (min-width: 40em) {
  #exhibition-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
#exhibition-container .exhibition-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#exhibition-container .exhibition-item img {
  width: 100%;
}
#exhibition-container .exhibition-item .title,
#exhibition-container .exhibition-item .sub-title {
  font-size: 1rem;
  color: #000000;
}
#exhibition-container .exhibition-item .date,
#exhibition-container .exhibition-item .location {
  font-size: 0.875rem;
}

#more-exhibition-container {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 24px;
}
#more-exhibition-container #more-exhibition {
  border: 1px solid #e6e6e6;
  padding: 0.825rem;
  color: #b3b3b3;
}
#more-exhibition-container #more-exhibition:hover {
  background-color: #ffffff;
  transition: background-color 0.25s ease-in-out;
}

#press {
  background-color: #000000;
  color: white;
}
#press .container > .title {
  margin-bottom: 24px;
  font-size: 16px;
}
#press .press-container {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
#press .press-container .press-item {
  display: flex;
  gap: 1rem;
  font-size: 1rem;
  align-items: center;
}
#press .press-container .press-item p:nth-child(2) {
  flex-grow: 1;
}
#press .press-container .press-item a > img {
  width: 24px;
}

/**
* Color Primary
*/
/**
* Color Neutral
*/
#more-exhibition.colored {
  color: #4d4d4d !important;
  border: 1px solid #4d4d4d !important;
}

section#name .date,
section#name .location {
  font-size: 12px;
  margin-bottom: 0.275rem;
}
section#name .title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.275rem;
}
section#name img.cover {
  width: 100%;
  margin-top: 1rem;
}

section#images .fig img {
  width: 100%;
  margin: 1rem 0;
}
section#images .fig p {
  font-weight: 400;
  font-family: "Marcellus";
}

section#text .section-title {
  font-family: "Marcellus";
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
section#text p {
  margin-bottom: 0.5rem;
}

/**
* Color Primary
*/
/**
* Color Neutral
*/
#contact .contact-desc {
  margin-bottom: 0.5rem;
  font-weight: 400;
}

#location .container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 60em) {
  #location .container {
    grid-template-columns: repeat(2, 1fr);
  }
}
#location .location-info > * {
  margin-bottom: 0.5rem;
}

/**
* Color Primary
*/
/**
* Color Neutral
*/
.interview-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-direction: column;
}
@media (min-width: 40em) {
  .interview-item {
    flex-direction: row;
    align-items: center;
  }
}
.interview-item video {
  width: 300px;
}
.interview-item .desc-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.interview-item .desc-box .title,
.interview-item .desc-box .sub-title {
  font-weight: 600;
  color: #1a1a1a;
}
.interview-item .desc-box .date,
.interview-item .desc-box .location {
  font-size: 12px;
}

#interview-detail video {
  width: 100%;
  margin-bottom: 1rem;
}
#interview-detail .title,
#interview-detail .sub-title {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
#interview-detail .date,
#interview-detail .location {
  margin-bottom: 0.5rem;
  font-size: 12px;
}

/**
* Color Primary
*/
/**
* Color Neutral
*/
#collection-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 1.5rem;
  column-gap: 2rem;
}
@media (min-width: 40em) {
  #collection-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 60em) {
  #collection-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
#collection-container .collection-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#collection-container .collection-item img {
  width: 100%;
}
#collection-container .collection-item .title,
#collection-container .collection-item .sub-title {
  font-weight: 600;
  font-size: 14px;
  color: #000000;
}
#collection-container .collection-item .date,
#collection-container .collection-item .location {
  font-size: 12px;
}

@font-face {
  font-family: "Marcellus";
  src: url("../fonts/Marcellus-Regular.ttf") format("truetype");
}
#page-navigation {
  border-bottom: 1px solid #000000;
  padding: 24px;
  display: flex;
  gap: 1rem;
  flex-direction: row;
  overflow: auto;
  top: -100px;
  z-index: 10;
  background-color: white;
  width: calc(100% - 48px);
  transition: top 0.25s ease-in-out;
}
#page-navigation.sticky {
  position: fixed;
  top: 96px;
  z-index: 10;
  border-top: 1px solid black;
}
#page-navigation a {
  color: #000000;
  transition: color 0.25s ease-in-out;
  text-transform: uppercase;
  font-size: 1.125rem;
  white-space: nowrap;
}
#page-navigation a:hover, #page-navigation a[data-active] {
  color: #999999;
}

/* Hide scrollbar for Chrome, Safari and Opera */
#page-navigation::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
#page-navigation {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

@font-face {
  font-family: "TT-Norms";
  src: url("../fonts/TTNorms-Regular.otf") format("opentype"), url("../fonts/TTNorms-Italic.otf") format("opentype"), url("../fonts/TTNorms-Medium.otf") format("opentype"), url("../fonts/TTNorms-MediumItalic.otf") format("opentype"), url("../fonts/TTNorms-Light.otf") format("opentype"), url("../fonts/TTNorms-LightItalic.otf") format("opentype"), url("../fonts/TTNorms-BoldItalic.otf") format("opentype"), url("../fonts/TTNorms-Bold.otf") format("opentype");
}
@font-face {
  font-family: "MabryPro";
  src: url("../fonts/MabryPro-Regular.ttf") format("truetype"), url("../fonts/MabryPro-Italic.ttf") format("truetype"), url("../fonts/MabryPro-Medium.ttf") format("truetype"), url("../fonts/MabryPro-MediumItalic.ttf") format("truetype"), url("../fonts/MabryPro-Light.ttf") format("truetype"), url("../fonts/MabryPro-LightItalic.ttf") format("truetype"), url("../fonts/MabryPro-BoldItalic.ttf") format("truetype"), url("../fonts/MabryPro-Bold.ttf") format("truetype");
}
html,
body {
  min-height: 100vh;
}

html {
  scroll-behavior: smooth;
}

* {
  font-family: "MabryPro";
  margin: 0;
}

a {
  text-decoration: none;
}

.container {
  margin: 0 auto;
  padding: 24px;
}
@media (min-width: 28em) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 40em) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 60em) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 87.5em) {
  .container {
    max-width: 1280px;
  }
}

.hide {
  display: none !important;
}

.backdrop {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.backdrop.open {
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s ease-in-out;
}

.form-control {
  padding: 0.5rem;
  border-radius: 0;
  border: 1px solid #4d4d4d;
  width: 100%;
}

.form-group {
  display: flex;
  width: 100%;
}
.form-group button {
  background-color: white;
  color: #000000;
  border: 1px solid #4d4d4d;
  border-left: none;
  cursor: pointer;
  letter-spacing: 1.5px;
}
.form-group button:hover, .form-group button:active {
  background-color: #000000;
  color: white;
  transition: all 0.25s ease-in-out;
}

.row {
  display: flex;
}

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