/*----------------GENERAL----------------*/
@import url('https://fonts.googleapis.com/css2?family=Crete+Round&family=EB+Garamond&family=Signika+Negative&family=Source+Sans+Pro&display=swap');




*{
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing:border-box;
}

html, body{
  height: 100%;
  font-family: 'Source Sans Pro';
  font-family: 'EB Garamond', serif;
  font-family: 'Signika Negative', sans-serif !important;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: rgb(167, 159, 238);
}

#anchorColor2{
  color:rgb(131, 94, 235);
}

#anchorBlack{
  color:black;
}

.inactiveLink {
  pointer-events: none;
  cursor: default;
}

#whiteText{
  color:white;
  filter: drop-shadow(0px 0px 5px rgba(53, 53, 53, 0.363))
}

a:hover {
  color: rgb(112, 112, 112);
}

#anchorColor2:hover{
  color: rgb(112, 112, 112);
}

/* custom scroll bar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #3a3a3a;
}

::-webkit-scrollbar-thumb {
  background: rgb(168, 168, 168);
}

/*----------------HEADER----------------*/

.headerNew{
  position: absolute;
  display:block;
  text-align: center;
  top:-15px;
  right:-20px;
  background-color: #c5384f;
  padding:4px;
  border-radius: 5px;
  font-size:13px;
  color:white;
}

.blur{
  height:100%;
  width:100%;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  position:absolute;
}

nav {
	position: fixed;
	z-index: 9999;
	left: 0;
	right: 0;
	top: 0;
	padding:0%;
	height: 80px;
}
nav .logoContainer {
	float: left;
	width: 40%;
	height: 100%;
	display: flex;
	align-items: center;
	font-size: 24px;
	color: #fff;
  padding-left:5%;
  background-color: rgba(255,255,255,0.1);
}
nav .links {
	float: right;
	padding: 0;
	margin: 0;
	width: 60%;
	height: 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
nav .links li {
	list-style: none;
}
@media screen and (max-width:768px){
  #hnvColor1_Header{
    background-color:#ce9f80;
  }
  nav .links li{
    background-color:#ce9f80;
  }
}

ul.links {
  padding-right:1%;
  background-color: rgba(255,255,255,0.1);
}
nav .links a {
	display: block;
	padding: 0.5em;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
  filter: drop-shadow(0px 0px 5px rgba(53, 53, 53, 0.5))
}
nav .links a:hover, #active{
  color:rgb(70, 70, 70);
}

#nav-toggle {
	position: absolute;
	top: -100px;
}
nav .icon-burger {
	display: none;
	position: absolute;
	right: 5%;
	top: 50%;
	transform: translateY(-50%);
}
nav .icon-burger .line {
	width: 30px;
	height: 5px;
	background-color: #fff;
	margin: 5px;
	border-radius: 1px;
	transition: all .3s ease-in-out;
}

#logo{
  height:1.9em;
  margin-top: 6px;
}

#pageTitleR{
  text-align: center;
  font-size:25px;
  margin-top:20px;
  margin-bottom:40px;
}

#headerBioLogo{
  width:80px;
}




/*DROPDOWN*/

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 0px;
  background-color: inherit;
  font-family: inherit;
  font-weight: bold;
  margin: 0;
}

.dropbtn{
  cursor: pointer;
}

.dropbtn:hover{
  color:rgb(70, 70, 70);
}

.dropbtnNohover{
  cursor:auto;
  filter: drop-shadow(0px 0px 5px rgba(53, 53, 53, 0.5));
}

.dropbtnNohover:hover{
  color:white;
}

.dropdown-content {
  display: none;
  position: absolute;
  border-radius: 4px;
  filter: drop-shadow(0px 0px 5px rgba(53, 53, 53, 0.5));
  z-index: 1;
  background-color: #ce9f80;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content button{
  float: none;
  color:white;
  font-size:16px;
  padding: 0.5em;
  text-decoration: none;
  display: block;
  text-align: left;
  display: block;
  border: none;
  cursor: pointer;
  background-color:none;
  font-family: 'Signika Negative', sans-serif !important;
  font-weight: bold;
  background-color: transparent;
  filter: drop-shadow(0px 0px 5px rgba(53, 53, 53, 0.5));
}

.inactiveLinkHeader {
  pointer-events: none;
  cursor: default;
  color:rgb(70,70,70);
}



.dropdown-content button:hover {
  color:rgb(70, 70, 70);
}

.dropdown:hover .dropdown-content {
  display: block;
}

/*--Mobile--*/

.headerMOB {
	padding: 0;
	margin: 0;
	display: flex;
  float: none;
  position: fixed;
  z-index: 9;
  left: 0;
  right: 0;
  top: 80px;
  bottom: 100%;
  width: 100%;
  height: auto;
  flex-direction: column;
  justify-content: space-evenly;
  overflow: hidden;
  box-sizing: border-box;
  transition: all .5s ease-in-out;
  align-items: flex-start;
  background-color: #ce9f80;

}

.headerMOB a {
	display: block;
	padding: 0.5em;
	font-size: 20px;
	font-weight: bold;
	color: rgb(201, 201, 201);
	text-decoration: none;
  filter: drop-shadow(0px 0px 5px rgba(53, 53, 53, 0.5));
}

.linksMOB{
  display:flex;
  flex-direction: column;
}

.dropdownMOB .dropbtnMOB {
  font-size: 20px;  
  border: none;
  outline: none;
  color: rgb(201, 201, 201);
  padding: 0.5em;
  background-color: inherit;
  font-family: inherit;
  font-weight: bold;
  margin: 0;
  filter: drop-shadow(0px 0px 5px rgba(53, 53, 53, 0.5))
}


.terugButton{
  position:absolute;
  top:10px;
  left:100%;
  z-index:999;
}

.dropdown-contentMOB {
  position: absolute;
  z-index: 1;
  left:100%;
  top:10px;
  width:100%;
  height:100%;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-contentMOB button{
  float: none;
  color:white;
  font-size:20px;
  padding:0px 0px 20px 0px;
  text-decoration: none;
  display: block;
  text-align: left;
  display: block;
  border: none;
  cursor: pointer;
  background-color:none;
  font-family: 'Signika Negative', sans-serif !important;
  font-weight: bold;
  background-color: transparent;
  filter: drop-shadow(0px 0px 5px rgba(53, 53, 53, 0.5));
}

 .dropdownMOB input{
  display:none;
} 

.contentOverOns{
  margin-top:0%;
}

.contentProductie{
  top:13%;
}

.contentMerken{
  top:22%;
}

/* .contentMerken p{
  position:absolute;
  top:-60px;
  font-size:230px;
  color:white; 
  font-weight:lighter;
  font-family: 'Source Sans Pro';
} */

.contentContact{
  top:73%;
}

.contentTAAL{
  top:63%;
}

.dropdown-contentMOB a{
  padding:0px 0px 20px 0px;
  color:white;
}


.hover-white:hover{
  color:white;
}

.active{
  color:rgb(70, 70, 70) !important;
  filter: drop-shadow(0px 0px 5px rgba(53, 53, 53, 0.5));
}

input[type="radio"] {
  display: none;
}

/*--buttons--*/

#buttonOverOns:checked ~ .contentOverOns {
  left:50%;
  transition:0.3s ease;
}

#buttonOverOns:checked ~ .terugButton {
  left:70%;
  transition:0.3s ease;
}

#buttonOverOnsTERUG:checked ~ .contentOverOns{
  left:100%;
  transition:0.3s ease;
}

#buttonProductie:checked ~ .contentProductie {
  left:50%;
  transition:0.3s ease;
}

#buttonProductie:checked ~ .terugButton {
  left:70%;
  transition:0.3s ease;
}

#buttonProductieTERUG:checked ~ .contentProductie {
  left:100%;
  transition:0.3s ease;
}

#buttonMerken:checked ~ .contentMerken {
  left:50%;
  transition:0.3s ease;
}

#buttonMerken:checked ~ .contentMerken p{
  right:100%;
  transition:0.3s ease;
}

#buttonMerken:checked ~ .terugButton {
  left:70%;
  transition:0.3s ease;
}

#buttonMerkenTERUG:checked ~ .contentMerken {
  left:100%;
  transition:0.3s ease;
}

#buttonContact:checked ~ .contentContact {
  left:50%;
  transition:0.3s ease;
}

#buttonContact:checked ~ .terugButton {
  left:70%;
  transition:0.3s ease;
}

#buttonContactTERUG:checked ~ .contentContact {
  left:100%;
  transition:0.3s ease;
}

#buttonTAAL:checked ~ .contentTAAL {
  left:50%;
  transition:0.3s ease;
}

#buttonTAAL:checked ~ .terugButton {
  left:70%;
  transition:0.3s ease;
}

#buttonTAALTERUG:checked ~ .contentTAAL {
  left:100%;
  transition:0.3s ease;
}

@media screen and (max-width:1050px){
  nav .links a {
		font-size: 14px;
	}
  .dropdown .dropbtn {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
	nav .logoContainer {
		float: none;
		width: auto;
		justify-content: center;
    padding-left:0px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
	}
	nav .links {
		float: none;
		position: fixed;
		z-index: 9;
		left: 0;
		right: 0;
		top: 80px;
		bottom: 100%;
		width: auto;
		height: auto;
		flex-direction: column;
		justify-content: space-evenly;
		overflow: hidden;
		box-sizing: border-box;
		transition: all .5s ease-in-out;
    align-items: flex-start;
	}
  ul.links{
    padding-right:0%;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
	nav .links a {
		font-size: 20px;
	}
  nav{
    border-bottom: 1px solid rgb(175, 175, 175);
  }
  /*
	nav :checked ~ .links {
		bottom: 0;
	}
  */
  nav :checked ~ .headerMOB {
		bottom: 0;
	}
	nav .icon-burger {
		display: block;
	}
	nav :checked ~ .icon-burger .line:nth-child(1) {
		transform: translateY(10px) rotate(225deg);
	}
	nav :checked ~ .icon-burger .line:nth-child(3) {
		transform: translateY(-10px) rotate(-225deg);
	}
	nav :checked ~ .icon-burger .line:nth-child(2) {
		opacity: 0;
	}
  .links li{
    border-radius: 4px;
  }
  .blur{
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  /*DROPDOWN*/
  .dropdown .dropbtn {
    padding:0px;
    font-size: 20px;
  }
  .dropdown-content a {
    text-align: center;
  }
}

/*
@media screen and (max-width: 768px) {
	nav .logoContainer {
		float: none;
		width: auto;
		justify-content: center;
    padding-left:0px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
	}
	nav .links {
		float: none;
		position: fixed;
		z-index: 9;
		left: 0;
		right: 0;
		top: 80px;
		bottom: 100%;
		width: auto;
		height: auto;
		flex-direction: column;
		justify-content: space-evenly;
		overflow: hidden;
		box-sizing: border-box;
		transition: all .5s ease-in-out;
    align-items: flex-start;
	}
  ul.links{
    padding-right:0%;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
	nav .links a {
		font-size: 20px;
	}
  nav{
    border-bottom: 1px solid rgb(175, 175, 175);
  }
	nav :checked ~ .links {
		bottom: 0;
	}
	nav .icon-burger {
		display: block;
	}
	nav :checked ~ .icon-burger .line:nth-child(1) {
		transform: translateY(10px) rotate(225deg);
	}
	nav :checked ~ .icon-burger .line:nth-child(3) {
		transform: translateY(-10px) rotate(-225deg);
	}
	nav :checked ~ .icon-burger .line:nth-child(2) {
		opacity: 0;
	}
  .links li{
    border-radius: 4px;
  }
  .blur{
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  /*DROPDOWN*/
  /*
  .dropdown .dropbtn {
    padding:0px;
    font-size: 20px;
  }
  .dropdown-content a {
    text-align: center;
  }
}

*/

/*----------------WIP----------------*/

#WIP{
  height:100%;
  padding:10%;
  padding-top:200px;
  background: repeating-linear-gradient(
    45deg,
    rgb(255, 237, 203),
    rgb(255, 237, 203) 40px,
    rgb(255, 242, 221) 40px,
    rgb(255, 242, 221) 80px
  );
  text-align:center;
}

#WIPTEXT{
  font-size:10vw;
  color: rgb(26, 26, 26);
  filter: drop-shadow(0px 0px 10px rgba(53, 53, 53, 0.3))
}

/*----------------INDEX----------------*/

#logoHnv{
  background-image: url(/images/hornavologo.svg);
  padding:10px;
}

#hnvColorMain{
  /* background-color:#760b60; */
  background-color:#eeceb9;

}

#hnvColor1{
  /* background-color:#d51384; */
  background-color:#ce9f80;

}

#hnvColor2{
  background-color:#eed9cb;
}

#hnvColor2:hover{
  background-color:#f8ebe2;
  transition:0.1s;
}

#hnvColor2_NoHover{
  background-color:#eed9cb;
}

#hnvColor3{
  background-color:#e2c4a5;
}

#hnvColor4{
  background-color:#F4ECE3;
}






#hnvColorAccent{
  background-color:#fcd1b4;
}

#scrollButtonIndex, #scrollButtonCircleIndex{
  position:absolute;
  bottom:30px;
  right:30px;
}

#scrollButtonCircleIndex{
  height:50px;
  width:50px;
  background-color:rgba(255, 255, 255, 0.4);
  border-radius: 25px;
}

#scrollButtonTriangleIndex{
  width: 0; 
  height: 0; 
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 20px solid rgba(255, 255, 255, 0.3);
  margin:auto;
  margin-top: 17px;
}

#scrollToIndex{
  visibility: hidden;
  height:140px;
  margin-top:-23vh;
}

.meerInfo{
  color:white;
  font-size: 27px;
  text-align: center;
  padding:6px;
  border-radius: 4px;
  filter: drop-shadow(0px 0px 0.3rem rgba(54, 54, 54, 0.11));
}

.indexBody{
  background-color:#ffcc99;
  height:auto;
}

.indexHeader1{
  color:white;
  filter: drop-shadow(0px 0px 10px rgba(53, 53, 53, 0.3))
}

