/* COLOR DEFINITIONS */
/* Primary text: #fff */
/* Secondary text: #999 */
/* Main background: #D1D1D1 */

/* ============= */
/* GLOBAL STYLES */
/* ============= */
* {
  font-family: Arial, sans-serif;
}

li {
  color: #fff;
  font-size: 1.3em;
}

body {
  color: #fff;
}

.section_inner {
  min-height: 100vh !important;
  margin-bottom: 250px;
}

.btn-default, .btn-primary {
  color: #fff;
  background-color: #999;
  border: none;
}
.btn-default:hover, .btn-default:focus, .btn-default.focus, .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default,
.btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #6b6b6b;
  border: none;
}

/* TODO: Delete me! */
.section {
  /*border-top: 1px solid darkgreen;*/
  /*border-bottom: 1px solid darkred;*/
}

/* ================= */
/* RE-USABLE CLASSES */
/* ================= */
li.list-style-none,
ol.list-style-none {
  list-style: none;
  padding-left: 0;
}

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

span.large-space {
  width: 20px;
  display: inline-block;
}


/* ================= */
/* GLOBAL COMPONENTS */
/* ================= */

/* Main title component. */
.main-title {
  color: #fff;
}
.main-title h1 {
  text-align: center;
  font-size: 4em;
  margin: 0;
}
.main-title p {
  text-align: center;
  font-size: 2.9em;
  margin: -10px 0 0;
}
.main-title ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 1.8em;
  margin: 0;
  padding: 0;
}
.main-title ul li {
  margin: 0 auto;
}
@media only screen and (min-width: 601px) {
  .main-title h1,
  .main-title p {
    font-size: 4.5em;
  }

  .main-title ul {
    flex-direction: row;
    font-size: 2em;
  }

  .main-title ul li {
    margin: initial;
  }
}
@media only screen and (min-width: 1200px) {
  .main-title h1,
  .main-title p {
    font-size: 6em;
  }

  .main-title ul {
    font-size: 3em;
  }
}


/* Portrait component. */
.portrait {
  width: 100%;
  margin-bottom: 30px;
}
.portrait.portrait-left {
  margin-right: 30px;
  float: left;
}
.portrait.portrait-right {
  margin-left: 30px;
  float: right;
}
.portrait img {
  margin-bottom: 15px;
  width: 100%;
}
.portrait p {
  text-align: center;
  font-size: 1.4em;
  word-wrap: break-word;
  color: #999;
}
@media only screen and (min-width: 601px) {
  .portrait {
    width: 240px;
  }
}

/* Menu component. */
.menu-container {
  margin-top: 20px;
}
.menu-container a {
  font-size: 1.2em;
  color: #999;
  font-weight: bold;
}

.menu-container ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}
.menu-container li {
  width: 50%;
  /* margin: 0 auto; */
  text-align: center;
  margin-bottom: 10px;
}
@media only screen and (min-width: 601px) {
  .menu-container li {
    width: 25%;
  }
}

