/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Basic type
# Element Defaults
  ## Nav
  ## Structure
  ## Elements
# Page Agnostic Overrides
	## Nav
  ## Structure
  ## Elements
# Page Specific Overrides
  ## Nav
  ## Structure
  ## Elements
# Plugin Specific Overrides
--------------------------------------------------------------*/
@font-face {
  font-family: "Duplicate Sans";
  src: url("../fonts/DuplicateSans-Regular-Web.woff") format("woff");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Duplicate Sans";
  src: url("../fonts/DuplicateSans-Medium-Web.woff") format("woff");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Duplicate Sans";
  src: url("../fonts/DuplicateSans-Bold-Web.woff") format("woff");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Duplicate Sans";
  src: url("../fonts/DuplicateSans-RegularItalic-Web.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Duplicate Sans";
  src: url("../fonts/DuplicateSans-MediumItalic-Web.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Duplicate Sans";
  src: url("../fonts/DuplicateSans-BoldItalic-Web.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
.sans-serif, footer p,
footer a, body {
  font-family: "Duplicate Sans", Arial, sans-serif;
}

.serif, body#artwork main section:first-child .others, body#artwork main section:first-child .caption, body#artwork main section:first-child strong {
  font-family: "Duplicate Sans", Arial, sans-serif;
}

.serif-italic, #events main time {
  font-family: "Duplicate Sans", Arial, sans-serif;
}

:root {
  --type-xxl: 90px;
  --line-height-xxl: 84px;
  --type-xl: 44px;
  --line-height-xl: 50px;
  --type-lg: 34px;
  --line-height-lg: 38px;
  --type-md: 20px;
  --line-height-md: 28px;
  --type-base: 16px;
  --line-height-base: 22px;
  --type-sm: 14px;
  --line-height-sm: 18px;
  --type-xs: 12px;
  --line-height-xs: 16px;
  --pad-big: 40px;
  --pad-md: 20px;
  --pad-sm: 10px;
  --maxwidth-body: 1130px;
  --height-header: 100px;
  --radious-base: 14px;
}

@media (max-width: 414px) {
  :root {
    --type-base: 16px;
    --line-height-base: 20px;
    --type-sm: 14px;
    --line-height-sm: 18px;
  }
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

/*
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Basic Type
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
*/
html, body {
  box-sizing: border-box;
}

body {
  font-size: var(--type-base);
  line-height: var(--line-height-base);
  color: #FF1919;
}

a {
  color: #FF1919;
  text-decoration: none;
  transition: all ease-in 0.2s;
}
a:hover {
  color: #878683;
}

h1, h2, h3, h4 {
  font-weight: normal;
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  letter-spacing: 0.01em;
}

h1 {
  font-size: var(--type-xl);
  line-height: var(--line-height-xl);
}
@media (max-width: 414px) {
  h1 {
    font-size: calc(var(--type-xl) * 0.55);
    line-height: calc(var(--line-height-xl) * 0.8);
  }
}

/* medium type */
h2 {
  font-size: var(--type-base);
  line-height: var(--line-height-base);
  margin-bottom: var(--pad-sm);
}

h3 {
  font-size: var(--type-base);
  line-height: var(--line-height-base);
  text-transform: uppercase;
  text-transform: capitalize;
  letter-spacing: 0;
}

h4 {
  font-size: var(--type-xs);
  line-height: var(--line-height-xs);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-block-start: var(--pad-big);
}

/* normal type */
p {
  font-size: var(--type-md);
  line-height: var(--line-height-md);
  letter-spacing: 0.01em;
  margin-bottom: var(--pad-md);
}
p a {
  color: #FF1919;
}
p a:hover {
  color: #878683;
}

/* small type */
small, #overlay, .small {
  font-size: var(--type-xs);
  line-height: var(--line-height-xs);
}

/*
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Element Defaults
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
*/
body {
  color: #FF1919;
  background-color: #fff;
  overflow-x: hidden;
}

main {
  width: 100vw;
  min-height: calc(100vh - 200px);
}

ul, li {
  list-style-type: none;
}

img {
  width: 100%;
  pointer-events: none;
}

button {
  cursor: pointer;
  box-sizing: border-box;
  background-color: transparent;
  margin: 0em;
  padding: 0;
  border-width: 0;
  border-style: none;
  border-color: transparent;
  border-image: none;
}

header {
  text-align: left;
  margin-top: var(--pad-big);
}
header h1 {
  margin-block-start: 0;
  font-size: var(--type-xl);
  line-height: var(--line-height-xl);
  color: #FF1919;
  font-weight: 700;
  text-transform: capitalize;
}
@media (max-width: 414px) {
  header h1 {
    font-size: var(--type-lg);
    line-height: var(--line-height-lg);
  }
}

.home-filters {
  display: none;
}

nav#desktop-nav {
  height: 156px;
  position: fixed;
  top: 0px;
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 10px 45px 10px 30px;
  align-items: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 100;
  margin: 0 auto;
  border-top: 1px solid #FF1919;
  border-bottom: 1px solid #FF1919;
  background: white;
  align-items: center;
  font-size: var(--type-md);
  transition: all 400ms ease;
}
@media (max-width: 812px) and (orientation: landscape) {
  nav#desktop-nav {
    height: 100px;
  }
}
nav#desktop-nav ul {
  flex: initial;
  width: 50%;
  text-align: right;
}
nav#desktop-nav li {
  display: inline-block;
  padding: 0px var(--pad-sm);
  text-transform: capitalize;
  vertical-align: middle;
}
nav#desktop-nav li:last-of-type {
  padding: 0px 0px 0px var(--pad-sm);
}
nav#desktop-nav li::after {
  content: "";
  padding: 0px var(--pad-sm);
  padding: 0px;
}
nav#desktop-nav li:last-of-type::after {
  content: "";
  padding: 0px;
}
nav#desktop-nav a:hover:not(#logo a:hover) {
  text-decoration: none;
  color: #878683;
}
nav#desktop-nav a[aria-current] {
  text-decoration: none;
  color: #878683;
  transition: all ease-in 0.2s;
}
nav#desktop-nav #logo {
  width: 50%;
}
nav#desktop-nav #logo span {
  display: block;
}
nav#desktop-nav #logo span img {
  width: 420px;
  transition: all 500ms ease;
}
@media (max-width: 812px) and (orientation: landscape) {
  nav#desktop-nav #logo span img {
    width: 280px;
  }
}
nav#desktop-nav #logo a {
  transition: all ease-in 0.2s;
  display: inline-block;
}
@media (max-width: 768px) {
  nav#desktop-nav {
    display: none;
  }
}
nav#desktop-nav.dark {
  color: #000;
}
nav#desktop-nav.dark a {
  color: #000;
}
#desktop-nav.scrolled {
  height: 88px;
  padding: 10px 30px;
}
#desktop-nav.scrolled #logo img {
  width: 200px;
}
#desktop-nav.scrolled .home-filters {
  opacity: 1;
  pointer-events: all;
}

/* mobile nav */
nav#mobile-nav {
  display: none;
  font-size: var(--type-md);
  line-height: var(--line-height-md);
  z-index: 100000;
  position: fixed;
  top: 0px;
  left: 0px;
  height: 150px;
  width: 100vw;
  background: transparent;
  background: linear-gradient(0deg, rgba(101, 45, 144, 0) 0%, rgb(255, 255, 255) 35%);
}
nav#mobile-nav #mobile-logo {
  position: absolute;
  top: var(--pad-md);
  left: 14px;
  z-index: 100;
  width: 280px;
  font-size: var(--type-md);
  line-height: var(--type-md);
}
nav#mobile-nav #mobile-logo a {
  display: block;
}
nav#mobile-nav #mobile-logo a span {
  display: block;
  transition: color 500ms ease;
}
nav#mobile-nav #mobile-logo a span.title {
  color: #000;
}
nav#mobile-nav #mobile-toggle {
  position: absolute;
  top: 22px;
  right: 10px;
  z-index: 1000000;
  transition: all 0.5s ease-out;
  transform-origin: center;
  padding: 10px;
  height: var(--pad-big);
  width: 50px;
}
nav#mobile-nav #mobile-toggle .btn-line {
  width: 30px;
  height: 2px;
  margin: 0 0 6px 0;
  background: #000;
  transition: all 0.5s ease-out;
  transform-origin: center;
}
nav#mobile-nav ul {
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 10;
  padding: 120px var(--pad-big) 120px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
  color: #000;
  overflow-x: hidden;
  overflow-y: scroll;
}
nav#mobile-nav ul a {
  color: #FF1919;
}
nav#mobile-nav ul li {
  text-transform: capitalize;
  padding: 2px 0px 2px;
}
nav#mobile-nav ul li ul#theme-links {
  width: auto;
  height: auto;
  background-color: none;
  position: relative;
  padding: 0px;
  padding-left: 12px;
  opacity: 1;
}
nav#mobile-nav ul hr {
  width: var(--pad-md);
  margin: var(--pad-big) 0px;
}
@media (max-width: 768px) {
  nav#mobile-nav {
    display: block;
  }
  nav#mobile-nav ul {
    padding: 120px var(--pad-md);
  }
}
nav#mobile-nav.black {
  color: #000;
  background: transparent;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 70%);
}
nav#mobile-nav.black #mobile-toggle .btn-line {
  background: #000;
}
nav#mobile-nav.white #mobile-toggle .btn-line {
  background: #000;
}
nav#mobile-nav.active #mobile-toggle {
  transform: rotate(180deg) translateY(3px);
}
nav#mobile-nav.active #mobile-toggle .btn-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
nav#mobile-nav.active #mobile-toggle .btn-line:nth-child(2) {
  opacity: 0;
}
nav#mobile-nav.active #mobile-toggle .btn-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
nav#mobile-nav.active ul {
  opacity: 1;
  pointer-events: all;
}