.indexImage{
  width:100%;
  height:120vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.indexImageContainer {
  width: 100%;
  height: 120vh;
  overflow: hidden; /* Ensures that the image does not overflow the container */
}

.indexImageImgElement {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the container while maintaining aspect ratio */
  object-position: center; /* Centers the image within the container */
}

/* .indexImageImgElement{
  width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
} */

#indexImgNL{
  background-image: url(/images/LandingPage/blokzak-home-nl.jpg);
}

#indexImgEN{
  background-image: url(/images/LandingPage/blokzak-home-en.jpg);
}

#indexImgDE{
  background-image: url(/images/LandingPage/blokzak-home-de.jpg);
}

#indexImgES{
  background-image: url(/images/LandingPage/blokzak-home-es.jpg);
}

#indexImgFR{
  background-image: url(/images/LandingPage/blokzak-home-fr.jpg);
}

.bioPijl{
  background-image: url(/images/LandingPage/pijl.png);
  position:absolute;
  right:0px;
  top:130px;
  width:46vw;
  height:32vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: drop-shadow(-1vw 4vw 50px rgba(0, 0, 0, 0.76));
}

.indexIntroText{
  text-align: left;
  max-width:50%;
  margin:auto;
  margin-bottom:60px;
  margin-top:60px;
  font-size:30px;
  color:black;
  position: relative;
}

.indexIntroText p{
  margin-bottom:20px;
}

.firstletter::first-letter {
  padding: 0rem;
  margin: -0.9rem 0.3rem 0 0;
  font-size: 8em;
  float: left;
  line-height: 0.6;
  color:white;
}



/* .indexIntroText::first-letter{
  initial-letter: 3;
  color:white;
  margin-right:0.2em;
} */

/*
.indexIntroText::first-letter {
  font-size:2em;
  margin: 0px 0.1rem 0px 0px;
  font-weight:bolder;
  color:white;
  filter: drop-shadow(0px 0px 10px rgba(53, 53, 53, 0.3))

}

.indexIntroText::first-line {
  line-height: 1.15em;

}
*/

.indexIntroText h1{
  color:white;
  filter: drop-shadow(0px 0px 10px rgba(53, 53, 53, 0.3))

}

.indexCatText{
  text-align:center;
  color:white;
  filter: drop-shadow(0px 10px 10px rgba(53, 53, 53, 0.9));
  font-size:4.4vw;
  margin-bottom:23px;
}

.indexHeroText{
  color:white;
  filter: drop-shadow(0px 10px 10px rgba(53, 53, 53, 0.9));
  font-size:100px;
  position:relative;
  top:250px;
  left:500px;
  line-height: 90px;
}

.indexSubtext{
  text-align:right;
  color:white;
  filter: drop-shadow(0px 0px 8px rgba(53, 53, 53, 0.377));
  font-size:60px;
}

.indexText_BioLogo{
  display:flex;
  flex-direction: column;
  justify-content: center;
  margin-top:25px;
  align-items: center;
  position:absolute;
  right:5%;
  top:80px;
}

.indexTextPart{
  margin-right:20px;
}

.indexBioLogo{
  height:20vw;
  margin-bottom:-9px;
}

.indexButtonGrid{
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
}



.indexButtonHover{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
}

.indexButtonHover_Effect{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  visibility: hidden;
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.indexButtonHover div{
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: 0.2s;
}

/* .indexButtonHover p{
  transition:0.2s;
} */

.indexButtonHover:hover div{
  backdrop-filter: blur(20px);
  visibility: visible;
  background-color: rgba(255, 255, 255, 0.178);
  transition:0.4s;
}

.indexButtonHoverTxt{
  color:rgba(255,255,255,0);
  visibility: hidden;
  font-size:80px;
  padding:7px;
  border-radius: 100px;
  filter: drop-shadow(0px 0px 15px rgba(53, 53, 53, 0.767));
  transition:0.4s;
  position:absolute;
  text-align: center;
}

.indexButtonHover:hover p{
  visibility: visible;
  transition:0.4s;
  color:white;
}


/*
@media screen and (max-width:630px){
  .indexButtonAnchor{
    width:95vw;
    height:200px;
  }
  .indexButtonHoverTxt{
    margin-bottom:0px;
  }
  .indexButtonHover:hover p{
    visibility: hidden;
  }
  .indexButtonHover:hover div{
    visibility: hidden;
    transition:0.1s;
  }
  .indexButtonAnchor:hover h1{
    visibility: visible;
  }
  .indexButton{
    background-size:auto;
  }
}
*/

.indexCatList{
  display:flex;
  flex-direction: column;
}

.indexButtonAnchor{
  width:600px;
  height:600px;
  min-width:600px;
  position:relative;
  display:flex;
  justify-content: center;
  align-items: center;
}

.indexButton{
  display:flex;
  width:100%;
  height:100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 4px;
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
  transition:0.2s;
}

.indexButtonAnchor:hover .indexButton{
  filter:blur(15px);
}

.indexButtonAnchor:hover p{
  visibility: visible;
  transition:0.4s;
}

.indexButton:hover ~ .indexButtonHoverTxt{
  visibility: visible;
  transition:0.4s;
  color:white;
}

.indexButtonHoverTxt:hover ~ .indexButton{
  filter:blur(15px);
  transition:0.4s;
}

.indexButtonHoverTxt:hover{
  visibility: visible;
  transition:0.4s;
  color:white;
} 

.indexButtonText{
  color:white;
  font-size:500%;
  filter: drop-shadow(0px 0px 15px rgba(53, 53, 53, 0.767));
  text-align: center;
}

.indexCat{
  display:flex;
  align-items: center;
  justify-content: center;
  padding:15px;
}

.indexCatStripes{
  width:100%;
}

.indexCatTextGrp{
  display:flex;
  flex-direction: column;
  height:600px;
  margin: 0px 50px;
  justify-content: center;
  align-items: flex-start;
}

.altGrp{
  align-items: flex-end;
}

.indexCatTitleTxt{
  font-size: 5vw;
  height:auto;
  text-align: left;
  color:white;
  filter: drop-shadow(0px 0px 8px rgba(53, 53, 53, 0.192));
  display: block;
  line-height:0.9em;
}

.rightAlign{
  text-align: right;
}

.indexCatDesc{
  font-size:30px;
  color:black;
  filter: drop-shadow(0px 0px 8px rgba(53, 53, 53, 0.192));
  max-width:1000px;
  padding-left:10px;
  font-weight: 1000;
}


.indexCatDesc::first-letter {
  font-size:1.5em;
  margin: 0px 0.1rem 0px 0px;
}

/* .indexCatDesc::first-line{
  font-weight: 1000;
} */

.altCat{
  flex-direction: row-reverse;
  text-align: right;
}

.cat01{
  margin-left:10vw;
  margin-right:auto;
}

.cat02{
  margin-right:14vw;
  margin-left:auto;
}

.cat03{
  margin-left:3vw;
  margin-right:auto;
}

.cat04{
  margin-right:12vw;
  margin-left:auto;
}

@media screen and (max-width:1600px){
  .indexCatDesc, .indexIntroText{
    font-size:25px;
  }
}

@media screen and (max-width:1300px){
  .indexButtonAnchor{
    min-width:400px;
    width:400px;
    height:400px;
  }
  .indexCatTextGrp{
    height:400px;
    margin:0px 14px;
  }
  .indexCatDesc, .indexIntroText{
    font-size:20px;
  }
  .indexButtonText{
    font-size:50px;
  }
}

@media screen and (max-width:1090px){
  .indexCatText{
    font-size:40px;
  }
  .indexSubtext{
    font-size:30px;
  }
  .indexCatDesc, .indexIntroText{
    font-size:17px;
  }
}

@media screen and (max-width:794px){
  .indexCatDesc{
    font-size:15px;
  }
}

@media screen and (max-width:768px){
  .indexCatTextGrp{
    height:auto;
    align-items: center;
    margin:14px;
  }
  .indexCatTitleTxt{
    font-size: 12vw;
    text-align: center;
 }
 .bioPijl{
  background-image: url(/images/LandingPage/pijldown.png);
  position:absolute;
  right:0px;
  top:0px;
  width:100vw;
  height:135vw;
  margin-top:-90px;
  filter: drop-shadow(0vw 20px 15px rgba(0, 0, 0, 0.788));
}
  .indexButtonAnchor{
    min-width:0px;
    width:95vw;
    height:300px;
  }
  .indexButton{
    background-size:cover;
    margin-top:13px;
  }
  #bulkImg{
    background-image: url(/images/LandingPage/Bulk_MOB.jpg);
  }
  #pastasImg{
    background-image: url(/images/LandingPage/notenpasta_MOB.jpg);
  }
  #nzzImg{
    background-image: url(/images/LandingPage/nzz_MOB.jpg);
  }
  .indexCat{
    flex-direction: column;
    margin:0px;
    padding-top:0px;
  }
  .indexCatTitleTxt {
    margin-top:27px;
  }
  .indexCatText{
    filter: drop-shadow(0px 3px 10px rgb(24, 24, 24));
  }
  .indexCatDesc{
    font-size:20px;
    text-align: center;
  }
  .indexCatDesc p{
    padding:0px;
    background-color:transparent;
  }
  .cat01{
    margin:0px;
  }
  .cat02{
    margin:0px;
  }
  .cat03{
    margin:0px;
  }
  .cat04{
    margin:0px;
  }
  .indexButtonHoverTxt{
    margin-bottom:0px;
  }
  .indexButtonHover:hover p{
    visibility: hidden;
  }
  .indexButtonHover:hover div{
    visibility: hidden;
  }
  .indexButtonAnchor:hover h1{
    visibility: visible;
  }
  .indexImage{
    background-position:56% 0%;
  }
  .indexImageImgElement{
    object-position: 56% 0%;
  }
  .indexText_BioLogo{
    flex-direction: column;
    top:80px;
    left:0;
    right:0;
  }
  .indexIntroText{
    margin-top:0px;
    margin-bottom:10px;
  }
  .indexButtonAnchor:hover .indexButton{
   filter:none;
  }
  .indexButtonAnchor:hover p{
  visibility: hidden;
  transition:0.4s;
  }
  .indexButton:hover ~ .indexButtonHoverTxt{
  visibility: hidden;
  transition:0.4s;
  color:white;
  }
  .indexButtonHoverTxt{
    font-size: 1px;
  }
}

@media screen and (max-width:650px){
  .indexBioLogo{
    height:250px;
  }
  .indexCatText{
    text-align: center;
    margin-bottom:0;
  }
  .indexSubtext{
    text-align: center;
  }
  .indexTextPart{
    margin:0;
  }

  .indexCatTitleTxt{
    font-size: 10vw;
 }
 .indexIntroText{
    column-count: 1;
    max-width:95%;
    font-size:15px;
 }
}

@media screen and (max-width:560px){
  .indexCatTitleTxt{
    font-size: 12vw;
 }
 .bioPijl{
  margin-top:-50px;
}
}

@media screen and (max-width:430px){
  .bioPijl{
    margin-top:-20px;
  }
}

@media screen and (max-width:370px){
  .indexButtonText{
    font-size:40px;
  }
  .bioPijl{
    margin-top:0px;
  }
  .indexCatText{
    font-size: 12vw;
  }
}

#merkenImg{
  background-image: url(/images/LandingPage/merkenImg.jpg);
}

#bulkImg{
  background-image: url(/images/LandingPage/Bulk.jpg);
}

#pastasImg{
  background-image: url(/images/LandingPage/notenpasta.jpg);
}

#nzzImg{
  background-image: url(/images/LandingPage/nzz.jpg);
}

#stropenImg{
  background-image: url(/images/LandingPage/Bulk.jpg);
}

@media screen and (max-width:768px){

}/*----------------RECEPTEN----------------*/

.receptenCounter{
  margin-top:110px;
  text-align: center;
  color:#4E4E4E;
  font-size:80px;
}

.receptenCounter span{
  color:#24262b;
}

.receptenFlex{
  /* display:flex; */
  height:auto;
  margin-top:20px;
  min-height:100%;
  /* justify-content: space-between; */
}

.receptenFilters{
  border-radius:8px;
  filter: drop-shadow(0px 0px 8px rgba(53, 53, 53, 0.432));
  position:fixed;
  margin-left:50px;
  margin-top:20px;
  color:#4E4E4E;
  display: flex;
  flex-direction: column;
  padding:15px;
}

.receptenFilters h1{
  font-size:25px;
  margin-bottom: 10px;
}

.receptenFilters label{
  font-size:20px;
  margin:7px 0px 7px 0px;
}

/* Hide the default checkboxes */
input[type="checkbox"] {
  display: none;
}

/* Style the custom checkbox container */
label {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
}

/* Style the custom checkbox */
input[type="checkbox"] + span {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #4E4E4E;
  border-radius: 5px;
  background-color: #fff;
}

/* Hover */
input[type="checkbox"]:hover + span {
  background-color: #ebebeb;
}

/* Change the fill color on click */
input[type="checkbox"]:checked + span {
  background-color: #C0A283;
}

.receptenGrid{
  display:flex;
  flex-wrap: wrap;
  width:75%;
  margin: 0 auto 0 auto;
  justify-content: center;
}

.receptenTile{
  width:350px;
  height:510px;
  border-radius:8px;
  filter: drop-shadow(0px 0px 8px rgba(53, 53, 53, 0.432));
  padding:15px;
  margin:20px;
}

.receptenImg{
  width:320px;
  height:320px;
  border-radius: 4px;
  filter: drop-shadow(0px 0px 6px rgba(37, 37, 37, 0.432));
  object-fit: cover;
}

.receptenInfo{
  color:#7A7A7A;
  display:flex;
  margin:10px 0 5px 0;
  font-size:16px;
}

.receptenTitel{
  color:#4E4E4E;
  font-size:25px;
  min-height:62px;
  overflow:hidden;
  line-height:1.2em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical; 
  /*Background drop effect - line height issue (1 for drop, 1.2 for no drop, but 1 has overflow*/
  /* background-color:#f1e0d4;
  margin: 0px -15px 0px -15px;
  padding: 7px 15px 0px 15px; */


  /* -moz-box-shadow: inset 0px 10px 15px -15px #00000052, inset 0px -10px 15px -15px #00000052;
  -webkit-box-shadow: inset 0px 10px 15px -15px #00000052, inset 0px -10px 15px -15px #00000052;
  box-shadow: inset 0px 10px 15px -15px #00000052, inset 0px -10px 15px -15px #00000052; */
}

