@charset "UTF-8";
/* CSS Document */
/* The Great Hall Exhibition: Mónica Félix*/
/* Website designed by Jason Varone for the Institute of Fine Arts, NYU*/
/* Code for hamburger menu adapted from https://codepen.io/erikterwan/ */
@import url("https://use.typekit.net/ajf3vyl.css");

@font-face {
    font-family: "Perstare";
    src: url(https://webstatic.nyu.edu/fonts/NYUPerstare-VF.woff2);
}

@font-face {
    font-family: "Perstare";
    src: url(https://webstatic.nyu.edu/fonts/NYUPerstare-Italic-VF.woff2);
    font-style:italic;
}


body, html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Perstare", Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}
* {
  box-sizing: inherit;
}
p {
  font-family: "Perstare", Arial, Helvetica, sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5em;
  padding: 0px 70px 0px 70px;
}
.smallText {
  font-family: "Perstare", Arial, Helvetica, sans-serif;
  font-weight: 200;
  font-size: 14px;
  color: #fefee1;
  padding: 5px 0px 0px 0px !important;
}
.smallHeader {
  font-family: "tuppence", serif;
  font-weight: 200;
  font-size: 20px;
  color: #fefee1;
}
.dark {
  color: #0b2b40;
}
.light {
  color: #fefee1;
}

.darkCatalog {
  color: #0b2b40;
    line-height: 1.7em;
}
/*
.paragraph{
    padding: 0px 70px 0px 70px;
}
*/
.closeOverlay {
  padding: 0px 0px 0px 30px;
  font-size: 1em;
}
map {
  z-index: 1;
}
.estelio {
  width: 50%;
}
.mapOverlay {
  position: absolute;
  height: auto;
  bottom: 39px;
/*      z-index: 1;*/
  overflow: auto;
  color: #0b2b40;
}
.mapOverlay image {
  float: left;
}
.mapOverlay a {
  color: #0b2b40;
  text-decoration: none;
}
.mapOverlay p {
  font-family: "Perstare", Arial, Helvetica, sans-serif;
  color: #0b2b40;
  line-height: 1px;
  padding: 0px 0px 0px 20px;
}
img.middle {
  vertical-align: middle;
  padding-right: 10px;
}
img.shadow {
  /*  filter: drop-shadow(0px 1px 3px #666);*/
}
h1 {
  font-family: "tuppence", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 50px;
  color: #fefee1;
  padding: 20px 70px 0px 70px;
}
.front {
  font-family: "tuppence", serif;
  font-weight: 400;
  font-size: 84px;
  color: #0b2b40;
  padding: 0px 70px 0px 70px;
  text-align: center;
}
.frontSubheading {
  font-family: "tuppence", serif;
  font-weight: 400;
  font-size: 54px;
  color: #0b2b40;
  padding: 0px 70px 0px 70px;
  text-align: center;
}
h2 {
  font-family: "tuppence", serif;
  font-weight: 200;
  font-size: 30px;
  color: #fefee1;
  padding: 0px 70px 0px 70px;
}
.lightHighlight {
  font-family: "tuppence", serif;
  font-weight: 200;
  font-style: italic;
  font-size: 30px;
  color: #fefee1;
  padding: 0px 70px 0px 70px;
  text-align: center;
}
.largeHighlight {
  font-family: "tuppence", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 54px;
  color: #fefee1;
  padding: 10px 70px 10px 70px;
}
h3 {
  font-family: "tuppence", serif;
  font-weight: 100;
  font-style: italic;
  font-size: 20px;
  color: #fefee1;
  padding: 0px 70px 0px 70px;
}
a {
  color: #29a0ee;
}

/*
.frontpage {
	overflow: hidden;
	
}
*/
.bluebg {
  background-color: #0b2b40;
  background-size: cover;
  /* Full height */
  height: 100%;
}
.fogbg {
  background-color: #d9dce3;
  background-size: cover;
  /* Full height */
  height: 100%;
}

.catalog {
  background-color: #fff;
  background-size: cover;
  /* Full height */
  height: 100%;
}

#catalog a:link {
color: #0079C7 !important;  
}
#catalog a:visited {
color: #0079C7 !important;  
}
#catalog a:hover {
color: #0079C7 !important;  
}
#catalog a:active {
color: #0079C7 !important;  
}



/* Menu*/
#menuToggle {
  display: block;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}