/* end mobile nav */
figure {
  display: block;
  text-align: center;
}

figcaption {
  font-size: var(--type-sm);
  line-height: var(--line-height-sm);
  text-align: left;
}
figcaption p {
  font-size: var(--type-sm);
  line-height: var(--line-height-sm);
}
figcaption a {
  text-decoration: underline solid 1px;
}
figcaption a:hover {
  text-decoration: none;
}

main {
  display: grid;
  padding: var(--pad-md) var(--pad-big);
  margin: 156px auto 0px;
}
@media (max-width: 1024px) {
  main {
    display: block;
  }
}
@media (max-width: 768px) {
  main {
    padding-top: 160px;
  }
  main #caption {
    display: none;
  }
}
@media (max-width: 414px) {
  main {
    padding-top: 20px;
    max-width: 100vw;
    padding-left: var(--pad-md);
    padding-right: var(--pad-md);
  }
}

footer {
  width: 100%;
  z-index: 100;
  background-color: #fff;
  color: #FF1919;
  border-top: 1px solid #FF1919;
}
footer .wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  column-gap: var(--pad-big);
  padding: var(--pad-md) var(--pad-md);
  max-width: var(--maxwidth-body);
  margin: 0 auto;
}
@media (max-width: 414px) {
  footer .wrapper {
    display: block;
  }
}
footer svg {
  height: var(--pad-big);
  width: auto;
  display: inline-block;
  margin-right: var(--pad-sm);
}
footer svg path {
  fill: #FF1919;
}
footer p,
footer a {
  margin-bottom: 0px;
  color: #FF1919;
  font-size: var(--type-base);
  line-height: var(--line-height-base);
}
footer p {
  font-variation-settings: "wght" 400;
}
footer a {
  border-bottom: none;
}
footer a:hover {
  border-bottom: solid 1px #FF1919;
}
footer .col-1 {
  display: flex;
  flex-direction: row;
}
@media (max-width: 768px) {
  footer {
    display: flex;
    position: relative;
    flex-direction: column;
  }
  footer div {
    margin-bottom: var(--pad-md);
  }
}
@media (max-width: 414px) {
  footer {
    position: relative;
    padding: 0px;
  }
  footer .wrapper {
    display: flex;
    flex-direction: column;
    padding: var(--pad-md);
  }
  footer .wrapper div {
    width: 100%;
    margin-bottom: var(--pad-sm);
    padding-left: 45px;
  }
  footer .wrapper div.col-1 {
    padding-left: 0px;
  }
  footer .wrapper div.col-1 div {
    padding-left: 0px;
  }
}
@media (max-width: 812px) and (orientation: landscape) {
  footer {
    padding: var(--pad-sm);
  }
  footer .wrapper {
    display: block;
    flex-direction: column;
    padding: var(--pad-md);
  }
  footer .wrapper div {
    width: 100%;
    margin-bottom: var(--pad-sm);
    padding-left: 45px;
  }
  footer .wrapper div.col-1 {
    padding-left: 0px;
  }
  footer .wrapper div.col-1 div {
    padding-left: 0px;
  }
}

/*scrollbar*/
/*
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Page Agnostic Overrides
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
*/
a.btn_section {
  font-size: var(--type-lg);
  line-height: var(--line-height-lg);
}
a.btn_section svg {
  margin-bottom: -2px;
}
@media (max-width: 414px) {
  a.btn_section {
    font-size: var(--type-md);
    line-height: var(--line-height-md);
  }
}
a.btn_section:hover {
  border-bottom: solid 1px;
}

a.btn_takeaway { /*h4*/
  font-size: var(--type-xs);
  line-height: var(--line-height-xs);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-block-start: var(--pad-big);
  cursor: pointer;
}
a.btn_takeaway svg {
  top: 2px;
  position: relative;
  margin-right: 4px;
  stroke: #000;
  transition: all ease-in 0.2s;
}
a.btn_takeaway:hover {
  color: #000;
}
a.btn_takeaway:hover svg {
  stroke: #000;
}

