@import url(http://fonts.googleapis.com/css?family=Open+Sans);
*,
*:after,
*::before {
  box-sizing: border-box;
}

html,
body,
.container,
.pusher,
.content {
  height: 100%;   
}

body {
  background: #e3e2e7;
  color: fab;
  font-weight: 400;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  cursor:pointer;    
}

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h3 {
  position: absolute;
  border: none;
  background-color:transparent;
  padding-bottom: 1vh ;
  color: black;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.8vw;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  bottom: 0vh;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

h3:hover {
  bottom:1.5vw;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

/* Background image */
.content {
  /* background-color: aquamarine; */
  background-image: url(/images/background.jpg);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat:  no-repeat;
  background-attachment: fixed;
  background-size:  cover;
  align-items: center;
  height: 100%;
  cursor:auto;    
}
}

.content,
.content-inner {
  position: relative;
  cursor:pointer;    
}

.content-inner{
  height: 100vh;
  cursor:pointer;    
}

.container {
  position: relative;
  overflow: hidden;
  cursor:pointer;    
}

.pusher {
  position: relative;
  right: 0;
  z-index: 99;
  height: 100%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  cursor:pointer;    
}

.pusher::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.2);
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
  transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
  cursor:pointer;
}

.menu-open .pusher::after {
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  cursor:pointer;    
}

.panel {
  position: absolute;
  top: 0;
  left: -0.5vw;
  z-index: 100;
  visibility: hidden;
  width: 700px;
  height: 100%;
  background: fab;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor:pointer;
}

.panel::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  content: "";
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  cursor:pointer;
}

.menu-open .panel::after {
  width: 0;
  height: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
  transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
  cursor:pointer;
}

.menu-open .pusher {
  -webkit-transform: translate3d(-50vw, 0, 0);
  transform: translate3d(-50vw, 0, 0);
  cursor:pointer;
}

.panel {
  -webkit-transform: translate3d(102vw, 0, 0);
  transform: translate3d(102vw, 0, 0);
  cursor:pointer;
}

.menu-open .panel {
  visibility: visible;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  cursor:pointer;
}

.panel::after {
  display: none;
  cursor:pointer;
}

/* Text inside menu */
h2 {
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 2vh;
}

h2, a{
  font-size: 3vw;
  line-height: 4.5vw;
}
/* Blob */
.blob {
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

/* logo */
.logo {
  position: absolute;
  top: 1.65vw;
  width: 29vw;
  height: 6.6%;
  z-index: 105;
  left: 1.65vw;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
  cursor:pointer;
}
/* Selection color */
::selection {
  background: orangered; /* WebKit/Blink Browsers */
}
::-moz-selection {
  background: orangered; /* Gecko Browsers */
}

/* justify menu-bar */
.menubar {
  display: flex;
  justify-content: space-between;
  width: 86.3vw;
}
.menurow{
  position:fixed;
  left: 1.52vw; 
  bottom: -0.9vh;
}
#salaris{
  left: 18.5vw;
}
#personeel{
  right: 3.7vw;
}

/* contact */
#contact {
  right: 1.65vw;
  top: 0.2vh;
}

/* different background color */
#bcks{
  position:absolute;
  background-color: #dfdbda;
  width: 100vw;;
  height: 100vh;
  z-index: 96;
  top: 0vh;
  left: -1.55vw;
  cursor:pointer;
}
#bckd{
  position:absolute;
  background-color: #d5cdca;
  width: 100vw;;
  height: 100vh;
  z-index: 96;
  top: 0vh;
  left: -1.55vw;
  cursor:pointer;
}
#bckp{
  position:absolute;
  background-color: #ccc0ba;
  width: 100vw;;
  height: 100vh;
  z-index: 96;
  top: 0vh;
  left: -1.55vw;
  cursor:pointer;
}
#bckm{
  position:absolute;
  background-color: #c2b3ac;
  width: 100vw;;
  height: 100vh;
  z-index: 96;
  top: 0vh;
  left: -1.55vw;
  cursor:pointer;
}

#bckc{
  position:absolute;
  background-color: orangered;
  width: 100vw;;
  height: 100vh;
  z-index: 96;
  top: 0vh;
  left: -1.55vw;
  cursor:pointer;
}
#bckc a, #bckc h2{
  color: white;
}

.inside{
  margin-left: 1.65vw;
  cursor:pointer;
}

.navigationmobile {
  position: absolute;
  visibility: hidden;
}
.logomobile{
  visibility: hidden;
}

/* phone website */
@media(max-width: 650px) {
.menurow, #contact, #salaris, #personeel {
  visibility: hidden;
}
.logo{
  visibility: hidden;    
}
    
.logomobile {
  visibility: visible;
  position: absolute;
  top: 3vw;
  width: 94vw;
  height: 6.6%;
  z-index: 105;
  left: 3vw;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}
.menu-open .pusher {
  -webkit-transform: translate3d(-80vw, 0, 0);
  transform: translate3d(-80vw, 0, 0);
}
    
.navigationmobile {
  position: absolute;
  visibility: visible;
  background: transparent;
  z-index: 100;
  list-style: none;
  left: 3vw;
  bottom: 1vw;
}
.navigationmobile ul {
  margin: 0;
  padding: 2;
  width: 500px;

}
h2 {
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 1.5vw;
}

h2, a{
  font-size: 5.15vw;
  line-height: 8vw;
  padding-left: 1.5vw;
  padding-right: 9vw;    
}
li {
  padding-right: 7vw;
}    

h4 {
  border: none;
  left: 3vw;
  background-color: transparent;
  padding-bottom: 0vh;
  color: black;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 8vw;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 0px;
  margin-top: 0px;
  line-height: 13vw;
}

.container {
  position: relative;
  overflow: hidden;
  cursor:pointer;    
}
    
.panel{
  width: 74vw;
  left:1vw;
  cursor:pointer;        
}
    
.pusher {
  position: relative;
  right: 0;
  z-index: 99;
  height: 100%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  cursor:pointer;    
}

.pusher::after {
  position: absolute;
  cursor:pointer;    
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.2);
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
  transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
}
    
#bckb {
  left: -3.1vw;
  cursor:pointer;    
}
#bcks {
  left: -3.1vw;    
  cursor:pointer;    
}
#bckd {
  left: -3.1vw;    
  cursor:pointer;    
}
#bckp {
  left: -3.1vw;
  cursor:pointer;    
}
#bckm {
  left: -3.1vw;   
  cursor:pointer;        
}
#bckc {
  left: -3.1vw;
  cursor:pointer;
}
#bckc a{
  left: 1.1vw; 
  cursor:pointer;
}    
    
*,
*:after,
*::before {
  box-sizing: border-box;
}
}