/* Header */
.header-logo{
  width: 400px;
  height: 30px;
}
header{
  padding: 20px 0;
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: .4s;
}
.sticky-header header{
  position: fixed;
  background: #fff;
}
header .flex-row .flex-item:not(.logo-item){
  flex:1 1 30%;
  max-width: 30%;
}
header .flex-row .flex-item.logo-item{
  flex:1 1 40%;
  max-width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header .flex-row .flex-item.right-menu{
  text-align: right;
}
header .header-logo{
  --logo-color:var(--black);
  transition: .4s;
}
.main-menu{
  margin:0;
}
.main-menu li{
  display: inline-block;
  padding: 8px;
}
.main-menu li a{
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.16px;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
}
.main-menu li a:before{
  display: block;
  content:'';
  position: absolute;
  width: 0;
  bottom:0;
  left: 0;
  height: 1px;
  background:var(--black);
  transition: .4s;
}
.main-menu li a:hover:before{
  width: 100%;
}
.main-menu .sub-menu{
  position: fixed;
  height: calc(100% - 100px);
  margin: 0;
  padding:75px 0;
  margin-top:75px;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  overflow-y: scroll;
}
.main-menu .sub-menu li {
  display: block;
  padding: 10px 0;
}
.main-menu .sub-menu li a{
  font-size: 96px;
  font-weight: 500;
  line-height: 110%; /* 105.6px */
  letter-spacing: -0.96px;
  color:#fff;
}
.main-menu .sub-menu:hover li a:not(:hover){
  opacity: .3;
}
.main-menu .sub-menu li a:before{
  display: none;
}
.main-menu .sub-menu li a span{
  font-size: 32px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.32px;
  margin-left: 10px;
  position: relative;
  top: 6px;
  vertical-align: text-top;
}
.submenu-toggle{
  display: inline-flex;
  vertical-align: middle;
  position: relative;
  margin-left: 6px;
  cursor: pointer;
}
.submenu-toggle .plus-icon{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.submenu-toggle svg{
  z-index: -1;
  position: relative;
}
header.opened .main-menu li a{
  color:#fff;
}
header.opened .header-logo{
  --logo-color:#fff;
}
.mobile-header{
  display: none;
}
body.single-collection:not(.sticky-header) .main-menu li a{
  color:#fff;
}
body.single-collection:not(.sticky-header) .main-menu li a:before{
  background: #fff;
}
body.single-collection:not(.sticky-header) .o-shape-path,
body.single-collection:not(.sticky-header) header .header-logo{
  fill:#fff;
  --logo-color:#fff;
}
body.single-collection:not(.sticky-header) .morph-path{
  fill:var(--black);
}
body.single-collection:not(.sticky-header) .opened .main-menu li a{
  color:var(--black)
}
body.single-collection:not(.sticky-header)  .opened .header-logo{
  --logo-color:var(--black);
}
body.single-collection:not(.sticky-header) .opened .morph-path{
  fill:var(--black);
}
@media(max-width:1600px){
  .main-menu .sub-menu li a{
    font-size: 84px;
    letter-spacing: -0.84px;
  }
  .main-menu .sub-menu li a span{
    font-size: 26px;
    letter-spacing: -0.26px;
  }
}
@media(max-width:1281px){
  .main-menu .sub-menu li a{
    font-size: 60px;
    letter-spacing: -0.60px;
  }
  .main-menu .sub-menu li a span{
    font-size: 20px;
    letter-spacing: -0.20px;
  }
}
@media(max-width:1100px){
  .desktop-header{
    display: none;
  }
  header .flex-row .flex-item.logo-item{
    flex: 1 1 70%;
    max-width: 70%;
    align-items: flex-start;
  }
  header .header-logo{
    width: 100%;
    height: 30px;
  }
  .mobile-header{
    display: block;
  }
  .mobile-header .flex-row{
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
  .mobile-header .mobile-toggle{
    position: relative;
    display: inline-flex;
    cursor: pointer;
  }
  .mobile-header .mobile-toggle .plus-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  .mobile-menu{
    position: fixed;
    height: 100%;
    margin: 0;
    padding:75px 0;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    width: 100%;
    background:#fff;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
    z-index: -1;
  }
  .mobile-menu .mobile-menu-wrapper{
    width: 100%;
    height: 380px;
    overflow-y: scroll;
  }
  .mobile-menu .main-menu li{
    display: block;
    text-align: center;
  }
  .mobile-menu .main-menu li a{
    font-size: 30px;
  }
  .mobile-menu .submenu-toggle{
    vertical-align: initial;
  }
  .main-menu .sub-menu{
    position: static;
    width: auto;
    height: auto;
    opacity: 1;
    overflow: hidden;
    pointer-events: all;
    margin:15px 0;
    padding: 0;
    display: none;
  }
  .mobile-menu .main-menu .sub-menu li a{
    font-size: 20px;
    letter-spacing: -0.20px;
    color:var(--black);
  }
  .main-menu .sub-menu li a span{
    font-size: 14px;
    letter-spacing: -0.14px;
    vertical-align: middle;
    position: static;
  }
  body.single-collection:not(.sticky-header) .main-menu li a:before{
    background: var(--black);
  }
  body.single-collection:not(.sticky-header) .o-shape path{
    fill:#fff;
  }
  body.single-collection:not(.sticky-header) .opened .o-shape path{
    fill:var(--black);
  }
  body.single-collection:not(.sticky-header) .opened .header-logo,
  header.opened .header-logo{
    --logo-color:var(--black);
  }
  body.single-collection:not(.sticky-header) .opened .main-menu li a,
  header.opened .main-menu li a{
    color:var(--black);
  }
  body.single-collection:not(.sticky-header) .opened .plus-icon path{
    fill:#fff;
  }
}
@media(max-width:767px){
  header{
    padding: 10px 0;
  }
  .mobile-menu .main-menu li a {
    font-size: 22px;
  }
  .mobile-menu .main-menu .sub-menu li a{
    font-size: 18px;
  }
  .main-menu .sub-menu li a span{
    font-size: 12px;
  }
}
/* footer */
footer{
  background:var(--black);
  border-top: 1px solid #989898;
}
footer .container{
  overflow: hidden;
  min-height: 400px;
  padding: 40px;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer .footer-circle{
  position: absolute;
  top:50%;
  left: 50%;
  transform:translate(-50%, -50%);
  width: 120%;
  height: 1141.203px;
  transition: .4s;
}
footer .container p, footer .container a{
  display: block;
  color: #fff;
  mix-blend-mode: difference;
  position: relative;
  z-index: 2;
}
footer .container .copy,
footer .container .social-link{
  position: absolute;
  bottom:0;
  width: 100%;
  left: 0;
  padding: 0 30px;
  font-size: 14px;
  line-height: 150%; /* 21px */
  letter-spacing: -0.14px;
  text-align: center;
}
footer .container .email-title{
  font-size: 16px;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.16px;
  margin-bottom: 0;
  font-weight: 600;
  text-transform: uppercase;
}
footer .container .email{
  font-size: 28px;
  line-height: 140%; /* 44.8px */
  letter-spacing: -0.28px;
  text-decoration-line: underline;
  opacity: .4;
}
footer .container .social-link{
  bottom:70px;
  left: 0;
  padding: 0 30px;
  font-size: 28px;
  font-weight: 500;
  line-height: 100%; /* 32px */
  letter-spacing: -0.28px;
  text-decoration: none;
}
@media(min-width:768px){
  footer .footer-circle{
    width: 90%;
  }
  footer .container .email, footer .container .social-link{
    font-size: 32px;
    letter-spacing: -0.32px;
  }
}
/* Press */
.press_page .flex-item{
  padding: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #000;
  transition: .4s;
}
.press_page .grid-articles:hover .flex-item:not(:hover){
  opacity: 0.2;
}
@media(min-width:850px){
  .press_page .flex-item{
    margin-bottom: 0;
    border-bottom: 0;
  }
  .press_page .grid-articles > .flex-row{
    border-bottom: 1px solid #000;
    padding: 20px 0;
  }
  .press_page .flex-row .flex-item:not(:nth-child(3)){
    border-right: 1px solid #000
  }
}
/* Publications */
.publications_page .publicatie-content{
  border-bottom: 1px solid rgba(15, 16, 16, 0.35);
  padding: 30px 0;
}
@media(min-width:768px){
  .publications_page .publicatie-content{
    padding: 40px 0;
  }
}
@media(min-width:1024px){
  .publications_page .publicatie-content{
    padding: 60px 0;
  }
}
@media(min-width:1440px){
  .publications_page .publicatie-content{
    padding: 80px 0;
  }
}
/* Collection */
.collection__article{
  margin-bottom: 100px;
}
.collection__article .info p, .collection__article .info ul, .collection__article .info ol,
.collection__article .info h1, .collection__article .info h2, .collection__article .info h3, .collection__article .info h4, .collection__article .info h5, .collection__article .info h6{
	max-width: 637px;
}
.collection__article .info p, .collection__article .info ul, .collection__article .info ol{
	margin: 0 auto 20px;
}
.collection__article .info h1, .collection__article .info h2, .collection__article .info h3, .collection__article .info h4, .collection__article .info h5, .collection__article .info h6{
  margin:35px auto 20px;
}
.collection__header{
  height: auto;
  min-height: 50vh;
  padding: 120px 0 0;
  position: relative;
}
.collection__article .box{
  max-width: 820px;
  margin: -150px -15px 0;
  background: #fff;
  padding: 15px 30px;
}
@media(min-width:768px){
  .collection__header{
    min-height: 60vh;
  }
  .collection__article .box{
    margin: -150px auto 0;
  }
}
@media(min-width:1440px){
  .collection__header{
    min-height: 80vh;
  }
}
/* Exhibitions */
.exhibitions_page .title-wrapper{
  margin-bottom: 80px;
}
/* Homepage */
.hover-overlay{
  position: absolute;
  top:0;
  left: 0;
  width:100%;
  height: 100%;
  text-decoration: none;
  transition: .4s;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}
.hover-overlay img{
  width: 300px;
  height: 300px;
}
.hover-overlay .flex-row{
  margin:0;
  max-width: 1440px;
  padding: 0 30px;
}
.hover-overlay .hover-images{
  display: flex;
  justify-content: space-evenly;
  margin-top: 30px;
}
.hover-overlay .hover-images svg{
  width: 280px;
  height: 280px;
}
.hover-overlay .hover-images svg:nth-child(2){
  margin-top:40px;
}
.hover-overlay .hover-images svg:nth-child(3){
  margin-top:80px;
}
.hover-overlay p{
  font-size: 32px;
  line-height: 140%;
  letter-spacing: -0.32px;
  margin-bottom: 0;
  margin-left: 20px;
  padding-top:20px;
}
.hp .container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  align-items: center;
}
.hp .info p, .hp .info li, .hp .info a{
  font-size: 24px;
  line-height: 110%;
  letter-spacing: -0.24px;
  color: rgba(15, 16, 16, 0.35);
}
.hp .info a{
  text-decoration: none;
  color:var(--black);
  transition: all .4s;
}
.hp .info p{
  text-indent: 20px;
}
@media(min-width:768px){
  .hp .info p, .hp .info li, .hp .info a{
    font-size: 30px;
    letter-spacing: -0.30px;
  }
  .hp .info p{
    text-indent: 40px;
  }
  .hp .container{
    min-height: 80vh;
  }
  .hp .info .anchor-hover:before{
    display: block;
    content:'';
    position: absolute;
    top:50%;
    left: 50%;
    transform:translate(-50%, -50%);
    border-radius: 10px;
    background:#fff;
    z-index: -1;
    width:110%;
    height: 110%;
    opacity: 0;
    transition: all .4s;
  }
  .hp .info .anchor-hover.hover-active{
    position: relative;
    z-index: 3;
  }
  .hp .info .anchor-hover.hover-active:before{
    opacity: 1;
  }
}
@media(min-width:1024px){
  .hp .info p, .hp .info li, .hp .info a{
    font-size: 36px;
      letter-spacing: -0.36px;
  }
  .hp .info p{
    text-indent: 50px;
  }
}
@media(min-width:1440px){
  .hp .info p, .hp .info li, .hp .info a{
    font-size: 48px;
    letter-spacing: -0.48px;
  }
  .hp .info p{
    text-indent: 70px;
  }
  .hover-overlay .hover-images svg{
    width: 360px;
    height: 360px;
  }
  .hover-overlay .hover-images svg:nth-child(2){
    margin-top:100px;
  }
  .hover-overlay .hover-images svg:nth-child(3){
    margin-top:200px;
  }
}
/* Default Page */
.default_page .title{
  margin-bottom: 50px;
  text-align: center;
}