/*
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Page Specific Overides
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
*/
#home #desktop-nav {
  max-width: 100vw;
  padding: 10px 30px 10px;
  position: sticky;
}
#home .home-filters {
  box-sizing: border-box;
  width: 50px;
  z-index: 1000000;
  padding: 5px 4px 3px;
  cursor: pointer;
  display: block;
  margin-left: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 500ms ease;
}
#home .home-filters svg {
  width: 100%;
  height: auto;
  color: #FF1919;
}
@media (max-width: 768px) {
  #home .home-filters {
    width: 40px;
    right: 60px;
    position: absolute;
    top: 23px;
  }
}
@media (max-width: 414px) {
  #home .home-filters {
    width: 36px;
    right: 60px;
    position: absolute;
    top: 25px;
  }
}
#home #home-filters:hover {
  background: #FF1919;
}
#home #home-filters:hover svg:hover {
  color: #fff;
}
#home #desktop-nav.show-filter-toggle .home-filters {
  pointer-events: all;
  opacity: 1;
}
@media (max-width: 812px) and (orientation: landscape) {
  #home #desktop-nav.show-filter-toggle .home-filters {
    display: none;
  }
}
#home #intro-text {
  padding-top: 60px;
  width: var(--maxwidth-body);
  max-width: calc(100vw - 80px);
  margin: auto;
  z-index: 0;
}
#home #intro-text .intro-close {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1000;
  cursor: pointer;
}
#home #intro-text .intro-close svg {
  stroke: #FF1919;
}
@media (max-width: 414px) {
  #home #intro-text {
    display: none;
    padding-top: 140px;
    max-width: calc(100vw - 40px);
  }
}
@media (max-width: 812px) and (orientation: landscape) {
  #home #intro-text {
    display: none;
  }
}
#home #intro-text p:first-of-type {
  font-weight: bold;
}
#home #intro-text p {
  font-size: var(--type-xl);
  line-height: var(--line-height-xl);
}
@media (max-width: 768px) {
  #home #intro-text p {
    font-size: var(--type-lg);
    line-height: var(--line-height-lg);
  }
}
@media (max-width: 414px) {
  #home #intro-text p {
    font-size: var(--type-md);
    line-height: var(--line-height-md);
  }
}
#home #intro-text img {
  margin: 20px;
  width: 700px;
  max-width: calc(100% - 40px);
  display: block;
  margin: auto;
}
@media (max-width: 414px) {
  #home #intro-text img {
    display: none;
  }
}
#home #intro-text #intro-images {
  margin: auto;
  padding: 100px 0px 150px;
  width: 900px;
  max-width: calc(100% - 40px);
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1rem; /* spacing between images */
}
#home #intro-text #intro-images img {
  margin: 20px;
}
#home #intro-text #intro-images img:nth-child(odd) {
  justify-self: start;
}
#home #intro-text #intro-images img:nth-child(even) {
  justify-self: end;
}
#home #intro-text #intro-images img:nth-child(1) {
  width: 20%;
  margin-left: 200px;
}
#home #intro-text #intro-images img:nth-child(2) {
  width: 100%;
}
#home #intro-text #intro-images img:nth-child(3) {
  width: 30%;
  margin-left: 90px;
}
#home #intro-text #intro-images img:nth-child(4) {
  width: 70%;
}
@media (max-width: 414px) {
  #home #intro-text #intro-images img, #home #intro-text #intro-images img:nth-child(1), #home #intro-text #intro-images img:nth-child(2), #home #intro-text #intro-images img:nth-child(3), #home #intro-text #intro-images img:nth-child(4) {
    display: block;
    width: 100%;
    margin: 0px 20px;
  }
}
#home #intro-text.hide {
  display: none;
}
#home main#main-home {
  overflow: auto;
  margin-top: 156px;
  margin-top: 0px;
  padding: 0px;
  max-width: 100vw;
}
@media (max-width: 414px) {
  #home main#main-home {
    margin-top: 156px;
    border-top: 1px solid #FF1919;
  }
}
#home main#main-home #filters {
  font-size: var(--type-md);
  line-height: var(--line-height-md);
  border-top: 1px solid #FF1919;
  border-bottom: 1px solid #FF1919;
  padding: var(--pad-md) var(--pad-big) 140px;
  position: fixed;
  top: 156px;
  height: calc(100vh - 155px);
  left: 0px;
  z-index: 10;
  background: white;
  max-height: 100vh;
  overflow: scroll;
  transition: all 500ms ease;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 414px) {
  #home main#main-home #filters {
    font-size: var(--type-sm);
    line-height: var(--line-height-sm);
    padding: 10px 10px 140px;
  }
}
#home main#main-home #filters div {
  display: inline-block;
  border: 2px solid #FF1919;
  color: #FF1919;
  padding: 20px 30px;
  border-radius: 40px;
  margin: 2px 0px;
}
@media (max-width: 414px) {
  #home main#main-home #filters div {
    padding: 5px 8px;
  }
}
#home main#main-home #filters div.filter-field-label {
  background: #FF1919;
  color: #fff;
}
#home main#main-home #filters div#confirm {
  border: none;
  position: fixed;
  bottom: -2px;
  width: 100%;
  display: flex;
  justify-content: center;
  left: 0px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.9) 60%, transparent);
  padding-top: 60px;
}
@media (max-width: 414px) {
  #home main#main-home #filters div#confirm {
    border-radius: 0px;
    background: linear-gradient(0deg, rgb(255, 255, 255) 70%, transparent);
    padding-top: 50px;
    padding-bottom: 15px;
  }
}
#home main#main-home #filters div#confirm div {
  margin: 2px 4px;
}
#home main#main-home #filters div#confirm #clear-all {
  background: #000;
  border: 2px solid #000;
  color: #fff;
}
#home main#main-home #filters div#confirm #show-all, #home main#main-home #filters div#confirm #show-selected {
  background: #fff;
  border: 2px solid #000;
  color: #000;
}
#home main#main-home #filters div#confirm #clear-all:hover {
  background: #FF1919;
  border: 1px solid #FF1919;
  color: #fff;
}
#home main#main-home #filters div#confirm #show-all:hover, #home main#main-home #filters div#confirm #show-selected:hover {
  background: #FF1919;
  border: 1px solid #FF1919;
  color: #fff;
}
#home main#main-home #filters .filter-tag {
  cursor: pointer;
}
#home main#main-home #filters .filter-tag:hover, #home main#main-home #filters .filter-tag.active {
  background: #FFECEC;
}
#home main#main-home #filters .filter-header {
  background: #FF1919;
  color: #fff;
}
#home main#main-home #filters.show-filters {
  opacity: 1;
  pointer-events: all;
}
#home main#main-home #filters.filters-scrolled {
  top: 88px;
  height: calc(100vh - 88px);
}
@media (max-width: 414px) {
  #home main#main-home #filters.filters-scrolled {
    top: 100px;
    height: calc(100vh - 98px);
    z-index: 100000000;
  }
}
#home main#main-home a {
  display: block;
}
#home main#main-home section {
  background: white;
}
#home main#main-home .theme-container, #home main#main-home div.info-block {
  cursor: pointer;
  user-select: none;
  border: 1px solid #FF1919;
  color: #FF1919;
  padding: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(50vh - 40px);
  width: calc(33.33333vw + 1px);
  margin-left: -1px;
  margin-top: -1px;
  float: left;
  background: transparent;
  transition: background 800ms ease;
  font-size: var(--type-md);
  line-height: var(--line-height-md);
  font-weight: 700;
  color: #E91B2F;
  cursor: pointer;
}
@media (max-width: 768px) {
  #home main#main-home .theme-container, #home main#main-home div.info-block {
    height: calc(30vh - 40px);
    width: calc(50vw + 1px);
  }
}
@media (max-width: 414px) {
  #home main#main-home .theme-container, #home main#main-home div.info-block {
    height: calc(30vh - 40px);
    width: calc(50vw + 1px);
    font-size: var(--type-sm);
    line-height: var(--line-height-sm);
    margin-left: 0px;
    margin-top: 0px;
  }
}
#home main#main-home div.info-block.first-block {
  background: #FF1919;
  color: #fff;
  text-align: left;
  align-items: left;
  justify-content: left;
  flex-direction: column;
}
@media (max-width: 768px) {
  #home main#main-home div.info-block.first-block {
    padding: 20px;
  }
}
@media (max-width: 414px) {
  #home main#main-home div.info-block.first-block {
    padding: 15px;
  }
}
#home main#main-home div.info-block.first-block p {
  font-size: var(--type-lg);
  line-height: var(--line-height-lg);
}
@media (max-width: 768px) {
  #home main#main-home div.info-block.first-block p {
    font-size: var(--type-md);
    line-height: var(--line-height-md);
  }
}
@media (max-width: 414px) {
  #home main#main-home div.info-block.first-block p {
    font-size: var(--type-sm);
    line-height: var(--line-height-sm);
  }
}
#home main#main-home div.info-block.last-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: none;
  color: #FF1919;
  margin: 0px;
  width: 33.333333vw;
  cursor: default;
}
#home main#main-home div.info-block.last-block img {
  width: 80px;
  height: auto;
  margin-bottom: 20px;
}
#home main#main-home div.info-block.last-block p {
  font-size: var(--type-md);
  line-height: var(--line-height-md);
  font-weight: normal;
}
@media (max-width: 768px) {
  #home main#main-home div.info-block.last-block {
    border: 1px solid #FF1919;
    height: calc(30vh - 40px);
    width: calc(50vw + 1px);
    margin: -1px;
  }
  #home main#main-home div.info-block.last-block img {
    width: 40px;
    margin-bottom: 10px;
  }
  #home main#main-home div.info-block.last-block p {
    font-size: var(--type-sm);
    line-height: var(--line-height-sm);
  }
}
@media (max-width: 414px) {
  #home main#main-home div.info-block.last-block {
    border: 1px solid #FF1919;
    height: calc(30vh - 40px);
    margin: 0px;
  }
  #home main#main-home div.info-block.last-block img {
    width: 40px;
    margin-bottom: 10px;
  }
  #home main#main-home div.info-block.last-block p {
    font-size: var(--type-sm);
    line-height: var(--line-height-sm);
  }
}
@media (max-width: 414px) {
  #home main#main-home .theme-container {
    margin-top: -1px;
    margin-left: 0px;
    width: calc(50vw + 0px);
    border: 1px solid #FF1919;
  }
  #home main#main-home div.info-block.first-block {
    margin-top: -1px;
    margin-left: 0px;
    width: 50vw;
  }
  #home main#main-home div.info-block.last-block {
    margin-top: -1px;
    margin-left: -1px;
    width: calc(50vw + 1px);
  }
  #home main#main-home .theme-container:nth-of-type(even) {
    width: calc(50vw + 1px);
    margin-left: -1px;
  }
}
#home main#main-home .theme-container.open {
  border: none;
}
#home main#main-home .theme-container:hover {
  background: #FFECEC;
}
#home main#main-home a.item, #home main#main-home a.read-more {
  margin: 0;
  text-align: center;
  float: left;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-size: var(--type-sm);
  line-height: var(--line-height-sm);
  font-weight: 400;
  display: none;
  overflow: visible;
  height: calc(50vh - 40px);
  width: 33.33333vw;
}
@media (max-width: 768px) {
  #home main#main-home a.item, #home main#main-home a.read-more {
    height: calc(30vh - 50px);
    width: 50vw;
  }
}
@media (max-width: 414px) {
  #home main#main-home a.item, #home main#main-home a.read-more {
    height: calc(30vh - 50px);
    width: 50vw;
  }
}
#home main#main-home a.item img, #home main#main-home a.read-more img {
  max-width: 99%;
  max-height: 90%;
  min-width: 80px;
  width: auto;
  height: auto;
  display: block;
  clear: both;
}
@media (max-width: 414px) {
  #home main#main-home a.item img, #home main#main-home a.read-more img {
    transform: scale(0.9);
    transform-origin: center;
  }
}
#home main#main-home a.item img.lazy-blur, #home main#main-home a.read-more img.lazy-blur {
  transition: filter 0.3s ease, transform 0.3s ease;
}
#home main#main-home a.item figure, #home main#main-home a.read-more figure {
  width: auto;
  max-width: 100%;
  height: 100%;
  margin: auto;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}
