@font-face {
 font-family: "NHB";
 src: url("../fonts/NeueHaasUnicaPro-Bold.woff2") format("woff2"),
        url("../fonts/NeueHaasUnicaPro-Bold.woff") format("woff");
        font-weight: normal !important;
}

@font-face {
 font-family: "NHBI";
 src: url("../fonts/NeueHaasUnicaPro-BoldItalic.woff2") format("woff2"),
        url("../fonts/NeueHaasUnicaPro-BoldItalic.woff") format("woff");
        font-weight: normal !important;
}


:root {
  --color-black: #000;
  --font-nhb: "NHB", helvetica, sans-serif;
  --font-nhbi: "NHBI", helvetica, sans-serif;
}


*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  min-height: 0;
  min-width: 0;
}

html, body {
  font-size: 14px;
  height: 100%; 
  font-family: var(--font-nhb);
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
  background-color: white;
  font-weight: normal !important;
  
    text-shadow: 
    0 0 5px white,   
    0 0 10px white,  
    0 0 20px white;  
}

body {
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  font-weight: normal !important;
  font-size: 1em;
}


img {
  width: 100%;
}

li {
  list-style: none;

}
a {
  text-decoration: none;
  opacity: 1;
  color: black;
}

strong{
  font-weight: normal !important;
}



/*----------------------------------------------- GRID */

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
}

.grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 1%;
}

.col-1 {grid-column-end: span 1;}
.col-2 {grid-column-end: span 2;}
.col-3 {grid-column-end: span 3;}
.col-4 {grid-column-end: span 4;}
.col-5 {grid-column-end: span 5;}
.col-6 {grid-column-end: span 6;}
.col-7 {grid-column-end: span 7;}
.col-8 {grid-column-end: span 8;}
.col-9 {grid-column-end: span 9;}
.col-10 {grid-column-end: span 10;}
.col-11 {grid-column-end: span 11;}
.col-12 {grid-column-end: span 12;}

.off-1{grid-column-start: 2;}
.off-2{grid-column-start: 3;}
.off-3{grid-column-start: 4;}
.off-4{grid-column-start: 5;}
.off-5{grid-column-start: 6;}
.off-6{grid-column-start: 7;}
.off-7{grid-column-start: 8;}
.off-8{grid-column-start: 9;}
.off-9{grid-column-start: 10;}
.off-10{grid-column-start: 11;}
.off-11{grid-column-start: 12;}
.off-12{grid-column-start: 13;}



/*----------------------------------------------- HEADER */


.header{
  z-index: 200;
  position: fixed;
  top: 2rem;
  left: 2rem;
}


nav{
  position: fixed;
  left: 2rem;
  bottom: 2rem;
  display: flex;
  columns: 2;
  column-gap: 2rem;
}

.exhibitions{
  float: left;
}

.selected{
  font-family: var(--font-nhbi);
}

.italic{
  font-family: var(--font-nhbi);
}

h1{
  position: fixed;
  right: 2rem;
  top: 50%;
}

.soundtrack{
  position: fixed;
  bottom: 2rem;
  mix-blend-mode: hard-light;
  right: 2rem;
}

/*----------------------------------------------- ABOUT */

#bio{
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
}

#bio p{
  margin-bottom: 1rem;
}

#email{
  font-size: .8rem;
  margin-left: .5rem;
}

/*----------------------------------------------- SLIDER */



body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  
}

.carousel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent; 
  cursor: pointer;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  background: transparent;
  opacity: 1;          
  z-index: 0;          
  pointer-events: none; 
}

.slide.active {
  z-index: 1;           
  pointer-events: auto; 
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide img.isPortrait {
  width: auto;
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
  background: transparent;
}

.slide video {
  width: auto;
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
  background: transparent;
}

.slide img {
  outline: none;
  user-select: none;   
  -webkit-user-drag: none;
  pointer-events: none;   
}

