/*
Theme Name: driesverhoeven
Theme URI: http://driesverhoeven.com
Description: A custom made theme for Dries Verhoevn's site
Author: Ehud Neuhaus (based on the HTML5 Reset theme)
Author URI: http://ehudneuhaus.com
Version: 1.0
*/
/*
	HTML5 Reset :: style.css
	----------------------------------------------------------
	We have learned much from/been inspired by/taken code where offered from:

	Eric Meyer					:: http://meyerweb.com
	HTML5 Doctor				:: http://html5doctor.com
	and the HTML5 Boilerplate	:: http://html5boilerplate.com

-------------------------------------------------------------------------------*/
/* Let's default this puppy out
-------------------------------------------------------------------------------*/
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent; }

article, aside, figure, footer, header, nav, section, details, summary {
  display: block; }

/* Handle box-sizing while better addressing child elements:
   http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  box-sizing: border-box; }

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

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
   If this default setting for images is causing issues, you might want to replace it with a .responsive class instead. */
img,
object,
embed {
  max-width: 100%; }

/* force a vertical scrollbar to prevent a jumpy page */
html {
  overflow-y: scroll; }

/* we use a lot of ULs that aren't bulleted.
	don't forget to restore the bullets within content. */
ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

del {
  text-decoration: line-through; }

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help; }

/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0; }

th {
  font-weight: bold;
  vertical-align: bottom; }

td {
  font-weight: normal;
  vertical-align: top; }

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

input, select {
  vertical-align: middle; }

pre {
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */ }

input[type="radio"] {
  vertical-align: text-bottom; }

input[type="checkbox"] {
  vertical-align: bottom; }

.ie7 input[type="checkbox"] {
  vertical-align: baseline; }

.ie6 input {
  vertical-align: text-bottom; }

select, input, textarea {
  font: 99% sans-serif; }

table {
  font-size: inherit;
  font: 100%; }

small {
  font-size: 85%; }

strong {
  font-weight: bold; }

td, td img {
  vertical-align: top; }

/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* standardize any monospaced elements */
pre, code, kbd, samp {
  font-family: monospace, sans-serif; }

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer; }

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
  margin: 0; }

/* make buttons play nice in IE */
button,
input[type=button] {
  width: auto;
  overflow: visible; }

/* scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic; }

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/* let's clear some floats */
.clearfix:before, .clearfix:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden; }

.clearfix:after {
  clear: both; }

.clearfix {
  zoom: 1; }

@font-face {
  font-family: 'socicon';
  src: url("_/font/socicon-webfont.eot");
  src: url("_/font/socicon-webfont.eot?#iefix") format("embedded-opentype"), url("_/font/socicon-webfont.woff") format("woff"), url("_/font/socicon-webfont.ttf") format("truetype"), url("_/font/socicon-webfont.svg#sociconregular") format("svg");
  font-weight: normal;
  font-style: normal;
  text-transform: initial; }

/* Ok, this is where the fun starts.
-------------------------------------------------------------------------------*/
/* A Linux- and Windows-friendly sans-serif font stack: http://prospects.mhurrell.co.uk/post/updating-the-helvetica-font-stack */
body {
  font-family: Helvetica, 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  line-height: 1.3; }

/* Using local fonts? Check out Font Squirrel's webfont generator: http://www.fontsquirrel.com/tools/webfont-generator */
/* We like off-black for text. */
body, select, input, textarea {
  color: #111; }

a {
  color: black;
  text-decoration: none; }

a:hover {
  color: #777; }

/* Custom text-selection colors (remove any text shadows: http://twitter.com/miketaylr/status/12228805301) */
::-moz-selection {
  background: #222;
  color: #fff;
  text-shadow: none; }

::selection {
  background: #222;
  color: #fff;
  text-shadow: none; }

/*	j.mp/webkit-tap-highlight-color */
a:link {
  -webkit-tap-highlight-color: #111; }

ins {
  background-color: #fcd700;
  color: #000;
  text-decoration: none; }

mark {
  background-color: #fcd700;
  color: #000;
  font-style: italic;
  font-weight: bold; }

/* Mozilla dosen't style place holders by default */
input:-moz-placeholder {
  color: #a9a9a9; }

textarea:-moz-placeholder {
  color: #a9a9a9; }

/* And here begins the WordPress fun.
-------------------------------------------------------------------------------*/
html {
  overflow-y: auto; }

body {
  overflow-x: hidden; }
  body.home {
    background: black; }
  @media (min-width: 1024px) {
    body {
      overflow-x: inherit; }
      body.home {
        background: white;
        overflow-y: hidden; } }

.socicon {
  font-family: 'socicon' !important; }
  .socicon a {
    text-transform: none !important; }

p {
  margin: 0.7em 0; }

hr {
  color: #dfdfdf; }

img {
  width: inherit;
  max-width: 100%;
  height: auto; }

#wrapper {
  margin: 53px 2em;
  position: relative; }
  @media (min-width: 1024px) {
    #wrapper {
      width: 90%;
      max-width: 1280px;
      margin: 20px auto;
      overflow: hidden; } }

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: black;
  color: white;
  padding: 1em 2em;
  z-index: 8888; }
  #header h1 {
    font-size: 1.6em;
    text-transform: lowercase;
    letter-spacing: -0.02em; }
    #header h1 a {
      color: white; }
    #header h1 a:hover {
      border: none; }
  #header .description {
    display: none; }
  @media (min-width: 1024px) {
    #header {
      position: static;
      background: white;
      color: black;
      padding: 1em 0; }
      #header h1 a {
        color: black; }
        #header h1 a:hover {
          border: none;
          color: #444; } }