.receptenTile:hover{
  .receptenTitel{
    background-color: #f8ebe2;
    transition: 0.1s ease;
  }
  
}

.TagsAutCol{
  display: flex;
  justify-content: space-between;
  margin-top:10px;
}

.receptenTags{
  display: flex;
  align-items: center;
}

.receptenTag{
  width:47px;
  margin-right:8px;
}

.receptenAuteur{
  width:200px;
  height:47px;
  border-radius: 4px;
  filter: drop-shadow(0px 0px 2px rgba(94, 94, 94, 0.432));
  display: flex;
  align-items: center;
}

.receptenAuteurImg{
  width:47px;
  height:47px;
  border-radius: 4px;
  object-fit: cover;
}

.receptenAuteurTxt{
  margin-left:6px;
}

.receptenAuteurFigCap{
  color:#7A7A7A;
  font-size: 14px;
}

.receptenAuteurNaam{
  font-size: 18px;
  color:#4E4E4E;
  overflow: hidden;
  max-width:140px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

@media screen and (max-width:1570px){
  .receptenTile{
    width:250px;
    height:400px;
    padding:15px;
    margin:20px;
  }

  .receptenImg{
    width:220px;
    height:220px;
  }

  .receptenTag{
    width:37px;
  }

  .receptenAuteur{
    width:120px;
    height:37px;
  }

  .receptenAuteurImg{
    width:37px;
    height:37px;
  }

  .receptenAuteurNaam{
    max-width:75px;
  }

}

@media screen and (max-width:783px){
  .receptenGrid{
    width:100%;
  }

  .receptenTitel{
    font-size:23px;
  }


}

@media screen and (max-width:590px){
  .receptenTile{
    width:90vw;
    height:400px;
    padding:15px;
    margin:20px;
  }

  .receptenImg{
    width:100%;
    height:220px;
  }

  .receptenAuteur{
    width:auto;
    min-width:150px;
  }

  .receptenAuteurFigCap{
    font-size:12px;
  }

  .receptenAuteurNaam{
    max-width:none;
    font-size:14px;
  }
}

@media screen and (max-width:340px){
  .receptenCounter{
    font-size:20vw;
  }


}


/*----------------RECEPT----------------*/

.receptMainInfo{
  width:520px;
  display: flex;
  flex-direction: column;
  margin: 0 30px 0 30px;
}

.receptMainInfo h1{
  font-size:50px;
  font-weight: bold;
  color:white;
  filter: drop-shadow(0px 0px 6px rgba(27, 27, 27, 0.432));
  text-align: center;
}

.receptMainInfo p{
  color:#505050;
  font-size:20px;
  text-align: center;
}

.receptInfoCenter{
  display: flex;
  width:100%;
  justify-content: center;
}

.receptPageInfo{
  color:#7A7A7A;
  display:flex;
  margin:10px 0 5px 0;
  font-size:22px;
  justify-content: center;
}

.receptPageTags{
  display: flex;
  align-items: center;
  justify-content: center;
}

.receptPageTags li{
  width:80px;
  height:80px;
  margin:10px;
}

.receptSectionMain{
  display:flex;
  justify-content: center;
  padding:100px 0px 100px 0px;
}

.receptSection{
  display: flex;
  width:65%;
  justify-content: space-evenly
}

.receptIngInfo{
  display:flex;

}

.receptIngInfoBer{
  display:flex;
  flex-direction: column;
  padding-right:15px;
}

.receptButtons{
  display:flex;
  filter: drop-shadow(0px 0px 6px rgba(27, 27, 27, 0.432));
  justify-content: center;
  margin:15px 0px 15px 0px;
}

.receptBtn{
  display: block;
  padding: 10px;
  border: none;
  cursor: pointer;
  width:88px;
  height:63px;
  color:#8E8E8E;
}

.receptBtn i{
  width:50px;
  height:50px;
}

.printBtn{
  border-radius: 8px 0px 0px 8px;
}

.shareBtn{
  border-radius: 0px 8px 8px 0px;
}

.linktooltips-container{
  position:absolute;
  height:63px;
  width:176px;
  transition:ease;
  background-color: #eed9cb;
  border-radius:8px;
  padding:20px;
  font-weight:bold;
  color:#555555;
  text-align: center;
  font-size:19px;
}

.ingredienten{
  border-radius:8px;
  filter: drop-shadow(0px 0px 6px rgba(27, 27, 27, 0.432));
  display:inline-block;
  padding:15px;
  width:320px; 
  margin-bottom:20px;
  width:auto;
  max-width:400px;
  min-width: 290px;
}

.ingredienten h1{
  margin-bottom:5px;
  font-size:35px;
  color:#313131;
  text-align: center;
}

.ingredienten p{
  font-size:19px;
}

.ingredientOpmaak{
  display: flex;
  justify-content: space-between;
  text-align: center;
  padding: 5px 0;
  border-bottom: 1px solid #ccc;
}

.ingredientQty{
  text-align: right;
  margin-right:10px;
  flex-basis:40%;
  color:#707070;
}

.ingredientType{
  flex-basis:60%;
  text-align:left;
  color:#2c2c2c;
}

.ingredientsBreak{
  font-size:21px;
  text-align: center;
  display:block;
  margin: 10px 0 5px 0;
  color:#707070;
}

.receptBereidingswijze{
  border-radius:8px;
  filter: drop-shadow(0px 0px 6px rgba(37, 37, 37, 0.432));
  width:auto;
  height:auto;
  padding:20px;
}

.receptBereidingswijze h1{
  margin-bottom:20px;
  font-size:35px;
  color:#313131;
}

.receptBereidingswijze p{
  font-size:22px;
  color:#2c2c2c;
  line-height:1.5em;
  margin-bottom: 15px;
}

.receptBereidingswijze ol li{
  list-style:decimal;
  margin-left:30px;
}

.receptImgAndAut{
  display:flex;
  flex-direction: column;
}

.receptImg{
  width:600px;
  height:600px;
  border-radius:12px;
  filter: drop-shadow(0px 0px 6px rgba(37, 37, 37, 0.432));
  margin-bottom:15px;
}

.receptImg img{
  width:570px;
  height:570px;
  margin:15px;
  border-radius:8px;
  object-fit: cover;
}

.receptAutSect{
  width:600px;
  height:200px;
  border-radius: 8px;
  display: flex;
  filter: drop-shadow(0px 0px 6px rgba(37, 37, 37, 0.432));
  padding:15px;
}

.receptAutSect img{
  width:170px;
  min-width: 170px;
  height:170px;
  border-radius: 5px;
  margin-right:15px;
  filter: drop-shadow(0px 0px 5px rgba(94, 94, 94, 0.432));
  object-fit: cover;
}

.receptAutSect h1{
  font-size:25px;
  color:#4e4e4e;
  margin-bottom:5px;
}

.receptAutSect p{
  color:#5e5e5e;
  overflow:hidden;
}

.receptAutSectMOB{
  display:none;
}

/*---RESPONSIVE---*/

@media screen and (max-width:1590px){
  .receptImg{
    width:400px;
    height:400px;
  }
  
  .receptImg img{
    width:370px;
    height:370px;
  }

  .receptAutSect{
    width:400px;
    height:200px;
    display: flex;
  }

  .receptAutSect img{
    min-width:150px;
  }
  
  .receptAutSect h1{
    font-size:25px;
    color:#4e4e4e;
    margin-bottom:5px;
  }
  
  .receptAutSect p{
    color:#5e5e5e;
    overflow:hidden;
  }
}

@media screen and (max-width:1400px){
  .receptSection{
    flex-direction: column-reverse;
    align-items: center;
    width:100%;
  }

  .receptImg{
    width:45vw;
    height:45vw;
    display:flex;
    align-items: center;
    justify-content: center;
  }
  
  .receptImg img{
    width:43vw;
    height:43vw;
    margin:0px;
  }

  .receptAutSect{
    display:none;
  }

  .receptMainInfo{
    width:75vw;
    margin: 0px;
  }

  .receptIngInfo{
    flex-direction: column-reverse;
    align-items: center;
  }

  .receptIngInfoBer{
    align-items: center;
    padding:0px;
  }

  .ingredienten{
    width:60vw;
    min-width: 0;
    max-width: none;
  }

  .receptBereidingswijze{
    width:90vw;
  }

  .receptBereidingswijze p{
    line-height:1.2em;
    font-size:20px;
  }

  .receptSectionMain{
    flex-direction: column;
    align-items: center;
  }

  .receptAutSectMOB{
    display:block;
    width:40vw;
    height:auto;
    border-radius: 8px;
    display: flex;
    filter: drop-shadow(0px 0px 6px rgba(37, 37, 37, 0.432));
    padding:15px;
    margin-top:15px;
  }
  
  .receptAutSectMOB img{
    width:12vw;
    height:12vw;
    border-radius: 5px;
    margin-right:15px;
    margin-top:auto;
    margin-bottom:auto;
    filter: drop-shadow(0px 0px 5px rgba(94, 94, 94, 0.432));
    object-fit: cover;
  }
  
  .receptAutSectMOB h1{
    font-size:21px;
    color:#4e4e4e;
    margin-bottom:5px;
  }
  
  .receptAutSectMOB p{
    color:#5e5e5e;
    overflow:hidden;
  }
}

@media screen and (max-width:1000px){
  .receptAutSectMOB{
    width:60vw;
  }
  
  .receptAutSectMOB img{
    width:18vw;
    height:18vw;
  }
}

@media screen and (max-width:768px){
  .receptMainInfo{
    width:90vw;
  }
  .receptImg{
    width:90vw;
    height:90vw;
    margin-bottom:15px;
  }
  
  .receptImg img{
    width:85vw;
    height:85vw;
    margin:0px;
  }

  .ingredienten{
    width:90vw;
  }

  .ingredienten h1{
    font-size:25px;
  }

  .receptBereidingswijze h1{
    font-size:25px;
    text-align: center;
  }

  .receptAutSectMOB{
    width:90vw;
    padding:10px;
  }
  
  .receptAutSectMOB img{
    width:25vw;
    height:25vw;
  }
}

@media screen and (max-width:320px){
  .receptMainInfo h1{
    font-size:35px;
  }
  .receptPageInfo{
    font-size:19px;
  }

}

/*--PRINT--*/
@media print{
  h1, p, body, *, span, section{
    filter:none;
    color:black;
  }
  nav{
    visibility: hidden;
  }
  .footer{
    visibility: hidden;
    height:0;
  }

  .ingredienten h1, section{
    color:black;
  }

  .receptSectionMain{
    padding:0;
  }

  .receptButtons{
    visibility: hidden;
    height:0;
  }

  .receptSection{
    flex-direction: column-reverse;
    align-items: center;
    width:100%;
  }

  .receptImg{
    visibility: hidden;
    width:0;
    height:0;
  }
  
  .receptImg img{
    width:43vw;
    height:43vw;
    margin:0px;
  }

  .receptAutSect{
    display:none;
  }

  .receptMainInfo{
    width:75vw;
    margin: 0px;
  }

  .receptMainInfo h1{
    filter:none;
    color:black;
    font-size:35px;
  }

  .receptMainInfo p{
    filter:none;
    color:black;
    font-size:16px;
  }

  .receptIngInfo{
    flex-direction: column-reverse;
    align-items: center;
    width:100%;
  }

  .receptIngInfoBer{
    align-items: center;
    padding:0px;
  }

  .receptPageTags{
    visibility: hidden;
    height:0px;
  }

  .receptPageInfo li{
    color:black;
    font-size: 18px;
  }

  .ingredienten{
    width:100%;
    min-width: 0;
    max-width: none;
    filter:none;
  }

  .receptBereidingswijze{
    width:90vw;
    filter:none;
    page-break-before: always;
  }

  .receptBereidingswijze p{
    line-height:1.1em;
    font-size:18px;
    color:black;
  }

  .receptBereidingswijze h1{
    filter:none;
    color:black;
  }

  .receptSectionMain{
    flex-direction: column;
    align-items: center;
  }

  .receptAutSectMOB{
    display:block;
    width:40vw;
    height:auto;
    border-radius: 8px;
    display: flex;
    filter: drop-shadow(0px 0px 6px rgba(37, 37, 37, 0.432));
    padding:15px;
    margin-top:15px;
  }
  
  .receptAutSectMOB img{
    width:12vw;
    height:12vw;
    border-radius: 5px;
    margin-right:15px;
    margin-top:auto;
    margin-bottom:auto;
    filter: drop-shadow(0px 0px 5px rgba(94, 94, 94, 0.432));
    object-fit: cover;
  }
  
  .receptAutSectMOB h1{
    font-size:21px;
    color:#4e4e4e;
    margin-bottom:5px;
  }
  
  .receptAutSectMOB p{
    color:#5e5e5e;
    overflow:hidden;
  }
}

/*----------------OVERONS----------------*/

.overOnsBody{
  padding-top:100px;  
}

.overOnsKaderList{
  display:flex;
  flex-direction: column;
}

.overOnsKader{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  padding:40px;
  justify-content: center;
}

.overOnsTextPart{
  max-width: 65%;
}

.altOrder{
  flex-direction: row-reverse;
}

.overOnsKader h1{
  font-size:5vw;
  color:white;
  filter: drop-shadow(0px 0px 8px rgba(53, 53, 53, 0.432));
  display: inline;
}

.overOnsKader p{
  font-size:1vw;
}

.overOnsImage{
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
  filter: drop-shadow(0px 15px 20px rgba(53, 53, 53, 0.61));
}

.OOImageDesc{
  text-align: center;
  margin-top:10px;
}

.OOImg2{
  margin-top:50px;
}

.OOImages{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.OOImagesRow{
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}

.OOTextColumns{
  column-count: 2;
}

.OOTextColumns p{
  margin-right:40px;
}

.OOTextCol{
  width:50%;
  height:50%;
  margin-bottom:80px;
}

#vmImg{
  background-image: url(/images/overOns/earthday.jpg);
  width:22.3vw;
  height:15vw;
}

/* #teamImg{
  background-image: url(/images/overOns/gaston.jpg);
  width:20vw;
  height:20vw;
  margin-right:80px;
} */

@keyframes swap-image {
  0% {
    background-image: url(/images/overOns/teamMembers/DianaFaaij.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  /* 5% {
    background-image: url(/images/overOns/teamMembers/FrankvanVreeswijk.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  } */
  10% {
    background-image: url(/images/overOns/teamMembers/JeanDamasceneNtaganzwaStijnMoeselin&LarsPels.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  15% {
    background-image: url(/images/overOns/teamMembers/JeroenKramer.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  20% {
    background-image: url(/images/overOns/teamMembers/KlaasHoving.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  25% {
    background-image: url(/images/overOns/teamMembers/KoenBouwman.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  30% {
    background-image: url(/images/overOns/teamMembers/LotteKerling.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  35% {
    background-image: url(/images/overOns/teamMembers/YoshuaOvertoom.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  40% {
    background-image: url(/images/overOns/teamMembers/RubendeWit.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  45% {
    background-image: url(/images/overOns/teamMembers/RobPieper.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  50% {
    background-image: url(/images/overOns/teamMembers/MargarethBos.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  55% {
    background-image: url(/images/overOns/teamMembers/MartienvanRooijen&RaymondeWith.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  60% {
    background-image: url(/images/overOns/teamMembers/PieterSchat.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  65% {
    background-image: url(/images/overOns/teamMembers/ReneMulder.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  70% {
    background-image: url(/images/overOns/teamMembers/RobPieper.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  75% {
    background-image: url(/images/overOns/teamMembers/RubendeWit.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  80% {
    background-image: url(/images/overOns/teamMembers/YoshuaOvertoom.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  85% {
    background-image: url(/images/overOns/teamMembers/DianaFaaij.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  /* 90% {
    background-image: url(/images/overOns/teamMembers/FrankvanVreeswijk.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  } */
  95% {
    background-image: url(/images/overOns/teamMembers/JeanDamasceneNtaganzwaStijnMoeselin&LarsPels.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  100% {
    background-image: url(/images/overOns/teamMembers/MargarethBos.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  /* 95% {
    background-image: url(/images/overOns/teamMembers/FrankvanVreeswijk.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  } */
  80% {
    background-image: url(/images/overOns/teamMembers/JeanDamasceneNtaganzwaStijnMoeselin&LarsPels.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  75% {
    background-image: url(/images/overOns/teamMembers/JeroenKramer.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  70% {
    background-image: url(/images/overOns/teamMembers/KlaasHoving.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  65% {
    background-image: url(/images/overOns/teamMembers/KoenBouwman.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  60% {
    background-image: url(/images/overOns/teamMembers/LotteKerling.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  55% {
    background-image: url(/images/overOns/teamMembers/MarcelenJeffreyvanderWerken.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  50% {
    background-image: url(/images/overOns/teamMembers/MargarethBos.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  45% {
    background-image: url(/images/overOns/teamMembers/MartienvanRooijen&RaymondeWith.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  40% {
    background-image: url(/images/overOns/teamMembers/PieterSchat.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  35% {
    background-image: url(/images/overOns/teamMembers/ReneMulder.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  30% {
    background-image: url(/images/overOns/teamMembers/FrankdeBruijn.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  25% {
    background-image: url(/images/overOns/teamMembers/RubendeWit.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  20% {
    background-image: url(/images/overOns/teamMembers/YoshuaOvertoom.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  15% {
    background-image: url(/images/overOns/teamMembers/DianaFaaij.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  /* 5% {
    background-image: url(/images/overOns/teamMembers/FrankvanVreeswijk.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  } */
  0% {
    background-image: url(/images/overOns/teamMembers/JeanDamasceneNtaganzwaStijnMoeselin&LarsPels.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
}
#teamImg{
  width:20vw;
  height:20vw;
  -webkit-animation: swap-image 80s infinite normal;
  animation: swap-image 80s infinite normal;
  margin-right:80px;
}

#teamDesc{
  margin-right:80px;
}

#gastonImg{
  background-image: url(/images/overOns/gaston.jpg);
  width:16vw;
  height:16vw;
}

.gastonImgMOB{
  display:none;
}

.blikImgMOB{
  display:none;
}

#blikDescMOB{
  display:none;
}
#gastonDescMOB{
  display:none;
}
#blikImg{
  background-image: url(/images/overOns/blikLijst.jpg);
  width:16vw;
  height:16vw;
}

#relImg{
  background-image: url(/images/overOns/lapalma3_f.jpg);
  width:18vw;
  height:18vw;
  margin-right:80px;
}

#relDesc{
  margin-right:80px;
}

#GFFImg{
  background-image: url(/images/overOns/Aliface.jpg);
  width:18vw;
  height:18vw;
}

#GFFImgLogo{
  background-image: url(/images/overOns/goodfoodlogo.jpg);
  width:14vw;
  height:18vw;
}

#EtikImg{
  background-image: url(/images/overOns/etiketten/nogouder.jpg);
  width:18vw;
  height:18vw;
  margin-right:80px;
}

@media screen and (max-width:1670px){
  .overOnsTextPart p{
    font-size:20px;
  }
}

@media screen and (max-width:1410px){
  .overOnsTextPart p{
    font-size:16px;
  }
  .overOnsTextPart h1{
    font-size:5vw;
  }
  .overOnsTextPart{
    max-width:100%;
  }
  .OOTextColumns p{
    margin-right:10px;
  }
  .OOImagesRow{
    flex-direction: column;
  }
  #vmImg{
    min-width:30vw;
    height:20vw;
  }
  #EtikImg{
    width:40vw;
    height:40vw;
  }
  #relImg{
    height:30vw;
    min-width:30vw;
  }
  #teamImg{
    min-width:30vw;
    height:30vw;
  }
  #gastonImg{
    width:30vw;
    height:30vw;
  } 
  #blikImg{
    width:30vw;
    height:30vw;
  }
  #GFFImg{
    width:30vw;
    height:30vw;
  }
  
  #GFFImgLogo{
    width:30vw;
    height:30vw;
  }

  .OOTextColumns{
    column-count: 2;
  }
}

@media screen and (max-width:1000px){
  .overOnsKader{
    flex-direction: column;
  }
  .OOImages{
    flex-direction: row;
  }
  .OOImagesRow{
    flex-direction: row;
  }
  #vmImg{
    width:60vw;
    height:40vw;
    margin: 20px auto 10px auto;
  }
  #EtikImg{
    margin-right:0px;
    width:60vw;
    height:60vw;
    margin-top:20px;
    margin-bottom:10px;
  }
  #relImg{
    height:60vw;
    width:60vw;
    margin-right:0px;
    margin-top:20px;
    margin-bottom:10px;
  }
  #relDesc{
    margin-right:0px;
  }
  #teamImg{
    margin-right:0px;
    width:50vw;
    height:50vw;
    margin-top:20px;
    margin-bottom:10px;
  }
  #teamDesc{
    margin-right:0px;
  }
  #gastonImg{
    width:40vw;
    height:40vw;
    margin-right:5px;
    margin-top:20px;
    margin-bottom:10px;
  } 
  #blikImg{
    width:40vw;
    height:40vw;
    margin-left:5px;
    margin-top:20px;
    margin-bottom:10px;
  }
  #GFFImg{
    width:40vw;
    height:40vw;
    margin-top:20px;
    margin-bottom:10px;
  }
  
  #GFFImgLogo{
    width:40vw;
    height:40vw;
    margin-top:20px;
    margin-bottom:10px;
  }
  .overOnsImage{
    margin-top:40px;
  }
}

@media screen and (max-width:768px){
  .overOnsKader{
    padding:10px;
  }
}

@media screen and (max-width:660px){
  .OOTextColumns{
    column-count: 1;
  }
  .gastonImgMOB{
    display:block;
    width:50vw;
    margin:20px auto;
    filter: drop-shadow(0px 15px 20px rgba(53, 53, 53, 0.61));
  }
  .blikImgMOB{
    display:block;
    width:50vw;
    margin:20px auto;
    filter: drop-shadow(0px 15px 20px rgba(53, 53, 53, 0.61));
  }
  #gastonImg{
    display:none;
  }
  #gastonDesc{
    display:none;
  }
  #gastonDescMOB{
    display:block;
    margin-top:-10px;
    padding-bottom:8px;
  }
  #blikImg{
    display:none;
  }
  #blikDesc{
    display:none;
  }
  #blikDescMOB{
    display:block;
    margin-top:-10px;
    padding-bottom:8px;
  }
}

/*---onsTeam---*/

.onsTeamBody{
  padding-top:100px;
  padding-bottom:50px;
}

.onsTeamTitel{
  text-align: center;
  font-size:16vw;
  color:rgba(0, 0, 0, 0.76)
}

.onsTeamGrid{
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom:20px;
}

.onsTeamMemberContainer{
  height:500px;
  width:400px;
  margin:20px;
  filter: drop-shadow(0px 0px 20px rgba(53, 53, 53, 0.61));
}

.onsTeamMemberImg{
  height:400px;
  width:400px;
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
}

.onsTeamName{
  font-size:30px;
  margin-top:10px;
}

.onsTeamPosition{
  text-align: right;
  color:rgba(0, 0, 0, 0.76)
}

.teamCategory{
  text-align: center;
  font-size: 80px;
}

.teamCatEmail{
  text-align: center;
  margin-bottom:10px;
}

@media screen and (max-width:890px){
  .onsTeamMemberContainer{
    width:40vw;
    height:50vw;
    margin:4%
  }
  .onsTeamMemberImg{
    height:40vw;
    width:40vw;
  }
  .onsTeamName{
    font-size:3.7vw;
  }
  .onsTeamPosition{
    font-size:3vw;
  }
  .teamCategory{
    font-size: 8vw;
  } 
  .teamCatEmail{
    font-size:3.5vw;
  }
}

/*-Members-*/

#TM-DianaF{
  background-image: url(/images/overOns/teamMembers/DianaFaaij.jpg);
}
#TM-FrankvD{
  background-image: url(/images/overOns/teamMembers/FrankvanDijk.jpg);
}
#TM-FrankvV{
  background-image: url(/images/overOns/teamMembers/FrankvanVreeswijk.jpg);
}
#TM-JeanDN_StijnM_LarsP{
  background-image: url(/images/overOns/teamMembers/JeanDamasceneNtaganzwaStijnMoeselin&LarsPels.jpg);
}
#TM-JeroenK{
  background-image: url(/images/overOns/teamMembers/JeroenKramer.jpg);
}
#TM-KlaasH{
  background-image: url(/images/overOns/teamMembers/KlaasHoving.jpg);
}
#TM-KoenB{
  background-image: url(/images/overOns/teamMembers/KoenBouwman.jpg);
}
#TM-LotteK{
  background-image: url(/images/overOns/teamMembers/LotteKerling.jpg);
}
#TM-Marcelen_JeffreyvdW{
  background-image: url(/images/overOns/teamMembers/MarcelenJeffreyvanderWerken.jpg);
}
#TM-MargarethB{
  background-image: url(/images/overOns/teamMembers/MargarethBos.jpg);
}
#TM-MartienvR_RaymondW{
  background-image: url(/images/overOns/teamMembers/MartienvanRooijen&RaymondeWith.jpg);
}
#TM-PieterS{
  background-image: url(/images/overOns/teamMembers/PieterSchat.jpg);
}
#TM-ReneM{
  background-image: url(/images/overOns/teamMembers/ReneMulder.jpg);
}
#TM-RobP{
  background-image: url(/images/overOns/teamMembers/RobPieper.jpg);
}
#TM-RubendW{
  background-image: url(/images/overOns/teamMembers/RubendeWit.jpg);
}
#TM-YoshuaO{
  background-image: url(/images/overOns/teamMembers/YoshuaOvertoom.jpg);
}
#TM-FrankdB{
  background-image: url(/images/overOns/teamMembers/FrankdeBruijn.jpg);
}


/*---etiketten---*/

.etikettenBody{
  padding-top:80px;
}

.etikettenRow{
  display:flex;
  flex-direction:column;
  height:auto;
  align-items: center;
}

.etikettenVak{
  width:50vw;
  display:flex;
  flex-direction:column;
  align-items: center;
  justify-content: flex-start;

}


.etikettenImgVak{
  display:flex;
  flex-direction:row;
  margin-bottom:30px;
}

.etiketImg{
  width:45vw;
  height:350px;
  margin:10px;
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
}

.etiketImgSmall{
  width:25vw;
  height:350px;
  margin:10px;
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
}

.etiketText h1{
  color:white;
  filter: drop-shadow(0px 0px 8px rgba(53, 53, 53, 0.342));
  font-size:2vw;
}

#tahinOlder{
  background-image: url(/images/overOns/etiketten/tahinOlder.jpg);
}

#tahinOld{
  background-image: url(/images/overOns/etiketten/wittahin.jpg);
}

#tahinNew{
  background-image: url(/images/overOns/etiketten/new/tahwitnew.jpg);
}

#cashewOlder{
  background-image: url(/images/overOns/etiketten/cashewOlder.jpg);
}

#cashewOld{
  background-image: url(/images/overOns/etiketten/cashewpasta.jpg);
}

#cashewNew{
  background-image: url(/images/overOns/etiketten/new/cashewnew.jpg);
}

#hazelOlder{
  background-image: url(/images/overOns/etiketten/hazelOlder.jpg);
}

#hazelOld{
  background-image: url(/images/overOns/etiketten/hazelnootpasta.jpg);
}

#hazelNew{
  background-image: url(/images/overOns/etiketten/new/hazelnew.jpg);
}

#pindaOlder{
  background-image: url(/images/overOns/etiketten/pindaOlder.jpg);
}

#pindaOld{
  background-image: url(/images/overOns/etiketten/pindakaas.jpg);
}

#pindaNew{
  background-image: url(/images/overOns/etiketten/new/pknew.jpg);
}

#zbpOlder{
  background-image: url(/images/overOns/etiketten/zonnebloemOlder.jpg);
}

#zbpOld{
  background-image: url(/images/overOns/etiketten/zonnebloempasta.jpg);
}

#zbpNew{
  background-image: url(/images/overOns/etiketten/new/zblnew.jpg);
}

@media screen and (max-width:1570px){
  .etikettenImgVak{
    flex-direction: column;
    align-items: center;
  }
  .etiketImg{
    width:90vw;
    height:30vw;
    margin:10px;
  }
  
  .etiketImgSmall{
    width:50vw;
    height:30vw;
    margin:10px;
  }
}

/*

#amandelOld{
  background-image: url(/images/overOns/etiketten/amandelpasta.jpg);
}

#amandelNew{
  background-image: url(/images/overOns/etiketten/new/amandelnew.jpg);
}

#cashewOld{
  background-image: url(/images/overOns/etiketten/cashewpasta.jpg);
}

#cashewNew{
  background-image: url(/images/overOns/etiketten/new/cashewnew.jpg);
}

#gemengdOld{
  background-image: url(/images/overOns/etiketten/gemengdenoten.jpg);
}

#gemengdNew{
  background-image: url(/images/overOns/etiketten/new/gmngdnew.jpg);
}

#gerstemoutOld{
  background-image: url(/images/overOns/etiketten/gerstemoutstroop.jpg);
}

#gerstemoutNew{
  background-image: url(/images/overOns/etiketten/new/gerstnew.jpg);
}

#gerzbpOld{
  background-image: url(/images/overOns/etiketten/gerZbp.png);
  width:500px;
  height:500px;
}

#hazelOld{
  background-image: url(/images/overOns/etiketten/hazelnootpasta.jpg);
}

#hazelNew{
  background-image: url(/images/overOns/etiketten/new/hazelnew.jpg);
}

*/

/*----------------PRODUCTIE----------------*/
/*Gebruikt de meeste zelfde code als overOns*/

#productieImg{
  background-image: url(/images/productie/controle_vullen.jpg);
  width:20vw;
  height:13.7vw;
}

#kwaliteitImg{
  filter: drop-shadow(0px 7px 8px rgba(53, 53, 53, 0.342));
  background-image: url(/images/productie/Kwaliteit_mango.jpg);
  width:20vw;
  height:13.7vw;
  margin-right:80px;
}