#home main#main-home a.item figcaption, #home main#main-home a.read-more figcaption {
  opacity: 0;
  position: absolute;
  background: #FF1919;
  color: #fff;
  padding: 2px 10px;
  border-radius: 5px;
  pointer-events: none;
}
#home main#main-home a.item figcaption h2, #home main#main-home a.item figcaption p, #home main#main-home a.read-more figcaption h2, #home main#main-home a.read-more figcaption p {
  margin: 0px;
  line-height: auto;
}
#home main#main-home a.item figcaption.show, #home main#main-home a.read-more figcaption.show {
  opacity: 1;
}
#home main#main-home a.item.item.from-filter, #home main#main-home a.item.from-theme, #home main#main-home a.read-more.from-filter, #home main#main-home a.read-more.from-theme {
  display: flex;
}
#home main#main-home a.item.from-theme, #home main#main-home a.item.from-filter {
  position: relative;
}
#home main#main-home a.item.from-theme img, #home main#main-home a.item.from-filter img {
  filter: grayscale(1);
  transition: all 500ms ease;
}
#home main#main-home a.item.from-theme::after, #home main#main-home a.item.from-filter::after {
  position: absolute;
  inset: 0;
  background: #FF1919;
  mix-blend-mode: screen;
  pointer-events: none;
  transition: opacity 500ms ease;
}
#home main#main-home a.item.from-filter:hover img, #home main#main-home a.item.from-theme:hover img {
  transform: scale(1.02) rotate(1deg);
  transform-origin: center;
  filter: grayscale(0);
}
#home main#main-home a.item.from-theme:hover::after, #home main#main-home a.item.from-filter:hover::after {
  opacity: 0;
}
#home main#main-home a.read-more.from-filter, #home main#main-home a.read-more.from-theme {
  padding: 100px;
  text-align: left;
  font-size: var(--type-md);
  line-height: var(--line-height-md);
}
#home main#main-home a.read-more.from-filter img, #home main#main-home a.read-more.from-theme img {
  width: 40px;
  height: auto;
  min-width: 30px;
  min-height: auto;
  margin: 20px;
  width: 30px;
  height: auto;
  transition: all 400ms ease;
}
@media (max-width: 414px) {
  #home main#main-home a.read-more.from-filter, #home main#main-home a.read-more.from-theme {
    padding: 10px;
    font-size: var(--type-sm);
    line-height: var(--line-height-sm);
  }
}
#home main#main-home a.read-more.from-filter:hover, #home main#main-home a.read-more.from-theme:hover {
  color: #FF1919;
}
#home main#main-home a.read-more.from-filter:hover img, #home main#main-home a.read-more.from-theme:hover img {
  transform: translateX(10px);
}
@media (max-width: 812px) and (orientation: landscape) {
  #home main#main-home .theme-container, #home main#main-home div.info-block.first-block, #home main#main-home div.info-block.last-block, #home main#main-home a.item, #home main#main-home a.read-more {
    height: 120vh;
  }
  #home main#main-home .theme-container img, #home main#main-home div.info-block.first-block img, #home main#main-home div.info-block.last-block img, #home main#main-home a.item img, #home main#main-home a.read-more img {
    max-width: 60%;
  }
  #home main#main-home a.read-more.from-theme {
    padding: 20px;
    font-size: var(--type-md);
    line-height: var(--line-height-md);
  }
  #home main#main-home div.info-block.first-block p {
    font-size: var(--type-md);
    line-height: var(--line-height-md);
  }
}
#home footer {
  margin-top: -2px;
}
@media (max-width: 414px) {
  #home footer {
    border-top: none;
    margin-top: 0px;
  }
}
#exhibit main header h1,
#events main header h1 {
  max-width: var(--maxwidth-body);
  margin: auto;
  text-align: left;
  padding-bottom: var(--pad-big);
}
@media (max-width: 1024px) {
  #exhibit main,
#events main {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 414px) {
  #exhibit main,
#events main {
    grid-template-columns: 1fr;
    padding-left: var(--pad-md);
    padding-left: var(--pad-md);
  }
}

#events main {
  margin: 156px auto 0px;
}
#events main .coming-soon {
  font-size: var(--type-md);
}
#events main .events-list {
  max-width: var(--maxwidth-body);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: var(--pad-big);
  transition: all ease-in 0.2s;
}
@media (max-width: 1024px) {
  #events main .events-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 414px) {
  #events main .events-list {
    grid-template-columns: 1fr;
    padding-left: var(--pad-md);
    padding-left: 0px;
  }
}
#events main .events-list a {
  border: 1px solid #FF1919;
  padding: 30px;
  border-radius: 10px;
}
@media (max-width: 414px) {
  #events main .events-list a {
    padding: 15px;
  }
}
#events main figcaption {
  padding: var(--pad-md) 0;
}
#events main figcaption h1 {
  font-size: var(--type-lg);
  line-height: var(--line-height-lg);
  margin: 0.58333em 0; /*16px*/
  color: #FF1919;
  font-weight: bold;
}
@media (max-width: 414px) {
  #events main figcaption h1 {
    font-size: var(--type-md);
    line-height: var(--line-height-md);
  }
}
#events main figcaption p {
  font-size: calc(var(--type-base));
  line-height: calc(var(--line-height-base));
  color: #000;
}
#events main figcaption p svg {
  margin: -2px;
}
#events main a {
  margin-bottom: var(--pad-big);
  height: auto;
  transition: all 0.1s ease-in;
}
#events main a img {
  max-height: auto;
  width: 100%;
}
#events main a svg {
  fill: #FF1919;
  position: absolute;
  margin-top: 8px;
  margin-left: 4px;
}
@media (max-width: 414px) {
  #events main a svg {
    width: 15px;
  }
}
#events main a .repeat {
  display: inline-block;
  border: solid 2px #fff;
  padding: calc(var(--pad-sm) * 0.5) calc(var(--pad-sm) * 0.8);
  margin-top: var(--pad-sm);
  border-radius: 8px;
  transition: border 0.1s ease-in;
}
#events main a:hover .repeat {
  border: solid 2px #000;
}
#events main figure img {
  position: relative;
}
#events main time {
  font-size: var(--type-sm);
  line-height: var(--line-height-sm);
  margin-top: var(--pad-sm);
  display: block;
}

#theme main #mobile-logo a span .title,
#artwork main #mobile-logo a span .title {
  color: white;
}
#theme main header h1,
#artwork main header h1 {
  font-size: var(--type-xl);
  font-weight: 700;
  text-align: left;
  color: #FF1919;
}
@media (max-width: 414px) {
  #theme main header h1,
#artwork main header h1 {
    font-size: var(--type-lg);
    line-height: var(--line-height-lg);
  }
}
#theme main header h2,
#artwork main header h2 {
  font-size: var(--type-xl);
  line-height: var(--line-height-xl);
}

