@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wdth,wght@0,75,100..900;1,75,100..900&display=swap');

/* Variabelen */
:root {
  --orange-dark: #db5908;
  --orange-light: #f69e44;
  --blue-dark: #002a55;
  --yellow-team: #fdf9e5;
  --yellow-light: #faf0bf;
  --yellow-dark: #f5e17f;
  --grey-dark-text: #454545;
}
html {
  scroll-behavior: smooth;
}
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}
[id] {
  scroll-margin-top: 190px; /* 40px bovenmarge bij scroll */
}

/* Basisstijlen voor alle schermbreedten/x apparaten (mobile-first) */


/* basic lay-out */
/* Clearfix */
.clearfix:before, .clearfix:after {
	content: " ";
	display: table;
}
.clearfix:after {
	clear: both;
}
.clearfix {
 *zoom: 1;
}
div.archive_notice {
	position: fixed;
	top: 0px;
	left: calc(50% - 150px);
	width: 300px;
	background-color: #ffef00;
	color: #000;
	z-index: 99999;
	font-size: 18px;
	padding: 10px 0 15px;
	text-align: center;
}
html { 
	-webkit-text-size-adjust:none;
}
body {
	margin: 0;
	background-color:#fff;
}
#wrapper {
  padding-top: 70px;  
}
.wrapper {
	position:relative;
	width:92%;
  padding: 0 4%;
  max-width: 1240px;
	margin:0 auto; 
}
.container {
  width: 100%;
  /*max-width: 1600px;*/
  padding: 20px 0 8px 0;
    margin: 0 auto;
  background-color: #fff;
  position: relative;
}
.home .container.top {
  padding:  0;
  margin-top: 0;
}
.page .container.top {
  padding:  0;
  margin-top: 0;
}
header {
	display:block;
	height:70px;
	width:100%;
	top:0px;
	position:fixed;
	z-index:101;
  background-color: rgba(255,255,255,0.95);
  transition: top 1s ease-in-out;
}
.no-img header {
  box-shadow: 0 2px 4px 4px rgba(0,0,0,0.1);
}
#header-content {
	position:relative;
	width:92%;
  height: 70px;
  padding: 0 4%;
  max-width: 1240px;
	margin:0 auto;
}
a#logo {
  display: block;
	border:0;
  top:8px;
  left: 0;
	position:relative;
  background-image: url("../images/logo-werkmakers.png");
  width:140px;
  height: 51px;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 1s ease-in-out;
}

/* nav */
nav ul {
	list-style-type:none;
}
.col nav ul {
	margin-left: 0;
}
nav ul li {
	float:left;
}
nav ul li a {
	text-decoration:none;
	display:block;
}
#mobile-nav-icon {
  display:block;
  width:34px;
  height:34px;
  position:absolute;
  right:4%;
  top:18px;
  background: none;
  border: none;
  background-image: linear-gradient(#000, #000);
  background-repeat: no-repeat;
  background-size: 34px 2px;
  background-position: 0 16px;
}

#mobile-nav-icon::before,
#mobile-nav-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 34px;
  height: 2px;
  background-color: #000;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#mobile-nav-icon::before {
  top: 8px;
}

#mobile-nav-icon::after {
  top: 24px;
}

body.navmenu-open #mobile-nav-icon::before {
  transform: translateY(8px) rotate(45deg);
}

body.navmenu-open #mobile-nav-icon::after {
  transform: translateY(-8px) rotate(-45deg);
}

body.navmenu-open #mobile-nav-icon {
  background-size: 0 2px;
}


/* mainnav */
#mainnav, #topnav, #subnav {
  display:none;
}
#mainnav {
	position:absolute;
	top:51px;
	right:4%;
   transition: top 1s ease-in-out;
}
.nav-up #mainnav  {
}
#mainnav ul li a {
	font-size:1.8rem;
	color: var(--blue-dark);
	display:block;
	padding:0px 0px 25px 0px;
  margin-right: 20px;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
   transition: padding 1s ease-in-out;
}
#mainnav ul li:last-child a {
    margin-right: 0;
}
#mainnav ul li a:hover, #mainnav ul li.active a {
  border-bottom:var(--orange-dark) 3px solid;
}
#mainnav ul li.active a {
  font-weight: 700;
}


/* sub */
#mainnav ul li ul {
  visibility: hidden;
  opacity: 0;
  display: none;
  position: absolute;
  transition: all 0.5s ease;
  background-color: #ffffff;
  padding: 10px 0 0;
  box-sizing: border-box;
  min-width: 280px;
  /*margin: 0 0 0 -10px;*/
  
}