#V-AImg{
  filter: drop-shadow(0px 7px 8px rgba(53, 53, 53, 0.342));
  background-image: url(/images/productie/VerpakkingslijnHorizon.jpg);
  width:18vw;
  height:18vw;
  margin-right:80px;
}

#V-ADesc{
  margin-right:80px;
}

#certImg{
  filter: drop-shadow(0px 7px 8px rgba(53, 53, 53, 0.342));
  background-image: url(/images/productie/lakstempel-min.png);
  width:18vw;
  height:18vw;
}

#bulkImgProductie{
  filter: drop-shadow(0px 7px 8px rgba(53, 53, 53, 0.342));
  background-image: url(/images/LandingPage/Bulk.jpg);
  width:18vw;
  height:18vw;
}

@media screen and (max-width:1410px){
  #kwaliteitImg{
    height:27vw;
    min-width:40vw;
  }
  #productieImg{
    height:27vw;
    min-width:40vw;
  }
  #V-AImg{
    height:40vw;
    min-width:40vw;
  }
  #certImg{
    height:40vw;
    min-width:40vw;
  }
  #bulkImgProductie{
    height:40vw;
    min-width:40vw;
  }
  

}

@media screen and (max-width:1000px){
  .overOnsImage{
    margin:0;
  }
  #V-ADesc{
    margin-right:0;
  }
  #kwaliteitImg{
    height:41vw;
    width:60vw;
    margin-top:20px;
    margin-right:0;
  }
  #productieImg{
    height:41vw;
    width:60vw;
    margin-right:0;
    margin-top:20px;
  }
  #V-AImg{
    height:60vw;
    width:60vw;
    margin-right:0;
    margin-top:20px;
  }
  #certImg{
    height:60vw;
    width:60vw;
  }
  #bulkImgProductie{
    height:60vw;
    min-width:60vw;
    margin-top:20px;
  }
}