body#theme {
  color: #000;
  background-color: #fff;
}
body#theme header h1 {
  font-weight: 700;
  max-width: var(--maxwidth-body);
  margin: auto;
  margin-bottom: var(--pad-md);
}
body#theme main {
  /* basic structure setup */
  overflow: auto;
  overflow-x: hidden;
  /* overwrite element styles */
  /* text column */
  /* gallery column */
}
@media (max-width: 768px) {
  body#theme main {
    display: block;
  }
}
body#theme main a.btn_section:hover {
  border-bottom: 0;
}
body#theme main a.walkthrough {
  display: block;
  border: 2px solid #000;
  border-radius: 50%;
  padding: 28px var(--pad-big);
  padding-bottom: 24px;
  margin-bottom: var(--pad-sm);
  text-align: center;
  width: 80%;
}
body#theme main a.walkthrough:hover {
  background-color: #000;
  color: #fff;
}
body#theme main section#text {
  max-width: var(--maxwidth-body);
  margin: auto;
}
body#theme main section#text .initials {
  padding: 18px 18px;
  color: #FF1919;
  border: 2px solid #FF1919;
  border-radius: 80px;
  display: inline-block;
  font-size: var(--type-md);
  margin: 2px;
}
body#theme main section#text p {
  font-size: var(--type-xl);
  line-height: var(--line-height-xl);
  color: #FF1919;
}
@media (max-width: 1024px) {
  body#theme main section#text {
    width: 100%;
    padding-right: var(--pad-sm);
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  body#theme main section#text p {
    font-size: var(--type-md);
    line-height: var(--line-height-md);
  }
}
@media (max-width: 812px) and (orientation: landscape) {
  body#theme main section#text p {
    font-size: var(--type-lg);
    line-height: var(--line-height-lg);
  }
}
body#theme main section#text.active {
  position: fixed;
  top: 0;
  padding-top: var(--pad-big);
  bottom: 0;
  padding-bottom: var(--pad-big);
  overflow-y: auto;
  transform: translateY(0px);
}
body#theme main section#text.active-btm {
  position: fixed;
  padding-top: var(--pad-big);
  bottom: 0;
  padding-bottom: var(--pad-big);
  overflow-y: unset;
  transform: translateY(-150px);
}
body#theme main section.gallery {
  margin-bottom: 100px;
}
@media (max-width: 414px) {
  body#theme main section.gallery {
    margin-bottom: 40px;
  }
}
body#theme main section.gallery h2 {
  color: #FF1919;
  font-size: var(--type-md);
  font-weight: 600;
  max-width: var(--maxwidth-body);
  margin: 100px auto;
}
@media (max-width: 414px) {
  body#theme main section.gallery h2 {
    margin: 100px auto 0px;
  }
}
body#theme main section.gallery ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
body#theme main section.gallery ul li {
  width: 20%;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 1024px) {
  body#theme main section.gallery ul li {
    width: 33%;
  }
}
@media (max-width: 414px) {
  body#theme main section.gallery ul li {
    padding: 0rem;
  }
}
@media (max-width: 414px) {
  body#theme main section.gallery ul {
    padding: 2rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  body#theme main section.gallery ul li {
    width: 100%;
    float: none;
  }
  body#theme main section.gallery ul a {
    text-align: center;
    display: block;
  }
}
@media (max-width: 812px) and (orientation: landscape) {
  body#theme main section.gallery ul {
    padding: 2rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  body#theme main section.gallery ul li {
    width: 100%;
    float: none;
  }
  body#theme main section.gallery ul a {
    text-align: center;
    display: block;
  }
}
body#theme main figure {
  position: relative;
  max-width: 280px !important;
}
body#theme main figure img {
  max-width: 266px;
}
body#theme main figure::after {
  position: absolute;
  inset: 0;
  background: #FF1919;
  mix-blend-mode: screen;
  pointer-events: none;
  transition: all 500ms ease;
}
body#theme main figcaption {
  opacity: 0;
  display: none;
  position: absolute;
  max-width: 200px;
  text-align: left;
  padding: 8px;
  background-color: #000;
  color: #fff;
  transition: opacity ease-in 0.1s;
  pointer-events: none;
  border-radius: 3px;
  z-index: 10;
}
body#theme main figcaption h2, body#theme main figcaption p {
  margin-block-start: 0;
  margin-block-end: 0;
  font-size: var(--type-xs);
  line-height: var(--line-height-xs);
}
body#theme main figcaption p {
  display: none;
}
body#theme main img {
  filter: grayscale(1);
  transition: all 500ms ease;
  transform: scale(0.75);
  transform-origin: center;
}
@media (max-width: 768px) {
  body#theme main img {
    transform: scale(0.625);
  }
}
@media (max-width: 414px) {
  body#theme main img {
    transform: scale(0.5);
  }
}
body#theme main figure:hover img {
  filter: grayscale(0);
  transform: scale(0.76) rotate(1deg);
  transform-origin: center;
}
@media (max-width: 414px) {
  body#theme main figure:hover img {
    transform: scale(0.5);
  }
}
body#theme main figure:hover::after {
  background: transparent;
  mix-blend-mode: none;
}
@media (max-width: 414px) {
  body#theme main .wrapper {
    display: flex;
    flex-direction: column;
    column-gap: var(--pad-big);
  }
  body#theme main section#text {
    width: 100%;
    padding: 0px;
  }
  body#theme main a.walkthrough {
    margin-bottom: var(--pad-sm);
  }
}
body#theme a.next-item, body#theme a.prev-item {
  position: fixed;
  bottom: 60px;
  right: 40px;
  background-color: #FF1919;
  padding: 2px 18px;
  display: inline-block;
  color: #fff;
  opacity: 0;
  transition: all 500ms ease;
}
@media (max-width: 414px) {
  body#theme a.next-item, body#theme a.prev-item {
    position: relative;
    opacity: 1;
    right: auto;
    left: auto;
    bottom: auto;
  }
}
@media (max-width: 812px) and (orientation: landscape) {
  body#theme a.next-item, body#theme a.prev-item {
    position: relative;
    opacity: 1;
    right: auto;
    left: auto;
    bottom: auto;
    float: right;
  }
}
body#theme a.next-item h3, body#theme a.prev-item h3 {
  font-size: var(--type-md);
}
@media (max-width: 414px) {
  body#theme a.next-item h3, body#theme a.prev-item h3 {
    font-size: var(--type-sm);
    line-height: var(--line-height-sm);
  }
}
body#theme a.prev-item {
  right: auto;
  left: 40px;
}
@media (max-width: 414px) {
  body#theme a.prev-item {
    right: auto;
    left: auto;
    bottom: auto;
    margin-bottom: 20px;
  }
}
@media (max-width: 812px) and (orientation: landscape) {
  body#theme a.prev-item {
    right: auto;
    left: auto;
    bottom: auto;
    margin-bottom: 20px;
    float: left;
  }
}
body#theme a.next-item.show-next, body#theme a.prev-item.show-prev {
  opacity: 1;
  transform: translateY(-20px);
}

/* initials hover */
.name-wrapper {
  position: relative;
  vertical-align: text-bottom;
}
.name-wrapper .full-name {
  font-size: var(--type-md);
  line-height: var(--line-height-md);
  opacity: 0;
  position: absolute;
  background: #FF1919;
  color: #fff;
  padding: 2px 10px;
  border-radius: 5px;
  pointer-events: none;
  z-index: 10000;
}
.name-wrapper .full-name.show {
  opacity: 1;
}

#introduction main .initials {
  padding: 5px 8px;
  color: #FF1919;
  border: 1px solid #FF1919;
  border-radius: 80px;
  display: inline-block;
  font-size: var(--type-xs);
  line-height: var(--line-height-xs);
  margin: 2px;
}
@media (max-width: 414px) {
  #introduction main .initials {
    font-size: var(--type-xs);
    line-height: var(--line-height-xs);
  }
}
#introduction main .initials:first-of-type {
  margin-left: 10px;
}
#introduction main header h1 {
  max-width: var(--maxwidth-body);
  margin: auto;
  text-align: left;
  padding-bottom: var(--pad-big);
}
@media (max-width: 414px) {
  #introduction main header h1 {
    font-size: var(--type-lg);
    line-height: var(--line-height-lg);
  }
}
#introduction main section {
  max-width: var(--maxwidth-body);
  margin: 0px auto;
  display: grid;
  grid-template-columns: 1fr;
  column-gap: var(--pad-big);
}
#introduction main section #walkthrough-links {
  margin-bottom: 20px;
}
#introduction main section #theme-links, #introduction main section #walkthrough-links {
  font-size: var(--type-lg);
  line-height: var(--line-height-lg);
  display: block;
  padding: 0px;
}
#introduction main section #theme-links a, #introduction main section #walkthrough-links a {
  color: black;
}
#introduction main section #theme-links #section-grid, #introduction main section #walkthrough-links #section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: var(--pad-big);
}
#introduction main section #theme-links #section-grid a, #introduction main section #walkthrough-links #section-grid a {
  color: #000;
  display: flex;
  display: block;
  align-items: center;
}
#introduction main section #theme-links #section-grid a:hover, #introduction main section #walkthrough-links #section-grid a:hover {
  color: #878683;
  cursor: pointer;
}
@media (max-width: 1024px) {
  #introduction main section #theme-links #section-grid, #introduction main section #walkthrough-links #section-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 414px) {
  #introduction main section #theme-links #section-grid, #introduction main section #walkthrough-links #section-grid {
    font-size: var(--type-md);
    grid-template-columns: 1fr;
    line-height: var(--line-height-md);
  }
}
#introduction main section h2:first-child {
  margin-block-start: -1.83em;
}
#introduction main section p {
  font-size: var(--type-lg);
  line-height: var(--line-height-lg);
}
@media (max-width: 414px) {
  #introduction main section p {
    font-size: var(--type-md);
    line-height: var(--line-height-md);
  }
}
#introduction main section [class^=intro-] {
  display: inline-block;
  padding: var(--pad-big) var(--pad-big) 0 0;
}
#introduction main section [class^=intro-].portrait {
  width: 30%;
}
#introduction main section [class^=intro-].landscape {
  width: 50%;
}
#introduction main section [class^=intro-].square {
  width: 40%;
}
#introduction main section [class^=intro-] .caption {
  margin-bottom: var(--pad-md);
}
#introduction main section [class^=intro-] .caption p {
  font-size: var(--type-xs);
  line-height: var(--line-height-xs);
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #introduction main section {
    display: block;
  }
  #introduction main section #theme-links {
    margin-block-start: var(--pad-big);
    margin-block-end: var(--pad-big);
  }
  #introduction main section #theme-links h1 {
    margin-block-end: var(--pad-sm);
  }
  #introduction main section [class^=intro-] {
    padding: 0px var(--pad-md) var(--pad-md) 0px;
  }
  #introduction main section [class^=intro-] .caption p {
    font-size: var(--type-xs);
    line-height: var(--line-height-xs);
  }
}
@media (max-width: 414px) {
  #introduction main section [class^=intro-] {
    padding: 0px 0px;
  }
  #introduction main section [class^=intro-].portrait {
    width: 100%;
  }
  #introduction main section [class^=intro-].landscape {
    width: 100%;
  }
  #introduction main section [class^=intro-].square {
    width: 100%;
  }
}

