/*
font-family: 'Roboto', sans-serif;
font-family: 'Libre Baskerville', serif;

mint: #e4e8e1
f2f5ef
taupe: #af977b
*/

/* general styles */
html, body, h1, h2, h3, h4, p, form, ul, li, ol{
  margin: 0px;
  padding: 0px;
}
html, body{
  width: 100%;
  height: 100%;
}
body{
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.45em;
  color: #273c40;
}
a{
  outline: 0;
  color: inherit;
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
}
article a:hover{
  text-decoration: none;
}
div.clear{
  clear: both;
}

.textCenter{
  text-align: center;
}
.noOverflow{
  overflow: hidden;
}
.topShadow{
  box-shadow: inset 0 7px 20px -7px rgba(0,0,0,0.2);
}

div.colHolder{
  position: relative;
}
div.colContent{
  display: flex;
  align-items: stretch;
}
div.col1, div.col15, div.col2, div.col25, div.col3, div.col4{
  position: relative;
  box-sizing: border-box;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
div.col1:first-child, div.col15:first-child, div.col2:first-child, div.col3:first-child{
  padding-left: 12.5%;
}
div.col1:last-child, div.col2:last-child, div.col25:last-child, div.col3:last-child{
  padding-right: 12.5%;
}

div.col1.noPadding, div.col2.noPadding, div.col3.noPadding, div.col4.noPadding{
  padding: 0px;
}
/*
div.col1.noTopPadding, div.col2.noTopPadding, div.col3.noTopPadding, div.col4.noTopPadding{
  padding-top: 0px;
}
*/
div.col1{
  width: 25%;
}
div.col15{
  width: 40%;
}
div.col2{
  width: 50%;
}
div.col25{
  width: 60%;
}
div.col3{
  width: 75%;
}
div.col4{
  width: 100%;
  padding-left: 12.5%;
  padding-right: 12.5%;
}
div.col4.textCenter{
  padding-left: 15%;
  padding-right: 15%;
  padding-top: 100px;
  padding-bottom: 100px;
  line-height: 2.25em;
}
div.col4.textCenter.taupe{
  padding-top: 0px;
  padding-bottom: 0px;
}

div.colPicture{
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.textCol{
  padding: 5%;
}

div.topArrow{
  width: 0px;
  height: 0px;
  border-top: solid #FFF 28px;
  border-left: solid transparent 28px;
  border-right: solid transparent 28px;
  position: absolute;
  left: 50%;
  top: 0px;
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}
div.borderWithShadow{
  width: 100%;
  height: 1px;
  background-color: #f0f2ef;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.75);
  position: absolute;
  left: 0px;
  top: 0px;
}


.lightMint{
  background-color: #f2f5ef;
}
.mint{
  background-color: #e4e8e1;
}
.taupe{
  background-color: #cbbba7;
}
.green{
  background-color: #adb9b0;
}
.blue{
  background-color: #273c40;
}
.white{
  background-color: #FFF;
}

.centerPicture{
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.topPicture{
  background-position: center top !important;
  background-repeat: no-repeat;
  background-size: 100% auto !important;
}

.textWhite{
  color: #FFF;
}


header{
  padding-top: 30px;
  padding-bottom: 30px;
}
div.headerText{
  position: absolute;
  right: 12.5%;
  top: 55px;
  padding: 20px;
}
div.headerText p{
  font-size: 0.75em;
  line-height: 2em;
  letter-spacing: 0.5px;
}
div.headerText p.head{
  color: #af977b;
  font-size: 1em;
  font-family: 'Libre Baskerville', serif;
  font-weight: 400;
}
div.headerText p a{
  font-weight: 400;
  display: inline-block;
  padding-left: 5px;
}
header a.logoHolder{
  display: block;
  width: 288px;
  margin-left: auto;
  margin-right: auto;
}
header a.logoHolder img{
  display: block;
  width: 100%;
}


nav{
  position: relative;
  box-sizing: border-box;
  padding-top: 50px;
  z-index: 10;
}
nav ul{
  display: block;
  width: 100%;
  font-weight: 400;
  text-align: center
}
nav ul li{
  position: relative;
  display: inline-block;
  list-style-type: none;
  line-height: 1em;
  font-size: 1em;
  text-transform: uppercase;
  cursor: pointer;
  margin: 0px;
  margin-left: 20px;
  margin-right: 20px;
  padding-bottom: 10px;
  box-sizing: border-box;
}
nav ul li:last-child{
  margin-right: 0px;
}
nav ul li:hover>a,
nav ul li.active>a{
  text-decoration: none;
  color: #af977b;
}
nav ul li a{
  display: block;
  margin: 0px;
  padding: 0px;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  color: inherit;
}

nav ul li:hover ul{
  display: block;
}
nav ul li ul{
  position: absolute;
  top: 26px;
  left: -10px;
  display: none;
  padding-bottom: 10px;
  text-align: left;
  width: auto;
  min-width: 150px;
  padding-top: 10px;
  background-color: #f2f5ef;
}
nav ul li ul li{
  position: relative;
  display: block;
  float: none;
  list-style-type: none;
  margin: 0px;
  background-color: #f2f5ef;
  white-space: nowrap;
  line-height: 1.4em;
  padding: 5px;
  padding-left: 15px;
  padding-right: 15px;
}
div.menuHolder nav ul li ul li:hover{
  background-color: #f2f2f2;
}

nav ul li.menuButton{
  display: none;
}

/*    DEFAULT    */
article h1{
  font-size: 2.3em;
  line-height: 1.2em;
  font-family: 'Libre Baskerville', serif;
  font-weight: 400;
  margin-bottom: 40px;
}
article h2{
  font-size: 1.5em;
  line-height: 1.2em;
  font-family: 'Libre Baskerville', serif;
  font-weight: 400;
  margin-bottom: 20px;
}

div.siblingMenu{
  
}
div.siblingMenu a{
  text-decoration: underline;
}
div.siblingMenu a.active,
div.siblingMenu a:hover{
  color: #a2a69e;
  text-decoration: none;
}

/*    HOME    */
div.homeText{
  padding-top: 100px;
  padding-bottom: 100px;
  line-height: 2.25em;
}
div.homeText img{
  display: block;
  width: 101px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
div.bannerHolder{
  padding-top: 140px;
  padding-bottom: 140px;
}
a.banner{
  display: block;
  float: left;
  margin-left: 2%;
  width: 32%;
  font-size: 1.3em;
  line-height: 1.6em;
  color: #af977b;
  font-family: 'Libre Baskerville', serif;
  font-weight: 400;
  padding-bottom: 40px;
  box-shadow: 0px 0px 20px rgba(204,213,198,1);
}
a.banner:first-child{
  margin-left: 0px;
}
a.banner span.imageHolder{
  display: block;
  width: 100%;
  height: 0px;
  padding-top: 70%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin-bottom: 40px;
}

div.reportBar,
div.footerText{
  line-height: 2.25em;
  padding-top: 80px;
  padding-bottom: 80px;
}

div.reportBar h1{
  font-size: 2.2em;
  font-family: 'Libre Baskerville', serif;
  font-weight: 400;
  margin-bottom: 15px;
}

div.employee{
  padding-top: 70px;
  padding-bottom: 70px;
}

div.employee p.region{
  border: solid 1px #FFF;
  padding: 10px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 400;
  margin-bottom: 25px;
}
div.employee img{
  display: block;
  width: 215px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.75);
}
div.employee p.name{
  font-size: 1.5em;
  line-height: 1.5em;
  font-family: 'Libre Baskerville', serif;
  font-weight: 400;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  margin-top: 20px;
}
div.employee a{
  color: #FFF;
  font-size: 1.25em;
  font-weight: 400;
  letter-spacing: 0.5px;
}
div.teamInfo span.fa,
div.employee span.fa{
  padding-right: 8px;
}


/*    TEAM      */
div.teamInfo{
  line-height: 1.8em;
  margin-top: 30px;
  font-weight: 400;
  text-transform: uppercase;
}
article.default div.teamInfo p{
  margin-top: 5px;
}
article.default div.teamInfo p>span{
  min-width: 55%;
  display: inline-block;
}

/*    REVIEWS & NEWS   */
p.newsNav{
  text-transform: uppercase;
}
a.greyedOut{
  opacity: 0.4;
}
div.itemHolder{
  padding-top: 100px;
  padding-bottom: 100px;
  column-count: 3;
  column-gap: 30px;
}
div.itemHolder a{
  display: block;
  width: 100%;
  margin-bottom: 30px;
  box-sizing: border-box;
  break-inside: avoid-column;
  transform: translateZ(0);
  background-color: #FFF;
  box-shadow: 0px 0px 30px rgba(228,232,225,1);
}
article.news div.itemHolder a{
  box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
}
div.itemHolder a img{
  width: 100%;
  display: block;
}
div.itemHolder a span.textHolder{
  padding: 5%;
  display: block;
  text-align: center;
}
div.itemHolder a span.textHolder img{
  display: block;
  width: 8%;
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}
div.itemHolder a span.textHolder span.title{
  font-size: 1.5em;
  line-height: 1.6em;
  font-family: 'Libre Baskerville', serif;
  font-weight: 400;
  margin-bottom: 20px;
  display: block;
}
article.news div.itemHolder a span.textHolder span.title{
  color: #af977b;
}
div.itemHolder a span.textHolder span.name{
  padding-top: 8%;
}
div.itemHolder a span.textHolder span.name,
div.itemHolder a span.textHolder span.date{
  display: block;
  font-size: 0.8em;
  color: #747971;
  letter-spacing: 1px;
}
div.itemHolder a span.textHolder span.text{
  display: inline-block;
}
article.news div.itemHolder a span.textHolder span.date{
  font-size: 1.2em;
  color: #273c40;
  letter-spacing: 0px;
  padding-bottom: 20px;
}
article.news div.itemHolder a span.textHolder span.date span.fa{
  padding-right: 5px;
}
div.itemHolder a span.textHolder span.readmore{
  display: inline-block;
  background-color: #adb9b0;
  color: #FFF;
  font-size: 0.8em;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 40px;
  height: 40px;
  margin-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
}

div.pageNav{
  text-align: right;
  color: #a2a69e;
  padding-bottom: 100px;
}
div.pageNav a{
  display: inline-block;
  padding-left: 10px; 
  color: #273c40;
}
div.pageNav a:first-of-type{
  padding-left: 15px;
}
div.pageNav a.active,
div.pageNav a:hover{
  color: #a2a69e; 
}

div.divider{
  width: 100%;
  height: 1px;
  margin-top: 50px;
}

article.reviews h2{
  margin-bottom: 30px;
}

/*    PARTNERS    */
article.partners div.divider{
  margin-top: 30px;
  margin-bottom: 30px;
}


/*    INSPIRATIE    */
div.gallery{
  padding-top: 100px;
  padding-bottom: 100px;
}
div.gallery a{
  display: block;
  float: left;
  width: 18.4%;
  margin-right: 2%;
  margin-bottom: 2%;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.4);
}
div.gallery a:nth-child(5n){
  margin-right: 0px;
}
div.gallery a img{
  display: block;
  width: 100%;
}


/*    CONTACT   */
div.contactForm{
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 18%;
  padding-right: 18%;
}
div.contactForm h2{
  margin-bottom: 30px;
}
div.formCol{
  width: 49%;
  float: left;
}
div.formCol.last{
  margin-left: 2%;
}
input.inputText, select.inputSelect, label{
  -webkit-appearance: none;
  display: block;
  position: relative;
  background-color: #FFF;
  color: #273c40;
  height: 40px;
  font-size: 1em;
  font-family: 'Roboto', sans-serif;
  line-height: 40px;
  margin-bottom: 10px;
  padding: 0px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  border-radius: 0px;
  box-sizing: border-box;
  border: none;
}
textarea.inputArea{
  display: block;
  position: relative;
  background-color: #FFF;
  border: none;
  color: #273c40;
  height: 90px;
  font-size: 1em;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 10px;
  padding: 10px;
  padding-left: 20px;
  width: 100%;
  border-radius: 0px;
  box-sizing: border-box;
}
input.inputText.error, select.inputSelect.error, textarea.inputArea.error{
  background-color: #ee243f;
  color: #FFF;
}
input.submitButton{
  -webkit-appearance: none;
  display: block;
  background-color: #adb9b0;
  color: #FFF;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 40px;
  height: 40px;
  border: none;
  cursor: pointer;
  float: right;
  margin-top: 0px;
  padding-left: 30px;
  padding-right: 30px;
}

input.inputText::-webkit-input-placeholder,
textarea.inputArea::-webkit-input-placeholder{ /* Chrome/Opera/Safari */
  color: #273c40;
}
input.inputText::-moz-placeholder,
textarea.inputArea::-moz-placeholder{ /* Firefox 19+ */
  color: #273c40;
}
input.inputText:-ms-input-placeholder,
textarea.inputArea:-ms-input-placeholder{ /* IE 10+ */
  color: #273c40;
}
input.inputText:-moz-placeholder,
textarea.inputArea:-moz-placeholder{ /* Firefox 18- */
  color: #273c40;
}

input.inputText.error::-webkit-input-placeholder,
textarea.inputArea.error::-webkit-input-placeholder{ /* Chrome/Opera/Safari */
  color: #FFF;
}
input.inputText.error::-moz-placeholder,
textarea.inputArea.error::-moz-placeholder{ /* Firefox 19+ */
  color: #FFF;
}
input.inputText.error:-ms-input-placeholder,
textarea.inputArea.error:-ms-input-placeholder{ /* IE 10+ */
  color: #FFF;
}
input.inputText.error:-moz-placeholder,
textarea.inputArea.error:-moz-placeholder{ /* Firefox 18- */
  color: #FFF;
}

/*  CUSTOM FILE UPLOAD */
div.uploadHolder label {
  display: block;
  background-color: #af977b;
  color: #FFF;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 40px;
  height: 40px;
  border: none;
  cursor: pointer;
  float: right;
  margin-top: 0px;
  padding-left: 30px;
  padding-right: 30px;
  margin-right: 10px;
  width: auto;
}
.inputfile {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}


/*    FOOTER    */
footer div.col4.textCenter{
  padding-top: 0px;
  padding-bottom: 0px;
}
footer div.footerCol{
  padding-top: 70px;
  padding-bottom: 70px;
  float: left;
  width: 42%;
}
footer div.footerCol:nth-child(2){
  width: 16%;
}
footer div.footerCol p{
  font-size: 0.9em;
  line-height: 1.5em;
  letter-spacing: 0.5px;
}
footer div.footerCol p.head{
  font-weight: 500;
  text-transform: uppercase;
  color: #adb9b0;
  margin-bottom: 5px;
  padding-top: 30px;
}
footer div.footerCol p span{
  padding-right: 3px;
}

footer img{
  width: 100%;
  display: block;
}


footer div.col4.textCenter.copyright{
  color: #a0876a;
  font-size: 0.7em;
  line-height: 1.4em;
  padding-top: 35px;
  padding-bottom: 50px;
}
div.copyright br{
  display: none;
}
div.copyright a:first-of-type, div.copyright a:nth-of-type(2){
  color: #273c40;
  text-decoration: underline;
}