@charset 'UTF-8';


/* https://rsms.me/inter/ */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
margin:0;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  color: #fff;
  background-color: #fff;
  text-rendering: optimizeLegibility;
  width: 100%;
  height: 100%;
  letter-spacing: 0.02rem;
}

html {
  font-size: 16px;
  line-height: 32px;
}

p {
  font-size: 1em;
}

h1, .h1 {
  font-size: 3.375em;
  line-height: 1.18518519em;
  margin-top: 0.59259259em;
  margin-bottom: 1.18518518em;
}
h2, .h2 {
  font-size: 2.25em;
  line-height: 1.77777778em;
  margin-top: 0.88888889em;
  margin-bottom: 0.88888889em;
}
h3, .h3 {
  font-size: 1.5em;
  line-height: 1.33333333em;
  margin-top: 1.33333333em;
  margin-bottom: 1.33333333em;
}
h4, .h4 {
  font-size: 1em;
  line-height: 2em;
  margin-top: 2em;
  margin-bottom: 2em;
}
h5, .h5 {
  font-size: 1em;
  line-height: 2em;
  margin-top: 2em;
  margin-bottom: 0em;
}

p, ul, ol, pre, table, blockquote {
  margin-top: 0em;
  margin-bottom: 2em;
}
ul ul, ol ol, ul ol, ol ul {
  margin-top: 0em;
  margin-bottom: 0em;
}

/* Let's make sure all's aligned */
hr, .hr {
  border: 1px solid;
  margin: -1px 0;
}
a, b, i, strong, em, small, code {
  line-height: 0;
}
sub, sup {
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}

small, .font_small {font-size: 0.75em; font-weight: 300}
small, .font_small {font-size: 0.75em; font-weight: 300}

a:link, a:visited {
  color: #333;
  text-decoration: none;
}

.full {
  width: calc(100% - 2em);
  grid-column: span 2;
}

.half {
  width: 50%;
}

.threeQrts {
  width: 75%;
}

.twoThirds {
  width: 66%;
}

.autoMargin {
  margin: 0 auto;
}

.vertHalf {
  height: 50vh;
}

/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    opacity: 0;
    transition: all .33s;
}
.slick-prev:hover,
.slick-next:hover
{
    color: transparent;
    outline: none;
    background: transparent;
    opacity: 1;
}


.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: 0;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'helvetica';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
  margin: 0;
  position: fixed;
  right: 87.5%;
  width: 12.5%;
  z-index: 99;
  background: linear-gradient(to right, rgba(255,255,255,0.0) , rgba(255,255,255,0.0));
  height: 100%
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    position: fixed;
    left: 87.5%;
    width: 12.5%;
    
    z-index: 99;
    height: 100%;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}

[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -15%;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}

.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}

.slick-dots li button:before
{
    font-family: 'helvetica';
    font-size: 24px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all .33s;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: #000;
}

.slick-slider { 
  position:relative;
  display:block;
  box-sizing:border-box;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
  -webkit-touch-callout:none;
  -khtml-user-select:none;
  -ms-touch-action:pan-y;
  touch-action:pan-y;
  -webkit-tap-highlight-color:transparent
  }

  .slick-list {
    position:relative;
    display:block;
    overflow:hidden;
    margin:0;padding:0
    }

  .slick-list:focus {
    outline:0
    }

  .slick-list.dragging {
    cursor:pointer;
    cursor:hand
    }

  .slick-slider .slick-list,.slick-slider .slick-track {
    -webkit-transform:translate3d(0,0,0);
    -moz-transform:translate3d(0,0,0);
    -ms-transform:translate3d(0,0,0);
    -o-transform:translate3d(0,0,0);
    transform:translate3d(0,0,0)}

  .slick-track{
    position:relative;
    top:0;
    left:0;
    display:block;
    margin-left:auto;
    margin-right:auto
    }

  .slick-track:after,.slick-track:before {
    display:table;
    content:''}

  .slick-track:after {
    clear:both
    }

  .slick-loading .slick-track {
    visibility:hidden
  }

  .slick-slide {
    display:none;
    float:left;
    height:100%;
    min-height:1px
    }

  [dir=rtl] .slick-slide {
    float:right
  }

  .slick-slide img{
    display:block;
    }

  .slick-slide.slick-loading img{
    display:none
    }

  .slick-slide.dragging img{
    pointer-events:none
    }

  .slick-initialized .slick-slide{
    display:block
    }

  .slick-loading .slick-slide {
    visibility:hidden
    }

  .slick-vertical .slick-slide {
    display:block;
    height:auto;
    border:1px solid transparent
    }

  .slick-arrow.slick-hidden{
    display:none
  }



