
@charset "UTF-8";


/* -----  FONTS  --------------------------------------------- */

@font-face {
    font-family: 'SuperGrotesk';
    src: url('../fonts/SuperGroteskWeb_W03_Regular.woff2') format('woff2'),
         url('../fonts/SuperGroteskWeb_W03_Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'SuperGrotesk';
    src: url('../fonts/SuperGroteskWeb_W03_Medium.woff2') format('woff2'),
         url('../fonts/SuperGroteskWeb_W03_Medium.woff') 
         format('woff');
    font-weight: 600;
    font-style: normal;
}



   




:root {
  --content-width: 65rem;
}

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

html {
  font: normal 300 1.2rem/1.5 'SuperGrotesk', sans-serif;
  color: #000;
  letter-spacing: .0em;
  overflow-y: scroll;
  cursor: default;
  min-height: 100%;	
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}



body {
width: 100%;
height: 100%;
         -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
}



li {
  list-style: none;
}

a {
  color: #000;	
  text-decoration: none;
}

.menu a:hover {
  border-bottom: 1px solid;
  padding-top: .5rem;
  padding-bottom: 0.05rem;
}

html.white, html.white a {
  color: #fff;
}

h1 {
  font-size: 1.25rem;
  }

h2 {
  font-size: 1rem;
  margin-bottom: 1em;
  }

h3 {
  font-size: 1rem;
}

strong, b {
  font-weight: 500;
}

img {
  width: 100%;
}

.video,
.img {
  position: relative;
  display: block;
  --w: 1;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  background: var(--color-black);
}
.img img,
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.img[data-contain] img {
  object-fit: contain;
}


.arrow {
	display: inline-block;
	width: 1.5rem;
}

.page {
  padding: 5vh 5vw 10vh;
}

.page > * {
  max-width: var(--content-width);
  margin: 0 auto;
}





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



.wrap {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 80vw;
  height: 100vh;
  max-width: ;
}



.header {
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  padding: 1rem 10vw 0;
  background-color: #fff;
}

.header .logo {
  font-size: 1.6rem;
  font-weight: 600;
  padding: 0;
  text-transform:uppercase;
  letter-spacing: .03em;
}




.menuwrap {
  top: 1.5vw;
  right: 0;
}

.menu {
  text-align: right;
  font-size: 1rem;
  font-weight: 600;
  text-transform:uppercase;
  letter-spacing: .03em;
}

.menu li {
  display: inline-block;
  margin: .7rem 0 .9rem 2rem;
  text-align: right;
}

.menu-item a[aria-current] {
  border-bottom: 1px solid;
  padding-top: .5rem;
  padding-bottom: 0.05rem;
}

.menu-item.lang {
	  font-weight: 400;
}

.menu-item.lang:not(:last-child)::after {
  content: "/";
  display: inline-block;
  font-size: 1em;

  padding: 0 .1em;
}

.menu-item.lang:last-child {
  margin: .7rem 0 .9rem 0;
}

.menu-item.lang a .is-active {
  border-bottom: 1px solid;
  padding-top: .5rem;
  padding-bottom: 0.05rem;
}

.grid {
  font-size: 0;
}

.grid-item img {
	width: 100% ;
}

.grid:after {
  	content: "";
  	display: block;
  	clear: both;
}


/* -----  BUTTONS  ------------------------------------------------------- */

.btn {
  display: inline-block;
  border: 0px solid;
  margin: .6em 2em 0em 0;
  padding-bottom: .2em;
  white-space: nowrap;
  font-size: .85rem;
  line-height: 1;
  cursor: pointer;
  background-color: #fff;
  text-transform: uppercase;
}

.btn.is-active  {
  border-bottom: 2px solid;
  padding-bottom: 0rem;
}

.btn.mixitup-control-active {
	border-bottom: 1px solid #000;	
}

li .btn {
	float: left;
}


/* -----  MAIN  ------------------------------------------------- */



main {
   margin-top: 7rem;
   position: relative;
   padding-bottom: 6rem;
}

.text {
  line-height: 1.5em;
  width: 75%;
  padding-top: 0rem;
}
.text p,
.text ul,
.text ol {
  margin-bottom: 1.3em;
}

.text > *:first-child {
  margin-top: 0;
}
.text a {
  position: relative;
  white-space: nowrap;
  font-weight: 500;
  border-bottom: 1px solid #000;
}
.text figure {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.text img {
  width: 100%;
}

.text.cv {
	width: 70%;
	float: left;
}

.text.cv h2:not(:first-of-type) {
	padding-top: 2rem;
}

.text.cv p {
  margin-bottom: .2em;	
}

.cv.sidebar {
	width: 30%;
	float: left;
}

.text.press p{
 margin-bottom: 1.5rem;	
}

strong {
 font-weight: 400
}


/* -----  HOME  ------------------------------------------------- */


#slides {
    position: fixed;
    left: 0;
    top: 4.5rem;
    right: 0;
    bottom: 0; 
    height: auto; 
    width: auto;
}

.topwrap {
	position: relative;
   display:flex;
   justify-content: center;
   align-items: center;     
}

.toptitle {
   font-size: 1rem;
   padding: .8rem 1rem .8rem;
   line-height: 1.1rem;
   vertical-align: baseline;
   position: absolute;
   bottom: 7rem;
   z-index: 500;
   background: #ffffff;
   }

.toptitle .title {
	font-size: 1.3rem;
	line-height: 1.5rem;
}

.toptitle a {
	  border-bottom: 1px solid;
	  padding-top: .5rem;
}






/* -----  WORKS  ------------------------------------------------- */


.works.grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin: 0 -1.5rem 2rem;
}

