:root {
  --green: #AFC7AF;
  --titleColor: #545253;
  --lightGrey: #EEEDEB;
  --textColor: #414141;
  --uspColor: #181F17;
  --uspBackground: #CAC5BF;
  --white: #ffffff;
  --black: #000;
  --textColor: #333;
}

/* Global styling zakelijk page*/
/* #page-zakelijk{
  margin-bottom: 70px;
} */

@media(min-width: 1200px){
  #page-zakelijk .container{
    padding-left: 50px;
    padding-right: 50px;
  }
}

#page-zakelijk h3{
  font-weight: bolder;
  margin-bottom: 10px;
  color: var(--black);
  text-transform: uppercase;
  font-size: 24px;
}

/* Reusable classes */
.padding-top{
  padding-top: 55px;
}

.padding-bottom{
  padding-bottom: 55px;
}

.block-spacing{
  padding-top: 85px;
}

.zakelijk-button{
  color: inherit;
  text-decoration: none;
  background: rgba(237, 237, 237, 0.6);
  font-size: 18px;
  font-weight: bolder;
  border: 1px solid #000;
  padding: 5px 30px;
  color: #000;
  background: #f1f3f5;
  cursor: pointer;
  text-transform: uppercase;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}

@media(max-width: 767px){
  .zakelijk-button{
    font-size: 16px;
    padding: 5px 25px;
  }
}

@media(min-width: 1200px){
  .zakelijk-button:hover{
    text-decoration: none;
  }
}

@media(max-width: 992px){
  .padding-top{
    padding-top: 25px;
  }
  .padding-bottom{
    padding-bottom: 25px;
  }
  .block-spacing{
    padding-top: 45px;
  }
  #page-zakelijk h3{
    font-size: 22px;
  }
}

@media(max-width: 767px){
  #page-zakelijk h3{
    font-size: 18px;
  }
}

#page-zakelijk .section-headline .inner .headline-wrap,
#page-zakelijk .section-categories .inner .category-wrap{
  position: relative;
}

#page-zakelijk .section-headline .inner .headline-wrap img{
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
/* text styling */
#page-zakelijk .section-headline .inner .headline-wrap .headline-text{
  position: absolute;
  bottom: 0;
  left: 70px;
  background-color: rgba(202, 197, 191, 0.7);
  color: #fff;
  padding: 60px 20px 25px 55px;
  max-width: 480px;
}

#page-zakelijk .section-categories .inner .category-wrap .category-content{
/*   background-color: rgba(182, 167, 142, 0.8); */
  background: var(--uspBackground);
  color: var(--uspColor);
  padding: 35px 55px;
  min-width: 480px;
  max-width: 480px;
  margin-left: 70px;
  min-height: 350px;
}

#page-zakelijk .section-categories .inner .category-wrap .category-content .list{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  font-size: 18px;
  font-weight: bold;
}

#page-zakelijk .section-categories .inner .category-wrap .category-content .list li{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

#page-zakelijk .section-headline .inner .headline-wrap .headline-text .text-inner{
  min-width: 550px;
  color: var(--textColor);
  text-transform: uppercase;
}

#page-zakelijk .section-headline .inner .headline-wrap .headline-text .text-inner h1{
  font-size: 52px;
  color: var(--titleColor);
}

#page-zakelijk .section-headline .inner .headline-wrap .headline-text .text-inner p{
  margin: 0;
  color: #EDF3F5;
  font-size: 20px;
}

#page-zakelijk .section-headline .inner .headline-wrap .headline-text .text-inner .span-green{
  color: var(--green);
}

@media(max-width: 992px){
  #page-zakelijk .container{
   	padding: 0; 
  }
  #page-zakelijk .section-headline .inner .headline-wrap .headline-text{
    left: 0;
    padding: 10px 20px;
    width: 100%;
  }
  #page-zakelijk .section-headline .inner .headline-wrap .headline-text .text-inner h1{
    font-size: 50px;
  }
  #page-zakelijk .section-headline .inner .headline-wrap .headline-text .text-inner p{
   	font-size: 18px; 
  }
  #page-zakelijk .section-categories .inner .category-wrap .category-content{
   	margin-left: 0; 
    padding: 10px 20px;
    min-height: 0;
    min-width: 0;
  }
  #page-zakelijk .section-categories .inner .category-wrap .category-content .list{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 5px 1fr;
    grid-template-columns: 1fr 1fr;
    font-size: 16px;
    gap: 5px;
  }
}