#main-artwork {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}
@media (max-width: 414px) {
  #main-artwork {
    margin-top: 0px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body#artwork nav {
  position: fixed;
  top: 0;
  left: 0;
}
body#artwork {
  background-color: white;
  color: #000;
}
body#artwork #mobile-toggle {
  display: none;
}
body#artwork nav, body#artwork nav#mobile-nav {
  z-index: -1;
  pointer-events: none;
}
body#artwork nav a, body#artwork nav#mobile-nav a {
  color: #878683;
  pointer-events: none;
}
body#artwork nav #mobile-toggle .btn-line, body#artwork nav#mobile-nav #mobile-toggle .btn-line {
  background-color: #878683;
}
body#artwork footer {
  position: fixed;
  color: #FF1919;
  bottom: 0;
  z-index: -1;
  opacity: 0;
}
body#artwork footer a {
  color: #FF1919;
  pointer-events: none;
}
body#artwork #desktop-nav, body#artwork #mobile-nav {
  opacity: 0;
}
body#artwork main {
  grid-template-columns: 1fr 3fr;
  padding-top: 0px;
}
@media (max-width: 812px) and (orientation: landscape) {
  body#artwork main {
    margin-top: 20px;
  }
}
body#artwork main .close svg {
  stroke: #000;
}
@media (max-width: 1024px) {
  body#artwork main {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  body#artwork main {
    display: block;
  }
}
body#artwork main section:first-child {
  z-index: 100;
  padding-top: 90px;
}
body#artwork main section:first-child .info {
  position: fixed;
  bottom: var(--pad-big);
  max-width: 20vw;
}
@media (max-width: 768px) {
  body#artwork main section:first-child .info {
    max-width: 100%;
    position: relative;
    padding-top: calc(var(--pad-big) * 2);
  }
}
@media (max-width: 812px) and (orientation: landscape) {
  body#artwork main section:first-child .info {
    max-width: 100%;
    position: relative;
    padding-top: 0;
    margin: 0px;
  }
}
body#artwork main section:first-child h3 {
  margin: 0;
}
body#artwork main section:first-child div,
body#artwork main section:first-child div p,
body#artwork main section:first-child h3 {
  font-size: var(--type-md);
  line-height: var(--line-height-md);
}
body#artwork main section:first-child div#output {
  margin-top: var(--pad-md);
}
body#artwork main section:first-child div#output div {
  font-size: var(--type-xs);
  line-height: var(--line-height-xs);
}
body#artwork main section:first-child div#output #show-additions {
  display: inline-block;
  border-bottom: 1px solid white;
  cursor: pointer;
}
body#artwork main section:first-child div#output #show-additions:hover {
  color: red;
  border: none;
}
body#artwork main section:first-child p {
  margin: 0.83em 0;
}
body#artwork main section:first-child .artist span,
body#artwork main section:first-child .caption span:not(span.width, span.height) {
  display: inline-block;
}
body#artwork main section:first-child .artist span::after,
body#artwork main section:first-child .caption span:not(span.width, span.height)::after {
  content: ",";
}
body#artwork main section:first-child .artist span:last-child::after,
body#artwork main section:first-child .caption span:not(span.width, span.height):last-child::after {
  content: "";
}
body#artwork main section:first-child .caption p {
  margin: 0;
}
body#artwork main section:first-child .others span, body#artwork main section:first-child .others p {
  margin-block-start: 0em;
  margin-block-end: 0em;
}
body#artwork main section:first-child .title p { /*formated title*/
  margin: 0;
  margin-top: 2px;
}
body#artwork main section:first-child .close {
  position: fixed;
  top: 30px;
  right: 30px;
}
@media (max-width: 768px) {
  body#artwork main section:first-child .close {
    top: 26px;
    right: 15px;
    width: 50px;
    z-index: 100;
  }
  body#artwork main section:first-child .close svg {
    width: 100%;
  }
}
@media (max-width: 414px) {
  body#artwork main section:first-child .close {
    top: 26px;
    right: 15px;
    width: var(--pad-big);
  }
}
@media (max-width: 768px) {
  body#artwork main section:first-child {
    position: relative;
    width: 100%;
  }
}
body#artwork main section:nth-child(2) {
  z-index: 10;
  transition: opacity 0.5s ease;
}
body#artwork main section:nth-child(2) .img-caption {
  padding-top: var(--pad-sm);
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 414px) {
  body#artwork main section:nth-child(2) {
    width: 100%;
  }
}
body#artwork main div[class^=artwork] {
  margin: 8vh 0;
  display: flex;
  justify-content: center;
}
body#artwork main div[class^=artwork] img:hover {
  cursor: pointer !important;
}
@media (max-width: 414px) {
  body#artwork main div[class^=artwork] {
    margin: var(--pad-md) 0;
  }
}
body#artwork main div[class^=artwork]:last-child {
  padding-bottom: 4vh;
}
body#artwork main div[class^=artwork] img {
  width: auto;
  max-height: 98%;
  max-width: calc(100% - var(--pad-big));
}
body#artwork main div[class^=artwork] figure[data-ratio=portrait] {
  width: auto;
  max-height: 90vh;
  max-width: 88%;
}

body#walkthrough {
  background-color: #fff;
}
body#walkthrough nav#mobile-nav {
  background: transparent;
}
body#walkthrough nav#mobile-nav.white.active {
  color: #fff;
}
body#walkthrough main {
  top: 0px;
  max-width: 100vw;
  width: 100vw;
  height: 100vh;
  padding: 0;
  position: absolute;
  margin: 0px;
  color: #000;
}
@media (max-width: 414px) {
  body#walkthrough main {
    font-size: var(--type-sm);
    line-height: var(--line-height-sm);
  }
  body#walkthrough main p {
    font-size: var(--type-sm);
    line-height: var(--line-height-sm);
  }
}
body#walkthrough main #slide-1 { /*cover slide*/ }
body#walkthrough main #slide-1 .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 200px;
  height: 100vh;
  width: 100vw;
}
body#walkthrough main #slide-1 .center h1 {
  font-size: var(--type-xxl);
  line-height: var(--line-height-xxl);
  line-height: 1.2;
  margin-block-end: 1em;
}
body#walkthrough main #slide-1 .center h3, body#walkthrough main #slide-1 .center p {
  font-size: var(--type-lg);
}
body#walkthrough main #slide-1 .center .start {
  color: #FF1919;
  border: 2px solid #FF1919;
  padding: var(--pad-md) var(--pad-big);
  border-radius: var(--pad-big);
  cursor: pointer;
  max-width: 360px;
  transition: all 500ms ease;
}
body#walkthrough main #slide-1 .center .start:hover {
  background-color: #fff;
  color: #878683;
  border: 2px solid #878683;
}
@media (max-width: 1024px) {
  body#walkthrough main #slide-1 .center {
    padding: 0px var(--pad-md);
  }
  body#walkthrough main #slide-1 .center h1 {
    font-size: var(--type-xl);
    line-height: var(--line-height-xl);
  }
  body#walkthrough main #slide-1 .center h3 {
    font-size: var(--type-md);
  }
}
body#walkthrough main .slick-slide { /*all slides*/ }
body#walkthrough main .slick-slide [id^=slide-] {
  height: 100vh !important;
  width: 100vw !important;
  margin: 0 auto;
  padding-top: 0px;
  text-align: center;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