.works.grid-item { 
	width: 25%;
	padding: 1rem 1.5rem 1.5rem
}

.worktags {
	width: 100%;
	text-align: left;
	padding-top: 0rem;
	margin-bottom: .3rem;
}

.works.grid-item.block {display: none;}

.worksimg {
	position: relative;
	padding: 0;
	width: 100%;
	height: auto;
}


.worksimg:before {
	content: "";
	display:block;
	padding-top: 72%;
}
	
.worksimg img {
	position: absolute;
	top: 0px;
	bottom: 0px;
	height: 100%;
	width: 100%;
	object-fit: cover;
	
}	


.exhibtext, .workstext {
	font-size: 1rem;
	line-height: 130%;
	margin-top: .75em;
	font-weight: 400;
	text-align: center;
}

.video {
	position:relative;
}

.blind {
	display: none;
}




.video:before,
.video:after {
	position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    padding: 0;
    margin: -29px 0 0 -29px;
    border: 3px solid #fff;
    border-radius: 100%;
    background-size: 175px;
    background-position: 12px -428px;
	box-sizing: content-box;
	background-image: url(../icons/modulobox.svg);
	background-repeat: no-repeat;
	background-color: transparent;
}


.video:after {
	opacity: 0;
	visibility: hidden;
	background-image: none;
	background-color: transparent;
	border-color: transparent;
	border-left-color: #fff;
}

video {
	margin-top: 2rem;
	width: 100%;
	height: auto;
}




/* -----  EXHIBITIONS  ------------------------------------------------- */

.exhib.txt {
	width: 30%;
	float: left;
}

.exhib.grid {
	width: 70%;
	float: right;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin: 0 -1rem 2rem;
	padding-left: 2rem;
}

.exhib.grid-item { 
	width: 33.33%;
	padding: 1rem 1rem 5rem
}

/* -----  PUBLICATIONS  ------------------------------------------------------- */

.publ.grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
    margin: -1rem -2% 4rem;
}

.publ.grid-item { 
	width: 25%;
	padding: 2%;	
}

.publbox {
	position: relative;
	padding: 0em;
}

.publbox p {
	margin-bottom: .5em;
	line-height: 1.2em;
}

.publimg {
	position: relative;
}

.publimg:before {
	content: "";
	display:block;
	padding-top: 110%;
}

.publimg img{
	position: absolute;
	bottom: 0;
	left: 0;
	max-width: 100%;
	object-fit: contain;
}

.publtext {
	width: 100%;
	font-size: .85rem;
	padding: 1.5em 0 1em;
}

.publtitle {
	font-size: 1.1rem;
	margin-bottom: .3em;
	line-height: 1.1em;
}

.publhead {
	font-size: 1.2rem;
	margin-bottom: .3em;
	line-height: 1.2em;
}

.publlink a {
	  border-bottom: 0px
}


/* -----  CV/PRESS  ------------------------------------------------------- */



.press p {
	margin-bottom: .2rem;
}

.cv {
	margin-bottom: 2rem;
}

.cv td {
	padding-right: 1rem;
	vertical-align: top; 
}

.cv td.bio {
	width: 4rem;
}



.footerwrap {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
}



.footer {
  text-align: center;
  max-width: var(--content-width);
  line-height: 1.5em;
  font-size: .7rem;
  opacity: 1;
}

.footer-copyright {
	padding: .75rem 2rem;

}


.footer a {
  display: inline-block;
}


.footer a:hover {
  border-bottom: 1px solid;
  padding-top: .5rem;
  padding-bottom: 0.05rem;
}



.footer.smaller {
	opacity: 0;
}


.footer > a {
  margin-bottom: 1.5rem;
  border-top: 2px solid #000;
  width: 16.5rem;
  padding-top: .5rem;
}

.sociallinks  li {
	display: inline-block;
}

.social a {
  padding: .5rem 0;
  width: 1rem;
  text-align: center;
}

.social a:hover {
  text-decoration: line-through;
}

a.back-to-top {
	display: none;
	position: fixed;
	z-index: 999;
	right: 2rem;
	bottom: 2rem;
}
