/*--------------------------------------------------------------
# Document
---------------------------------------------------------------*/

@font-face {
  font-family: 'Folio';
  font-style: normal;
  font-weight: normal;
  font-display: auto;
  src:
    url('../letters/folio_book.woff2') format('woff2'),
    url('../letters/folio_book.woff') format('woff');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font: inherit;
  color: inherit;
}

:root {
  --font-family: 'Folio', 'Helvetica Neue', Helvetica,
    sans-serif;
  font-size: 0.5vw;
  --body-text-font-size: 3.55rem;
  --body-text-line-height: 4.3rem;
  --notes-text-font-size: 2.4rem;
  --notes-text-line-height: 3rem;
  --letter-spacing: 0.1rem;
  --text-indent: 5rem;
  --color-black: #000;
  --color-white: #fff;
  --color-grey: rgb(234, 234, 234);
  --color-blue: rgb(0, 0, 255);
  --margin-center: 0 auto;
  --padding-top: 2rem;
  --padding-right: 3rem;
  --padding-bottom: 3rem;
  --padding-left: 3rem;
  --padding: var(--padding-top) var(--padding-right)
    var(--padding-bottom) var(--padding-left);
  width: 100vw;
  scroll-behavior: smooth;
}

@media screen and (max-width: 900px) {
  :root {
    font-size: 1.4vw;
    --text-indent: 4rem;
  }
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: normal;
  font-kerning: normal;
  font-feature-settings: 'kern' on;
  font-variant-ligatures: common-ligatures;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* overflow-x: hidden; */
  padding: 0;
  margin: 0;
  /* mobile viewport bug fix */
  min-height: -webkit-fill-available;
  /* sticky footer */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Typography */
.heading-text {
  font-size: var(--heading-text-font-size);
  line-height: var(--heading-text-line-height);
}

.body-text {
  font-size: var(--body-text-font-size);
  line-height: var(--body-text-line-height);
}

.notes-text {
  font-size: var(--notes-text-font-size);
  line-height: var(--notes-text-line-height);
}

/* Links */
a {
  color: currentColor;
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  cursor: pointer !important;
}

.no-link {
  pointer-events: none;
}

/* Paragraph styles */
p {
  margin-bottom: var(--body-text-line-height);
}

h2 {
  margin-top: 2.6em;
}

.text-indent {
  padding-left: var(--text-indent) !important;
}

/* Character styles */
em,
i {
  font-style: italic !important;
}

strong,
b {
  font-weight: normal !important;
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing);
}

/*--------------------------------------------------------------
# Highlight
---------------------------------------------------------------*/

/* Safari */
::selection {
  background: var(--color-black);
  color: var(--color-white);
}
/* Firefox */
::-moz-selection {
  background: var(--color-black);
  color: var(--color-white);
}

/*--------------------------------------------------------------
# Pace
---------------------------------------------------------------*/
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.pace-inactive {
  display: none;
}
.pace .pace-progress {
  background: var(--color-blue);
  position: fixed;
  z-index: 3456789876541000000;
  top: 0 !important;
  right: 100% !important;
  width: 100% !important;
  height: 1.5px !important;
}

/*--------------------------------------------------------------
# Containers
---------------------------------------------------------------*/

.content-container {
  position: relative;
  padding: var(--padding);
  /* sticky footer */
  flex-grow: 1;
}

/*--------------------------------------------------------------
# Masthead
---------------------------------------------------------------*/

.masthead {
  position: fixed;
  width: 100%;
  height: auto;
  z-index: -1;
  padding: 1.5rem 2rem;
  text-align: center;
}

.masthead svg {
  fill: var(--color-grey);
}

.ao {
  display: none;
}

@media screen and (max-width: 900px) {
  .masthead {
    padding: 2rem;
  }
  .masthead svg {
    width: auto;
    height: 96vh !important;
  }
  .architectuur-overal {
    display: none;
  }
  .ao {
    display: block;
  }
}

/*--------------------------------------------------------------
# Header & Footer
---------------------------------------------------------------*/

header {
  margin-top: calc(1.65 * var(--body-text-line-height));
}

header ul,
footer ul {
  display: flex;
  justify-content: space-between;
}

header li,
footer li {
  list-style: none;
}

footer {
  width: 100% !important;
  background-color: var(--color-grey);
  padding: var(--padding-top) var(--padding-right)
    var(--padding-top) var(--padding-left);
}

@media screen and (max-width: 900px) {
  header {
    margin-top: var(--padding-top);
  }
  header ul,
  footer ul {
    display: block;
    font-size: 5.35rem;
    line-height: 5.75rem;
  }
  footer {
    padding-top: calc(2 * var(--padding-top));
    padding-bottom: calc(2 * var(--padding-bottom));
  }
}

/*--------------------------------------------------------------
# Press Release
---------------------------------------------------------------*/
.press-release {
  margin: calc(14 * var(--body-text-line-height)) auto 0
    auto;
  width: 77%;
}

.press-release ul {
  list-style: disc;
  padding: 0 calc(4 * var(--padding-left));
  margin: calc(2 * var(--body-text-line-height)) 0;
}

.press-release ul li {
  margin-bottom: var(--body-text-line-height);
}

@media screen and (max-width: 900px) {
  .press-release {
    margin: calc(11 * var(--body-text-line-height)) auto 0
      auto;
    width: 100%;
  }
  .press-release ul {
    padding-left: calc(1 * var(--padding-left));
    padding-right: 0;
    margin: calc(2 * var(--body-text-line-height)) 0;
  }
  .press-release ul li {
    margin-bottom: var(--body-text-line-height);
  }
}

/*--------------------------------------------------------------
# Partners
---------------------------------------------------------------*/
.partners {
  margin-top: 57vh;
  margin-bottom: calc(0.25 * var(--body-text-line-height));
}

.partners .notes-text {
  margin-bottom: calc(0.5 * var(--notes-text-line-height));
}

.partners .logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 16rem;
  row-gap: 6rem;
  align-items: center;
  justify-items: center;
}

.partners .logos img {
  height: auto;
}

.bnsp img {
  width: 55%;
}

.bna img {
  width: 76%;
}

.cola img {
  width: 76%;
}

.iabr img {
  width: 95%;
}

.nvtl img {
  width: 60%;
}

.ni img {
  width: 82%;
}

.po img {
  width: 100%;
}

.sci img {
  width: 100%;
}

.vdm img {
  width: 90%;
}

.v img {
  width: 90%;
}

@media screen and (max-width: 900px) {
  .partners {
    margin-top: calc(10 * var(--body-text-line-height));
    margin-bottom: calc(0 * var(--body-text-line-height));
  }

  .partners .notes-text {
    margin-bottom: calc(
      1.25 * var(--notes-text-line-height)
    );
  }

  .partners .logos {
    display: block;
    grid-template-columns: repeat(1, 1fr);
    column-gap: 0;
    row-gap: 6rem;
    align-items: left;
    justify-items: left;
  }

  .partners .logos img {
    width: 55%;
    height: auto;
    margin-bottom: calc(3 * var(--body-text-line-height));
  }
}