body#walkthrough main .slick-slide .slide-wrapper { /* content container */
  overflow-y: scroll;
  height: auto;
  max-height: 100vh;
  padding: 100px 20px;
}
body#walkthrough main .slick-slide .slide-wrapper p {
  padding: 0 10%;
  font-size: var(--type-md);
  line-height: calc(var(--line-height-md) * 1.1);
}
body#walkthrough main .slick-slide .slide-wrapper h1, body#walkthrough main .slick-slide .slide-wrapper h2, body#walkthrough main .slick-slide .slide-wrapper h1 p, body#walkthrough main .slick-slide .slide-wrapper h2 p {
  font-size: var(--type-md);
  line-height: 1.2;
}
body#walkthrough main .slick-slide .slide-wrapper h1 a, body#walkthrough main .slick-slide .slide-wrapper h2 a, body#walkthrough main .slick-slide .slide-wrapper h1 p a, body#walkthrough main .slick-slide .slide-wrapper h2 p a {
  border-bottom: solid 1px #000;
}
body#walkthrough main .slick-slide .slide-wrapper h1 a:hover, body#walkthrough main .slick-slide .slide-wrapper h2 a:hover, body#walkthrough main .slick-slide .slide-wrapper h1 p a:hover, body#walkthrough main .slick-slide .slide-wrapper h2 p a:hover {
  border-bottom: solid 1px transparent;
}
body#walkthrough main .slick-slide .slide-wrapper figure {
  display: flex;
  position: relative;
  align-items: center;
  width: calc(100vw - 40px);
  height: calc(100vh - 200px);
}
@media (max-width: 1024px) {
  body#walkthrough main .slick-slide .slide-wrapper {
    font-size: var(--type-sm);
    line-height: var(--line-height-sm);
  }
  body#walkthrough main .slick-slide .slide-wrapper h1 {
    text-transform: inherit;
  }
  body#walkthrough main .slick-slide .slide-wrapper h1 p {
    font-size: var(--type-md);
    line-height: var(--line-height-md);
  }
  body#walkthrough main .slick-slide .slide-wrapper p {
    font-size: var(--type-sm);
    line-height: calc(var(--line-height-sm) * 0.9);
    padding: 0 24px;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  body#walkthrough main .slick-slide .slide-wrapper p {
    font-size: var(--type-md);
    line-height: var(--line-height-md);
  }
}
@media (max-width: 1024px) and (max-width: 414px) {
  body#walkthrough main .slick-slide .slide-wrapper p {
    font-size: var(--type-sm);
    line-height: var(--line-height-sm);
    text-align: left;
  }
}
body#walkthrough main .slick-slide div.block-type-video { /*video slide*/
  position: relative;
  overflow: hidden;
  padding: 0;
}
body#walkthrough main .slick-slide div.block-type-video .slide-wrapper {
  width: 80vw;
  height: 80vh;
  margin: 10vh 10vw;
}
@media (max-width: 768px) {
  body#walkthrough main .slick-slide div.block-type-video .slide-wrapper {
    width: 100vw;
    height: 100vh;
    margin: 0;
  }
}
body#walkthrough main .slick-slide div.block-type-video figure {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
body#walkthrough main .slick-slide div.block-type-video figure iframe {
  border: none;
  width: 80%;
  height: auto;
  aspect-ratio: 16/9;
  max-height: 80vh;
}
body#walkthrough main .slick-slide div.block-type-video figure figcaption {
  margin-top: 12px;
}
@media (max-width: 1024px) {
  body#walkthrough main .slick-track {
    overflow-y: hidden;
  }
}
@media (max-width: 414px) {
  body#walkthrough main .slick-track {
    overflow-y: hidden;
  }
}
body#walkthrough main img,
body#walkthrough main .img-container {
  position: relative;
  max-width: calc(100vw - 100px);
  width: auto;
  max-height: calc(100vh - 30%);
  height: auto;
  margin: 0 auto;
}
@media (min-width: 1560px) {
  body#walkthrough main img,
body#walkthrough main .img-container {
    max-width: calc(100vw - 600px);
  }
}
@media (max-width: 1024px) {
  body#walkthrough main img,
body#walkthrough main .img-container {
    max-width: calc(100% - 80px);
    height: auto;
  }
}
@media (max-width: 414px) {
  body#walkthrough main img,
body#walkthrough main .img-container {
    margin: 0px auto;
    max-width: calc(100% - var(--pad-big));
    text-align: center;
    height: auto;
  }
  body#walkthrough main img img,
body#walkthrough main .img-container img {
    width: 100%;
    height: auto;
  }
}
body#walkthrough main .point {
  position: absolute;
  border-radius: 100%;
  z-index: 100000;
  cursor: pointer;
  height: 1.5vw;
  width: 1.5vw;
  min-height: 10px;
  min-width: 10px;
  border: 2px solid #000;
  background: rgba(255, 0, 0, 0.125);
  transition: opacity 500ms ease;
}
body#walkthrough main .point-text {
  display: none;
}
body#walkthrough main .pulse {
  box-shadow: 0 0 0 0 rgb(0, 0, 0);
  transform: scale(1);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 5px rgba(255, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}
body#walkthrough main div.slide-dots {
  display: none;
  width: 10px;
  position: fixed;
  top: 90px;
  left: 20px;
  z-index: 100;
}
body#walkthrough main div.slide-dots button {
  display: inline-block;
  margin: 2px;
  font-size: 0;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  margin: 0em;
  padding: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: solid 2px #fff;
}
body#walkthrough main div.slide-dots button.active, body#walkthrough main div.slide-dots button:hover {
  background-color: #000;
}
body#walkthrough main div.slide-dots.visible {
  display: block;
}
@media (max-width: 414px) {
  body#walkthrough main .slick-slide {
    overflow-y: auto;
  }
}
body#walkthrough main .yellow {
  background-color: #000;
}
body#walkthrough main .last-slide {
  background-color: #fff;
  color: #000;
  overflow-x: hidden;
  overflow-y: auto;
}
body#walkthrough main .last-slide h3 {
  margin-block-start: 0;
}
body#walkthrough main .last-slide > div {
  display: flex;
  justify-content: center;
}
body#walkthrough main .slide-last {
  background-color: #fff;
  color: #000;
  height: 99.99vh;
  max-width: var(--maxwidth-body);
  padding-top: 160px;
  padding-left: 34px;
}
body#walkthrough main .slide-last p {
  line-height: calc(var(--line-height-md) * 1.1);
  padding: 0 24px;
}
body#walkthrough main .slide-last h3 {
  padding: 0 24px;
}
body#walkthrough main .slide-last div {
  display: inline-block;
  float: left;
}
body#walkthrough main .slide-last div:first-child {
  width: 66%;
  padding-right: calc(var(--pad-md) * 2);
}
@media (min-width: 1560px) {
  body#walkthrough main .slide-last div:first-child {
    width: 33%;
  }
}
@media (max-width: 1024px) {
  body#walkthrough main .slide-last div:first-child {
    width: 80%;
  }
}
body#walkthrough main .slide-last div:nth-child(2) {
  width: 60%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  body#walkthrough main .slide-last div:nth-child(2) {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 414px) {
  body#walkthrough main .slide-last div:nth-child(2) {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}