.columnContainer{
  display: table;
  width: 100%;
}

.columnContainer .columnRow{
  display: table-row;
  display: inline;
}

.columnContainer .columnRow .columnLeft{
    display: table-cell;
    margin: 0;
    padding: 0;
    width: 50%;
    float: left;
}

.columnContainer .columnRow .columnFull{
    display: block;
    margin: auto;
    padding: 0;
    width: 66%;
}

.columnContainer .columnRow .columnRight{
    display: table-cell;
    margin: 0;
    padding: 0;
    width: 50%;
    float: left;
}  

.columnContainer .columnRow .columnThirdLeft{
    display: table-cell;
    margin: 0;
    padding: 0;
    width: 33%;
    float: left;
}

.columnContainer .columnRow .columnThirdCenter{
    display: table-cell;
    margin: 0;
    padding: 0;
    width: 33%;
    float: left;
}

.columnContainer .columnRow .columnThirdRight{
    display: table-cell;
    margin: 0;
    padding: 0;
    width: 33%;
    float: left;
}  

.columnContainer .columnRow .squared {
  padding-top: 50%;
  position: relative;

}


.blck {
  background-color: black;
  color:white;
}

.wht {
  background-color: white;
  color:black;
}

.centered {
    margin: 0;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hide {
  display: none!important;
}

.show {
  display: block!important;
}

.RtoL {
  transform: translate(100%, 0%);
}

.LtoR {
    transform: translate(-100%, 0%);
}

.pangram{
  display: inline-block;
  text-align:left;
  width:auto;
  padding: 5em 0;
}

.part {
  display: inline-block;
  text-align:left;
}

.img-type {
  height:4vw;
}


.button_container {
  position: fixed;
  top: 6%;
  right: 4%;
  height: 3em;
  width: 6em;
  cursor: pointer;
  z-index: 150;
  transition: transform .33s ease;
}


g > path {
  stroke-width: 4;
  transition: stroke-width .33s ease;
}

g:hover path {
  stroke-width: 6;
}


.overlay {
  position: fixed;
  background-color: #000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all .33s;
  }

.overlay a:link, a:visited {
  color: #fff;
}

.overlay h1 {
  margin-top: 0;
}

 .overlay.open {
    opacity: .9;
    visibility: visible;
  }
  
 .overlay.open .nav-links{
    opacity: 1;
    visibility: visible;
  }

.overlay-menu {
    width: 75%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.initSlideShow {
  margin: 0 auto;
  width: 100vw;
  height: 80vh;
}

/* nieuw */

.cover > img, .cover > video {
  width: 100vw;
  height: 100vh;
  display:block;
  object-fit: cover;
  overflow: hidden!important;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem; /* 30px = 1.875rem */
  justify-content: center;

  padding-block: 1rem;
  user-select: text;
  /*
  grid-auto-rows: 50%;
  height: 100vh;
  */
}
.grid-item {
  padding: 1rem;
  position: relative;
}

.grid-full {
  height: calc(100vh - 2rem); /* Account for padding-block */
}

.grid-half {
  height: calc(50vh - 2rem); /* Account for padding-block */
}

.text-content {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center text vertically */
  user-select: text;
}

.item1, .item2, .item3, .item4 {
  grid-row: inherit; 
}

.paragraph {
  color: #000;
  width: 80%;
  display:block;
  margin: 10% auto;
}

.arrow {
  padding: 0.5rem; /* Arrow size */
          box-shadow: 0.1rem -0.1rem 0 0.1rem rgba(0,0,0,0.75) inset;
  -webkit-box-shadow: 0.1rem -0.1rem rgba(0,0,0,0.75) inset;
  border: solid transparent;
  border-width: 3rem;
  transition: .25s ease;
  width: 1rem;
  height: 1rem;
  margin: 0 auto;
}

.arrow:hover {
          box-shadow: 0.2rem 0.2rem 0 0.2rem rgba(0,0,0,0.75) inset;
  -webkit-box-shadow: 0.2rem -0.2rem rgba(0,0,0,0.75) inset;
}

.arrow-up    { transform:rotate(135deg) }
.arrow-right { transform:rotate(225deg) }
.arrow-down  { transform:rotate(-45deg) }
.arrow-left  { transform:rotate(45deg) }

.wrapper {
  margin: 0 auto;
  min-height: 100vh;
  margin: 0 auto;
}


/*Image Sizes are Determined by the Column width*/
.masonry {
  columns: 420px; /*YOU ONLY NEED THIS LINE OF CODE TO MAKE THIS IMAGE CONTAINER TO A MASONRY-LAYOUT*/
  margin: 1em;
  width: 100wh;
}

.masonry img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  margin-bottom: 1em;
}

.masonry video {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  margin-bottom: 1em;
}



@media screen and (max-width : 1024px) {

  .slick-prev,
  .slick-next {
    visibility: hidden;
  }

p {font-size:0.8em;}

}



@media screen and (max-width : 768px) {
  .button_container {
    position: fixed;
    top: 6%;
    right: 4%;
    height: 3em;
    width: 3em;
    cursor: pointer;
    z-index: 150;
    transition: transform .33s ease;
  }

  .grid-container {
    grid-template-columns: 1fr; /* Stack columns on smaller screens */
    height: auto;
  }

  .item1 {
    grid-row: 1; /* First row */
  }
  
  .item2 {
    grid-row: 2; /* Second row */
  }
  
  .item3 {
    grid-row: 3; /* Third row */
  }
  
  .item4 {
    grid-row: 4; /* Reuse the second row */
  }
  
  h1, h2, h3, h4 {
      margin: 0 0 1.414em;
      font-weight: inherit;
      line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }

  p {
    margin: 0 0 1.3em 0;
    font-size: 1em;
  }

  .full {
    width: calc(100% - 2em);
    grid-column: span 1;
  }

  .half {
    width: 75%;
    height: auto;
  }

  .threeQrts {
    width: 75%;
  }

  .twoThird {
    width: 75%;
  }


  .columnContainer {
  width: 100%;
  clear:both;
  display: inline;
  }

  .columnContainer .columnRow{
    display: inline;
  }

  .columnContainer .columnRow .columnLeft{
      float: none;
      padding:5em 0;
  }

  .columnContainer .columnRow .columnFull{
      float: none;
      width:80%;
      padding:5em 0;
  }

  .columnContainer .columnRow .columnRight{
      display: inline;
      clear:both;
      float: none;
  } 

  .columnContainer .columnRow .columnThirdLeft{
      display: inline;
      margin-bottom: 2em;
      float: none;
  }

  .columnContainer .columnRow .columnThirdCenter{
      display: inline;
      margin-bottom: 2em;
      float: none;
  }

  .columnContainer .columnRow .columnThirdRight{
      display: inline;
      clear:both;
      float: none;
  }

  .centered {
    margin: 0 auto;
    position: relative;
    top: auto;
    left: auto;
    transform: translate(0, 0);
    display: block;
  }

  .RtoL {
    transform: none;
  }

  .LtoR {
    transform: none;
  }

  .slick-prev,
  .slick-next {
    visibility: hidden;
  }

  .slick-slide img{
    display:block;
    }

  .img-type {
      height:10vw;
    }

}

@media screen and (max-width : 375px) {

  .half {
    width: 80%;
    height: auto;
  }

  .threeQrts {
    width: 80%;
  }

}
