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

body {
   background-color: #f4f5f6;
}

.border {
  position: fixed;
  background-color: #fff;
  z-index: 50;
}

.border-horizontal {
  width: 100%;
  height: 20px;
}

.border-vertical {
  width: 20px;
  height: 100%;
}

.header-logo {
  position: absolute;
  background-color: #ddd2c0;
  width: 120px;
  height: 120px;
  z-index: 20;
  top: 20px;
  left: 20px;
  padding: 45px 20px;
}

.background-image {
  position: absolute;
  width: 100vw;
  height: 100vh;
  padding: 0 20px;
  background-image: url('../img/itsme_greyscale.jpg');
  background-size: cover;
  background-position: 50% 0;
  opacity: 0.05;
  z-index: 1;
  -webkit-filter: blur(30px);
  -moz-filter: blur(30px);
  -o-filter: blur(30px);
  -ms-filter: blur(30px);
  filter: blur(30px);
  transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -webkit-animation-name: background-image;
          animation-name: background-image;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

.wrapper {
  position: relative;
  padding: 0 40px;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 2;
  transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -webkit-animation-name: wrapper;
          animation-name: wrapper;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

.headline-large {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 900;
  font-size: 35px;
  letter-spacing: 2px;
  color: #484746;
  display: inline-block;
  margin-bottom: 9px;
  text-transform: uppercase;
  text-align: center;
  line-height: 30px;
}

.jobdescription {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: #484746;
  display: block;
  letter-spacing: 2px;
  margin-bottom: 32px;
  text-align: center;
  line-height: 27px;
  text-transform: uppercase;
}

.divider {
  width: 44px;
  height: 4px;
  background-color: #ddd2c0;
  margin-bottom: 32px;
}

.clients {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 200;
  font-size: 12px;
  line-height: 26px;
  opacity: 0.5;
  color: #484746;
  max-width: 650px;
  text-align: center;
  /* text-transform: uppercase; */
  margin-bottom: 26px;
  letter-spacing: 2px;
}

.contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.contact a {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 200;
  font-size: 18px;
  line-height: 27px;
  color: #484746;
  border-bottom: 1px solid rgba(72,71,70,0.5);
  margin: 0 10px;
  text-decoration: none;
  padding: 0 0 2px 0;
  letter-spacing: 2px;
}


/* # # # # # # Animations # # # # # #  */

@-webkit-keyframes wrapper {
  0% {opacity: 0;}
  25% {opacity: 0;}
  100% {opacity: 1;}
}

@-webkit-keyframes background-image {
  0% {
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -o-filter: blur(0px);
    -ms-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }

  25% {
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -o-filter: blur(0px);
    -ms-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }

  100% {
    -webkit-filter: blur(30px);
    -moz-filter: blur(30px);
    -o-filter: blur(30px);
    -ms-filter: blur(30px);
    filter: blur(30px);
    opacity: 0.05;
  }
}




/* # # # # # # Mediascreens # # # # # #  */

@media screen and (max-width:700px) {

  .headline-large {
    font-size: 30px;
    line-height: 30px;
    padding: 2px 15px;
  }

  .jobdescription {
    font-size: 16px;
  }

  .contact a {
    font-size: 16px;
  }

  .header-logo {
    width: 90px;
    height: 90px;
    padding: 36px 20px;
    left: calc(50% - 45px);
  }

}

@media screen and (max-height:667px) {

  .wrapper {
    height: 100%;
    padding: 150px 40px 40px 40px;
  }

}