#mainnav ul li:hover > ul,
#mainnav ul li ul:hover {
  visibility: visible;
  opacity: 1;
  display: block;
}

#mainnav ul li ul li {
  box-sizing: border-box;
  clear: both;
  width: 100%;
  /*padding: 8px 20px;*/
  background-color: #e1e1e1;
}
#mainnav ul li ul li:hover {
  /*background-color: #F4F4F4;*/
}
#mainnav ul li ul li a {
  color:#000;  
  height: auto;
  padding: 15px 15px 15px 25px;
  border: none;
  font-size: 1.8rem;
  font-weight: 400;
}
#mainnav ul li ul li a:hover {
  color:#000;  
}
#mainnav ul li a:hover ul li a, #mainnav ul li.active ul li a {
  background-color: transparent;
}
#mainnav ul li.active ul li a {
  border:none;
}
#mainnav ul li.active ul li.active {
  background-color: #000;
}
#mainnav ul li.active ul li.active a {
  color: #fff;
}
#mainnav ul li ul li a:hover {
  background-color: #c3e5f7;
}
#mainnav ul li:hover > ul,
#mainnav ul li:focus-within > ul,
#mainnav ul li ul:hover {
  visibility: visible;
  opacity: 1;
  display: block;
}

/* social-icons */
.social-icon {
	display:block;
	height:30px;
	width:30px;
	background-image: url("../images/svg/social-icons.svg");
	float:left;
	background-repeat: no-repeat;
	background-size: cover;
	margin-right:10px;
}
.social-icon.twitter {
	background-position: left 0px;
}
.social-icon.facebook {
	background-position: -46px 0px;
}
.social-icon.youtube {
	background-position: -183px 0px;
}
.social-icon.instagram {
	background-position: -91px 0px;
}
.social-icon.linkedin {
	background-position: -244px 0px;
}
.social-icon:last-child {
	margin-right:0;
}

/* home *******************************/
.home .container.top{
  background-color: var(--yellow-light);
}
/* video */
.youtube-container {
    position: relative;
    width: 100%;
    height: auto;
    background-image: url('https://img.youtube.com/vi/uRoQdFX5Zcc/hqdefault.jpg');
    background-size: cover;
    background-position: center;
    cursor: pointer;
    overflow: hidden;
    margin: 0 auto;
    padding-bottom: 56%;
}
.youtube-container::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #da5909de;
    border-radius: 50%;
    z-index: 10;
}
.youtube-container::after {
    content: "▶";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: white;
    z-index: 11;
    margin-left: 5px;
}
.youtube-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}
.youtube-container.playing::before,
.youtube-container.playing::after {
    display: none;
}
.youtube-container.playing iframe {
    display: block;

}
#img-container {
  width: 100%;
  background-color: #faf0bf;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.home #img-container {
/*   height: 40vw;
 */  height: 516px;
}
#img-container img {
  display: block;
  margin: 0 auto;
}
.home h1 {
  margin-bottom: 40px;
  font-size: 4rem;
}
.container.home-intro .wrapper {
  width: 100%;
  max-width: 960px;
  box-sizing: border-box;
  padding: 0 4%;
}
.container.home-intro {
  text-align: center;
  color: var(--blue-dark);
}
.container-wrapper.uitgelicht:not(.overig) .container:nth-child(2n) .wrapper a{
  flex-direction: row-reverse;
}
.container-wrapper.uitgelicht .container:nth-child(1n){
  padding: 0;
  background-color: var(--yellow-dark);
}
.container-wrapper.uitgelicht .container:nth-child(2n){
  padding: 0;
  background-color: var(--yellow-light);
}
.container-wrapper.uitgelicht .container {
  transition: padding-left 0.3s ease;
}
.container-wrapper.uitgelicht .container:hover{
  padding-left: 40px;
}
.container-wrapper.uitgelicht .wrapper {
  max-width: 1068px;
}
.container-wrapper.uitgelicht .wrapper a {
  text-decoration: none;
  color: var(--blue-dark);
  display: block;
}
.container-wrapper.uitgelicht img.content_img {
  float: left;
  display: block;
  margin: 20px 20px 0 0;
  width: 50%;
  height: inherit;
}
.container-wrapper.uitgelicht .content_container {
  padding: 20px 0 60px;
  box-sizing: border-box;
  display: block;
  width: auto;
  font-size: 1.8rem;
  background-image: url("/images/svg/arrow-white.svg");
  background-repeat: no-repeat;
  background-position: bottom 10px right 0px;
  background-size: 58px;
}
.container-wrapper.uitgelicht .container:hover .content_container {
  background-image: url("/images/svg/arrow-orange.svg");
}
.container-wrapper.uitgelicht .content_container h3 {
  font-size: 2.2rem;
  margin-bottom: 1.4rem;
}
.container-wrapper.uitgelicht h2 {
    color: var(--orange-dark);
    font-size: 2.4rem;
    margin: 40px 0;
    text-align: center;
}
.container-wrapper.uitgelicht .content_container p {
  margin-bottom: 0;
}
.container.logos {
  text-align: center;
}
.container.logos h3 {
    color: var(--orange-dark);
    font-size: 3.2rem;
    margin-bottom: 30px;
}
.container.logos .content_container {
  max-width: 1240px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap:15px;
}
.container.logos .content_container > * {
  width: 45%;
}
.container.logos img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
/*     box-shadow: 0 2px 4px 4px rgba(0,0,0,0.1);
 */}

 /* newspage *******************************/
 .news h1 {
  color: var(--orange-dark);
  margin-bottom: 25px;
 }
 img.news-item-img {
  margin-bottom: 25px;
 }