#nav {
  position: fixed;
  top: 0;
  right: 0;
  right: 0;
  text-align: right;
  text-transform: uppercase;
  z-index: 99999;
  font-size: 1.2em; }
  #nav #mobile-menu {
    display: block;
    position: absolute;
    top: 3px;
    right: 0;
    padding-right: 21px;
    padding-right: 1.6rem;
    line-height: 50px;
    color: white; }
  #nav .menu {
    position: fixed;
    padding-right: 21px;
    padding: 1.6rem;
    top: 53px;
    right: 0;
    left: 0;
    bottom: 0;
    display: none;
    background: rgba(0, 0, 0, 0.7); }
  #nav .menu-item {
    margin-bottom: 13px;
    margin-bottom: 1rem;
    line-height: 2; }
    #nav .menu-item a {
      color: white; }
    #nav .menu-item.current-menu-item a, #nav .menu-item.current_page_parent a, #nav .menu-item.current-post-ancestor a {
      font-weight: bold; }
  #nav .menu-item.wpm-languages {
    display: inline-block;
    margin: 0 0 0 5px;
    float: left;
    clear: left; }
    #nav .menu-item.wpm-languages:after {
      content: '/';
      margin-left: 7px;
      color: white; }
    #nav .menu-item.wpm-languages.active-language a {
      cursor: default; }
      #nav .menu-item.wpm-languages.active-language a:hover {
        color: inherit; }
      #nav .menu-item.wpm-languages.active-language a span {
        font-weight: bold; }
  #nav .menu-item.wpm-languages ~ .menu-item.wpm-languages {
    margin: 0 5px;
    clear: none; }
    #nav .menu-item.wpm-languages ~ .menu-item.wpm-languages:after {
      content: ''; }
  #nav .social {
    display: inline-block;
    margin-left: 13px;
    margin-left: 1rem;
    float: left; }
  @media (min-width: 1024px) {
    #nav {
      position: static;
      float: left;
      width: 18%;
      margin-right: 2%;
      padding: 1em 0;
      border-top: 1px solid #dfdfdf;
      text-align: left;
      text-transform: none; }
      #nav #mobile-menu {
        display: none; }
      #nav .menu {
        display: block;
        background: none;
        position: static;
        padding: 11px 0;
        width: auto; }
      #nav .menu-item.wpm-languages {
        font-size: 0.7em; }
        #nav .menu-item.wpm-languages:after {
          color: #222; }
      #nav .social {
        margin-left: 0;
        margin-right: 6px;
        margin-right: 0.5rem; }
        #nav .social a {
          display: block; }
          #nav .social a i.fab.fa-facebook-f {
            vertical-align: text-top; }
      #nav .menu-item {
        padding-bottom: 13px;
        padding-bottom: 1rem;
        line-height: 1.6; }
        #nav .menu-item a {
          color: #222; }
          #nav .menu-item a:hover {
            color: #777; }
        #nav .menu-item.current-menu-item a, #nav .menu-item.current_page_parent a, #nav .menu-item.current-post-ancestor a {
          font-weight: bold; } }

#sticker {
  position: fixed;
  top: 53px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #222; }
  #sticker .cycle-pager {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 4em;
    color: rgba(255, 255, 255, 0.4);
    z-index: 9999;
    cursor: pointer; }
    #sticker .cycle-pager .cycle-pager-active {
      color: rgba(255, 255, 255, 0.8); }
  #sticker .sticker {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-size: cover;
    overflow: hidden; }
  #sticker > a {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 100%; }
    #sticker > a img {
      width: auto;
      max-width: none;
      height: 100%;
      transform: translateX(-50%);
      margin-left: 50%; }
  #sticker .sticker-details {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    overflow: hidden;
    padding: 1em; }
    #sticker .sticker-details h1 {
      font-size: 3em;
      text-transform: uppercase;
      word-break: break-word; }
      #sticker .sticker-details h1 a {
        color: white; }
    #sticker .sticker-details h2 {
      font-size: 1.6em;
      font-weight: normal; }
      #sticker .sticker-details h2 a {
        color: white; }
    #sticker .sticker-details.black h1 a, #sticker .sticker-details.black h2 a {
      color: black; }
  @media (min-width: 1024px) {
    #sticker {
      top: 73px; }
      #sticker .sticker-details h1 {
        font-size: 5em; }
      #sticker .sticker-details h2 {
        font-size: 2em; } }