/* Section navigation component. */
.fp-nav-custom {
  position: fixed;
  z-index: 100;
  margin-top: -32px;
  top: 50%;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
}
.fp-nav-custom.fp-nav-custom-left {
  left: 17px;
}
.fp-nav-custom ul {
  margin: 0;
  padding: 0;
}
.fp-nav-custom ul li {
  display: block;
  width: 14px;
  height: 13px;
  margin: 7px;
  position: relative;
}
.fp-nav-custom ul li a {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
}
.fp-nav-custom ul li a span:not(.fp-sr-only) {
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  height: 4px;
  width: 4px;
  border: 0;
  background: #333;
  left: 50%;
  top: 50%;
  margin: -2px 0 0 -2px;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.fp-nav-custom ul li a.active span:not(.fp-sr-only) {
  height: 12px;
  width: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 100%;
}
/* CSS above is copied from fullpageJS, except the additions of
":not(.fp-sr-only)" here and there. below are our overrides. */
.fp-nav-custom ul li:not(:last-child) {
  margin-bottom: 50px;
}
.fp-nav-custom ul li:not(:last-child)::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  left: calc(50% + 5px);
  position: absolute;
  margin-top: 10px;
}
.fp-nav-custom ul li:hover .fp-sr-only {
  overflow: visible;
  clip: unset;
  left: 40px;
  top: 0;
  color: #fff;
  height: auto;
  width: auto;
  font-size: 0.9em;
  letter-spacing: 4px;
  padding: 2px 15px;
  border-radius: 5px;
  background: linear-gradient(90deg, #c7c7c7, rgba(199, 199, 199, 0.6));
}
@media only screen and (max-width: 1279px) {
  .fp-nav-custom ul li .fp-sr-only {
    overflow: visible;
    clip: unset;
    left: 40px;
    top: 0;
    color: #fff;
    height: auto;
    width: auto;
    font-size: 0.9em;
    letter-spacing: 4px;
    padding: 2px 15px;
    border-radius: 5px;
    background: linear-gradient(90deg, #c7c7c7, rgba(199, 199, 199, 0.6));
  }
}
.fp-nav-custom ul li a span:not(.fp-sr-only) {
  height: 15px;
  width: 15px;
  background: none;
  border: 1px solid #fff;
}
.fp-nav-custom ul li a.active span:not(.fp-sr-only) {
  /* Height, width and margin inherited from: .fp-nav-custom ul li a span */
  height: 15px;
  width: 15px;
  margin: -2px 0 0 -2px;
  background-color: #ddd;
}

/* There really only is enough space past a width of 1280px to show the section
   navigation without interfering with the rest of the layout. */
@media only screen and (max-width: 1279px) {
  .fp-nav-custom {
    /*display: none;*/
  }
}

.fp-nav-custom-button {
  display: block;
  position: fixed;
  top: 10px;
  height: 40px;
  width: 40px;
  z-index: 100;
  left: 10px;
  background: #ddd;
  border-radius: 50%;
  border: 1px solid #fff;
}
.fp-nav-custom-button i.fa {
  font-size: 21px;
  margin-top: 3px;
}

/* Footer component. */
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}
.copyright-container {
  width: 320px;
  margin: 0 auto;
  text-align: center;
}
.copyright-container img {
  margin: 0 auto;
}


/* =============== */
/* PROJECT LAYOUTS */
/* =============== */

/* Every project has the same layout, with additional classes providing overrides. */
.project-main {
  min-height: 100vh;
  margin-bottom: 100px;
}
.project-main a.fancybox-image:not(:first-child) {
  margin-top: 100px;
}
.project-main img {
  width: 100%;
}

.project-image-text {
  text-align: center;
  font-style: italic;
  margin-top: 10px;
}

.project-specifications {
  text-align: center;
  flex-direction: column;
  display: flex;
  justify-content: center;
}
.project-specifications .project-materials {
  /*text-transform: lowercase;*/
}
@media only screen and (min-width: 601px) {
  .project-specifications {
    flex-direction: row;
  }

  .project-specifications div:not(:last-child) {
    margin-right: 30px;
  }
}

.project-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 15px;
}
.project-meta div {
  margin-right: auto;
  margin-left: auto;
}
.project-meta .project-name h2 {
  font-size: 1.3em;
  font-style: italic;
}
@media only screen and (min-width: 601px) {
  .project-meta {
    flex-direction: row;
  }

  .project-meta .project-name {
    margin-right: 50px;
  }

  .project-meta .project-author {
    margin-right: 20px;
  }

  .project-meta div {
    margin-right: initial;
    margin-left: initial;
  }
}


.project-detail-images-container h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.3em;
}

.project-detail-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.project-detail-images img {
  padding-bottom: 10%;
}
@media only screen and (min-width: 601px) {
  .project-detail-images img {
    width: 45%;
  }

  .project-detail-images img:nth-child(odd) {
    padding-right: 5%;
  }

  .project-detail-images img:nth-child(even) {
    padding-left: 5%;
  }
}