@media(max-width: 767px){
  #page-zakelijk .section-headline .inner .headline-wrap .headline-text .text-inner h1{
    font-size: 26px;
  }
  #page-zakelijk .section-headline .inner .headline-wrap .headline-text .text-inner p{
   	font-size: 12px; 
  }
  #page-zakelijk .section-headline .inner .headline-wrap .headline-text .text-inner{
    min-width: 0;
  }
  #page-zakelijk .section-categories .inner .category-wrap .category-content .list{
    font-size: 14px;
  }
  #page-zakelijk .section-categories .inner .category-wrap .category-content .list li{
   	gap: 5px; 
  }
  #page-zakelijk .section-categories .inner .category-wrap .category-content .list{
    grid-template-columns: unset;
  }
}


/* STYLING BLOCK 1! */
#page-zakelijk .section-offerte .inner{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: 420px;
}

#page-zakelijk .section-offerte .inner .category-text,
#page-zakelijk .section-offerte .inner .category-cta{
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

#page-zakelijk .section-offerte .category-text .content{
  background-color: var(--lightGrey);
/*   padding: 40px 30px; */
  padding: 35px 105px;
  min-height: 390px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#page-zakelijk .section-offerte .category-text .content p{
  max-width: 450px;
  font-size: 18px;
}

#page-zakelijk .section-offerte .category-cta .cta-image-wrap{
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#page-zakelijk .section-offerte .category-cta .cta-image-wrap:after{
  content: '';
  display: block;
  padding-top: 100%;
}

#page-zakelijk .section-offerte .category-cta .cta-image-wrap img{
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#page-zakelijk .section-offerte .category-cta{
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -25%;
  margin-left: -5%;
}

#page-zakelijk .section-offerte .category-cta .button-wrap{
  position: absolute;
  bottom: 20px;
}

#page-zakelijk .section-offerte .category-cta .button-wrap a{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
	background: #fff;
  border: 1px solid #000;
  outline: none;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  text-transform: lowercase;
  padding: 5px 30px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

@media(min-width: 1200px){
  #page-zakelijk .section-offerte .category-cta .button-wrap a:hover{
    background: var(--green);
    color: #fff;
  }
}

@media(max-width: 1300px){
  #page-zakelijk .section-offerte .category-cta{
    margin-left: 0;
  }
}

@media(max-width: 1200px){
  #page-zakelijk .section-offerte .category-cta{
    margin-top: 0;
  }
  #page-zakelijk .section-offerte .inner{
    max-height: none;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  #page-zakelijk .section-offerte .category-text .content{
		min-height: 0;
    height: 100%;
  }
  #page-zakelijk .section-offerte .inner .category-text,
	#page-zakelijk .section-offerte .inner .category-cta{
   	height: auto; 
  }
  #page-zakelijk .section-offerte .category-cta img{
		height: 100%;    
  }
}

@media(max-width: 992px){
  #page-zakelijk .section-offerte .inner{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #page-zakelijk .section-offerte .category-cta img{
    max-height: 450px;
  }
  #page-zakelijk .section-offerte .category-text .content{
    padding: 20px;
  }
  #page-zakelijk .section-offerte .category-text .content p{
    max-width: none;
    font-size: 16px;
  }
  #page-zakelijk .section-offerte .category-cta .cta-image-wrap:after{
    padding-top: 50%;
  }
}

/* SECTIE PROJECTEN */
#page-zakelijk .section-projects .projects-wrap .image-wrap img,
#zakelijk-detail-page .section-projects .projects-wrap .image-wrap img{
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

#page-zakelijk .section-projects .projects-wrap .image-wrap,
#zakelijk-detail-page .section-projects .projects-wrap .image-wrap{
  padding: 15px;
}

#zakelijk-detail-page .section-projects .projects-wrap .owl-nav{
  display: none;
}

@media(max-width: 992px){
  #page-zakelijk .section-projects .projects-wrap .owl-nav,
  #zakelijk-detail-page .section-projects .projects-wrap .owl-nav{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5px;
  }
  #page-zakelijk .section-projects .projects-wrap .owl-nav button,
  #zakelijk-detail-page .section-projects .projects-wrap .owl-nav button{
    background: none;
    border: 1px solid var(--lightGrey);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px;
    margin: 0;
  }
  #page-zakelijk .section-projects .projects-wrap .owl-nav button:focus,
  #zakelijk-detail-page .section-projects .projects-wrap .owl-nav button{
    border: 1px solid #000 !important;
  }
  #page-zakelijk .section-projects .projects-wrap .owl-nav i,
  #zakelijk-detail-page .section-projects .projects-wrap .owl-nav i{
    color: var(--green);
  }
}