.container-wrapper.uitgelicht.overig img.content_img {
    margin: 20px 0;
}
.container-wrapper.uitgelicht.overig .content_container {
  width: calc(100% - 196px);
  font-size: 1.6rem;
  padding: 0 130px 0 30px;  
  background-size: 60px;
}
.container-wrapper.uitgelicht.overig .content_container h3 {
    font-size: 2rem;
    margin-bottom: 0rem;
}




/* page *******************************/
.page .col2 {
    min-height: 300px;
    padding-bottom: 40px;
}
.col2 img {
  mix-blend-mode: multiply;
}
#header-title {
    position: absolute;
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-content: center;
    height: 50vw;
    max-height: 516px;
    align-items: center;
}
#header-title h1 {
  font-size: 4rem;
  color: #fff;
  margin: 0;
  text-align: center;
}
.page #img-container {
  height: 50vw;
  max-height: 516px;
}
.page #img-container:after {
    content: "";
    width: 100%;
    height: 50vw;
    max-height: 516px;
    background-color: #00000040;
    z-index: 1;
    position: absolute;
}
.container.maincontent {
  background: linear-gradient(to bottom, #ffffff 0%, #f1f1f1cc 100%);
}


/* team *******************************/
.team .wrapper {
  max-width:1056px;
}
.team .container.maincontent .wrapper {
  text-align: center;
  font-size: 2.4rem;
}
.container.team-category .wrapper {
  text-align: center;
}
.container.team-members {
  background-color: var(--yellow-team);
}
.team h2 {
  font-size: 2.4rem;
  color: var(--orange-dark);
  font-weight: 400;
}
.team-members h3 {
  font-size: 2.2rem;
}
.team-members .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4%;
}
.team-member {
  box-sizing: border-box;
  width: 48%;
  text-align: center;
  background-color: #ffffff85;
  padding: 10px;
  border-top-left-radius: 150px;
  border-top-right-radius: 150px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.team-member span {
  display: inline-block;
  font-size: 1.8rem;
}
.team-member span a {
  text-decoration: none;
}
.team-member span a:hover {
  text-decoration: underline;
}

.team-member .email, .team-member .phone, .team-member .linkedin {
    padding-left: 22px;
    position: relative;
}    
.team-member .email::before,
.team-member .phone::before,
.team-member .linkedin::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  /*color: var(--orange-dark);*/
  color:#727272;
  position: absolute;
  left: 0;
  top: 2px;
}
.team-member .email::before {
  content: "\f0e0";
}
.team-member .phone::before {
  content: "\f095";
}
.team-member .linkedin::before {
  content: "\f08c";
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}
.team-member .email {
  margin-top: 15px;
}
.team-member .function {

}
.team-member .quote {
  margin-top: 15px;
}

/* team scroll-animatie (alleen desktop) */
@media only screen and (min-width: 768px) {
  .team-members .wrapper .team-member:first-child {
    transform: translateX(-60px);
    opacity: 0;
    transition: transform 0.7s ease, opacity 0.7s ease;
  }
  .team-members .wrapper .team-member:last-child {
    transform: translateX(60px);
    opacity: 0;
    transition: transform 0.7s ease, opacity 0.7s ease;
  }
  .team-members .wrapper.in-view .team-member:first-child,
  .team-members .wrapper.in-view .team-member:last-child {
    transform: translateX(0);
    opacity: 1;
  }
}

