@font-face {
  font-family: 'gaylenregular';
  src: url('../assets/font/gaylen-webfont.woff2') format('woff2'),
       url('../assets/font/gaylen-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

img {
  max-width: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
  scroll-behavior: smooth; 
}

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

main {
  display: block;
}

/*============================================================================
  MIXINS
==============================================================================*/
.clearfix {
  *zoom: 1;
}

.clearfix:before, .clearfix:after {
  display: table;
  content: " ";
}

.clearfix:after {
  clear: both;
}

.vh {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.vh.focusable:active, .vh.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
*/
/*============================================================================
  GRID
==============================================================================*/
.grid, .grid--rev, .grid--full, .grid--half, .grid--x2, .grid--x4, .grid--xp {
  *zoom: 1;
  margin: 0 0 0 -10px;
}

.grid:before, .grid--rev:before, .grid--full:before, .grid--half:before, .grid--x2:before, .grid--x4:before, .grid--xp:before, .grid:after, .grid--rev:after, .grid--full:after, .grid--half:after, .grid--x2:after, .grid--x4:after, .grid--xp:after {
  display: table;
  content: " ";
}

.grid:after, .grid--rev:after, .grid--full:after, .grid--half:after, .grid--x2:after, .grid--x4:after, .grid--xp:after {
  clear: both;
}

@media (min-width: 768px) {
  .grid, .grid--rev, .grid--full, .grid--half, .grid--x2, .grid--x4, .grid--xp {
    margin: 0 0 0 -20px;
  }
}

ul.grid, ul.grid--rev, ul.grid--full, ul.grid--half, ul.grid--x2, ul.grid--x4, ul.grid--xp,
ul.grid-uniform {
  list-style: none;
  padding: 0;
}

.grid__item {
  float: left;
  padding-left: 10px;
  width: 100%;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .grid__item {
    padding-left: 20px;
    margin-bottom: 20px;
  }
}

.grid--rev {
  direction: rtl;
  text-align: left;
}

.grid--rev > .grid__item {
  direction: ltr;
  text-align: left;
  float: right;
}

.grid--full {
  margin-left: 0 !important;
}

.grid--full > .grid__item {
  padding-left: 0 !important;
}

.grid--half {
  margin-left: -10px;
}

.grid--half > .grid__item {
  padding-left: 10px;
}

@media (min-width: 768px) {
  .grid--x2 {
    margin-left: -40px;
  }
  .grid--x2 > .grid__item {
    padding-left: 40px;
  }
}

@media (min-width: 768px) {
  .grid--x4 {
    margin-left: -40px;
  }
  .grid--x4 > .grid__item {
    padding-left: 40px;
  }
}

@media (min-width: 1200px) {
  .grid--x4 {
    margin-left: -80px;
  }
  .grid--x4 > .grid__item {
    padding-left: 80px;
  }
}

.grid--xp {
  margin-left: -10vw;
}

.grid--xp > .grid__item {
  padding-left: 10vw;
}

.grid-sizer,
.grid-item {
  width: 100%;
}

.gutter-sizer {
  width: 0;
}

@media (min-width: 480px) {
  .grid-sizer,
  .grid-item {
    width: 47.5%;
  }
  .gutter-sizer {
    width: 5%;
  }
}

@media (min-width: 768px) {
  .grid-sizer,
  .grid-item {
    width: 28.5%;
  }
  .gutter-sizer {
    width: 7%;
  }
  .aanbod-grid {
    margin-left: 0;
  }
  .aanbod-grid .property__block {
    padding-right: 20px;
  }
  .aanbod-grid .grid-sizer,
  .aanbod-grid .grid__item {
    width: 44%;
    padding: 0;
  }
  .aanbod-grid .gutter-sizer {
    width: 12%;
  }
}

.mb-0 {
  margin-bottom: 0 !important;
}

.one-whole {
  width: 100%;
}

.one-half {
  width: 50%;
}

.one-third {
  width: 33.333%;
}

.two-thirds {
  width: 66.666%;
}

.one-quarter {
  width: 25%;
}

.two-quarters {
  width: 50%;
}

.three-quarters {
  width: 75%;
}

.one-fifth {
  width: 20%;
}

.two-fifths {
  width: 40%;
}

.three-fifths {
  width: 60%;
}

.four-fifths {
  width: 80%;
}

.one-sixth {
  width: 16.666%;
}

.two-sixths {
  width: 33.333%;
}

.three-sixths {
  width: 50%;
}

.four-sixths {
  width: 66.666%;
}

.five-sixths {
  width: 83.333%;
}

.45 {
  width: 45%;
}

.55 {
  width: 55%;
}

.one-twelfth {
  width: 8.333%;
}

.two-twelfths {
  width: 16.666%;
}

.three-twelfths {
  width: 25%;
}

.four-twelfths {
  width: 33.333%;
}

.five-twelfths {
  width: 41.666%;
}

.six-twelfths {
  width: 50%;
}

.seven-twelfths {
  width: 58.333%;
}

.eight-twelfths {
  width: 66.666%;
}

.nine-twelfths {
  width: 75%;
}

.ten-twelfths {
  width: 83.333%;
}

.eleven-twelfths {
  width: 91.666%;
}

.show {
  display: block !important;
}

.hide {
  display: none !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.left {
  float: left !important;
}

.right {
  float: right !important;
}

@media (min-width: 480px) {
  .small--one-whole {
    width: 100%;
  }
  .small--one-half {
    width: 50%;
  }
  .small--one-third {
    width: 33.333%;
  }
  .small--two-thirds {
    width: 66.666%;
  }
  .small--one-quarter {
    width: 25%;
  }
  .small--two-quarters {
    width: 50%;
  }
  .small--three-quarters {
    width: 75%;
  }
  .small--one-fifth {
    width: 20%;
  }
  .small--two-fifths {
    width: 40%;
  }
  .small--three-fifths {
    width: 60%;
  }
  .small--four-fifths {
    width: 80%;
  }
  .small--one-sixth {
    width: 16.666%;
  }
  .small--two-sixths {
    width: 33.333%;
  }
  .small--three-sixths {
    width: 50%;
  }
  .small--four-sixths {
    width: 66.666%;
  }
  .small--five-sixths {
    width: 83.333%;
  }
  .small--45 {
    width: 45%;
  }
  .small--55 {
    width: 55%;
  }
  .small--one-twelfth {
    width: 8.333%;
  }
  .small--two-twelfths {
    width: 16.666%;
  }
  .small--three-twelfths {
    width: 25%;
  }
  .small--four-twelfths {
    width: 33.333%;
  }
  .small--five-twelfths {
    width: 41.666%;
  }
  .small--six-twelfths {
    width: 50%;
  }
  .small--seven-twelfths {
    width: 58.333%;
  }
  .small--eight-twelfths {
    width: 66.666%;
  }
  .small--nine-twelfths {
    width: 75%;
  }
  .small--ten-twelfths {
    width: 83.333%;
  }
  .small--eleven-twelfths {
    width: 91.666%;
  }
  .small--show {
    display: block !important;
  }
  .small--hide {
    display: none !important;
  }
  .small--text-left {
    text-align: left !important;
  }
  .small--text-right {
    text-align: right !important;
  }
  .small--text-center {
    text-align: center !important;
  }
  .small--left {
    float: left !important;
  }
  .small--right {
    float: right !important;
  }
}

@media (min-width: 768px) {
  .medium--one-whole {
    width: 100%;
  }
  .medium--one-half {
    width: 50%;
  }
  .medium--one-third {
    width: 33.333%;
  }
  .medium--two-thirds {
    width: 66.666%;
  }
  .medium--one-quarter {
    width: 25%;
  }
  .medium--two-quarters {
    width: 50%;
  }
  .medium--three-quarters {
    width: 75%;
  }
  .medium--one-fifth {
    width: 20%;
  }
  .medium--two-fifths {
    width: 40%;
  }
  .medium--three-fifths {
    width: 60%;
  }
  .medium--four-fifths {
    width: 80%;
  }
  .medium--one-sixth {
    width: 16.666%;
  }
  .medium--two-sixths {
    width: 33.333%;
  }
  .medium--three-sixths {
    width: 50%;
  }
  .medium--four-sixths {
    width: 66.666%;
  }
  .medium--five-sixths {
    width: 83.333%;
  }
  .medium--45 {
    width: 45%;
  }
  .medium--55 {
    width: 55%;
  }
  .medium--one-twelfth {
    width: 8.333%;
  }
  .medium--two-twelfths {
    width: 16.666%;
  }
  .medium--three-twelfths {
    width: 25%;
  }
  .medium--four-twelfths {
    width: 33.333%;
  }
  .medium--five-twelfths {
    width: 41.666%;
  }
  .medium--six-twelfths {
    width: 50%;
  }
  .medium--seven-twelfths {
    width: 58.333%;
  }
  .medium--eight-twelfths {
    width: 66.666%;
  }
  .medium--nine-twelfths {
    width: 75%;
  }
  .medium--ten-twelfths {
    width: 83.333%;
  }
  .medium--eleven-twelfths {
    width: 91.666%;
  }
  .medium--show {
    display: block !important;
  }
  .medium--hide {
    display: none !important;
  }
  .medium--text-left {
    text-align: left !important;
  }
  .medium--text-right {
    text-align: right !important;
  }
  .medium--text-center {
    text-align: center !important;
  }
  .medium--left {
    float: left !important;
  }
  .medium--right {
    float: right !important;
  }
}

@media (min-width: 1024px) {
  .large--one-whole {
    width: 100%;
  }
  .large--one-half {
    width: 50%;
  }
  .large--one-third {
    width: 33.333%;
  }
  .large--two-thirds {
    width: 66.666%;
  }
  .large--one-quarter {
    width: 25%;
  }
  .large--two-quarters {
    width: 50%;
  }
  .large--three-quarters {
    width: 75%;
  }
  .large--one-fifth {
    width: 20%;
  }
  .large--two-fifths {
    width: 40%;
  }
  .large--three-fifths {
    width: 60%;
  }
  .large--four-fifths {
    width: 80%;
  }
  .large--one-sixth {
    width: 16.666%;
  }
  .large--two-sixths {
    width: 33.333%;
  }
  .large--three-sixths {
    width: 50%;
  }
  .large--four-sixths {
    width: 66.666%;
  }
  .large--five-sixths {
    width: 83.333%;
  }
  .large--45 {
    width: 45%;
  }
  .large--55 {
    width: 55%;
  }
  .large--one-twelfth {
    width: 8.333%;
  }
  .large--two-twelfths {
    width: 16.666%;
  }
  .large--three-twelfths {
    width: 25%;
  }
  .large--four-twelfths {
    width: 33.333%;
  }
  .large--five-twelfths {
    width: 41.666%;
  }
  .large--six-twelfths {
    width: 50%;
  }
  .large--seven-twelfths {
    width: 58.333%;
  }
  .large--eight-twelfths {
    width: 66.666%;
  }
  .large--nine-twelfths {
    width: 75%;
  }
  .large--ten-twelfths {
    width: 83.333%;
  }
  .large--eleven-twelfths {
    width: 91.666%;
  }
  .large--show {
    display: block !important;
  }
  .large--hide {
    display: none !important;
  }
  .large--text-left {
    text-align: left !important;
  }
  .large--text-right {
    text-align: right !important;
  }
  .large--text-center {
    text-align: center !important;
  }
  .large--left {
    float: left !important;
  }
  .large--right {
    float: right !important;
  }
}

@media (min-width: 1200px) {
  .larger--one-whole {
    width: 100%;
  }
  .larger--one-half {
    width: 50%;
  }
  .larger--one-third {
    width: 33.333%;
  }
  .larger--two-thirds {
    width: 66.666%;
  }
  .larger--one-quarter {
    width: 25%;
  }
  .larger--two-quarters {
    width: 50%;
  }
  .larger--three-quarters {
    width: 75%;
  }
  .larger--one-fifth {
    width: 20%;
  }
  .larger--two-fifths {
    width: 40%;
  }
  .larger--three-fifths {
    width: 60%;
  }
  .larger--four-fifths {
    width: 80%;
  }
  .larger--one-sixth {
    width: 16.666%;
  }
  .larger--two-sixths {
    width: 33.333%;
  }
  .larger--three-sixths {
    width: 50%;
  }
  .larger--four-sixths {
    width: 66.666%;
  }
  .larger--five-sixths {
    width: 83.333%;
  }
  .larger--45 {
    width: 45%;
  }
  .larger--55 {
    width: 55%;
  }
  .larger--one-twelfth {
    width: 8.333%;
  }
  .larger--two-twelfths {
    width: 16.666%;
  }
  .larger--three-twelfths {
    width: 25%;
  }
  .larger--four-twelfths {
    width: 33.333%;
  }
  .larger--five-twelfths {
    width: 41.666%;
  }
  .larger--six-twelfths {
    width: 50%;
  }
  .larger--seven-twelfths {
    width: 58.333%;
  }
  .larger--eight-twelfths {
    width: 66.666%;
  }
  .larger--nine-twelfths {
    width: 75%;
  }
  .larger--ten-twelfths {
    width: 83.333%;
  }
  .larger--eleven-twelfths {
    width: 91.666%;
  }
  .larger--show {
    display: block !important;
  }
  .larger--hide {
    display: none !important;
  }
  .larger--text-left {
    text-align: left !important;
  }
  .larger--text-right {
    text-align: right !important;
  }
  .larger--text-center {
    text-align: center !important;
  }
  .larger--left {
    float: left !important;
  }
  .larger--right {
    float: right !important;
  }
}

@media (min-width: 1400px) {
  .huge--one-whole {
    width: 100%;
  }
  .huge--one-half {
    width: 50%;
  }
  .huge--one-third {
    width: 33.333%;
  }
  .huge--two-thirds {
    width: 66.666%;
  }
  .huge--one-quarter {
    width: 25%;
  }
  .huge--two-quarters {
    width: 50%;
  }
  .huge--three-quarters {
    width: 75%;
  }
  .huge--one-fifth {
    width: 20%;
  }
  .huge--two-fifths {
    width: 40%;
  }
  .huge--three-fifths {
    width: 60%;
  }
  .huge--four-fifths {
    width: 80%;
  }
  .huge--one-sixth {
    width: 16.666%;
  }
  .huge--two-sixths {
    width: 33.333%;
  }
  .huge--three-sixths {
    width: 50%;
  }
  .huge--four-sixths {
    width: 66.666%;
  }
  .huge--five-sixths {
    width: 83.333%;
  }
  .huge--45 {
    width: 45%;
  }
  .huge--55 {
    width: 55%;
  }
  .huge--one-twelfth {
    width: 8.333%;
  }
  .huge--two-twelfths {
    width: 16.666%;
  }
  .huge--three-twelfths {
    width: 25%;
  }
  .huge--four-twelfths {
    width: 33.333%;
  }
  .huge--five-twelfths {
    width: 41.666%;
  }
  .huge--six-twelfths {
    width: 50%;
  }
  .huge--seven-twelfths {
    width: 58.333%;
  }
  .huge--eight-twelfths {
    width: 66.666%;
  }
  .huge--nine-twelfths {
    width: 75%;
  }
  .huge--ten-twelfths {
    width: 83.333%;
  }
  .huge--eleven-twelfths {
    width: 91.666%;
  }
  .huge--show {
    display: block !important;
  }
  .huge--hide {
    display: none !important;
  }
  .huge--text-left {
    text-align: left !important;
  }
  .huge--text-right {
    text-align: right !important;
  }
  .huge--text-center {
    text-align: center !important;
  }
  .huge--left {
    float: left !important;
  }
  .huge--right {
    float: right !important;
  }
}

[class*="push--"] {
  position: relative;
}

.push--one-whole {
  left: 100%;
  position: relative;
}

.push--one-half {
  left: 50%;
  position: relative;
}

.push--one-third {
  left: 33.333%;
  position: relative;
}

.push--two-thirds {
  left: 66.666%;
  position: relative;
}

.push--one-quarter {
  left: 25%;
  position: relative;
}

.push--two-quarters {
  left: 50%;
  position: relative;
}

.push--three-quarters {
  left: 75%;
  position: relative;
}

.push--one-sixth {
  left: 16.666%;
  position: relative;
}

.push--two-sixths {
  left: 33.333%;
  position: relative;
}

.push--three-sixths {
  left: 50%;
  position: relative;
}

.push--four-sixths {
  left: 66.666%;
  position: relative;
}

.push--five-sixths {
  left: 83.333%;
  position: relative;
}

@media (min-width: 768px) {
  .push--medium--one-whole {
    left: 100%;
    position: relative;
  }
  .push--medium--one-half {
    left: 50%;
    position: relative;
  }
  .push--medium--one-third {
    left: 33.333%;
    position: relative;
  }
  .push--medium--two-thirds {
    left: 66.666%;
    position: relative;
  }
  .push--medium--one-quarter {
    left: 25%;
    position: relative;
  }
  .push--medium--two-quarters {
    left: 50%;
    position: relative;
  }
  .push--medium--three-quarters {
    left: 75%;
    position: relative;
  }
  .push--medium--one-sixth {
    left: 16.666%;
    position: relative;
  }
  .push--medium--two-sixths {
    left: 33.333%;
    position: relative;
  }
  .push--medium--three-sixths {
    left: 50%;
    position: relative;
  }
  .push--medium--four-sixths {
    left: 66.666%;
    position: relative;
  }
  .push--medium--five-sixths {
    left: 83.333%;
    position: relative;
  }
}

html {
  font-family: 'Quicksand', Helvetica, Arial, sans-serif;
  font-size: 62.5%;
}

body {
  font-size: 1.8rem;
  height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 100%;
  margin: 0;
  padding: 0;
  color: RGBA(52, 48, 65, 1);
}

.header-title__block h2 {
  font-family: 'gaylenregular', Helvetica, Arial, sans-serif;
  text-transform: none;
  font-weight: 300;
  font-size: 50px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.portfolio__wrapper h2 {
  font-family: 'gaylenregular', Helvetica, Arial, sans-serif;
  text-transform: none;
  font-weight: 300;
  font-size: 31vw;
  /* margin-bottom: -5vw; */
  /* margin-top: 20px; */
  color: rgb(195, 195, 195);
}

.portfolio-title {
  /* padding-left: 10px; */

  /* display: flex; */
  /* align-items: flex-end; */
}

.portfolio-title span {
  font-family: 'Raleway', Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 11px;
  margin-left: 10px;
}

@media (min-width: 470px) {
  .portfolio-title span {
    font-size: 14px;
  }
  .portfolio-title {
    padding-left: 30px;
  }
}

@media (min-width: 768px) {
  .portfolio__wrapper h2 {
    font-size: 27vw;
    margin-bottom: -5vw;
  }
  .portfolio-title {
    display: flex;
    align-items: flex-end;
    padding-left: 20px;
  }
  .portfolio-title span {
    display: block;
    font-size: inherit;
    margin-left: 20px;
  }
}

@media (min-width: 1700px) {
  .portfolio__wrapper h2 {
    font-size: 470px;
    margin-bottom: -5vw;
  }
}

p {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.6em;
  margin-bottom: 20px;
}

.detail .page-wrap {
  padding-bottom: 50px;
}

.page-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  background: transparent;
  transition: all 0.5s ease;
  pointer-events: none;
}

.page-header > .container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  transition: all 0.5s ease;
}

.page-header .black-logo {
  position: relative;
  left: auto;
}

.page-header .white-logo {
  opacity: 0;
  position: absolute;
  pointer-events: none;
  left: 0;
  display: inline-block;
}

@media (min-width: 768px) {
  .header-title__block h2 {
    font-size: 80px;
    margin-top: 0;
  }
  .page-header > .container {
    align-items: flex-end;
  }
}

.socials {
  display: -ms-flexbox;
  display: flex;
  /* position: absolute; */
  /* top: 50%; */
  /* right: 15px; */
  /* -ms-transform: translateY(-50%); */
  /* transform: translateY(-50%); */
  transition: all 0.5s ease;
}

.socials a {
  text-decoration: none;
  pointer-events: auto;
  display: block;
  font-size: 22px;
  /* width: 30px; */
  /* height: 30px; */
  margin-left: 15px;
  transition: all 0.5s ease;
  color: black;
}

.socials a:hover {
  opacity: 0.6;
}

.contact-info {
  margin-left: 30px;
  padding-top: 30px;
}

.contact-info a {
  color: black;
  text-decoration: none;
  display: block;
  padding: 5px 0;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in;
}

.contact-info a:hover {
  color: #4b827d;
}

.contact-info a span {
  margin-left: 10px;
}

.logo__block {
  position: relative;
  pointer-events: auto;
  transition: all 0.5s ease;
  width: 80px;
  height: 60px;
}

.logo__block .white-logo, .logo__block .black-logo {
  transition: all 0.5s ease;
  /* width: 100%; */
  height: 100%;
}

.detail .main {
  padding-top: 0;
}

.detail .page-header > .container {
  background: transparent;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
}

.detail .page-header {
  opacity: 1;
  transition: all 0.5s ease;
}

.detail .page-header.fade-out {
  opacity: 0;
}

.fixed-animation {
  overflow: hidden;
}

.ajax-open .fixed-animation {
  z-index: 999;
  transition: top 1s ease, left 1s ease, bottom 1s ease, right 1s ease;
}

.ajax-open .image-ratio:after {
  opacity: 0 !important;
}

.ajax-open img {
  transform: scale3d(1, 1, 1) !important;
}

.header__image {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: transparent;
}

.header__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  transform: scale3d(1.2, 1.2, 1);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.header__image.come-in {
  opacity: 1;
}

.header__image.come-in img {
  transform: scale3d(1, 1, 1);
}

.parallax-slider {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.parallax-slider img {
  max-width: none;
  height: 100vh;
  width: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

.arrow-scroll {
  border: solid white;
  border-width: 0 5px 5px 0;
  display: inline-block;
  padding: 15px;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: absolute;
  bottom: 30px;
  animation: bounce 2s infinite;
}

.page-header.scrolled .container, .detail .page-header .container {
  padding: 5px;
}

.navigator {
  opacity: 1;
  transition: all 0.5s ease;
  pointer-events: auto;
}

.detail .navigator {
  display: none;
}

.navigator a {
  text-decoration: none;
  color: darkgray;
  text-transform: uppercase;
  transition: all 0.5s ease;
}

.navigator a.active {
  color: black;
}

.navigator a:hover {
  color: black;
}

.navigator span {
  display: inline-block;
  color: darkgray;
  margin: 0 15px;
}

.page-header.scrolled .navigator {
  opacity: 0;
}

@media (min-width: 768px) {
  .page-header.scrolled .container, .detail .page-header .container {
    padding: 5px 15px;
  }
}

.page-header.scrolled .socials a, .detail .page-header .socials a {
  color: white;
  /* top: 15px;
  -ms-transform: translateY(0);
  transform: translateY(0); */
}

.page-header.scrolled .white-logo, .detail .page-header .white-logo {
  opacity: 1;
  position: relative;
  left: auto;
  pointer-events: auto;
}

.page-header.scrolled .black-logo, .detail .page-header .black-logo {
  opacity: 0;
  position: absolute;
  left: 0;
  pointer-events: none;
}

.page-header.scrolled .logo__block, .detail .page-header .logo__block {
  height: 50px;
}

.page-header.scrolled h1, .detail .page-header h1 {
  opacity: 0;
}

.content__block {
  padding-top: 50px;
}

.main {
  padding-top: 100px;
}

.logo-title {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Raleway', Helvetica, Arial, sans-serif;
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  transition: all 0.5s ease;
  font-weight: 200;
  font-size: 22px;
  font-size: 2.2rem;
}

.logo-title.scroll-up {
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
  opacity: 0;
}

.image-ratio {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 60%;
}

.image-ratio:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black;
  opacity: 0;
  transition: all 0.5s ease-out;
}

.image-ratio img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  transform: scale3d(1, 1, 1);
  transition: all 0.5s ease;
}

.image-ratio h2 {
  font-family: "Oswald";
  font-weight: 600;
  text-transform: uppercase;
  position: absolute;
  color: white;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.2em;
  text-align: center;
  left: 50%;
  top: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 2;
  /* letter-spacing: 1px; */
}
.image-ratio h2 span {
  font-weight: 300;
  font-size: 22px;
  font-size: 2.2rem;
  display: block;
}

@media (min-width: 768px) {
  .image-ratio h2 {
    font-size: 40px;
    font-size: 4rem;
  }
}

.image-ratio:hover h2 {
  opacity: 1;
}

.image-ratio:hover:after {
  opacity: 0.4;
}

.image-ratio:hover img {
  transform: scale3d(1.15, 1.15, 1);
}

.image-ratio.image-ratio--half {
  padding-bottom: 40%;
}

.image-ratio.image-ratio--square {
  padding-bottom: 100%;
}

.image-ratio.image-ratio--fill {
  padding: 0;
  height: 100%;
}

.one-px-mask--right {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 2px;
  z-index: 99;
  background-color: white;
}

.gif-label {
  padding: 5px 10px;
  font-size: 14px;
  font-size: 1.4rem;
  background-color: rgba(27, 27, 27, 0.8);
  border-radius: 5px;
  color: white;
  position: absolute;
  right: 10px;
  top: 10px;
}

.index-grid__item {
  transition: all 0.5s ease;
  display: block;
}

.index-grid__item .image-ratio {
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  transform: scale3d(0.5, 0.5, 1);
  opacity: 0;
}

.index-grid__item .image-ratio img {
  transform: scale3d(2.5, 2.5, 1);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.index-grid__item.display .image-ratio {
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

.index-grid__item.display .image-ratio img {
  transform: scale3d(1, 1, 1);
}

.index-grid__item.display:hover img {
  transform: scale3d(1.2, 1.2, 1);
}

.index-grid__item:hover {
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

.index-grid__item svg {
  fill: white;
  position: absolute;
  top: 10px;
  right: 10px;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 99;
}

.index-grid__item:hover svg {
  opacity: 1;
}

.container {
  position: relative;
  max-width: 1480px;
  margin: 0 auto;
}

.container.small {
  max-width: 960px;
  padding: 0 20px;
}

.container.large {
  max-width: none;
}



.page-footer {
  /* background-color: rgb(30, 30, 30); */
  padding: 10px 0 30px;
}

.page-footer--inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
}

@media (min-width: 768px) {
  .container.small {
    padding: 0 40px;
  }
  .page-footer--inner {
    flex-direction: row;
  }
}

.a-c {
  display: block;
  text-align: center;
}

a.button, button {
  background-color: transparent;
  padding: 20px 30px;
  display: inline-block;
  color: #1b1b1b;
  /* margin-top: 50px; */
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid #1b1b1b;
  transition: all 0.5s ease;
  font-size: 15px;
}

a.button:hover, button:hover {
  background-color: #1b1b1b;
  color: white;
}

.detail-intro {
  font-size: 24px;
  font-size: 2.4rem;
  padding: 50px 0 80px;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.detail-intro h1, .detail-intro .h1 {
  margin-bottom: 1.2em;
}

#ajax-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.intro-splash {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: white;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 999999;
  -ms-transform: translateX(0);
  transform: translateX(0);
  transition: all 1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.intro-splash h1 {
  font-weight: 300;
  letter-spacing: 2px;
  font-size: 30px;
  font-size: 3rem;
}

.intro-splash .step-one {
  transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: scale3d(0, 0, 1);
}

.intro-splash .step-two {
  opacity: 0;
  width: 0;
  transition: all 0.5s ease;
}

.intro-splash.animation--step-one .step-one {
  transform: scale3d(1, 1, 1);
  animation: pulse 2s infinite 1s;
}

.intro-splash.animation--step-three {
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  width: 20%;
}

.intro-splash.animation--step-three .step-one {
  transform: scale3d(0, 0, 1);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0) rotate(45deg);
  }
  40% {
    -webkit-transform: translateY(-30px) rotate(45deg);
  }
  60% {
    -webkit-transform: translateY(-15px) rotate(45deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.95);
  }
}

.navigator {
  opacity: 1;
  transition: all 0.5s ease;
  pointer-events: auto;
  margin: 0 20px;
}

.navigator a {
  text-decoration: none;
  color: darkgray;
  text-transform: uppercase;
  transition: all 0.5s ease;
}

.navigator a.active {
  color: black;
}

.navigator a:hover {
  color: black;
}

.navigator span {
  display: inline-block;
  color: darkgray;
  margin: 0 15px;
}

.page-header.scrolled .navigator {
  opacity: 0;
}

.mobile--logo {
  display: block;
}

.desktop--logo {
  display: none;
}

@media (min-width: 768px) {
  .mobile--logo {
    display: none;
  }
  .desktop--logo {
    display: block;
  }
}

.header-section {
  min-height: calc(100vh - 90px);
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  padding: 30px;
  padding-top: 0;
  overflow: hidden;
}

.header-title__block {
  max-width: 500px;
  min-width: 300px;
}

.header-title__block p {
  font-size: 16px;
}

.header-image {
  /* width: 120vw; */
  width: 100%;
  position: relative;
  /* height: 96vw; */
  height: auto;
  padding-bottom: 80%;
  /* margin-left: 30px; */
  /* flex-grow: 0; */
  /* flex-shrink: 0; */
}

.header-image__wrapper {
  width: 120%;
  max-width: 100vh;
}

@media (min-width: 768px) {
  .header-image {
    /* width: 94.5vh; */
    /* height: 75vh; */
    /* margin-right: -10vh; */
  }
  .header-image__wrapper {
    width: 100%;
    flex: 1;
  }
  .header-title__block {
    flex: 0;
    margin-right: 30px;
  }
}
@media (min-width: 1024px) {
  .header-image {
    /* width: 94.5vh; */
    /* height: 75vh; */
    margin-top: -8vh;
    /* margin-right: -10vh; */
  }
  .header-section {
    flex-direction: row;
    overflow: auto;
    justify-content: space-around;
    padding-top: 30px;
    padding-right: 0;
  }
}

@media (min-width: 1420px) {
  .header-title__block {
    flex: auto;
  }
}

@media (min-width: 1150px) {
  .header-image {
    margin-right: 0;
  }
}

.old {
  /* background-color: yellow; */
}

.header-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease;
  transform-origin: center center;
}

.header-layer.incoming {
  opacity: 1;
  transform: scale(1);
}

img.layer1 {
  top: 25%;
  width: 90%;
  left: 4%;
  opacity: 1;
  transform: scale(1);
}

img.layer2 {
  top: 24%;
  width: 58%;
  left: 14%;
  transition: all 0.6s ease 0.2s;
}

img.layer3 {
  top: 28%;
  width: 45%;
  left: 55%;
  transition: all 0.6s ease 0.5s;
  transform: scale(0.8) rotate(-10deg);
  transform-origin: left bottom;
}

img.layer4 {
  top: 24%;
  width: 20%;
  left: 9%;
  transition: all 0.6s ease 0.8s;
}

img.layer5 {
  top: 44%;
  width: 12%;
  left: 0%;
  transition: all 0.6s ease 0.1s;
}

img.layer6 {
  top: 0%;
  width: 33%;
  left: 16%;
  transform: scale(0.8) rotate(20deg);
  transition: all 0.6s ease 0.6s;
  transform-origin: center bottom;
}

img.layer7 {
  top: 12%;
  width: 70%;
  left: -7%;
  transform: scale(0.8) rotate(15deg);
  transition: all 0.6s ease 0.2s;
  transform-origin: center bottom;
}

img.layer8 {
  top: 29%;
  width: 27%;
  left: 14%;
  transform: scale(0.8) rotate(10deg);
  transition: all 0.6s ease 0.6s;
  transform-origin: right bottom;
}

img.layer9 {
  top: 5%;
  width: 40%;
  left: 40%;
  transform: scale(0.8) rotate(-10deg);
  transition: all 0.6s ease 0.7s;
  transform-origin: left bottom;
}

/* laag 12 */
img.layer10 {
  top: 10%;
    width: 41.5%;
    left: 49%;
    transform: scale(0.8) rotate(-10deg);
    transition: all 0.6s ease 0.2s;
    transform-origin: left bottom;
}

img.layer11 {
  top: 26%;
  width: 63%;
  left: 14%;
  opacity: 1;
  transform: scale(1);
}

/* laag10 */
img.layer12 {
  top: 40%;
  width: 18.5%;
  left: 54.5%;
  transition: all 1s ease 0.2s;
}

img.layer13 {
  top: 46%;
  width: 20%;
  left: 57%;
  opacity: 1;
  transform: scale(1);
}

img.layer14 {
  top: 67%;
  width: 26%;
  left: 49%;
  transition: all 0.6s ease 0.3s;
  mix-blend-mode: darken;
}

.project-info {
  text-align: left;
}

.project-info__item {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 800px;
  /* justify-content: space-between; */
}
.project-info__title {
  border-bottom: 1px solid black;
  width: 100%;
  margin-bottom: 5px;
}

.project-info__copy {
  /* text-align: right; */
  width: 50%;
  align-self: flex-end;
}

.project-info__copy p:last-child {
  margin-bottom: 10px;
}

.tag {
  border: 1px solid black;
  border-radius: 20px;
  display: inline-block;
  padding: 2px 10px;
  /* margin-right: 2px; */
  margin-bottom: 10px;
}

.video__container{
  padding: 56.25% 0 0;
  position: relative;
}

.video__container iframe, .video__container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.detail .grid img {
  max-width: none !important;
  width: 100%;
}

.flex-grid {
  display: flex;
  flex-wrap: wrap;
}

.flex-grid>.grid__item {
  flex-shrink: 0;
  padding-left: 0;
  margin-bottom: 0;
}

.masonry-image-ratio {
  max-width: 100%;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}

.grid__item--horizontal .masonry-image-ratio {
  padding-bottom: 75%;
}

.grid__item--vertical .masonry-image-ratio {
  padding-bottom: 150%;
}

.masonry-image-ratio img, .masonry-image-ratio video {
  position: absolute;
  top: 0;
  bottom: 10px;
  left: 10px;
  right: 0;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 100%;
}

span.arrow {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-top: 1px solid black;
  border-right: 1px solid black;
  position: relative;
  transform: rotate(90deg);
  margin-left: 8px;
  top: 2px;
}
span.arrow::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 1px;
  background-color: black;
  transform: rotate(-45deg);
  transform-origin: top right;
  right: 0.5px;
  top: 0;
}

a .tag {
  color: black;
  text-decoration: underline;
}

.skills-container {
  /* border: 1px solid black; */
  /* padding: 30px; */
  /* margin: 50px; */
  margin-bottom: 0;
  padding: 50px 0;
}

.skills-container h2 {
  margin-bottom: 1.8em;
}

@media (min-width: 1024px) {
  .skills-container {
    padding: 50px;
    /* margin: 50px; */
  }
}

.skills-container ul {
  /* list-style-type: circle; */
  /* padding-left: 20px; */
  /* position: relative; */
}

.skills-container ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  line-height: 1.4em;
  /* padding-inline-start: 0px;
  list-style-image: url('/assets/img/bullet-point.svg'); */
}

.skills-container ul li span {
  font-size: 0.7em;
  display: block;
  line-height: 1.4em;
  margin-bottom: -5px;
}

.skills-container ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 4px;
	width: 10px;
	height: 10px;
	background-repeat: no-repeat;
	background-image: url('../assets/img/bullet-point.svg');
}

.skills-container .grid {
  margin: 0;
  /* background-image: url('../assets/img/chameleon-background.svg');
  background-size: cover; */
  /* background-color: #4b827d;
  border-radius: 20px; */
}

.skills-container .grid__item {
  /* border: 0.5px solid black; */
  margin-bottom: 0;
  padding: 30px;
  /* border-bottom: 0.5px solid black; */
}

@media (max-width: 767px) {
  .skills-container .grid__item {
    border-bottom: 0.5px solid black;
  }
}
@media (min-width: 768px) {
  .skills-container .grid__item:nth-child(1), .skills-container .grid__item:nth-child(2) {
    border-bottom: 0.5px solid black;
  }
  .skills-container .grid__item:nth-child(1), .skills-container .grid__item:nth-child(3) {
    border-right: 0.5px solid black;
  }
}

.skills-container .grid__item > * {
  width: 100%;
}

.equal-h {
  display: flex;
  overflow: hidden;
  flex-wrap: wrap;
}

/* .equal-h > * {
    display: flex;
} */

.equal-h:before, .equal-h:after {
    display: none;
}

@media (min-width: 400px) {
  .skills-container .equal-h > * {
    display: flex;
  }
}