@media screen and (max-width:768px){
  #kwaliteitImg{
    height:60vw;
    width:90vw;
  }
  #productieImg{
    height:60vw;
    width:90vw;
  }
  #V-AImg{
    height:90vw;
    width:90vw;
  }
  #certImg{
    height:90vw;
    width:90vw;
  }
  #bulkImgProductie{
    height:90vw;
    min-width:90vw;
  }
}

/*--certs--*/

#logoSkal{
  background-image: url(/images/productie/skalLogo.png);
}

#logoFlocert{
  background-image: url(/images/productie/flocertLogo.png);
}

#logoFSSC{
  background-image: url(/images/productie/fsscLogo.svg);
  padding:10px;
}

#logoBRC{
  background-image: url(/images/productie/BRCLogo.png?v=2);
}


/*

#skalDE1{
  background-image: url(/images/productie/certifs/SKAL31-12-23DE1.jpg);
}

#skalDE2{
  background-image: url(/images/productie/certifs/SKAL31-12-23DE2.jpg);
}

#skalDE3{
  background-image: url(/images/productie/certifs/SKAL31-12-23DE3.jpg);
}

#skalEN1{
  background-image: url(/images/productie/certifs/SKAL31-12-23EN1.jpg);
}

#skalEN2{
  background-image: url(/images/productie/certifs/SKAL31-12-23EN2.jpg);
}

#skalEN3{
  background-image: url(/images/productie/certifs/SKAL31-12-23EN3.jpg);
}

#skalNL1{
  background-image: url(/images/productie/certifs/SKAL31-12-23NL1.jpg);
}

#skalNL2{
  background-image: url(/images/productie/certifs/SKAL31-12-23NL2.jpg);
}

#skalNL3{
  background-image: url(/images/productie/certifs/SKAL31-12-23NL3.jpg);
}

#FLOCERT{
  background-image: url(/images/productie/certifs/FLOCERT.jpg);
}

*/
/*----------------WAARTEKOOP----------------*/

.wtkBody{
  background-color:#eeceb9;
  padding: 80px 0px 120px 0px;
  min-height:65vh;
}

.wtkTitle{
  text-align: center;
  margin-bottom:40px;
  font-size: 25px;
  position:absolute;
  top:100px;
  width: auto;
}


.winkelButton{
  height:370px;
  width:290px;
  margin:5px;
}

.winkelButtonImg{
  height:290px;
  width:290px;
  margin-bottom:10px;
  border-radius: 4px;
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
}

.winkelButtonText{
  display:flex;
  height:40px;
  justify-content: center;
  color:white;
  font-size:25px;
  text-align: center;
  align-items: flex-start;
}

#ekoplazaLogo{
  background-image: url(../images/waarTeKoop/ekoplazaLogo.png);
}

#odinLogo{
  background-image: url(../images/waarTeKoop/odinLogo.png);
}

#GWLogo{
  background-image: url(../images/waarTeKoop/GWLogo.jpg);
}

#BDLogo{
  background-image: url(../images/waarTeKoop/BDLogo.png)
}

@media screen and (max-width:590px){
  .winkelButton{
    margin:0px; 
    height:auto;
    width:100vw;
  }
  .winkelButtonImg{
    width:100vw;
  }
}

/* OLD
.winkels_Maps{
  display:flex;
  justify-content: center;
}

.winkelsList{
  width:400px;
  height:800px;
  display:flex;
  flex-direction: column;
  overflow: hidden;
  overflow-y: scroll;
  padding-bottom:5px;
}

.winkelEntry{
  height:80px;
  display:flex;
  align-items: center;
  margin:5px 5px 0px 5px;
  border-radius: 4px;
}

.winkelImage{
  width:120px;
  height:80px;
  border-radius: 4px;
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
}

.winkelDesc{
  width:270px;
  height:80px;
  padding:8px;
  display:flex;
  flex-direction: column;

}

.winkelTitle{
  font-size: 22px;
  display: block;
}

#scrollButtonWTK{
  visibility: hidden;
  position:absolute;
  top:65vh;
  right:12px;
}

#scrollToWTK{
  visibility: hidden;
  position:absolute;
  height:120px;
}

@media screen and (max-width: 1200px){
  .winkels_Maps{
    flex-direction: column;
    align-items: center;
  }

  .winkelsList{
    margin-bottom:30px;
    border: 4px solid #ce9f80 ;
    border-radius: 4px;
  }
}

@media screen and (max-width: 768px){
  .winkelsList{
    width:100%;
    height:400px;
  }
}

*/

/*----------------CONTACT----------------*/


.contactArea{
  height:auto;
  background-color: #eeceb9;
  text-align: center;
  padding-top: 80px;
  padding-bottom:120px;
  font-size: 25px;
  position:relative;
}

.adresborder{
  display:inline-block;
  width:600px;
  padding:40px;
  margin-top: 1.5em;
  background-color:#faede3;
  filter: drop-shadow(0px 0px 0.5rem rgba(54, 54, 54,0.3));
  overflow: hidden;
  white-space: nowrap;
  border-radius: 4px;
}

.contact{
  margin-bottom: 1.5em;
}


.message{
  margin-top: 1.5em;
}



#telcpy, #faxcpy, #emailcpy{
  background: transparent;
  border: none;
}

.contactVacatures{
  display: flex;
  justify-content: center;
  
}

.contactVacaturesBg{
  margin-top:1.5em;
  padding:10px;
  border-radius:25px;
  background-color:#faede3;
  filter: drop-shadow(0px 0px 0.5rem rgba(54, 54, 54,0.3));
}

.contactFlex{
  display:flex;
  justify-content: space-evenly;
  align-items: center;
}

.vacaturesSpade{
  display:flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.spadeImg{
  height:300px;
  width:300px;
  background-image: url(../images/contact/spade-min.png);
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
}

/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #eeceb9;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #dda37c;
}

/* Add a background color and some padding around the form */
.contactForm {
  background-color: #faede3;
  padding: 20px;
  border-radius:4px;
  width:25%;
  filter: drop-shadow(0px 0px 0.5rem rgba(54, 54, 54,0.3));
}

.contactFormFlex{
  display:flex;
  flex-direction: column;
  align-items: center;
}

#contactFormTitle{
  margin-bottom:12px;
}

.emailForm{
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */;
}

.contactForm_verstuurd{
  background-color: #faede3;
  padding: 20px;
  border-radius:4px;
  width:25%;
  height:25vh;
  display:flex;
  flex-direction: column;
  justify-content: center;
}

.contactForm_verstuurd p{
  margin-top:3%;
}

@media screen and (max-width:1380px) {
  .g-recaptcha{
    transform:scale(0.77);
  }
}

@media screen and (max-width: 1080px) {
  .contactFlex{
    flex-direction: column;
  }
  #werkenBijHor{
    margin-top:40px;
  }
  .contactForm {
    width:70vw;
    margin-top:50px;
  }
  .contactForm_verstuurd{
    width:70vw;
    margin-top:50px;
  }
  .g-recaptcha{
    transform:scale(1);
  }
}

@media screen and (max-width: 900px) {
  .gMapsEmbed{
    width:70vw;
  }
  .adresborder{
    width:70vw;
  }
  .contactArea{
    font-size:20px;
  }
}

@media screen and (max-height:1080px){
  .contactArea{
    font-size:20px;
  }
}

@media screen and (max-width: 768px) {
  .gMapsEmbed{
    width:90vw;
  }
  .adresborder{
    width:90vw;
  }
  .contactForm {
    width:90vw;

  }
  .contactForm_verstuurd{
    width:90vw;
  }
  .message a::before{
    content: "\a";
    white-space: pre;
  }
  .message p{
    padding-bottom:5px;
  }

}

@media screen and (max-width: 550px){
  .contactArea{
    font-size:17px;
  }
  .adresborder{
    padding:10px;
  }
}

@media screen and (max-width: 380px){
  .g-recaptcha{
    transform:scale(0.77);
  }
}

/*----------------NIEUWS----------------*/

.newsBody{
  padding:140px 0px;
  min-height:65vh;
}

.newsTitle{
  text-align: center;
  margin:40px;
  font-size: 25px;
}

.newsTextKader{
  display: flex;
  justify-content: center;
  margin:10% 0px;
}

.newsText{
  text-align: left;
  font-size:60px;
  padding:10px;
  border-radius: 4px;
  color:white;
}

.nieuwsDate{
  align-self: flex-end;
  margin-top:10px;
  margin-bottom:-30px;
  margin-right:20px;
}

.winkels_Maps{
  display:flex;
  justify-content: center;
}

.winkelsList{
  width:500px;
  height:800px;
  display:flex;
  flex-direction: column;
  overflow: hidden;
  overflow-y: scroll;
  padding-bottom:5px;
}

.winkelEntry{
  height:200px;
  display:flex;
  align-items: center;
  margin:5px 5px 0px 5px;
  border-radius: 4px;
}

.winkelImage{
  width:180px;
  height:180px;
  border-radius: 4px;
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
  background-origin: content-box;
}

.winkelDesc{
  width:370px;
  height:180px;
  padding:8px;
  display:flex;
  flex-direction: column;
  justify-content: center;
}

.winkelTitle{
  font-size: 25px;
  display: block;
}

.winkelDesc_Desc{
  font-size:19px;
}

#scrollButtonNews, #scrollButtonCircleNews{
  visibility: hidden;
  position:absolute;
  top:277px;
  right:12px;
}

#scrollButtonCircleNews{
  height:50px;
  width:50px;
  background-color:rgba(255, 255, 255, 0.4);
  border-radius: 25px;
}

#scrollButtonTriangleNews{
  visibility: hidden;
  width: 0; 
  height: 0; 
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 20px solid rgba(255, 255, 255, 0.3);
  margin:auto;
  margin-top: 17px;
}

#scrollToNews{
  visibility: hidden;
  height:80px;

}

.nieuwsItemPageImage{
  display:block;
  width:100%;
}

@media screen and (max-width: 1306px){
  .newsIframeC{
    width:50vw;
  }
}

@media screen and (max-width: 1000px){
  .winkels_Maps{
    flex-direction: column;
    align-items: center;
  }

  .winkelsList{
    border: 4px solid #ce9f80 ;
    width:100%;
    height:400px;
  }
  .newsIframeC{
    width:100vw;
  }
  .winkelEntry{
    justify-content: center;
  }

  #scrollButtonNews, #scrollButtonCircleNews, #scrollButtonTriangleNews{
    visibility: visible;
  }
  
  #scrollButtonTopNews, #scrollButtonCircle_TopNews{
    bottom:25px;
    right:25px;
   }

}

#biofachLogo{
  background-image: url(/images/nieuws/biofach.png);
  padding:10px;
}

#AmanGmnp650{
  background-image: url(/images/nieuws/amandel_gmnp-min.png)
}

#noffLogo{
  background-image: url(/images/nieuws/noff-logo.png?v=2);
  padding:10px;
}