#menuToggle a {
  text-decoration: none;
  color: #0b2b40;
  transition: color 0.3s ease;
}
#menuToggle a:hover {
  color: #29a0ee;
}
#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  -webkit-touch-callout: none;
}
/*
 * Just a quick hamburger
 */
#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #cdcdcd;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease;
}
#menuToggle span:first-child {
  transform-origin: 0% 0%;
}
#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}
#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}
#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}
#menu {
  position: absolute;
  width: 300px;
  height:120vh;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  background: #ededed;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;

  /* to stop flickering of text in safari */
    
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
/*  transition: transform 0.3s cubic-bezier(0.77, 0.2, 0.05, 1.0);*/

}
#menu li {
  padding: 10px 0;
  font-size: 22px;
  text-align: left;
  line-height: 1em;
}
/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul {
  transform: none;
}
/* Menu styles for front page */
#menuToggleFront {
  display: block;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}
#menuToggleFront a {
  text-decoration: none;
  color: #0b2b40;
  transition: color 0.3s ease;
}
#menuToggleFront a:hover {
  color: #29a0ee;
}
#menuToggleFront input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  -webkit-touch-callout: none;
}
#menuToggleFront span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #0b2b40;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease;
}
#menuToggleFront span:first-child {
  transform-origin: 0% 0%;
}
#menuToggleFront span:nth-last-child(2) {
  transform-origin: 0% 100%;
}
#menuToggleFront input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}
#menuToggleFront input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
#menuToggleFront input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}
#menuToggleFront input:checked ~ ul {
  transform: none;
}
/* Tranlations */
.translateText {
  display: block;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2;
  -webkit-user-select: none;
  user-select: none;
  color: #0b2b40;
  font-family: "Perstare", Arial, Helvetica, sans-serif;
}
.translateText a {
  text-decoration: none;
  color: #0b2b40;
}
.translateText a:hover {
  color: #29a0ee;
}
.translateTextLight {
  display: block;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2;
  -webkit-user-select: none;
  user-select: none;
  color: #fefee1;
  font-family: "Perstare", Arial, Helvetica, sans-serif;
}
.translateTextLight a {
  text-decoration: none;
  color: #fefee1;
}
.translateTextLight a:hover {
  color: #29a0ee;
}
/*Video styles */
.video-responsive {    
}
.video-responsive iframe {}
/* Accessibility */
.hidden {
  position: absolute;
  top: -999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
a.skip-main {
  position: absolute;
  top: -999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -999;
}
a.skip-main:focus, a.skip-main:active {
  background: #0b2b40;
  color: #fefee1;
  font-family: "Perstare", Arial, Helvetica, sans-serif;
  font-weight: 400;
  height: auto;
  width: auto;
  overflow: auto;
  top: 20px;
  right: 0px;
  padding: 10px;
  text-decoration: none;
  z-index: 9999;
  -webkit-transition: all 300ms cubic-bezier(0.3, -0.01, 0.57, 1);
  transition: all 300ms cubic-bezier(0.3, -0.01, 0.57, 1);
  transform: translateX(-100%);
  outline: none;
}
/* Buttons */

.button {
  display: inline-block;
  background-color: #0b2b40;
  padding: 10px 10px !important;
  margin: 10px;
  color: #fefee1;
  font-size: 17px;
  line-height: 1.2em;
  letter-spacing: 2px;
  text-align: center;
  white-space: normal;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 2px solid transparent;
  border-color: #fefee1;
  border-radius: 0px;
  text-transform: uppercase;
  text-decoration: none !important;
}
.button:hover {
  background-color: #fefee1;
  color: black;
}
.button:active {
  background-color: #fefee1;
  color: white;
}
.buttonInterior {
  display: inline-block;
  background-color: #fefee1;
  padding: 10px 10px !important;
  margin-left: 20px;
  color: #0b2b40;
  font-size: 14px;
  line-height: 1.2em;
  letter-spacing: 1px;
  text-align: center;
  white-space: normal;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 2px solid;
  border-color: #0b2b40;
  border-radius: 0px;
  text-decoration: none !important;
}
.buttonInterior:hover {
  background-color: #EDEDED;
}
.buttonInterior:active {
  background-color: #29a0ee;
  color: white;
}
.centerButton {
  margin: auto;
  width: 6em;
  display: flex;
  justify-content: center;
  align-items: center;
}
button, input[type="submit"], input[type="reset"] {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}
.centerart {
  margin: auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}

.centerartLarge {
  margin: auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
}
.centerfigure {
  margin: auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35%;
}



figure {
  margin: auto !important;
  justify-content: center;
  align-items: center;
  width: 80%;
  text-align: left;
  font-size: smaller;
  text-indent: 0;
/*  border: thin silver solid;*/
  margin: 0.5em;
  padding: 0.5em;
}

img.scaled {
  width: 100%;
}

.figureRight {
  float: right;
    width: 40%;
    margin-right: 70px !important;
}

img.scaled {
  width: 100%;
}



.centerLogo {
    margin: auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20%;
    padding: 40px;
}

.header {
    position: fixed;
    top:0;
    left:0;
    background-color: #0b2b40;
    height: 60px;
    z-index: 0;
    width:100%;
}

.headerFog {
    position: fixed;
    top:0;
    left:0;
    background-color: #d9dce3;
    height: 60px;
    z-index: 0;
    width:100%;
}
.headerCatalog {
    position: fixed;
    top:0;
    left:0;
    background-color: #fff;
    height: 60px;
    z-index: 0;
    width:100%;
}
.footer {
  clear:both;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #d9dce3;
  height: auto;
  width: 100vw;
}
.footer-content {
  font-family: "Perstare", Arial, Helvetica, sans-serif;
  font-weight: 200;
  font-size: .8em !important;
  color: #0b2b40;
  padding: 20px 20px 20px 20px;
}
@media only screen and (max-width: 930px) {
  .estelio {
    width: 75% !important;
      padding:20px 0px 0px 0px;
  }
  .mapOverlay {
    position: relative;
      padding: 10px 10px 0px 0px;
  }
  .mapOverlay p {
    line-height: 1em;
      font-size: .8em;
  }
  h1 {
    font-size: 30px;
      padding: 40px 20px 0px 20px;
  }  h2 {
    font-size: 20px;
      padding: 0px 20px 0px 20px;
  }
    
    h3 {
    font-size: 18px;
        padding: 0px 20px 0px 20px;
  }
    p{
    padding: 0px 20px 0px 20px;
    }
    
    .lightHighlight {
  padding: 0px 30px 0px 30px;
}

  .front {
      padding-top: 50px;
    font-size: 2em;
  }
  .centerart {
    width: 75%;
  }
    .centerfigure {
  width: 50%;
}
    
    .centerLogo {

  width: 55%;
}

    
     
  .footer {
    position: fixed;
  }
  .footer-content {
    text-align: left;
  }
    
    footer ol {
  padding: 0px 20px 20px 30px !important;
}
}
/* FOOTNOTES adapted from https://codepen.io/SitePoint/pen/QbMgvY */
footer ol {
  padding-left: 20px;
  font-family: "Perstare", Arial, Helvetica, sans-serif;
  font-style: normal;
  font-size: 14px;
  line-height: 1.5em;
  padding: 0px 70px 0px 70px;
}
/* Initialiazing a `footnotes` counter on the wrapper */
article {
  counter-reset: footnotes;
}
/* 
 * Inline footnotes references
 * 1. Increment the counter at each new reference
 * 2. Reset link styles to make it appear like regular text
 */
[aria-describedby="footnote-label"] {
  counter-increment: footnotes; /* 1 */
  text-decoration: none; /* 2 */
  color: inherit; /* 2 */
  cursor: default; /* 2 */
  outline: none; /* 2 */
    z-index: 0;
}
/*
 * Actual numbered references
 * 1. Display the current state of the counter (e.g. `[1]`)
 * 2. Align text as superscript
 * 3. Make the number smaller (since it's superscript)
 * 4. Slightly offset the number from the text
 * 5. Reset link styles on the number to show it's usable
 */
[aria-describedby="footnote-label"]::after {
  content: '['counter(footnotes) ']'; /* 1 */
  vertical-align: top;/* 2 */
/*  position: relative; top:-0.5em;*/
  font-size: 0.7em; /* 3 */
  margin-left: 2px; /* 4 */
  color: #0079C7;
; /* 5 */
  text-decoration: underline; /* 5 */
  cursor: pointer; /* 5 */
}
/*
 * Resetting the default focused styles on the number
 */
[aria-describedby="footnote-label"]:focus::after {
  outline: thin dotted;
  outline-offset: 2px;
}
[aria-label="Back to content"] {
  font-size: 0.8em;
}
/* Highlight target note */
footer :target {
/*  background: #1f1712;*/
}
/* Visually hidden accessible content */
.visually-hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  visibility: hidden;
  opacity: 0;
}