.member-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 50%;
    background-size: cover;
    padding-bottom: 100%;
}

/* contact *******************************/

/*
.page.contact .container .wrapper {
  display: flex;
  flex-wrap: wrap-reverse;
}
  */
.page.contact .container.title h1 {
  margin-bottom: 0;
}
.page.contact .col1 {
padding-bottom: 30px;
}
.page.contact .col1 iframe {
  width: 100%;
  height: 240px;
}
.whatsapp-button {
  background-color: #25D366;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.signal-button {
  background-color: #3B46FE;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}


/* footer *******************************/
footer {
	display:block;
}
footer .container.main {
  background: linear-gradient(90deg, var(--orange-dark) 0%, var(--orange-light) 100%);
}

.wrapper.footer-content {
  color: #fff;
  padding: 20px 0 50px;
}
.wrapper.footer-content a {
	text-decoration:none;
	color:#fff;
}
.wrapper.footer-content h3 {
  font-size: 1.25em;
  margin-bottom: 20px;
}
.wrapper.footer-content h3.margintop {
  margin-top: 45px;
}
.wrapper.footer-content ul li {
  list-style-type: none;
  display: block;
  margin-bottom: 10px;
}
.wrapper.footer-content ul {
  margin-left: 0;
}
#footercol1 img.footer-logo {
  max-width: 100%!important;
  height: inherit!important;
  margin-bottom: 30px;
}

#footercol2 .payoff {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 4rem;
  line-height: normal;
  font-weight: 500;
  margin-top: 10px;
}
#footercol2 a.privacy-link {
  position: absolute;
  bottom: 10px;
}
#footercol3 .logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 40px;
  }
#footercol3 .logos img {
    max-width: 120px;
    height: auto;
    margin: 10px;
}
.container .wrapper #footercol3 a {
  display: inline-block;
  line-height: 1em;
  margin-bottom: 10px;
}
.social-icons {
	display:inline-block;
	height: 40px;
  position: relative;
  bottom:0;
}
.social-icon {
	display:block;
	height:40px;
	width:40px;
	background-image: url("../images/svg/social-icons.svg");
	float:left;
	background-repeat: no-repeat;
	background-size: cover;
	margin-right:10px;
}
.social-icon.facebook {
	background-position: -61px 0px;
}
.social-icon.twitter {
	background-position: left 0px;
}
.social-icon.youtube {
	background-position: -183px 0px;
}
.social-icon.instagram {
	background-position: -122px 0px;
}
.social-icon.linkedin {
	background-position: -244px 0px;
}
.social-icon:last-child {
	margin-right:0;
}
.container.credits {
  padding: 20px 0;
  font-size: .8em;
}
.credits, .credits a {
  text-align: center;
  text-decoration:none;
	color: #7C7C7C;
}
.credits {
}
.credits a:hover {
	text-decoration:underline;
}

/* styling **********************************************************************/
html {
	font-size:8px;
}
body {
	line-height: 1.5em;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--grey-dark-text);
}
h1,h2,h3,h4,h5,ul {
	margin:0;
	padding:0;
}
h1, h2, h3, h4 {
  font-optical-sizing: auto;
  font-weight: 500;
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;}
h1 {
	font-size:3.2rem;
	line-height: 1.2em;
  font-style: normal;
  margin-bottom: 50px;
}
h2 {
	font-size:2.2rem;
  margin-bottom: 1em;
}
h3 {
	font-size:2.2rem;
  margin-bottom: 0;
}
.container .wrapper {
	font-size: 2rem;
	line-height: 1.5em;
}
.content_container {
/*   max-width: 940px;
 */  /*font-size: 2.2rem;
  line-height: 1.5em;*/
}

.content_container ul, .content_container ol {
  margin-left: 25px;
  margin-bottom: 1em;;
}
.container.maincontent ul, .container.maincontent ol {
    margin-left: 15px;
    margin-bottom: 1.5rem;
}
.content_container img {
  max-width: 100%;
  height: inherit!important;
}
.container.bgcolor {
  background-color: var(--txtbg);
}
/*
.container:nth-child(2n+1) {
  background-color: var(--txtbg);
}
  */