/*----------------MERKEN----------------*/


.merkenBody{
  height:auto;
  background-color: #eeceb9;
}


.merkenButtonContainer{
  height:100%;
  display:flex;
  flex-direction: row;
  justify-content: center;
}

.merkenIntroText{
  display:flex;
  min-height:30vh;
  justify-content: center;
  align-items: center;
  padding: 60px 0px;
}

.merkenIntroText p{
  text-align: left;
  font-size:30px;
  width:45%;
  display:inline;
}

.merkenIntroText p::first-letter {
  padding: 0rem;
  margin: -0.9rem 0.3rem 0 0;
  font-size: 6em;
  float: left;
  line-height: 0.6;
  color:white;
}

/* .merkenIntroText p::first-letter {
  padding: 0 .3rem;
  margin: 0 .3rem 0 0;
  font-size: 5.2rem;
  float: left;
  line-height: 1;
  color:white;
} */



#buttonHor{
  background-image:url(../images/merken/hor.svg);
}

#buttonMonki{
  background-image:url(../images/merken/monki-min.png);
}

#buttonJori{
  background-image:url(../images/merken/jorimerk-min.png);
}

#buttonKrekeltje{
  background-image:url(../images/merken/krekellogoRGB-min.png);
}

#buttonUnueco{
  background-image:url(../images/merken/unuecologo_922-min.png);
}

@media screen and (max-width: 900px) {
  .merkenButtonContainer{
    flex-direction:column;
    margin-left:10%;
    margin-right:10%;
  }

}





.merkenFlex{
  height:auto;
  /*
  min-height:65vh;
  */
  display: flex;
}

.merkenColumn{
  display:flex;
  padding:150px 30px 30px 50px;
  padding-bottom:auto;
  width:100%;
  align-items: center;
  flex-direction: column;
  align-self: stretch;
}

.merkenButton{
  flex:1;
  height:200px;
  width:100%;
  padding:20px;
  margin:1.5%;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.merkenButtonLogo{
  height:140px;
  width:100%;
  background-size: contain;
  background-position:center;
  background-repeat: no-repeat;
  background-origin: content-box;
}

.merkenTitle{
  filter: drop-shadow(0px 0px 0.5rem rgba(54, 54, 54,0.3));
}

.merkenDesc{
  margin-top:20px;
  padding:15px;
  font-size:30px;
  color:white;
  filter: drop-shadow(0px 0px 0.5rem rgba(54, 54, 54,0.3));
  text-align: center;
}

/*
.merkenDesc::first-letter {
  border: 2px solid;
  border-radius: 5px;
  padding: 0 .3rem;
  margin: 0 .3rem 0 0;
  font-size: 5rem;
  float: left;
  line-height: 1;
}
*/

.firstLetter{
  font-size: 70px;
  line-height: 70px;
  z-index: 999;
}


#pageTitle{
  position: absolute; 
  top:100px;
  left: 0; 
  right: 0; 
  margin-left: auto; 
  margin-right: auto; 
  width:auto;
  text-align: center;
  font-size:25px;
}

.heightCorrective{
  height:100%;
}

@media screen and (max-width: 1690px) {
  .merkenIntroText p{
    font-size:28px;
  }
}

@media screen and (max-width: 1428px) {
  .merkenColumn{
    padding: 80px 20px 20px 20px;
  }

}

@media screen and (max-width: 1200px){
  .merkenIntroText p{
    font-size:20px;
  }
}

@media screen and (max-width: 1024px) {
  .merkenButton{
    height:140px;
    padding:0px;
  }
  .merkenIntroText p{
    font-size:18px;
    width:80%;
  }

}


@media screen and (max-width: 900px) {
  .merkenFlex{
    flex-direction: column;
  }

  .merkenButton{
    height:200px;
    padding:20px;
  }

  .merkenIntroText p{
    font-size:20px;
    column-count: 1;
  }
}



/*----------------PRODUCT_PAGINA_TEMPLATE----------------*/

/*--grid--*/
/*
.gridContainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height:100%;
}

@media screen and (max-width: 768px) {
  .gridContainer{
    align-items: center;
  }

}

.productImgBg{
  background-color: blue;
}

.productDescBg{
  background-color: black;
}
*/


/*---flexbox---*/



.flexContainer {
  display: flex;
  height:auto;
}

.flexChild:first-child {
  height: auto;
} 

.flexChild {
  flex: 1;
  height:auto;
}  

.productImgBg{
  padding-top:80px;
}

.productDesc{
  width: 100%;
  height: 100%;
  background-repeat:no-repeat;
}

.productImgBg, .productDescBg{
  width:100%;
  height:100%;
  position:relative;
}

.productImg{
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
  background-origin: border-box;
  height:90vh;
  width:100%;
}

.productDesc{
  padding:5%;
  padding-top:50px;
}

.productPath{
  color: rgb(107, 107, 107);
  width:auto;
  display:flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.productPath_Nologo{
  color: rgb(107, 107, 107);
  width:auto;
  display:flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 40px 0px 12px 0px;
}

.productTitle{
  font-size:40px;
}

.productDescText{
  padding-top:0.5em;
  font-size:23px;
  align-self: flex-start;
}

.leftSide{
  display:flex;
  flex-direction: column;
  padding:20px;
}



.productDesc_Icons{
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  width:90%;

}

.productDesc_MERK{
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  width:100%;

}

#scrollButton, #scrollButtonCircle{
  visibility: hidden;
  position:absolute;
  top:215px;
  right:12px;
}

#scrollButtonCircle{
  height:50px;
  width:50px;
  background-color:rgba(255, 255, 255, 0.4);
  border-radius: 25px;
}

#scrollButtonTriangle{
  visibility: hidden;
  width: 0; 
  height: 0; 
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 20px solid rgba(255, 255, 255, 0.3);
  margin:auto;
  margin-top: 17px;
}

#scrollTo{
  visibility: hidden;
  height:80px;
  position:absolute;
  top:420px;
}

.scrollTo_Div{
  visibility: hidden;
  height:80px;
  margin-top:-80px;
}

/*--BackToTop--*/

#scrollButtonTop, #scrollButtonCircle_Top{
  position:fixed;
  bottom:50px;
  right:50px;
}

#scrollButtonCircle_Top{
  height:50px;
  width:50px;
  background-color:rgba(255, 255, 255, 0.4);
  border-radius: 25px;
}

#scrollButtonTriangle_Top{
  width: 0; 
  height: 0; 
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 20px solid rgba(255, 255, 255, 0.733);
  margin:auto;
  margin-top: 12px;
}

/*--Dit was nodig voor de oude zakjes, om ze wat hoger te plaatsen, maar ik wil nog niet de class weghalen,
dus ik vervang de inhoud voor de standaard zakjes--*/

/* .productImgHorZakjeMargin{
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
  background-origin: border-box;
  height:90vh;
  width:100%;
  margin-top:-10vh;
  margin-bottom:10vh;
} */

.productImgHorZakjeMargin{
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
  background-origin: border-box;
  height:90vh;
  width:100%;
}

@media screen and (max-width: 768px) {

  .productDesc{
    padding:20px;
  }
  .flexContainer{
    flex-direction: column;
  }
  .productImgBg{
    height:500px;
  }
  .productImg{
    height:100%;
    padding-top:0px;
  }
  .productImgHorZakjeMargin{
    height:100%;
    padding-top:0px;
    margin-top:-35px;
    margin-bottom: 0px;
  }
  
  #scrollButton, #scrollButtonCircle, #scrollButtonTriangle{
    visibility: visible;
  }

  #scrollButtonTop, #scrollButtonCircle_Top{
    bottom:25px;
    right:25px;
  }
}

@media screen and (max-width: 1330px){
  .productDesc_Icons{
    width:100%;
  }
}

@media screen and (max-height:1080px){
  .productDescText{
    font-size:19px;
  }
}


/*---ICONS---*/

.productIcons{
  display:flex;
  flex-direction: row;
  width:100%;
  padding: 15px;
  justify-content: space-evenly;
}

.icon1, .icon2, .icon3, .icon4{
  height:100px;
  width:100px;
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
  margin: 10px 0px;
}

.productLogo{
  height:100px;
  width:180px;
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
  background-origin:content-box;
  padding: 20px 0px;
}



#euIcon{
  background-image:url(../images/merken/icons/eulogohorizonNLBIO-01.svg)
}

#veganIcon{
  background-image:url(../images/merken/icons/veganlogo.svg)
}

#glutenIcon{
  background-image:url(../images/merken/icons/gluten.svg)
}

#glasIcon{
  background-image:url(../images/merken/icons/glasbak.svg)
}

@media screen and (max-height:1080px){
  .icon1, .icon2, .icon3, .icon4{
    height:90px;
    width:90px;
  }
}


/*---NUTRIENTS---*/

.productNutrients{
  margin-top:6vh;
  margin-bottom:30px;
  filter: drop-shadow(0px 0px 0.5rem rgba(54, 54, 54,0.3));
  position:relative;
  display:inline-block;
  padding:25px;
  width:100%;
  border-radius:4px;
}

.productNutrients_Part1, .productNutrients_Part2{
  font-size:20px;
}


.productNutrients_Part1{
  color: rgb(127, 142, 163);
  margin-bottom:30px;
}

#productNutrients_1_ColorCorrect{
  color:rgb(101, 144, 204);
}

.productNutrients_Part2{
  color:rgb(165, 22, 29);
}

#productNutrients_2_ColorCorrect{
  color:rgb(133, 15, 21);
}

.productNutrients_Opmaak{
  display:flex;
  flex-direction: row;
  width:100%;
  justify-content: space-between;
  align-content:stretch;
}

.stippellijn{
  flex: 1;
  background-image: linear-gradient(to right, #000 10%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 10px 2px;
  background-repeat: repeat-x;
  min-width:20px;
  max-height:20px;
}

.productNutrients_Value{
  color: black;
  font-weight:bold;
  text-align: right;
}

#productNutrients_Type_Child{
  margin-left:30px;
}

@media screen and (max-height:1080px){
  .productNutrients_Part1, .productNutrients_Part2{
    font-size:19px;
  }
  .productNutrients{
    margin-bottom:0px;
  }
}

@media screen and (max-width: 1330px){
  .productNutrients_Opmaak{
    width:100%;
    }
  .productNutrients{
    width:100%;
  }
}

@media screen and (max-width: 1040px) {
  .productNutrients_Part1, .productNutrients_Part2{
    font-size:14px;
  }
  .productDescText{
    font-size:15px;
  }
  .icon1, .icon2, .icon3, .icon4{
    height:80px;
    width:80px;

  }
  .productLogo{
    height:140px;
    width:140px;
  }

  .productPath{
    font-size:14px;
  }


}

@media screen and (max-width: 768px) {
  .icon1, .icon2, .icon3, .icon4{
    height:60px;
    width:60px;
  }
  .productLogo{
    height:100px;
    width:100px;
  }
  .productNutrients{
    margin-top:40px;
    margin-bottom:0px;
  }
  .leftSide{
    margin:12px;
    margin-top:1px;
    padding-top: 0px;
  }

}

@media screen and (max-width: 440px)  {
  .icon1, .icon2, .icon3, .icon4{
    height:45px;
    width:45px;
  }
  .productPath{
    font-size: 12px;
    flex-direction:column-reverse;
    margin-top:5px;
    margin-bottom:10px;
    align-items: flex-start;
  }
  .productTitle{
    font-size:24px;
  }
  .productDescText{
    font-size: 12px;
  }
  .productDesc{
    padding: 0px;
  }
  .leftSide{
    padding:5px;
  }
  .productLogo{
    height:50px;
    padding:5px 0px;
  }
}

/*
Dit is de main lay-out voor elke productpagina. Om de tekst/plaatjes te veranderen wordt er voor elke
pagina een section gemaakt in dit bestand die met ID's elke pagina aanpast. 
Bijvoorbeeld, de amandelpasta html heeft de html template, maar dan hebben de divs hun eigen ID die
los van de template kunnen wordne bestuurd.
*/

.productGrid{
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom:20px;

}


.productButton{
  height:370px;
  width:290px;
}


.productButtonImg{
  height:310px;
  width:290px;
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
}

.productButtonText{
  display:flex;
  height:40px;
  justify-content: center;
  color:white;
  font-size:25px;
  text-align: center;
  align-items: flex-start;
  line-height: 27px;
}

.productLijst{
  display:flex;
  flex-direction: column;
  margin-top:80px;
}

.productLijst a{
  margin-bottom:20px;
}

.productTypeSelect{
  width:100%;
  height:80px;
  padding:20px;
  color:white;
}

.lineContainer{
  display:flex;
}

.linePadding{
  width:100%;
}

.lineInfill{
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  width:100%;
}

.lineInfillLight{
  border-bottom: 2px solid rgba(255, 255, 255, 0.61);
  width:100%;
}

.productGram_Kader{
  display: flex;
  justify-content: center;
  margin-bottom:20px;
}

.productGram_MerkP{
  color:white;
  font-size: 27px;
  text-align: center;
  padding:6px;
  border-radius: 4px;
  filter: drop-shadow(0px 0px 0.3rem rgba(54, 54, 54, 0.11));
}

@media screen and (max-width: 589px)  {
  .productGrid{
    width:100vw;
    flex-wrap: wrap;
  }
  .productButton{
    height:auto;
    width:40vw;
  }
  .productButtonImg{
    width:40vw;
    height:40vw;
  }
  .productButtonText{
    width:40vw;
    text-align: center;
    font-size:22px;
  }
  .productButtonAnchor{
    margin: 10px;
  }

}

@media screen and (max-width: 500px)  {
  .productButtonText{
    font-size: 18px;
  }
}

/*----------------MERKPAGE----------------*/

.merkPageFlex{
  display:flex;
}

.merkPageImage{
  padding:70px;
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
  background-origin: content-box;
  height:90vh;
  width:100%;
}

.merkPageText{
  margin:20px;
  margin-top:100px;
  font-size:25px;
  color:white;
}

.merkTextColumn{
  display:flex;
  flex-direction: row;
  font-size:1.2vw;
  padding-top:20px;
}

.merkTextColumnChild{
  padding-right:2vw;
  width:70%;
}

.merkLogo_Page{
  height:100px;
  width:240px;
  background-size:contain;
  background-position:left;
  background-repeat:no-repeat;
  background-origin: content-box;
}