body#walkthrough main .slide-last .wt-items {
  display: flex;
  align-items: center;
  background-color: #fff;
  color: #000;
  font-size: var(--type-md);
  line-height: calc(var(--line-height-md) * 1.125);
  float: left;
  margin: 0 var(--pad-md) var(--pad-md) 0;
  padding: calc(var(--pad-md) * 2);
  border-radius: 50%;
  text-align: center;
  justify-content: center;
  border: solid 2px #000;
}
body#walkthrough main .slide-last .wt-items:hover {
  background-color: #000;
  color: #fff;
  border: solid 2px #000;
}
body#walkthrough main .slide-last .wt-items:last-child {
  margin-bottom: var(--pad-big);
}
@media (max-width: 768px) {
  body#walkthrough main .slide-last {
    padding: 120px var(--pad-big) 0px;
    width: 100%;
  }
  body#walkthrough main .slide-last div:first-child {
    width: 100%;
    padding-right: 0px;
  }
  body#walkthrough main .slide-last .wt-items {
    font-size: var(--type-md);
    line-height: calc(var(--line-height-md) * 1.125);
    max-width: 100%;
    padding: calc(var(--pad-md) * 1.5);
    margin: 0 0 var(--pad-md) 0px;
  }
  body#walkthrough main .slide-last .wt-items:hover {
    background-color: #fff;
    color: #fff;
    border: none;
  }
}
@media (max-width: 414px) {
  body#walkthrough main .slide-last {
    padding: 120px var(--pad-md) 0px;
    width: 100%;
  }
  body#walkthrough main .slide-last .wt-items {
    font-size: var(--type-sm);
    line-height: calc(var(--line-height-sm) * 1.125);
    margin: 0px 0px var(--pad-md);
  }
  body#walkthrough main .slide-last p {
    font-size: var(--type-md);
    line-height: var(--line-height-md);
  }
}
body#walkthrough main .slick-arrow {
  position: fixed;
  bottom: 30px;
  width: 62px;
  margin-left: 0px;
  text-align: center;
  cursor: pointer;
  background-color: transparent;
  border: none;
  z-index: 100;
  opacity: 0;
  transition: all 500ms ease;
}
body#walkthrough main .slick-arrow svg {
  transition: all 500ms ease;
}
body#walkthrough main .slick-arrow.slick-prev {
  bottom: 84px;
}
body#walkthrough main .slick-arrow.slick-prev.last {
  bottom: 30px;
}
body#walkthrough main .slick-arrow.slick-disabled {
  pointer-events: none;
}
body#walkthrough main .slick-arrow.show {
  opacity: 1;
  pointer-events: all;
}
@media (max-width: 768px) {
  body#walkthrough main .slick-arrow {
    margin-left: 0px;
    right: 0px;
    bottom: var(--pad-md);
  }
  body#walkthrough main .slick-arrow.slick-prev {
    bottom: 70px;
  }
}
body#walkthrough main .slick-vertical div.slick-slide {
  width: 100vw !important;
  height: 100vh;
  align-items: center;
  display: flex;
}
@media (min-width: 1560px) {
  body#walkthrough main .slick-vertical div.slick-slide {
    display: block;
  }
}
body#walkthrough main ul.slick-dots {
  width: 14px;
  position: fixed;
  top: 160px;
  left: 27px; /*normal padding 48px + 20px*/
  z-index: 1;
  opacity: 0;
}
body#walkthrough main ul.slick-dots li {
  line-height: 0;
}
body#walkthrough main ul.slick-dots button {
  display: inline-block;
  margin: 2px;
  font-size: 0;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  margin: 0;
  margin-bottom: 6px;
  padding: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: solid 2px #FF1919;
}
body#walkthrough main ul.slick-dots li.slick-active button, body#walkthrough main ul.slick-dots button:hover {
  background-color: #FF1919;
}
body#walkthrough main ul.slick-dots.visible {
  opacity: 100;
}
@media (max-width: 414px) {
  body#walkthrough main ul.slick-dots {
    top: 120px;
    left: 14px;
  }
}
body#walkthrough main div#player.video {
  position: relative;
  display: block;
  height: 100vh;
  width: 100vw;
}
body#walkthrough main figcaption.img-caption,
body#walkthrough main figcaption.video-caption {
  padding: 10px 16px;
  padding-left: 0;
  position: relative;
  font-size: var(--type-sm);
  line-height: var(--line-height-sm);
  text-align: left;
  background: #fff;
  color: #000;
  z-index: 10000;
  max-width: 20%;
  pointer-events: none;
  transition: opacity 500ms ease;
}
body#walkthrough main figcaption.img-caption h3, body#walkthrough main figcaption.img-caption p,
body#walkthrough main figcaption.video-caption h3,
body#walkthrough main figcaption.video-caption p {
  padding: 0;
  margin-block-start: 0.3em;
  margin-block-end: 0.3em;
  font-size: var(--type-xs);
  line-height: var(--line-height-xs);
}

#about main header h1 {
  max-width: 1130px;
  margin: auto;
  text-align: left;
  padding-bottom: var(--pad-big);
}
#about main section {
  max-width: 1130px;
  margin: auto;
  padding-bottom: var(--pad-big);
}
#about main section img {
  max-width: 700px;
  height: auto;
}
@media (max-width: 414px) {
  #about main section {
    max-width: 100%;
    margin: 0;
  }
}
#about main iframe,
#about main object,
#about main embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#about main section.text {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 4rem;
  padding-bottom: var(--pad-big);
}
@media (max-width: 1024px) {
  #about main section.text {
    display: block;
  }
}
@media (max-width: 1024px) {
  #about main section.text .upcoming {
    padding-top: var(--pad-md);
  }
}
#about main section.text .upcoming h2 {
  font-size: var(--type-sm);
  line-height: var(--line-height-sm);
  margin-block-end: var(--pad-sm);
  letter-spacing: 0;
  color: #878683;
  margin-block-start: calc(var(--pad-sm) * 0.5);
}
#about main section.text .upcoming p {
  font-size: var(--type-sm);
  line-height: var(--line-height-sm);
}
#about main section.text .upcoming h2 + h3, #about main section.text .upcoming h2 + p {
  margin-top: var(--pad-md);
}
#about main section.text .credits h1, #about main section.text .credits h2, #about main section.text .credits h3, #about main section.text .credits p {
  margin: 0;
  font-size: var(--type-md);
  line-height: var(--line-height-md);
  letter-spacing: 0;
  color: #000;
}
#about main section.text .credits h1 {
  text-transform: none;
  letter-spacing: 0;
  margin-block-end: 0;
  color: #FF1919;
  font-weight: 700;
}
#about main section.text .credits h3, #about main section.text .credits p {
  margin-top: var(--pad-md);
}
#about main section.text .credits h2 {
  padding-left: var(--pad-md);
}
#about main section.text .credits p {
  color: #000;
}
@media (max-width: 768px) {
  #about main section.text .credits {
    margin: var(--pad-big) 0px;
    padding: 0px;
  }
}

#default main { /* 404 page*/
  max-width: var(--maxwidth-body);
  margin: 0 auto;
  height: calc(100vh - 110px - 153px); /* 100vh - desktop header height - desktop footer height */
}
#default main article {
  width: 64%;
}
@media (max-width: 414px) {
  #default main {
    min-height: calc(100vh - var(--pad-big));
  }
  #default main article {
    width: 100%;
  }
  #default main h1 {
    font-size: var(--type-md);
    line-height: var(--line-height-md);
  }
}

/*
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Plugin Specific Overides
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
*/
/* plyer */
.plyr--video {
  width: 100%;
}

.plyr__control--overlaid {
  background: #000;
  transform: scale(2);
  transform-origin: right bottom;
}
.plyr__control--overlaid svg {
  fill: #000;
}

#player.plyr--fullscreen-fallback { /*video space in full screen (mobile) */ }
@media (max-width: 414px) {
  #player.plyr--fullscreen-fallback {
    height: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
  }
}

.plyr--video.plyr--fullscreen-fallback .plyr__controls { /*controls in full-screen*/ }
@media (max-width: 414px) {
  .plyr--video.plyr--fullscreen-fallback .plyr__controls {
    position: relative;
    bottom: -7%;
    width: 80%;
    left: -10%;
  }
}

.plyr--video .plyr__control:hover {
  background: #000;
}
.plyr--video .plyr__control:hover svg {
  fill: #000;
}

.plyr.plyr--stopped .plyr__controls {
  display: none;
}

.plyr__video-wrapper {
  height: -webkit-fill-available;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .plyr__video-wrapper {
    height: -webkit-fill-available;
    z-index: -1;
  }
}
@media (max-width: 414px) {
  .plyr__video-wrapper {
    height: 34vh;
    z-index: -1;
  }
}

.plyr--full-ui input[type=range] {
  color: #000;
}

.plyr [data-plyr=fullscreen],
.plyr--fullscreen-enabled [data-plyr=fullscreen] {
  display: block;
}

.plyr--full-ui .plyr__video-embed > .plyr__video-embed__container {
  padding-bottom: 350%;
}

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