.center {
	text-align: center;
}
.border-top {
	border-top:1px solid #c6c5c6;
	padding-top:8px;
}
a {
	color:var(--orange-dark);
}
a[target="_blank"]:not(.no-ext-link-icon):not(:has(img)):after {
  content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAQElEQVR42qXKwQkAIAxDUUdxtO6/RBQkQZvSi8I/pL4BoGw/XPkh4XigPmsUgh0626AjRsgxHTkUThsG2T/sIlzdTsp52kSS1wAAAABJRU5ErkJggg==);
  margin: 0 3px 0 5px;
}
p {
	margin-top:0px;
	margin-bottom:1.5em;
}
p.no-margin-bottom {
	margin-bottom: 0;
}
.no-mobile {
  display: none!important;
}
.mobile {
  display: inline-block!important;
}
/*
.col {
  float:left;
  box-sizing: border-box;
}
.col1 {
  width: calc(100% - 300px);
  padding-bottom: 40px;
}
.col2 {
  width: 300px;
  background-color: aliceblue;
  box-sizing: border-box;
  padding-left: 6%;
}
.col ul, .col ol {
	margin-left: 15px;
}
.col2 ul {
  margin-bottom: 20px;
}
.contentcols .fourcol {
    border-bottom: 1px solid #000;
    margin-bottom: 40px;
    padding-bottom: 10px;
}
    */
 .col {
	float:left;
  width: 100%;
}
/*
.threecol .col {
  box-sizing: border-box;
  width: 30%;
  margin-right: 5%;
}
  */
.col:last-child {
  margin-right: 0;
}
.col ul, .col ol {
	margin-left: 30px;
  margin-bottom: 1em;
}   
.err_msg {
	color:#d13739;
}
.clearing {
	clear:both;
}
.img-left {
	float:none;
}
.img-right {
	float:none;
}
hr{
    margin-bottom: 40px;
    background: linear-gradient(90deg, var(--orange-dark) 0%, var(--orange-light) 100%);
    border: none;
    height: 2px;
}
table.news td {
  padding: 10px;
  vertical-align: top;
}
ul#toc li {
    float: left;
    margin-right: 30px; 
}
ul#toc {
  list-style: none;
  height: 40px;
}
ul#toc li a {
  text-decoration: none;
  font-size: 1.6rem;
  color: #3F3F3F;
}
ul#toc li a:hover {
  text-decoration: underline;
}


/* ww validatie ******************************************************/
/* The message box is shown when the user clicks on the password field */
#message {
  background: #fff;
  color: #000;
  position: relative;
  padding: 10px 20px;
  margin-top: 10px;
    border: 2px dotted #C04829;
    width: calc(100% - 40px);
    max-width: 540px;
}

#message p {
  padding: 4px 35px;
}

/* Add a green text color and a checkmark when the requirements are right */
.valid {
  color: green;
}

.valid:before {
  position: relative;
  left: -35px;
  content: "✔";
}

/* Add a red text color and an "x" icon when the requirements are wrong */
.invalid {
  color: red;
}

.invalid:before {
  position: relative;
  left: -35px;
  content: "✖";
}


/* form */
form span.label {
	display:block;
	padding-right:10px;
}
form span.label.floatleft {
	float:left;
}
form span.formelement {
	display:block;
}
form span.formelement.align-horizontal {
	display:inline-block;
  padding-right: 20px;
}
form div.formrow {
	clear:both;
	min-height:38px;
	padding-bottom: 15px;
}
form div.formrow.nomargin {
	min-height:inherit;
	padding-bottom: 0;
}
form div.formrow.floatleft {
	float:left;
	clear:none;
	margin-right:20px;
	width:300px;
}
form div.formrow.floatleft.clearboth, form div.clearboth {
  clear: both;
}
form div.formrow.small {
	width:100px;
}
form div.formrow.medium {
	width:150px;
}
form div.formrow.hidden, form div.formrow.special, div.hidden {
	display:none;
}
form div.formrow:before, form div.formrow:after {
	content: " ";
	display: table;
}
form div.formrow:after {
	clear: both;
}
form div.formmargin {
	margin-left:35px;
}
form span.small {
	font-size:16px;
	line-height: normal;
	display: inline-block;
}
.wegspam {
	display:none;
}
fieldset, legend {
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	border: 1px solid #CCCCCC;
	padding:20px;
}
legend {
	padding: 4px 10px;
    font-size: .9em;
}
#errormsg {
	width:60%;
	padding:10px;
	color:#f35300;
	border: 2px dotted #f35300;
	margin-bottom:15px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