@media screen and (max-height: 900px) {
  .merkTextColumn{
    font-size:16px;
  }
}

@media screen and (max-width: 1400px) {
  .merkTextColumn{
    flex-direction: column;
  }
  .merkTextColumnChild{
    margin-bottom:40px;
  }

}

@media screen and (max-width: 1040px) {
  .merkTextColumn{
    font-size:16px;
  }

  .merkLogo_Page{
    height:80px;
    width:200px;
  }

}


@media screen and (max-width: 768px)  {
  .merkPageImage{
    height:100%;
    padding:5%;
    padding-top:5%;
  }

  .merkLogo_Page{
    height:60px;
    width:180px;
  }

  .merkTextColumnChild{
    width:100%;
  }

}

@media screen and (max-width: 440px)  {
  .merkLogo_Page{
    height:50px;
    width:160px;
  }

}

/*----------------HORIZON----------------*/


/*




#coverHor{
  background-image:url(../images/merken/horizon/cover-min.png);
  margin:0;
}

.bgImageFull{
  background-image: url(../images/LandingPage/NEW_TAHIN_IMAGE_FULL.jpg);
  height: 200vw;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 900px) {
  .bgImageFull{
    margin-top:60px;
}
body{
  background-color: rgb(148, 14, 20);
}

}

.heroText {
  font-size: 5vw;
  color:#fff;
  margin: 10% 0% 0% 45%;
  filter: drop-shadow(0px 0px 0.5rem rgb(54, 54, 54));
  position: absolute;
}

#heroTextLink{
  color:#fff;
}

#heroTextLink:hover{
  color: rgb(112, 112, 112);
}


.tafelText{
  color:white;
  font-size: 30px;
  filter: drop-shadow(0px 0px 0.5rem rgb(54, 54, 54));
  position:absolute;
  margin-top:80%;
  margin-left:10%;
  margin-right:30%;
}

@media screen and (max-width: 900px) {
  .tafelText{
    font-size: 1em;
  }
}

@media screen and (max-width: 768px) {
  .tafelText{
    font-size: 0.8em;
    margin-top:74%;
  }
}

#bioproductText{
  margin-bottom:2em;
}

*/


#logoHor{
  background-image:url(../images/merken/hor.svg);
}

#horRecentImage{
  background-image:url(/images/merken/horizon/coverMuur-min.png);
}

/*----------------HORIZONPASTA----------------*/

.productHeadText{
  margin-bottom:40px;
  /*
  filter: drop-shadow(0px 0px 0.5rem rgba(54, 54, 54,0.3));
  */
  color:white;
  text-align: center;
  font-size: 60px;
}

.horZakjeText{
  margin-bottom:0px;
}

.horNotenpastasBody{
  padding-top:50px;
}

#horColorMainNoHover{
  background-color:#c8233f;
}

#horColorMain{
  background-color:#c8233f;
  transition: 0.17s;
}

#horColorMain:hover{
  background-color: #c5384f;
  transition:0.17s;
}

#horColorMainCategory{
  background-color:#b8233c;
  border-radius: 4px;
  margin:10px;
  transition:0.17s;
}

@media screen and (max-width: 768px) {
  #horColorMain_Header{
    background-color:#c8233f;
  }
}

@media screen and (max-width: 589px){
  #horColorMainCategory{
    margin:0px;
  }
  .productHeadText{
    font-size: 12vw;
  }
}

#horColorMainCategory:hover{
  background-color: #c5384f;
  transition:0.17s;
}

#horColorMerk{
  background-color:#921a2e;
}

#horColorMerkTEXT{
  color:#921a2e;
}

#horColorAccent{
  background-color:rgb(216, 57, 52);
}

#horColor1{
  background-color:rgb(233, 200, 196);
}

#horColor2{
  background-color:rgb(233, 220, 218);
}

#horNotenpastasCat{
  background-image: url(/images/merken/horizon/horPastasCat-min.png);
}

#horNotenCat{
  background-image: url(../images/merken/horizon/horNotenCat-min.png);
}

#horNotenZoutCat{
  background-image: url(../images/merken/horizon/gezoutenNotenCat-min.png);
}

#horZuidvruchtenCat{
  background-image: url(../images/merken/horizon/horZuidvruchtenCat-min.png);
}

#horZadenCat{
  background-image: url(../images/merken/horizon/horZadenCat.png);
}

#horStropenCat{
  background-image: url(../images/merken/horizon/horStropenCat-min.png);
}

#horAhornCat{
  background-image: url(../images/merken/horizon/horAhornCat-min.png);
}

/*----------------PASTAS----------------*/

#horNotenpastasImage{
  background-image:url(../images/merken/horizon/horizonpasta/horNotenpastasImage-min.png);
}


#horAmandelPasta{
  background-image:url(../images/merken/horizon/horizonpasta/horAmandelPasta-min.png);
}

#horAmandelWitPasta{
  background-image:url(../images/merken/horizon/horizonpasta/horAmandelWitPasta-min.png);
}

#horCashewPasta{
  background-image:url(../images/merken/horizon/horizonpasta/horCashewPasta-min.png);
}

#horCashewWitPasta{
  background-image:url(../images/merken/horizon/horizonpasta/horCashewWitPasta-min.png);
}

#horGemengdePasta{
  background-image:url(../images/merken/horizon/horizonpasta/horGemengdePasta-min.png);
}

#horHazelnootPasta{
  background-image:url(../images/merken/horizon/horizonpasta/horHazelnootPasta-min.png);
}

#horHazelRozijnPasta{
  background-image:url(../images/merken/horizon/horizonpasta/horHazelRozijnPasta-min.png);
}

#horPindakaas{
  background-image:url(../images/merken/horizon/horizonpasta/horPindakaas-min.png);
}

#horPindakaasCrunchy{
  background-image:url(../images/merken/horizon/horizonpasta/horPindakaasCrunchy-min.png);
}

#horPindakaasZout{
  background-image:url(../images/merken/horizon/horizonpasta/horPindakaasZout-min.png);
}

#horPindaRozijnPasta{
  background-image:url(../images/merken/horizon/horizonpasta/horPindaRozijnPasta-min.png);
}

#horPompoenpitPasta{
  background-image:url(../images/merken/horizon/horizonpasta/horPompoenPasta-min.png);
}

#horTahin{
  background-image:url(../images/merken/horizon/horizonpasta/horTahin-min.png);
}

#horTahinWit{
  background-image:url(../images/merken/horizon/horizonpasta/horTahinWit-min.png);
}

#horTahinZout{
  background-image:url(../images/merken/horizon/horizonpasta/horTahinZout-min.png);
}

#horTahinZwart{
  background-image:url(../images/merken/horizon/horizonpasta/horTahinZwart-min.png);
}

#horZonnebloemPasta{
  background-image:url(../images/merken/horizon/horizonpasta/horZonnebloemPasta-min.png);
}

#hor3NotenPasta{
  background-image:url(../images/merken/horizon/horizonpasta/hor3NotenPasta-min.png);
}

#hor4NotenPasta{
  background-image:url(../images/merken/horizon/horizonpasta/hor4NotenPasta-min.png);
}

/*--650--*/

#horPinda650{
  background-image:url(../images/merken/horizon/horizonpasta/650/horPinda650-min.png);
}

#horPindaCrunchy650{
  background-image:url(../images/merken/horizon/horizonpasta/650/horPindaCrunchy650-min.png);
}

#horPindaZout650{
  background-image:url(../images/merken/horizon/horizonpasta/650/horPindaZout650-min.png);
}

#horTahin650{
  background-image:url(../images/merken/horizon/horizonpasta/650/horTahin650-min.png);
}

#horTahinZout650{
  background-image:url(../images/merken/horizon/horizonpasta/650/horTahinZout650-min.png);
}

#horAmandelPasta650{
  background-image:url(../images/merken/horizon/horizonpasta/650/horAmandel650-min.png);
}

#horGemengdePasta650{
  background-image:url(../images/merken/horizon/horizonpasta/650/horGemengd650-min.png);
}

/*--175--*/

#horAmandel175{
  background-image:url(../images/merken/horizon/horizonpasta/175/horAmandel175-min.png);
}

#horGemengd175{
  background-image:url(../images/merken/horizon/horizonpasta/175/horGemengd175-min.png);
}

#horZonnebloem175{
  background-image:url(../images/merken/horizon/horizonpasta/175/horZonnebloem175-min.png);
}

#horPecan175{
  background-image:url(../images/merken/horizon/horizonpasta/175/horPecan175-min.png);
}

#horPistache175{
  background-image:url(../images/merken/horizon/horizonpasta/175/horPistache175-min.png);
}

#horPijnboomPit175{
  background-image:url(../images/merken/horizon/horizonpasta/175/horPijnboomPit175-min.png);
}

#horAmandel175Small{
  background-image:url(../images/merken/horizon/horizonpasta/175/horAmandel175Small-min.png);
}

#horGemengd175Small{
  background-image:url(../images/merken/horizon/horizonpasta/175/horGemengd175Small-min.png);
}

#horZonnebloem175Small{
  background-image:url(../images/merken/horizon/horizonpasta/175/horZonnebloem175Small-min.png);
}

#horPecan175Small{
  background-image:url(../images/merken/horizon/horizonpasta/175/horPecan175Small-min.png);
}

#horPistache175Small{
  background-image:url(../images/merken/horizon/horizonpasta/175/horPistache175Small-min.png);
}

#horPijnboomPit175Small{
  background-image:url(../images/merken/horizon/horizonpasta/175/horPijnboomPit175Small-min.png);
}


/*----------------HORIZONNOTEN----------------*/

#horPecannoten{
  background-image:url(../images/merken/horizon/horizonnoten/horPecannoten-min.png);
}

#horPijnboompitten{
  background-image:url(../images/merken/horizon/horizonnoten/horPijnboomPitten-min.png);
}

#horAmandelen{
  background-image:url(../images/merken/horizon/horizonnoten/horAmandelen-min.png);
}

#horAmandelen500{
  background-image:url(../images/merken/horizon/horizonnoten/horAmandelen500-min.png);
}

#horAmandelmeel{
  background-image:url(../images/merken/horizon/horizonnoten/horAmandelMeel-min.png);
}

#horAmandelmeel350{
  background-image:url(../images/merken/horizon/horizonnoten/horAmandelMeel350-min.png);
}

#horAmandelenGeblancheerd{
  background-image:url(../images/merken/horizon/horizonnoten/horAmandelenGeblancheerd-min.png);
}

#horAmandelschaafsel{
  background-image:url(../images/merken/horizon/horizonnoten/horAmandelschaafsel-min.png);
}

#horCashewGebroken{
  background-image:url(../images/merken/horizon/horizonnoten/horCashewGebroken-min.png);
}

#horCashewnoten{
  background-image:url(../images/merken/horizon/horizonnoten/horCashewnoten-min.png);
}

#horCashewnoten500{
  background-image:url(../images/merken/horizon/horizonnoten/horCashewnoten500-min.png);
}

#horHazelnoten{
  background-image:url(../images/merken/horizon/horizonnoten/horHazelnoten-min.png);
}

#horHazelnoten500{
  background-image:url(../images/merken/horizon/horizonnoten/horHazelnoten500-min.png);
}

#horHazelnotenGebroken{
  background-image:url(../images/merken/horizon/horizonnoten/horHazelnotenGebroken-min.png);
}

#horGemengdeNoten{
  background-image:url(../images/merken/horizon/horizonnoten/horGemengdeNoten-min.png);
}

#horGemengdeNoten500{
  background-image:url(../images/merken/horizon/horizonnoten/horGemengdeNoten500-min.png);
}

#horGemengdeNoten1000{
  background-image:url(../images/merken/horizon/horizonnoten/horGemengdeNoten1000-min.png);
}

#horParanoten{
  background-image:url(../images/merken/horizon/horizonnoten/horParanoten-min.png);
}

#horParanoten500{
  background-image:url(../images/merken/horizon/horizonnoten/horParanoten500-min.png);
}

#horPistachenoten{
  background-image:url(../images/merken/horizon/horizonnoten/horPistachenoten-min.png);
}

#horKokosGemalen{
  background-image:url(../images/merken/horizon/horizonnoten/horKokosGemalen-min.png);
}

#horStudentenhaver{
  background-image:url(../images/merken/horizon/horizonnoten/horStudentenHaver-min.png);
}

#horStudentenhaver500{
  background-image:url(../images/merken/horizon/horizonnoten/horStudentenHaver500-min.png);
}

#horStudentenhaver1000{
  background-image:url(../images/merken/horizon/horizonnoten/horStudentenHaver1000-min.png);
}

#horWalnoten{
  background-image:url(../images/merken/horizon/horizonnoten/horWalnoten-min.png);
}

#horWalnoten500{
  background-image:url(../images/merken/horizon/horizonnoten/horWalnoten500-min.png);
}


/*----------------HORIZONZUIDVRUCHTEN----------------*/

#horAbrikozen{
  background-image:url(../images/merken/horizon/horizonzuidvruchten/horAbrikozen-min.png);
}

#horAbrikozen500{
  background-image:url(../images/merken/horizon/horizonzuidvruchten/horAbrikozen500-min.png);
}

#horAbrikozen1000{
  background-image:url(../images/merken/horizon/horizonzuidvruchten/horAbrikozen1000-min.png);
}

#horAnanas{
  background-image:url(../images/merken/horizon/horizonzuidvruchten/horAnanas-min.png);
}

#horAppeltjes{
  background-image:url(../images/merken/horizon/horizonzuidvruchten/horAppeltjes-min.png);
}

#horPruimen{
  background-image:url(../images/merken/horizon/horizonzuidvruchten/horPruimen-min.png);
}

#horBanaan{
  background-image:url(../images/merken/horizon/horizonzuidvruchten/horBanaan-min.png);
}

#horBananenChips{
  background-image:url(../images/merken/horizon/horizonzuidvruchten/horBananenchips-min.png);
}

#horBosbessenWild{
  background-image:url(../images/merken/horizon/horizonzuidvruchten/horBosbessenWild-min.png);
}

#horCranberries{
  background-image:url(../images/merken/horizon/horizonzuidvruchten/horCranberries-min.png);
}