@media(max-width: 767px){
  #page-zakelijk .section-projects .projects-wrap .image-wrap
  #zakelijk-detail-page .section-projects .projects-wrap .image-wrap{
    padding: 0;
  }
}

/* CATEGORIE SECTIE 1  */
#page-zakelijk .section-block .wrap,
#page-zakelijk .section-block .wrap-reverse{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#page-zakelijk .section-block .wrap-reverse{
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: -170px;
}

#page-zakelijk .section-block .wrap .image-content{
  margin-top: 70px;
  margin-right: -70px;
  position: relative;
  width: 100%;
  max-height: 650px;
}

#page-zakelijk .section-block .wrap-reverse .image-content{
  margin-bottom: 70px;
  margin-left: -70px;
  position: relative;
  width: 100%;
  max-height: 650px;
}

#page-zakelijk .section-block .wrap-reverse .image-content .image-content-wrap,
#page-zakelijk .section-block .wrap .image-content .image-content-wrap{
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#page-zakelijk .section-block .wrap-reverse .image-content .image-content-wrap:after,
#page-zakelijk .section-block .wrap .image-content .image-content-wrap:after{
  content: '';
  display: block;
  padding-top: 100%;
}

#page-zakelijk .section-block .wrap-reverse .image-content .image-content-wrap img,
#page-zakelijk .section-block .wrap .image-content .image-content-wrap img{
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#page-zakelijk .section-block .wrap .text-content,
#page-zakelijk .section-block .wrap-reverse .text-content{
  background: var(--lightGrey);
/*   min-height: 400px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 50px 40px 50px 105px;
  width: 100%;
  min-width: 750px;
  max-width: 750px;
}

@media(min-width: 1350px){
  #page-zakelijk .section-block .wrap .text-content,
	#page-zakelijk .section-block .wrap-reverse .text-content{
    min-height: 400px;
  }
}

#page-zakelijk .section-block .wrap-reverse .text-content{
  padding: 50px 100px 50px 105px;
}

#page-zakelijk .section-block .wrap-reverse .image-content .image-content-wrap .block-btn-wrap,
#page-zakelijk .section-block .wrap .image-content .image-content-wrap .block-btn-wrap{
  position: absolute;
  bottom: 20px;
}

#page-zakelijk .section-block .wrap-reverse .image-content .image-content-wrap .block-btn-wrap a,
#page-zakelijk .section-block .wrap .image-content .image-content-wrap .block-btn-wrap a{
  background: rgba(237, 237, 237, 0.6);
  border: 1px solid var(--lightGrey);
  color: #000;
}

@media(min-width: 1200px){
  #page-zakelijk .section-block .wrap-reverse .image-content .image-content-wrap .block-btn-wrap a:hover,
  #page-zakelijk .section-block .wrap .image-content .image-content-wrap .block-btn-wrap a:hover{
    background: rgba(237, 237, 237, 1);
  }
}
@media(max-width: 1499px){
	#page-zakelijk .section-block .wrap-reverse{
  	margin-top: 40px;
  }
  #page-zakelijk .section-block .wrap .image-content{
  	margin-top: unset;
  }
  #page-zakelijk .section-block .wrap-reverse .image-content{
  	margin-bottom: unset;
  }
}
@media(max-width: 1340px){
/*   #page-zakelijk .section-block .wrap-reverse{
    margin-top: -100px;
  } */
  #page-zakelijk .section-block .wrap .image-content{
  	margin-right: unset;
  }
}

/* @media(max-width: 1260px){
  #page-zakelijk .section-block .wrap-reverse{
    margin-top: -70px;
  }
} */

@media(max-width: 1200px){
  #page-zakelijk .section-block .wrap .text-content,
	#page-zakelijk .section-block .wrap-reverse .text-content{
    min-width: 0;
  }
}

