/* Walshiem
-------------------------------------------------- */

@font-face {
    font-family: 'Walsheim';
    src: url('../fonts/GT-Walsheim-Medium.otf');
    font-weight: normal;
}

/* Reset
-------------------------------------------------- */
*, *:before, *:after {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, nav, section, summary {
  display: block;
}

body{
  font-family: "Walsheim", Arial, sans-serif;
  font-size: 20px;
  /*overflow: auto; position: absolute; height: 100%;*/
}

::selection{
  background-color: #3D857C;
  color: #fff;
}



/* Typography
-------------------------------------------------- */

h1{
  font-size: 2em;
  margin: 1.4em 0 1em 0;
  font-weight: normal;
  line-height: 1.1em;
}

h2{
  font-size: 1.8em;
  margin: 1.4em 0 1em 0;
  font-weight: normal;
  line-height: 1.1em;
}

h3{
  font-size: 1.6em;
  margin: 1.4em 0 1em 0;
  font-weight: normal;
  line-height: 1.1em;
}

h4{
  font-size: 1.4em;
  margin: 1.4em 0 1em 0;
  font-weight: normal;
}

h5{
  font-size: 1.2em;
  margin: 1.4em 0 1em 0;
  font-weight: normal;
}

h6{
  font-size: 1em;
  margin: 1.4em 0 1em 0;
  text-transform: uppercase;
  font-weight: normal;
}

p{
  font-size: 1em;
  margin-bottom: 1.4em;
}

ul{
  margin-bottom: 1.4em;
}

main a
{
  text-decoration: none;
  box-shadow: inset 0 -0.5em #3D857C;
  color: #000;
}

main a:hover {
  box-shadow: inset 0 0;
  cursor: pointer;
}


/* Header
-------------------------------------------------- */

.menu{
  z-index: 1000;
  position: absolute;
  width: 50%;
  right: 0;
  margin-top: 40px;
}

.menu ol li{
  list-style: none;
  display: inline-block;
  padding-left: 40px;
}

.menu ol li a:hover{
  box-shadow: inset 0 -0.5em #3D857C;
}

.active-page{
  box-shadow: inset 0 -0.5em #3D857C;
}

.menu ol li a{
  color: #000;
  text-decoration: none;
}

.logo{
  z-index: 1000;
  width: 300px;
  position: absolute;
  top: 30px;
  left: 30px;
}

/* Hambuger */

#hamburger{
  display: none;
  width: 40px;
  height: 40px;
  position: fixed;
  float: right;
  top: 45px;
  right: 40px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#hamburger span{
  display: block;
  position: absolute;
  height: 6px;
  width: 100%;
  background: #000;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#hamburger span:nth-child(1) {
  top: 0px;
}

#hamburger span:nth-child(2),#hamburger span:nth-child(3) {
  top: 14px;
}

#hamburger span:nth-child(4) {
  top: 28px;
}

#hamburger.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#hamburger.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#hamburger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#hamburger.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

/*WHITE BACKGROUND*/
.mobile-menu-screen{
  display: none;
  position: fixed;
  height: 100vh;
  width: 100vw;
  background-color: #fff;
  z-index: 999;
}

.mobile-menu{
  position: fixed;
  left: 50%;
  top: 50%;
  text-align: center;
  z-index: 1000;
  list-style: none;
  transform: translateX(-50%) translateY(-50%);
}

.mobile-menu li a{
  text-decoration: none;
  color: #000;
  font-size: 2em;
  margin-bottom: 30px;
}


/* Main
-------------------------------------------------- */

main{
  padding: 160px 80px 150px 80px;
  position: relative;
  z-index: 500;
  background-color: #fff;
  margin-bottom: 700px;
}

.master-contain{
  max-width: 1280px;
  margin: 0 auto;
}

.container::after{
  content: " ";
  display: block;
  height: 0;
  clear: both;
}

.left{
  width: 50%;
  display: inline-block;
  padding: 0 40px 0 0;
}

.right{
  float: right;
  right: 0;
  width: 50%;
  display: inline-block;
  padding: 0 0 0 40px;
}

/* imgs
-------------------------------------------------- */

img{
  max-width: 100%;
  filter: grayscale(100%) brightness(1.2);
  ms-filter: grayscale(100%) brightness(1.2);
  opacity: 0.8;
  display: block;
}

.img-no-filter{
  filter: none;
  ms-filter: none;
  opacity: 1.0;
}

.img-bg{
  background-color: #3D857C;
  margin-bottom: 15px;
  display: inline-block;
}

.list-img{
  max-width: 430px;
}

/* Footer
-------------------------------------------------- */

footer{
  height: 700px;
  width: 100%;
  background-color: #000;
  position: fixed;
  bottom: 0;
}

.footer-center{
  position: absolute;
  transform: translateX(-50%) translateY(-50%);
  left: 50%;
  top: 50%;
  text-align: center;
  width: 600px;
}
.footer-center p, .footer-center a, .footer-bot-right, .footer-bot-left{
  color: #fff;
}

.footer-center a{
  text-decoration: none;
  font-size: 2em;
}

.footer-swipe{
  width: 350px;
  height: 50px;
  background-image: url('../images/footer-swipe.svg');
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 86px;
  z-index: -1;
}

.footer-bot-right{
  position: absolute;
  right: 30px;
  bottom: 10px;
  display: inline-block;
}

.footer-bot-left{
  position: absolute;
  left: 30px;
  bottom: 10px;
  display: inline-block;
}



/* Home
-------------------------------------------------- */

.home-splash{
  max-width: 400px;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
  background-image: url('../images/home-splash.svg');
}

.home-sub-title{
  display: inline-block;
  position: absolute;
  transform: rotate(90deg) translateX(50%) translateY(50%);
  left: -57px;
  top: 119px;
  z-index: 1000;
}