textarea,
input.text,
input[type="text"],
input[type="password"],
input[type="button"],
input[type="submit"],
.input-checkbox {
    -webkit-appearance: none;
    border-radius: 0;
}
#errormsg {
	box-sizing: border-box;
	padding:10px;
	color:var(--ze-orange);
	border: 2px dotted var(--ze-orange);;
	margin-bottom:15px;
	margin-top:15px;
	width:100%;
}
#infoform td.label {
	width: 30%;
	padding-right: 30px;
}
.formfield, textarea {
	font-family: sofia-pro, sans-serif;
	font-weight: 400;
	font-style: normal;
	width:98%;
  max-width: 400px;
	font-size:16px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border-width:1px;
	border:solid 1px #CCCCCC;
	padding-left:10px;
}
select {
	font-size:16px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border-width:1px;
	border:solid 1px #CCCCCC;
	padding-left:10px;
	height:30px;
	margin-bottom:5px;
}
input[type="file"] {
	font-size:16px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	height:30px;
	margin-bottom:5px;
}
select.formfield {
	width:100%;
}
.formfield {
	height:30px;
	margin-bottom:5px;
}
.formfield.small {
	max-width: 100px;
}
.formfield.medium {
	height:40px;
}
.formfield.big {
	height:100px;
}
.formfield.xbig {
	width:98%;
	height:300px;
}
textarea {
	height:70px;
}
textarea.big {
	height:100px;
}
textarea.xl {
	height:140px;
  max-width: 620px;
}
#form-ze-prijs textarea {
  max-width: 620px;
}
fieldset {
  border: 1px solid #fff;
  padding: 20px;
  margin-bottom: 30px;
  width: 100%;
  max-width: 860px;
}
fieldset legend {
    padding: 0 10px;
}
.error_field {
	border:1px solid var(--ze-orange);
	background-color: #FFFFC1;
}
.required {
	background-image: url(../images/bullet-required.png);
	background-repeat: no-repeat;
	background-position: right center;
}
input#submit, input.submit, a.button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(90deg, var(--orange-dark) 0%, var(--orange-light) 100%);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  border:none;
  appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	-webkit-transition-duration: .4s;
	transition-duration: .4s;
	cursor: pointer;  
  font-size: 2rem;
  font-family: calibri, sans-serif;
  transition: background 0.3s ease;
}
input#submit:hover, input.submit:hover, a.button:hover {
  background: linear-gradient(90deg, var(--orange-light) 0%, var(--orange-dark) 100%);
}
a.button.floatright {
  float: right;
}
#button-home {
  padding: 10px 20px;
  width: auto;
  margin-bottom: 20px;
}
a.button.header-bt {
  padding: 4px 10px;
  width: 80px;
}
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
	color: transparent;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
	color: transparent;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
	color: transparent;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: transparent;
}