@media(max-width: 992px){
  #page-zakelijk .section-block .inner{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
	}
  #page-zakelijk .section-block .wrap,
	#page-zakelijk .section-block .wrap-reverse{
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  #page-zakelijk .section-block .wrap-reverse{
    margin-top: 0;
  }
  #page-zakelijk .section-block .wrap-reverse .image-content,
  #page-zakelijk .section-block .wrap .image-content{
    margin: 0;
  }
  #page-zakelijk .section-block .wrap .text-content,
	#page-zakelijk .section-block .wrap-reverse .text-content{
    padding: 40px;
  }
}

@media(max-width: 767px){
  #page-zakelijk .section-block .wrap{
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #page-zakelijk .section-block .wrap-reverse{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* styling for contact block */
#page-zakelijk-footer .section-bottom .bottom-content{
  background: var(--lightGrey);
  min-height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

#page-zakelijk-footer .section-bottom .bottom-content .text-wrap{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 500px;
  text-transform: uppercase;
}

#page-zakelijk-footer .section-bottom .bottom-content .text-wrap p{
  font-size: 20px;
}

#page-zakelijk-footer .section-bottom .bottom-content .button-wrap{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

#page-zakelijk-footer .section-bottom .bottom-content .button-wrap a{
  color: #000;
  border: none;
  border: 1px solid transparent;
  gap: 10px;
}

#page-zakelijk-footer .section-bottom .bottom-content .button-wrap a:hover{
  border: 1px solid #000;
}

@media(max-width: 767px){
  #page-zakelijk-footer .section-bottom .bottom-content{
    min-height: 0;
    padding: 40px 30px;
  }
  #page-zakelijk-footer .section-bottom .bottom-content .text-wrap p{
    font-size: 16px;
  }
  #page-zakelijk-footer .section-bottom .bottom-content .button-wrap a{
    padding: 5px 10px;
    font-size: 14px;
  }
}

/* STYLING FOR ZAKELIJK DETAIL PAGE */
#zakelijk-detail-page{
  padding-bottom: 80px;
}

#zakelijk-detail-page .text-content{
  padding: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}

#zakelijk-detail-page .text-content span{
  width: 50px;
  height: 2px;
  background: var(--green);
  margin-top: 15px;
  margin-bottom: 40px;
  display: block; 
}

#zakelijk-detail-page .text-content .button-wrap{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

#zakelijk-detail-page .text-content .button-wrap a{
  font-size: 14px;
  padding: 5px 15px;
  background: #fff;
  color: #000;
}

#zakelijk-detail-page .text-content .button-wrap a:first-child{
  background: var(--green);
  color: #fff;
}

#zakelijk-detail-page .image-content{
  position: relative;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

#zakelijk-detail-page .image-content:after{
  content: '';
  display: block;
  padding-top: 100%;
}

#zakelijk-detail-page .category-images .image-wrap .image-content:after{
  content: '';
  display: block;
  padding-top: 120%;
}

#zakelijk-detail-page .image-content img{
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#zakelijk-detail-page .category-images .image-wrap{
  width: 100%;
/*   max-height: 400px; */
  height: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
}

#zakelijk-detail-page .category-images .image-wrap img{
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

@media(max-width: 767px){
  #zakelijk-detail-page .image-content{
    padding: 0;
  }
  #zakelijk-detail-page .text-content{
    padding: 20px;
  }
  #zakelijk-detail-page .text-content .button-wrap{
    gap: 10px;
  }
  #zakelijk-detail-page .text-content .button-wrap a{
    padding: 5px 10px;
  }
}

/* New styling for owl nav: added 08-02-2023 */
#page-zakelijk .projects-carousel .owl-nav{
  display: flex;
  justify-content: center;
  gap: 10px;
}

#page-zakelijk .section-projects .projects-wrap .owl-nav i{
  color: var(--green);
}

#page-zakelijk .section-projects .projects-wrap .owl-nav button, 
#zakelijk-detail-page .section-projects .projects-wrap .owl-nav button{
  background: none;
  border: 1px solid var(--green);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin: 0; 
}

/* Nieuwe styling voor de overzicht pagina's */
#zakelijk-overzicht-page .project-wrap{
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

#zakelijk-overzicht-page .project-wrap .image-wrap{
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

#zakelijk-overzicht-page .project-wrap .image-wrap img{
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
/* end overzicht pagina */

#zakelijk-detail-page .section-projects .projects-carousel .owl-nav{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

#zakelijk-detail-page .section-projects .projects-carousel .owl-nav button{
  background: none;
  border: 1px solid var(--green);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin: 0;
}

#zakelijk-detail-page .section-projects .projects-carousel .owl-nav i{
  color: var(--green);
}