.quote{
  margin: 150px 0;
  text-align: center;
}

.quote-box{
  max-width: 440px;
  display: inline-block;
  margin: 0 auto;
}

.quote-text{
  text-align: left;
}

.quote-signature{
  display: inline-block;
  text-align: right;
  float: right;
}

.quote-swish{
  width: 535px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-25%);
  z-index: -1;
}

.jou-list{
  height: 100%;
}

.jou-li{
  height: 100%;
  position: relative;
  margin-bottom: 1.4em;
}

.jou-l{
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.jou-r{
  width: calc(100% - 150px);
  display: inline-block;
  left: 150px;
  position: relative;
}

.jou-r p{
  margin: 0;
}

.home-contact{
  width: 700px;
  margin: 0 auto;
}

.home-contact-image{
  width: 240px;
  display: inline-block;
}

.home-contact-image .contact-links {
  margin: 30px 0 0 0;
}

.home-contact-image .contact-links a {
  text-decoration: none;
  box-shadow: inset 0 0;
  cursor: pointer;
}

.home-contact-image .contact-links a:hover {
  box-shadow: inset 0 -0.5em #3D857C;
  color: #000;
}

.home-contact-text {
  width: 370px;
  display: inline-block;
  position: relative;
  top: -50px;
  left: 30px;
}

.hct-mobile{
  display: none;
}

.hct-desktop{
  display: inline-block;
}

.svg-swoosh{
  height: 60px;
  width: 88px;
  background-size: cover;
  position: absolute;
  background-image: url('../images/swoosh.svg');
  transform: translateX(73px) translateY(56px);
}

.svg-bang{
  height: 50px;
  width: 50px;
  background-size: cover;
  position: absolute;
  background-image: url(../images/change-splash.svg);
  transform: translateX(55px) translateY(20px);
  z-index: -1;
}

.svg-coin{
  height: 140px;
  width: 80px;
  background-size: cover;
  position: absolute;
  background-image: url('../images/coins.svg');
  transform: translateY(-200px);
}

/* Projects
-------------------------------------------------- */

.project-tab-bar{
  width: 100%;
}

.project-tab-bar::after{
  content: " ";
  display: block;
  height: 0;
  clear: both;
}

.ptb-left{
  width: 50%;
  float: left;
}

.ptb-left p, .p49{
  display: inline-block;
  width: 49%;
}

.ptb-right{
  width: 50%;
  float: right;
  padding-left: 40px;
}

.ptb-right h1{
  margin: 0 0 1em 0;
}

.project-tab-bar-line{
  float: left;
  width: 100%;
  height: 1px;
  background-color: #000;
  margin-bottom: 30px;
  margin-top: 40px;
}

.img-caption p{
  font-size: 0.75em;
}



/* Particular stylings
-------------------------------------------------- */

.green-h1{
  box-shadow: inset 0 -0.5em #3D857C;
}

.error{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
}

.lees-meer{
  margin-bottom: 40px;
}




/* Mobile
--------------------------------------------------
--------------------------------------------------
-------------------------------------------------- */
@media screen and (max-width: 780px) {

  main {
    padding: 160px 30px 150px 30px;
  }

  .left {
    width: 100%;
    display: inline-block;
    padding: 0 40px 0 0;
  }

  .right{
    float: left;
    right: 0;
    width: 100%;
    display: inline-block;
    padding: 0;
  }

  .desktop-menu{
    display: none;
  }

  .home-sub-title{
    display: none;
  }

  .project-cats{
    display: none;
  }

  .ptb-left {
    width: 100%;
  }

  .ptb-right{
    width: 100%;
    padding-left: 0;
  }

  .img-bg{
    margin-bottom: 40px;
  }
  .footer-center{
    width: 340px;
  }

  .footer-swipe{
    bottom: 110px;
  }

  #hamburger{
    display: block;
  }

  .home-contact {
    width: 100%;
  }

  .home-contact-text {
    width: 100%;
    top: 0;
    left: 0;
  }

  .jou-r {
    width: calc(100% - 135px);
    left: 130px;
  }

  .hct-mobile{
    display: block;
  }

  .hct-desktop{
    display: none;
  }

  .logo{
    width: 65%;
  }

  .mobile-hide{
    display: none;
  }

  .svg-coin{
    display: none;
  }

  .svg-bang{
    display: none;
  }

  .svg-swoosh{
    transform: translateX(57px) translateY(40px);
  }

  /* MOBILE Typography
  -------------------------------------------------- */

  h1{
    font-size: 1.6em;
    margin: 1.4em 0 1em 0;
    font-weight: normal;
    line-height: 1.1em;
  }

  h2{
    font-size: 1.8em;
    margin: 1.4em 0 1em 0;
    font-weight: normal;
    line-height: 1.1em;
  }

  h3{
    font-size: 1.6em;
    margin: 1.4em 0 1em 0;
    font-weight: normal;
    line-height: 1.1em;
  }

  h4{
    font-size: 1.4em;
    margin: 1.4em 0 1em 0;
    font-weight: normal;
  }

  h5{
    font-size: 1.2em;
    margin: 1.4em 0 1em 0;
    font-weight: normal;
  }

  h6{
    font-size: 1em;
    margin: 1.4em 0 1em 0;
    text-transform: uppercase;
    font-weight: normal;
  }

  p{
    font-size: 1em;
    margin-bottom: 1.4em;
  }

  ul{
    margin-bottom: 1.4em;
  }

  main a
  {
    text-decoration: none;
    box-shadow: inset 0 -0.5em #3D857C;
    color: #000;
  }

  main a:hover {
    box-shadow: inset 0 0;
    cursor: pointer;
  }

}
