@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

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

img {
  max-width: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}


a {
  text-decoration: none;
}

li {
  list-style-type: none;
}

.spacer5{ position:relative; width:100%; height:5px; display:block; }
.spacer10{ position:relative; width:100%; height:10px; display:block; }
.spacer15{ position:relative; width:100%; height:15px; display:block; }
.spacer20{ position:relative; width:100%; height:20px; display:block; }


#hoofdcontainer { 
	/*position:relative;*/
	width:100%;
	max-width:1280px;
	/*text-align: left;
	overflow-x:hidden;
	height:auto;*/
	margin:auto;
	}
	

header {
  position: relative;
  width: 100%;
	max-width:1280px; 

  /*
  display: flex;
  justify-content: space-between;
  align-items: center;*/
  /*padding: 2em;*/
  /*z-index: 999;*/
	margin:auto;
	margin-bottom:25px;
	/*background-color:green;*/
}


#container1 { 
	position:relative;
	width:100%;
	max-width:1280px; 
	margin:auto;	
	z-index:10;
	padding:20px;
	/*background: rgba(0, 0, 0, .5);*/
	color:#fff;

	/*background: rgba(255, 255, 255, .7);
	color:#000;*/
	}	
	
	
#container2 { 
	position:relative;
display:none;
	width:100%;
	max-width:1280px; 
	margin:auto;	
	z-index:10;

	padding:20px;
	/*background: rgba(0, 0, 0, .5);
	color:#fff;*/


	color:#000;


	}	



#containerfooter { 
	position:relative;
	bottom:0;
display:none;
	width:100%;
	max-width:1280px; 
	margin:auto;	
	margin-top:40px;
	z-index:10;

	padding:20px;
	/*background: rgba(0, 0, 0, .5);
	color:#fff;*/




	}
	
#containerfooter ul li {
display:inline;
}	



h2, h3 {
  text-transform: uppercase;
}

header .logo {
  color: #fff;
  cursor: pointer;
}

.desktop {
  display: none;
}

.toggle {
  position: absolute;
  top: 35px;
  right: 35px;
  width: 60px;
  height: 60px;
  background: url(../images/menu.png);
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease-in 0.35s;
}

.toggle.active {
  background: url(../images/close.png);
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: center;
  cursor: pointer;
}

.toggle__list.active {
position:relative;
z-index:999;
}

.showcase {
  position: absolute;
  right: 0;
  width: 100%;
  min-height: 100vh;
  padding: 1em;
  /*
  display: flex;
  justify-content: space-between;
  align-items: center;*/
  background: #000;
  transition: all 0.3s ease;
  z-index: 2;
}

.showcase.active {
  right: 100%;
}

.showcase video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #78c3fb;
  mix-blend-mode: overlay;
}

.text {
  position: relative;
  z-index: 10;
}

.kop {
  font-size: 2.5em;
  font-weight: 700;
  color: #000;
  line-height: 1em;
  margin-bottom:20px;
  }
  

.text h2 {
  color: #fff;
  /*font-size: 2rem;*/
  font-size:calc(1em + 1.2vw);
  font-weight: 700;
  line-height: 1em;
}

.text h3 {
  /*font-size: 2.5em;*/
  font-size:calc(1.7em + 1.2vw);
  font-weight: 700;
  color: #fff;
  line-height: 1em;
}

.text p {
  font-size: 1.1em;
  color: #fff;
  margin: 1.25em 0;
  font-weight: 400;
}

.text a {
color:white;
text-decoration: underline;
/*
  display: inline-block;
  font-size: 1rem;
  background: #fff;
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 10px;
  color: #111;
  letter-spacing: 2px;
  transition: letter-spacing 0.2s ease-in;
  */
}

.text a:hover {
color:#C58F63;
  /*letter-spacing: 3px;*/
}

.textlinks a {
  font-size: 1.1em;
  color: #d19359;
  margin: 1.25em 0;
  font-weight: 400;
}

.textlinks a:hover {
  color: #fff;
}

.textlinks li {

list-style-type: circle;

}