.project-gallery-images-container {
  display: flex;
  flex-direction: column-reverse;
}
.project-gallery-images-container h3 {
  text-align: center;
  font-size: 1.3em;
}

.project-text {
  text-align: center;
}

/* Layout override: one tall image in the middle. */
.project.project-single-tall-image img {
  width: auto;
  margin: 0 auto;
}

/* Layout override: 4 images in a 2x2 grid, not taller than view height.*/
.project.project-2x2-image .project-images {
  display: flex;
  flex-wrap: wrap;
  height: 90vh;
}
.project.project-2x2-image a.fancybox-image {
  width: calc(50% - 20px);
  height: calc(50% - 20px);
}
.project.project-2x2-image img {
  width: auto;
  height: 100%;
}
.project.project-2x2-image a.fancybox-image:not(:first-child) {
  margin-top: 0;
}
.project.project-2x2-image a.fancybox-image:nth-child(3),
.project.project-2x2-image a.fancybox-image:nth-child(4) {
  margin-top: 40px;
}
.project.project-2x2-image a:nth-child(1), .project.project-2x2-image a:nth-child(3) {
  display: flex;
  flex-direction: row-reverse;
  margin-right: 20px;
}
.project.project-2x2-image a:nth-child(2), .project.project-2x2-image a:nth-child(4) {
  margin-left: 20px;
}

/* Layout override: 2 images side by side. */
.project.project-2-images-landscape .project-images {
  display: flex;
  align-items: flex-end;
}

.project.project-2-images-landscape a.fancybox-image:not(:first-child) {
  margin-top: 0;
}
.project.project-2-images-landscape a.fancybox-image:not(:last-child) {
  margin-right: 35px;
}
.project.project-2-images-landscape a.fancybox-image:not(:first-child) {
  margin-left: 35px;
}

/* =============== */
/* SECTION STYLING */
/* =============== */

/* Section: About me */
#section-about-me {
  padding-top: 50px;
}

#about-me-content {
  margin-top: 50px;
}


/* Section: project index */
#section-project-index li {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
  font-style: italic;
}
#section-project-index li span {
  font-style: normal;
}


/* Section: Contact */
#section-contact h2 {
  margin-bottom: 20px;
}


/* Section: Wersktuk De vogels 2012 */
#werkstuk-de-vogels-2012 .project-detail-images img:nth-child(odd) {
  padding-right: 1%;
}

#werkstuk-de-vogels-2012 .project-detail-images img:nth-child(even) {
  padding-left: 1%;
}

/* Section: werkstuk-materiaalstudio-voor-droombeeld */
#werkstuk-materiaalstudio-voor-droombeeld  .project-images {
    display: flex;
    align-items: center;
    flex-direction: column;
}
#werkstuk-materiaalstudio-voor-droombeeld  .project-images > div {
    display: flex;
}
#werkstuk-materiaalstudio-voor-droombeeld  .project-images a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0;
    padding: 10px;
    height: 100%;
    width: auto;
}
#werkstuk-materiaalstudio-voor-droombeeld  .project-images img {
  max-height: 60vh;
  width: auto;
}

#werkstuk-materiaalstudio-voor-droombeeld .project-specifications {
  flex-direction: column;
}

/* Section: Contact form/footer */
#section_105 .section_inner {
  margin-bottom: 0;
  /* Set min height to 100vh + height of the footer. */
  min-height: calc(100vh + 72px) !important;
}
#section_105 .section_inner .container {
  padding-bottom: 72px;
}

#social-icons {
    float:right;
}

.fab {
    display:inline-block;
    padding: 20px;
    font-size: 30px;
    width: 70px !important;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    border-radius: 50%;
}

.fab:hover {
    opacity: 0.7;
}

.fa-facebook-f {
    background: #999;
    color: white;
}

.fa-facebook-f:hover {
    background: #3B5998;
    color: white;
}

.fa-linkedin-in {
    background: #999;
    color: white;
}

.fa-linkedin-in:hover {
    background: #007bb5;
    color: white;
}