#horCranberries500{
  background-image:url(../images/merken/horizon/horizonzuidvruchten/horCranberries500-min.png);
}

#horDadels{
  background-image:url(../images/merken/horizon/horizonzuidvruchten/horDadels-min.png);
}

#horDadels1000{
  background-image:url(../images/merken/horizon/horizonzuidvruchten/horDadels1000-min.png);
}

#horIncabessen{
  background-image:url(../images/merken/horizon/horizonzuidvruchten/horIncabessen-min.png);
}

#horMoerbeien{
  background-image:url(../images/merken/horizon/horizonzuidvruchten/horMoerbeien-min.png);
}

#horPapaya{
  background-image:url(../images/merken/horizon/horizonzuidvruchten/horPapaya-min.png);
}

#horTropischFruit{
  background-image:url(../images/merken/horizon/horizonzuidvruchten/horTropischFruit-min.png);
}

#horKrenten{
  background-image:url(../images/merken/horizon/horizonzuidvruchten/horKrenten-min.png);
}

#horRozijnenSultana{
  background-image:url(../images/merken/horizon/horizonzuidvruchten/horRozijnenSultana-min.png);
}

#horRozijnenSultana500{
  background-image:url(../images/merken/horizon/horizonzuidvruchten/horRozijnenSultana500-min.png);
}

#horRozijnenSultana1000{
  background-image:url(../images/merken/horizon/horizonzuidvruchten/horRozijnenSultana1000-min.png);
}

#horRozijnen{
  background-image:url(../images/merken/horizon/horizonzuidvruchten/horRozijnenBlueThompson-min.png);
}

#horRozijnen500{
  background-image:url(../images/merken/horizon/horizonzuidvruchten/horRozijnenBlueThompson500-min.png);
}

#horVijgen{
  background-image:url(../images/merken/horizon/horizonzuidvruchten/horVijgen-min.png);
}

#horVijgen1000{
  background-image:url(../images/merken/horizon/horizonzuidvruchten/horVijgen1000-min.png);
}

#horMango{
  background-image:url(../images/merken/horizon/horizonzuidvruchten/horMango-min.png);
}

#horMango500{
  background-image:url(../images/merken/horizon/horizonzuidvruchten/horMango500-min.png);
}

#horMango1000{
  background-image:url(../images/merken/horizon/horizonzuidvruchten/horMango1000-min.png);
}

#horZureKersen{
  background-image:url(../images/merken/horizon/horizonzuidvruchten/horZureKersen-min.png);
}


/*----------------HORIZONZADEN----------------*/

#horBlauwmaanzaad{
  background-image:url(../images/merken/horizon/horizonZaden/horBlauwmaanzaad-min.png);
}

#horHennepzaad{
  background-image:url(../images/merken/horizon/horizonZaden/horHennepzaad-min.png);
}

#horSesamzaad{
  background-image:url(../images/merken/horizon/horizonZaden/horSesamzaad-min.png);
}

#horSesamzaad1000{
  background-image:url(../images/merken/horizon/horizonZaden/horSesamzaad1000-min.png);
}

#horSesamzaadGeroosterd{
  background-image:url(../images/merken/horizon/horizonZaden/horSesamzaadGeroosterd-min.png);
}

#horSesamzaadZwart{
  background-image:url(../images/merken/horizon/horizonZaden/horSesamzaadZwart-min.png);
}

#horPompoenpitten{
  background-image:url(../images/merken/horizon/horizonZaden/horPompoenpitten-min.png);
}

#horPompoenpitten500{
  background-image:url(../images/merken/horizon/horizonZaden/horPompoenpitten500-min.png);
}

#horZonnebloempitten{
  background-image:url(../images/merken/horizon/horizonZaden/horZonnebloempitten-min.png);
}

#horZonnebloempitten1000{
  background-image:url(../images/merken/horizon/horizonZaden/horZonnebloempitten1000-min.png);
}

#horZonnebloempitten500{
  background-image:url(../images/merken/horizon/horizonZaden/horZonnebloempitten500-min.png);
}

#horLijnzaadGebroken{
  background-image:url(../images/merken/horizon/horizonZaden/horLijnzaadGebroken-min.png);
}

#horLijnzaad{
  background-image:url(../images/merken/horizon/horizonZaden/horLijnzaad-min.png);
}


/*----------------HORIZONGEZOUTENNOTEN----------------*/

#horAmandelenZout{
  background-image:url(../images/merken/horizon/horizongezoutennoten/amandelenZout-min.png);
}

#horCashewZout{
  background-image:url(../images/merken/horizon/horizongezoutennoten/cashewZout-min.png);
}

#horPindaZout{
  background-image:url(../images/merken/horizon/horizongezoutennoten/pindaZout-min.png);
}

#horMacadamiaZout{
  background-image:url(../images/merken/horizon/horizongezoutennoten/macadamiaZout-min.png);
}

/*----------------HORIZONSTROPEN----------------*/

#horDadelstroop{
  background-image:url(../images/merken/horizon/horizonStropen/horDadelstroop-min.png);
}

#horGerstemoutstroop{
  background-image:url(../images/merken/horizon/horizonStropen/horGerstemoutstroop-min.png);
}

#horMaismoutstroop{
  background-image:url(../images/merken/horizon/horizonStropen/horMaismoutstroop-min.png);
}

#horRietsuikermelasse{
  background-image:url(../images/merken/horizon/horizonStropen/horRietsuikermelasse-min.png);
}

#horRijststroop{
  background-image:url(../images/merken/horizon/horizonStropen/horRijststroop-min.png);
}

#horSuikerbietenstroop{
  background-image:url(../images/merken/horizon/horizonStropen/horSuikerbietenstroop-min.png);
}

/*----------------HORIZONAHORN----------------*/

#horAhorn1000{
  background-image:url(../images/merken/horizon/horizonAhorn/horAhorn1000-min.png);
}

#horAhorn500{
  background-image:url(../images/merken/horizon/horizonAhorn/horAhorn500-min.png);
}

#horAhorn250{
  background-image:url(../images/merken/horizon/horizonAhorn/horAhorn250-min.png);
}

/*----------------MONKI----------------*/

#logoMon{
  background-image:url(../images/merken/monki-min.png);
}

#monRecentImage{
  background-image:url(/images/merken/monki/monPotMuur-min.png);
}

#monColorMerk{
  background-color:#35522b;
}

#monColorMainNoHover{
  background-color:#4f7441;
}

#monColorMain{
  background-color:#4f7441;
  transition:0.17s;
}

#monColorMain:hover{
  background-color: #5a7c4d;
  transition:0.17s;
}

@media screen and (max-width: 768px) {
  #monColorMain_Header{
    background-color:#4f7441;
  }
}

#monColorAccent{
  background-color:#5e8a4f;
}

#monColor1{
  background-color:#a0aa8b;
}

#monColor2{
  background-color:#b0bd9b;
}

/*----------------MONKIPASTAS----------------*/

#monAmandelPasta{
  background-image:url(../images/merken/monki/monNotenpastas/monAmandelPasta-min.png);
}

#monAmandelWitPasta{
  background-image:url(../images/merken/monki/monNotenpastas/monAmandelWit-min.png);
}

#monCashewPasta{
  background-image:url(../images/merken/monki/monNotenpastas/monCashewPasta-min.png);
}

#monCashewWitPasta{
  background-image:url(../images/merken/monki/monNotenpastas/monCashewWit-min.png);
}

#monGemengdePasta{
  background-image:url(../images/merken/monki/monNotenpastas/monGemengdePasta-min.png);
}

#monHazelnootPasta{
  background-image:url(../images/merken/monki/monNotenpastas/monHazelnootPasta-min.png);
}

#monHazelRozijnPasta{
  background-image:url(../images/merken/monki/monNotenpastas/monHazelRozijnPasta-min.png);
}

#monPindakaas{
  background-image:url(../images/merken/monki/monNotenpastas/monPindakaas-min.png);
}

#monPindakaasCrunchy{
  background-image:url(../images/merken/monki/monNotenpastas/monPindakaasCrunchy-min.png);
}

#monPindaRozijnPasta{
  background-image:url(../images/merken/monki/monNotenpastas/monPindaRozijnPasta-min.png);
}

#monPompoenpitPasta{
  background-image:url(../images/merken/monki/monNotenpastas/monPompoenpitPasta-min.png);
}

#monTahin{
  background-image:url(../images/merken/monki/monNotenpastas/monTahin-min.png);
}

#monTahinWit{
  background-image:url(../images/merken/monki/monNotenpastas/monTahinWit-min.png);
}

#monTahinZout{
  background-image:url(../images/merken/monki/monNotenpastas/monTahinZout-min.png);
}

#monTahinZwart{
  background-image:url(../images/merken/monki/monNotenpastas/monTahinZwart-min.png);
}

#monZonnebloemPasta{
  background-image:url(../images/merken/monki/monNotenpastas/monZonnebloemPasta-min.png);
}

#mon3NotenPasta{
  background-image:url(../images/merken/monki/monNotenpastas/mon3NotenPasta-min.png);
}

#mon4NotenPasta{
  background-image:url(../images/merken/monki/monNotenpastas/mon4NotenPasta-min.png);
}


/*--650--*/

#monPinda650{
  background-image:url(../images/merken/monki/monNotenpastas/650/monPinda650-min.png);
}

#monPindaCrunchy650{
  background-image:url(../images/merken/monki/monNotenpastas/650/monPindaCrunchy650-min.png);
}

#monTahin650{
  background-image:url(../images/merken/monki/monNotenpastas/650/monTahin650-min.png);
}

#monTahinZout650{
  background-image:url(../images/merken/monki/monNotenpastas/650/monTahinZout650-min.png);
}

/*--175--*/

#monPecanPasta{
  background-image:url(../images/merken/monki/monNotenpastas/175/monPecanPasta-min.png);
}

#monPistachePasta{
  background-image:url(../images/merken/monki/monNotenpastas/175/monPistachePasta-min.png);
}

#monPijnboomPitPasta{
  background-image:url(../images/merken/monki/monNotenpastas/175/MonPijnboomPit175-min.png);
}

#monTahinZwart175{
  background-image:url(../images/merken/monki/monNotenpastas/175/MonTahinZwart175-min.png);
}

/*----------------JORI----------------*/

#joriRecentImage{
  background-image: url(../images/merken/jori/FrontCover_T-min.png);
}

#joriColorMainNoHover{
  background-color:#f26f5f ;
}

#joriColorMain{
  background-color:#f26f5f ;
  transition:0.17s;
}

#joriColorMerk{
  background-color:#ac4e42;
}

#joriColorMain:hover{
  background-color:#ee7969 ;
  transition:0.17s;
}

@media screen and (max-width: 768px) {
  #joriColorMain_Header{
    background-color:#f26f5f ;
  }
}

#joriColorAccent{
  background-color:#fc5943 ;
}

#joriColor1{
  background-color:#f9b4a2;
}

#joriColor2{
  background-color:#dd8f7d;
}

/*----------------JORIPASTAS----------------*/

#joriPinda{
  background-image: url(../images/merken/jori/pastas/joriPinda-min.png);
}

#joriPinda650{
  background-image: url(../images/merken/jori/pastas/joriPinda650-min.png);
}

#jori4Noten{
  background-image: url(../images/merken/jori/pastas/jori4Noten-min.png);
}

/*----------------KREKELTJE----------------*/

#krekelRecentImage{
  background-image: url(../images/merken/krekeltje/krekeltjeImage-min.png);
}

#krekelColorMainNoHover{
  background-color:#fdba1e;
}

#krekelColorMain{
  background-color:#fdba1e;
  transition:0.17s;
}

#krekelColorMain:hover{
  background-color:#f8c346;
  transition:0.17s;
}

@media screen and (max-width: 768px) {
  #krekelColorMain_Header{
    background-color:#fdba1e;
  }
}

#krekelColorAccent{
  background-color:#ffcb53;
}

#krekelColorMerk{
  background-color:#bd8c1c;
}

#krekelColor1{
  background-color:#fce195;
}

#krekelColor2{
  background-color:#f7d48a;
}

/*----------------PASTAS----------------*/

#krekelPinda{
  background-image: url(../images/merken/krekeltje/krekelPinda-min.png);
}

#krekelPinda500{
  background-image: url(../images/merken/krekeltje/krekelPinda500-min.png);
}



/*----------------UNUECO [(DEPRICATED)]----------------*/
/*
#unuecoRecentImage{
  background-image: url(../images/merken/unueco/unuecoImage-min.png);
}

#unuecoColorMainNoHover{
  background-color:#9d6083;
}

#unuecoColorMain{
  background-color:#9d6083;
}

#unuecoColorMain:hover{
  background-color:#9e6686;
  transition:0.17s;
}

#unuecoColorMerk{
  background-color:#6d3c58;
}

#unuecoColorAccent{
  background-color:#b66191;
}

#unuecoColor1{
  background-color:#d3acc6;
}

#unuecoColor2{
  background-color:#ce88b8;
}

/*-----------UNUECOPASTA-----------*/
/*
#unuecoPinda{
  background-image: url(../images/merken/unueco/unuecoPinda-min.png);
}
*/
/*----------------FOOTER_TEMPLATE----------------*/


.container{
  max-width: 1300px;
  margin:auto;
}
.row{
  display: flex;
  flex-wrap: wrap;
}
.footer-col ul{
  list-style: none;
  margin-bottom: 30px;
}
.footer{
  background-color: #444444;
  padding-top: 70px;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}

.footer-col h4{
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 1000;
  position: relative;
}

/*
.footer-col h4::before{
  content: '';
  position: absolute;
  left:0;
  bottom: -10px;
  background-color: #e91e63;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}
*/
.footer-col ul li:not(:last-child){
  margin-bottom: 10px;
}
.footer-col ul li a{
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #ffffff;
  display: block;
  transition: all 0.3s ease;
}
.footer-col ul li a:hover{
  color: #ffffff;
  padding-left: 8px;
}
.footer-col .social-links a{
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin:0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
  color: #24262b;
  background-color: #ffffff;
}


/*responsive*/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
    text-align: center;
  }

}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
}
}

.bioLogo{
  background-image:url(/images/EUBio.jpg);
  height:67px;
  width:100px;
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
  background-origin:content-box;
}

.copyrights{
  text-align: center;
  margin-top:53px;
  background-color: #b8b8b8;
}