/* responsive lay-out *********************************************************************************************************/
@media only screen and (min-width: 768px) {
  html {
    font-size:10px;
  }
  #wrapper {
    padding-top: 124px;
  }
	header {
		height:124px;
	}
	#mainnav, #topnav, #subnav {
		display:block;
	}
	a#logo {
    top:15px;
    width:187px;
    height: 96px;
	}
  .nav-up header {
    top: -61px;
    box-shadow: 0 2px 4px 4px rgba(0,0,0,0.1);
  }
  .nav-up a#logo {
    top: 69px;
    width: 105px;
    height: 43px;
  }
  .nav-up #mainnav  {
    top: 84px;
  }
  .nav-up  #mainnav ul li a {
    padding: 0px 0px 12px 0px;
  }
  /*
.nav-up header {
	top: -35px;
  box-shadow: 0 2px 4px 4px rgba(0,0,0,0.1);
}

.nav-up a#logo {
  top: -35px;
  width: 70px;
  height: 25px;
}
*/

	#header-content {
		height:auto;
	}
	#mobile-nav-icon {
		display:none;
	}
  .container {
    padding-top: 60px;
    padding-bottom: calc(60px - 1.5em);
  }
  .container.title {
    padding: 40px 0 20px;
  }
  .contentcols {
    display: flex;
    flex-wrap: wrap;
  }
  .contentcols .fourcol {
    width: 25%; /* 4 kolommen van 25% */
    box-sizing: border-box;
    padding: 20px; /* optioneel */
    border-bottom: none;
    margin-bottom: 0;
  }
  .no-mobile {
    display: block!important;
  }
  .mobile {
    display: none!important;
  }


  /* home */
  .page #img-container {
    height: 32vw;
  }
  .page #img-container:after {
    height: 32vw;
  }
  #header-title {
    height: 32vw;
  }
  .youtube-container {
    width: 917px;
    height: 516px;
    padding-bottom: 0;
  }
  .container-wrapper.uitgelicht .wrapper a {
    display: flex;
  }
  .container-wrapper.uitgelicht img.content_img {
    margin: 0;
    width:auto;
    height: fit-content;
  }
  .container-wrapper.uitgelicht .content_container {
    padding: 0 130px 0 80px;
    width: calc(100% - 382px);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;  
    background-position: center right 30px;
    background-size: 88px;
  }
  .container.logos h3 {
    margin-bottom: 60px;
  }
  .container.logos .content_container {
      gap:4%;
      flex-wrap: nowrap;
  }
  .container.logos .content_container > * {
    width: 100%;
  }
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .container-wrapper.uitgelicht .content_container {
    padding: 20px 70px 20px 30px;
    width: calc(100% - 242px);
    background-position: center right 10px;
    background-size: 60px;
  }
  .container-wrapper.uitgelicht img.content_img {
    max-width: 240px;
    margin-top: 20px;
  }
}


  /* page */
  .wrapper .col1 {
    width: 230px;
    padding-top: 75px;
  }
  .wrapper .col2 {
    width: calc(100% - 230px);
    box-sizing: border-box;
    padding-left: 94px;
    padding-top: 0px;
    min-height: 400px;
    padding-bottom: 50px;
  }
  .page:not(.no-img) .wrapper .col1 {
      padding-top: 0px;
      margin-top: -9px;
  }
  .wrapper.no-sub {
    max-width: 916px;
  }
  .wrapper.no-sub .col1 {
    display: none;
  }
  .wrapper.no-sub .col2 {
    width: 100%;
    padding-left: 0;
  }
  img.template_img {
    padding-right: 30px;
    margin-top: 10px;
    width: 117px;
  }

  /* subnav */
  #subnav ul li a {
    color: #000;
    display:block;
    padding: 10px 15px 12px 15px;
    border-top: 1px solid var(--blue-dark);
    font-size: 1.8rem;
    transition: background-color 0.3s ease;
  }
  #subnav ul li {
    width: 100%;
  }
  #subnav > ul > li:last-child a {
      border-bottom: 1px solid var(--blue-dark);
  }
  #subnav ul li a:hover, #subnav > ul > li.active > a {
    color:#000;
    background-color: #f69e4494;
    background-color: var(--yellow-light);
  }


  /* subsubnav */
  #subnav ul {
    margin:0 !important
  }
  #subnav ul ul li a {
    color: #000;
    display:block;
    padding: 6px 15px 8px 30px;
    border-top: 1px solid var(--blue-dark);
    font-size: 1.6rem;
  }
    #subnav ul ul li a:hover, #subnav ul ul > li.active > a {
    color: #000;
    background-color: var(--yellow-light);
    background-color: #efefef;
  }


  /* team *******/
  .team-member {
    width: 100%;
    max-width: 288px;
    padding: 15px;
    border-top-left-radius: 150px;
    border-top-right-radius: 150px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }


  .team-member .email,
  .team-member .phone,
  .team-member .linkedin {
    padding-left: 34px;
  }
  /*
  .member-image {
    max-width: 288px;
    height: 288px;
  }
    */

  /* contact, form */
  /*
  .page.contact .col1 {
    padding-top: 0;
    width: 320px;
  }
  .page.contact .col2 {
    width: calc(100% - 320px);
    padding-left: 60px;
  }
    
  .page.contact .container .wrapper {
    display: block;
  }*/

   form span.label {
    float:left;
    width:200px;
  }
  form span.formelement {
    float: left;
    width:100%;
    max-width: 500px;
  }
  strong.label {
    display: block;
    margin: 30px 0 10px;
  }

  
	/* footer */
  .wrapper.footer-content {
    width:84vw;
    padding: 0 8vw;  
    display:block;
    margin:0 auto;
    max-width: 1240px;
    display: flex;
    min-height: 330px;
  }
  #footercol1 {
    width:25%;
  }
  #footercol2 {
    width: 58%;
  }
  #footercol3 {
    width: 17%;
  }
  .social-icons {
    display:inline-block;
    height: 40px;
    position: absolute;
    bottom:0;
    margin-top: 40px; 
  }
  #footercol1 img.footer-logo {
      margin-bottom: 60px;
  } 
  #footercol3 .logos {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 146px;
  }
  #footercol1 .foot1-address {
    position: absolute;
    bottom: 0;
  }
  #footercol1 .foot1-address p {
    margin-bottom: 0;
  }
  #footercol2 a.privacy-link {
    position: absolute;
    bottom: 0;
  }
  /* styling ****/
  .img-left {
    padding: 5px 5px 5px 0; 
    margin-right: 10px;
    float:left;
  }
  .img-right {
    padding: 5px 0 5px 5px; 
    margin-left: 10px;
    float:right;
  }

    
}