.social {
  position: absolute;
  z-index: 10;
  bottom: 1.25em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social li a {
  display: inline-block;
  filter: invert(1);
  transform: scale(0.5);
  transition: transform 0.3s ease-in;
}

.social li a:hover {
  transform: scale(0.5) translateY(-0.94em);
}

.social > * + * {
  margin-left: 1.25em;
}

.menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.menu ul li a {
  font-size: 1.5rem;
  color: #111;
}

.menu ul li a:hover {
  color: #03a9f4;
}

.menu ul > * + * {
  margin-top: 2.5em;
}

.menu .toggle.active {
  filter: invert(1);
}

.menu .footer {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 0.65rem;
  width: 100%;
  color: rgb(119, 118, 118);
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  header {
    padding: 3em;
  }
  .showcase {
    padding: 3em;
  }

  .text p {
    max-width: 650px;
    font-size: 1.3rem;
  }
  .text h2 {
    font-size: 5rem;
  }

  .text h3 {
    font-size: 4rem;
  }

  .text a {
    font-size: 1.5rem;
  }

  .toggle {
    top: 2.15em;
  }

  .menu ul li a {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .text p {
    max-width: 700px;
    }
  .homeimg{
      max-width: 700px;
  } 

  .desktop {
    display: block;
    float:right;
    margin-right:20px;
    margin-top:189px;
  }

  .desktop ul {
    display: flex;
  }

  .nav__link.nav__link--active {
    color: #fff;
  }

  .nav__link {
    color: #afaeae;
    font-size: 1.2rem;
  }

  .desktop ul > * + * {
    margin-left: 1.5em;
  }

  .toggle {
    display: none;
  }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) {
  .text h2 {
    font-size: 1.3rem;
  }

  .text h3 {
    font-size: 1rem;
  }

  .text p {
    font-size: 0.75rem;
    max-width: 500px;
  }

  .menu ul li a {
    font-size: 0.85rem;
  }

  .menu ul > * + * {
    margin-top: 1.5em;
  }
}

@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .text h2 {
    font-size: 1rem;
  }
  .text h3 {
    font-size: 1.5rem;
  }

  .text p {
    font-size: 0.85rem;
    max-width: 600px;
  }

  .menu ul li a {
    font-size: 1rem;
  }

  .menu ul > * + * {
    margin-top: 1.5em;
  }
}

@media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
  .text h2 {
    font-size: 1rem;
  }
  .text h3 {
    font-size: 1.5rem;
  }

  .text p {
    font-size: 0.85rem;
    max-width: 600px;
  }
  .menu ul li a {
    font-size: 1rem;
  }

  .menu ul > * + * {
    margin-top: 1.5em;
  }
}

@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
  .text h2 {
    font-size: 1rem;
  }
  .text h3 {
    font-size: 1.5rem;
  }

  .text p {
    font-size: 0.85rem;
    max-width: 600px;
  }

  .text a {
    font-size: 0.85rem;
  }

  .menu ul li a {
    font-size: 1rem;
  }

  .menu ul > * + * {
    margin-top: 1.5em;
  }
}

@media only screen and (min-device-width: 411px) and (max-device-width: 823px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
  .text h2 {
    font-size: 1rem;
  }
  .text h3 {
    font-size: 1.5rem;
  }

  .text p {
    font-size: 0.85rem;
    max-width: 600px;
  }

  .text a {
    font-size: 0.85rem;
  }

  .menu ul li a {
    font-size: 1rem;
  }

  .menu ul > * + * {
    margin-top: 1.5em;
  }
}




.fadein { 
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0.35;
 }
.fadein img{
	position:absolute;
	width: calc(100%);
    height: calc(100%);
  object-fit: cover;    
    /*object-fit: scale-down;*/
}

.hidden {display:none;}

.wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 640px));
  grid-auto-rows: minmax(300px, auto);
}

.grid-item {
  padding: 10px; /* add 10px padding around the content */
}


/*

.flex-container {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}

.flex-item-0 {
background: rgba(0, 0, 0, .5);
	max-width: 1200px;
}

.flex-item-1 {
	flex: 33%;
	padding: 10px;
	max-height: 400px;
	max-width: 400px;
}

.flex-item-2 {
	flex: 33%;
	padding: 10px;
	max-height: 400px;
	max-width: 400px;
}

.flex-item-3 {
	flex: 33%;
	padding: 10px;
	max-height: 400px;
	max-width: 400px;
}

@media (max-width: 800px) {
  .flex-item-1, .flex-item-2, .flex-item-3 {
    flex: 100%;
    max-width:400px;
  }
}


*/