.post-navigation {
  position: absolute;
  right: 0;
  top: 0; }
  .post-navigation div {
    float: left;
    color: white; }
    .post-navigation div + div a {
      padding-left: 6px;
      padding-left: 0.5rem; }
      .post-navigation div + div a:before {
        content: '/';
        padding-right: 6px;
        padding-right: 0.5rem; }
    .post-navigation div.prev-post:only-child a:after {
      content: ' >'; }
  .post-navigation a {
    display: block;
    padding: 6px 0;
    padding: 0.5rem 0;
    color: white; }
  @media (min-width: 1024px) {
    .post-navigation {
      font-size: 0.8em;
      left: 82%;
      top: inherit;
      margin-top: 13px; }
      .post-navigation div {
        margin: 0;
        color: inherit; }
      .post-navigation a {
        color: #222; } }

.archive-title {
  background: black;
  color: white;
  font-size: 1.1em;
  padding: 0.5em 2em 1em;
  margin: 0 -2em 1em;
  text-transform: uppercase; }
  .archive-title a {
    color: white; }
  @media (min-width: 1024px) {
    .archive-title {
      display: none; } }

#main h1, #main h2 {
  font-weight: bold;
  font-size: 20px;
  font-size: 1.5rem;
  margin: 6px 0;
  margin: 0.5rem 0;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: grayscale; }

.page #main h1, .page #main h2 {
  font-size: 16px;
  font-size: 1.2rem; }

.archive.category-3 #main {
  display: table-row;
  width: 100%; }

#main .thumb {
  text-align: center;
  margin-bottom: 1em;
  display: block; }

#main article {
  margin-bottom: 1em;
  padding-bottom: 1em; }
  .archive #main article {
    border-bottom: 1px solid #dfdfdf; }

#main .sub-section {
  overflow: hidden;
  width: 100%;
  padding: 0.5em 0;
  border-bottom: 1px solid #dfdfdf; }
  #main .sub-section h3 {
    font-weight: bold;
    text-transform: lowercase;
    position: relative;
    font-size: 1.15em;
    cursor: pointer; }
  #main .sub-section h4 {
    font-size: 1em;
    font-weight: bold;
    margin-top: 1.4em; }
    #main .sub-section h4 + p {
      margin-top: 0.3em; }
  #main .sub-section .sub-section-content {
    display: none; }
    #main .sub-section .sub-section-content.open, #main .sub-section .sub-section-content.pinned {
      display: block; }
  #main .sub-section .pinned p:last-child {
    margin-bottom: 0; }
  #main .sub-section .more-link {
    display: block;
    padding: 0.7em 0 0;
    font-size: 0.85em; }
  #main .sub-section.press a {
    display: block; }

#main .members {
  overflow: hidden; }
  #main .members .member {
    display: inline-block;
    padding: 1em 0;
    vertical-align: top; }
    #main .members .member .member-thumbnail {
      text-align: center;
      float: none;
      margin: 0 0 0.5em; }
    #main .members .member h3 {
      font-size: 1em;
      font-weight: bold;
      text-transform: none;
      cursor: default; }
    #main .members .member p {
      margin: 0; }
  @media (min-width: 768px) {
    #main .members {
      margin-top: 0.6em; }
      #main .members .member {
        padding: 0 2em 1em 0;
        width: 33.333333%; } }

@media (min-width: 768px) {
  #main .thumb {
    float: right;
    margin-left: 2em; }
  #main .sub-section {
    width: auto; } }

@media (min-width: 1024px) {
  #main {
    display: block;
    float: left;
    width: 60%;
    padding: 1em 0;
    border-top: 1px solid #dfdfdf; }
    .archive.category-3 #main {
      display: block;
      width: 60%; }
    #main .mobile {
      display: none; } }

.caption {
  font-size: 0.8em;
  color: #777;
  margin-bottom: 0; }
  .caption:empty {
    height: 0.8em; }

.entry-date {
  display: block;
  float: right;
  font-size: 0.85em;
  margin: 0.7em 0 0 1em; }

.press-quote {
  font-style: italic;
  margin-bottom: 0.3em; }

.press-quote-source, .small {
  font-size: 0.85em; }

.small {
  margin-top: -0.8em; }

.press-quote-source {
  margin-top: 0.3em;
  margin-bottom: 2em; }