/*		iPad landscape screen layout:   ********************************************************************************/
@media only screen and (min-width: 768px) and (max-width: 1300px){
  html {
    font-size:9px;
  }
  #mainnav ul li a {
    font-size: 1.8rem;
    margin-right: 1.8vw;
    padding: 8px;
  }
  #mainnav ul li ul li a {
    font-size: 1.5vw;
  }
	a#logo {
		width: 180px;
    top:20px;
	}
  .page .col1 {
    width: 180px;
  }
  .page .col2 {
      width: calc(100% - 180px);
      padding-left: 45px;
  }
  /* contact, form */
  .page.contact .col1 {
    width: 27%;
  }
  .page.contact .col1 iframe {
    width: 100%;
    max-width: 320px;
  }
  .page.contact .col2 {
    box-sizing: border-box;
    width: 73%;
    padding-left: 40px;
  }

  #footercol3 .logos img {
    max-width: 100px;
  }
  #footercol3 .logos:last-child img {
    max-width: 80px;
  }

  .wrapper.footer-content {
    box-sizing: border-box;
    width: 100%;
    padding: 0 4%;
  }
}

/*		Tablet Layout: 768px.  *****************************************************************************/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  header {
    height: 92px;
  }
  .nav-up header {
     top: -32px;
  }
  #wrapper {
      padding-top: 92px;
  }
  a#logo {
    width: 170px;
		top: 10px;
	}
  .nav-up a#logo {
      top: 38px;
      width: 105px;
      height: 43px;
  }  
  .container.home-intro .wrapper {
      max-width: 630px;
  }

	/* mainnav */
	#mainnav {
    top:32px;
	}
.nav-up #mainnav {
        top: 48px;
    }  
	#mainnav ul li a {
    margin-right: 10px;
    padding: 6px;
    font-size: 1.4rem;
	}

  div.flexbox {
    gap: 7vw;
  }
	/* footer */
  #footercol1 {
    width: 30%;
  }
  #footercol2 {
    width: 18%;
  }
  #footercol3 {
    width: 52%; 
  }
}

@media only screen and (min-width:1200px) {

  .home .content_container.first {
    max-width: 100%;
  } 

}


/*	jQuery.mmenu CSS **************************************************************/
/*
	jQuery.mmenu panels CSS
*/

.mm-menu {
  font-size: 1.6em;
  
  --mm-color-background: linear-gradient(90deg, var(--orange-dark) 0%, var(--orange-light) 100%);
 	/* 	The background-color for the menu.*/
  --mm-color-background-emphasis: var(--blue-dark); 	/* 	The background-color for emphasized listitems.*/
/*  --mm-color-background-highlight: ; 	/* 	 	The background-color for highlighted listitems.*/
  --mm-color-border: #ffffff77; 	/* 	 	The border-color for navbars, listitems, etc.*/
  --mm-color-button: #fff; 	/* 	 	The color for buttons.*/
  --mm-color-text: #fff; 	/* 	 	The text-color for the menu.*/
/*  --mm-color-text-dimmed: ; 	/* 	 	The text-color for dimmed out elements in the menu.*/
  /*Positioning*/
  --mm-offset-top: 70px; 	/* 	 	Menu top offset.*/
/*  --mm-offset-right: ; 	/* 		Menu right offset.*/
/*  --mm-offset-bottom: ; 	/* 	 	Menu bottom offset.*/
/*  --mm-offset-left: ; 	/* 	 	Menu left offset.*/
  /*Sizes*/
/*  --mm-line-height: ; 	/* 		The line-height for the menu.*/
/*  --mm-listitem-size: ; 	/* 		The height for the listitems.*/
/*  --mm-navbar-size: ; 	/* 	 	The height for the navbars.  */
}

#navmenu:not( .mm-menu ) {
   display: none;
}

nav ul.mm-listview li {
	float:none;
}
@media only screen and (max-width: 440px) {
  #navmenu.mm-menu_offcanvas {
    max-width: 300px;
    max-height: calc(100vh -60px);
  }
}
.mm-navbar a.fa, .mm-navbar a.fab {
  display: inherit;
  font-size: 20px;
}
#navmenu .mm-navbar {
  color: rgba(255,255,255,0.79);
}
.mm-listitem_vertical>.mm-panel {
    padding: 0px 0 0px 10px;
}
.mm-menu_offcanvas {
    z-index: 2;
}