.cycle-slideshow {
  border-bottom: 1px solid #dfdfdf;
  overflow: hidden;
  color: #777;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .cycle-slideshow .cycle-prev, .cycle-slideshow .cycle-next {
    cursor: pointer;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 0.5em;
    z-index: 999; }
  .cycle-slideshow .cycle-prev {
    right: 2em; }
  .cycle-slideshow .slide {
    padding-bottom: 0.5em;
    display: none;
    width: 100%; }
    .cycle-slideshow .slide img {
      vertical-align: bottom; }

.home .gallery {
  background: #111;
  position: fixed;
  top: 53px;
  left: 0;
  right: 0;
  bottom: 0; }
  .home .gallery .cycle-slideshow {
    height: 100%;
    width: 100%;
    border-bottom: none; }
    .home .gallery .cycle-slideshow .slide {
      width: 100%;
      height: 100%;
      padding: 0; }
      .home .gallery .cycle-slideshow .slide a {
        display: block;
        height: 100%; }
        .home .gallery .cycle-slideshow .slide a img {
          width: auto;
          max-width: none;
          height: 100%;
          min-width: 100%;
          margin-left: 50%;
          transform: translateX(-50%);
          padding: 0; }
    .home .gallery .cycle-slideshow .caption {
      position: absolute;
      bottom: 20px;
      left: 10px;
      color: white; }

@media (orientation: landscape) {
  .home .gallery .cycle-slideshow .slide a img {
    padding-top: 50%;
    height: auto;
    transform: translate(-50%, -50%); } }

@media (min-width: 1024px) {
  .home .gallery {
    position: static;
    margin: 1em 0;
    background: white; }
    .home .gallery .cycle-slideshow .slide a {
      height: 0;
      padding-bottom: 65%;
      overflow: hidden; }
      .home .gallery .cycle-slideshow .slide a img {
        transform: none;
        max-width: 100%;
        height: auto;
        min-height: 0;
        margin: 0;
        padding: 0; }
    .home .gallery .cycle-slideshow .caption {
      position: static;
      color: inherit;
      float: left; } }

.embed-container {
  position: relative;
  padding-bottom: 56.28%;
  padding-top: 25px;
  height: 0;
  margin: 0;
  margin: 0.5em 0; }
  .embed-container.format-34 {
    padding-bottom: 72%; }
  .embed-container iframe, .embed-container object, .embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%; }

#sidebar {
  padding: 0 0 1em; }
  .archive.category-3 #sidebar {
    display: table-caption; }
  .page #sidebar {
    display: block; }
  #sidebar .sidebar-title {
    font-weight: 700;
    font-size: 20px;
    font-size: 1.5rem;
    margin: 0 0 0.5em; }
  #sidebar .year {
    font-weight: bold;
    padding-bottom: 0.5em;
    cursor: pointer; }
  #sidebar .caption {
    font-size: 1em; }
  #sidebar .year-events {
    display: none; }
  #sidebar .credits {
    display: none; }
  #sidebar .agenda, #sidebar .coming-up {
    padding: 1em 0 0.5em; }
  #sidebar .thumb {
    display: none; }
  #sidebar li {
    margin-bottom: 1.4em; }
  #sidebar p {
    margin: 0.5em 0; }
  .single #sidebar p {
    margin: 0.3em 0; }
  #sidebar h4 {
    font-weight: 700; }
  @media (min-width: 1024px) {
    #sidebar {
      display: block;
      float: right;
      width: 18%;
      padding: 1.1em 0;
      border-top: 1px solid #dfdfdf; }
      #sidebar .sidebar-section {
        display: block;
        border-top: 1px solid #dfdfdf;
        font-size: 0.8em; }
        #sidebar .sidebar-section .sidebar-title {
          font-size: 1.2em; }
      body:not(.home) #sidebar .sidebar-section:not(.thumb):not(.newsletter):first-child {
        margin-top: 45px; }
      #sidebar .credits, #sidebar .speellijst, #sidebar .newsletter {
        padding: 1em 0; }
      #sidebar .newsletter {
        margin-top: 1em; }
        #sidebar .newsletter p {
          margin-bottom: 0.5em; }
      .home #sidebar .agenda:first-child {
        margin-top: 1em; }
      #sidebar .thumb {
        margin-top: 0.7em;
        display: block; }
      #sidebar li {
        margin-bottom: 1em; } }

#main p a[href^="http"]:after, #sidebar a[href^="http"]:after, .year:after {
  content: ' >'; }

#footer {
  clear: both; }

.mc4wp-form {
  max-width: 400px; }

/* Print styles!
-------------------------------------------------------------------------------*/
/* Media queries!
-------------------------------------------------------------------------------*/
/* Always do mobile-first, and consider using em units: http://blog.cloudfour.com/the-ems-have-it-proportional-media-queries-ftw

@media screen and (min-width: 480px) {

} */
