/*
Theme Name: dorceusonderhoudmeesters
Theme URI: https://dorceusonderhoudmeesters.nl/
Author: De Internetzaak
Author URI: http://deinternetzaak.nl
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto&family=Roboto+Slab:wght@100..900&display=swap');


html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	font-size: 17px;
	line-height: 30px;
	color: #132a39;
	position: relative;
	background-color: #143b54;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: "Roboto", sans-serif;
}

img{
	border-radius: 5px;
	max-width: 100%;
	height: auto;
}

p{
	margin-bottom: 30px;
}

a{
	color: #143b54;
  transition: all 0.3s ease;
}
a:active, a:hover {
	color: #143b54;
	text-decoration: none;
}

h1, h2, h3, h4, h5{
	font-family: "Roboto Slab", serif;
	font-weight: 600;
	color: #143b54;
	line-height: 1.2;
}
.vc_do_custom_heading{
	margin-bottom: 20px !important;
}

.title-xl{
	font-size: 48px;
}
.title-large{
	font-size: 40px;
}
.title-normal{
	font-size: 28px;
}
.title-small{
	font-size: 22px;
}
.font-light{
	font-weight: 300;
}
.font-bold{
	font-weight: 700;
}

.color-white,
.color-white a{
	color: #fff !important;
}
.color-primary,
.color-primary a{
	color: #143b54 !important;
}
.color-alternate,
.color-alternate a{
	color: #b7b09d !important;
}

.background-primary{
	background-color: #143b54 !important;
}
.background-alternate{
	background-color: #b7b09d !important;
}

.text-shadow{
	text-shadow: 0 0 30px rgba(0, 0, 0, 0.3);	
}

.menu{
	margin: 0;
	padding: 0;
	list-style: none;
}
.menu-inline li{
	display: inline-block;
}

.button{
	cursor: pointer;
	color: #143b54;
}
.button .icon{
	display: inline-block;
	color: #b7af9c;
	margin-left: 10px;
	margin-bottom: -1px;
  transition: all 0.2s ease;
}
.button:hover .icon{
	margin-left: 15px;
}
.button.white,
.button.white .icon{
	color: #fff;
}

.wpcf7-submit{
	color: #fff;
	background-color: #b7b09d !important;
	border: 0;
	padding: 15px 40px;
	text-align: center;
	transition: all 0.3s ease;
}
.wpcf7-submit:hover{
	background-color: #0e2c3d !important;
}


/* AREA: header */
#area_header{
	position: fixed;
	height: auto;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 999;
	background-color: #143b54;

  -webkit-box-shadow: 0 0 30px 0 rgba(0,0,0,0.2);
  box-shadow: 0 0 30px 0 rgba(0,0,0,0.2);

  transition: all 0.5s ease;
}
#area_header.hidden{
	top: -150px;
}

#area_header .inner{
}

#area_header #logo_wrapper{
	display: block;
	width: 250px;
	height: 100px;
  transition: all 0.5s ease;
}
#area_header #logo_wrapper a{
	display: block;
	width: 100%;
	height: 100%;
	
	background-image: url('images/logo-dorceusonderhoudmeesters.svg');
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 250px;
	transition: all 0.5s ease;
}
#area_header #main_navigation{
}
#area_header #main_navigation ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
#area_header #main_navigation ul li{
	display: inline-block;
}
#area_header #main_navigation ul li a{
	display: block;
	color: #e6dabf;
	padding: 15px;
}
#area_header #main_navigation ul li a:hover,
#area_header #main_navigation ul li.current-menu-item a{
	color: #fff;
}

#area_header #cta_button{
}
#area_header #cta_button a{
	display: block;
	height: 100px;
	line-height: 100px;
	color: #fff;
	font-weight: 700;
	padding: 0 20px;
	font-size: 13px;

	background-color: #0e2b3e;
	transition: all 0.5s ease;
}
#area_header #cta_button a:hover{
	background-color: #b7b09d;
}

#area_header #toggle_mobile_menu_wrapper{
	position: relative;
	padding: 10px;
}
.hamburger_menu{
	text-align: center;
}
.hamburger_menu .stroke{
	display:block; 
	height: 2px; 
	background-color: #fff; 
	margin: 6px auto; 
	width: 25px;
  transition: 0.3s;
}
.hamburger_menu:hover .stroke{
}
.menu_open .hamburger_menu .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 5px);
  transform: rotate(-45deg) translate(-6px, 5px);
}
.menu_open .hamburger_menu .bar2 {
  opacity: 0;
}
.menu_open .hamburger_menu .bar3 {
	-webkit-transform: rotate(45deg) translate(-6px, -6px);
	transform: rotate(45deg) translate(-6px, -6px);
}

#mobile_menu_wrapper{
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 900;
	background-color: #143b54;
  color: #fff;
  top: 0;
  right: -100vw;
  transition: all 0.3s ease;
  overflow-y: auto;	
  -webkit-overflow-scrolling: touch;
}
#mobile_menu_wrapper:after{
	content: '';
	display: block;
	position: absolute;
	z-index: 0;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.menu_open #mobile_menu_wrapper{
	right: 0;
}
#mobile_menu_wrapper .inner{
	position: relative;
	z-index: 1;
	padding: 130px 20px;
}
#mobile_menu_wrapper .inner li{
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#mobile_menu_wrapper .inner a{
	display: block;
	font-size: 18px;
  color: #fff;
  padding: 15px 0;
}
#mobile_menu_wrapper .inner ul li.current-menu-item a{
	color: #b7b09d;
}

	/* fixed header */
	#area_header.fixed #logo_wrapper{
		height: 80px;
	}
	#area_header.fixed #logo_wrapper a{
		background-size: 220px;
	}
	#area_header.fixed #cta_button a{
		height: 80px;
		line-height: 80px;
	}
	/* fixed header */


/* END AREA: header */



/* AREA: content */
#fullscreen_header{
	position: relative;
	min-height: 550px; 
	width: 100%;
	height: 50vh;
	background-color: #143B54;
}
.page-template-page-home #fullscreen_header{
	min-height: 600px; 
	height: 80vh;
}
#fullscreen_header:before{
	content: '';
	display: block;
	z-index: 1;
	position: absolute;
	width: 100%;
	bottom: -1px;
	right: 0;
	left: 0;
	height: 35%;

	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#143b54+0,143b54+100&0+0,1+100 */
	background: linear-gradient(to bottom,  rgba(20,59,84,0) 0%,rgba(20,59,84,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
#fullscreen_header:after{
	content: '';
	display: block;
	z-index: 100;
	position: absolute;
	width: 100%;
	bottom: 0;
	right: 0;
	left: 0;
	height: 100%;
	z-index: 0;
	background-color: rgba(20, 59, 84, 0.5);
}
#fullscreen_header .container{
	position: relative;
	z-index: 10;
	height: 100%;
}
#fullscreen_header .inner{
	max-width: 800px;
	margin: 400px 0 100px 0;
	font-size: 20px;
	line-height: 32px;
}

.page-template-page-home #fullscreen_header .inner,
.page-template-page-diensten #fullscreen_header .inner{
	text-align: center;
	margin: 320px auto 100px auto;
}


#area_content{
	background-color: #fff;
}

/* END AREA: content */


/* diensten */
.diensten_wrapper{
	margin-left: -15px;
	margin-right: -15px;
}
.diensten_wrapper .item{
	border-radius: 5px;
	display: block;
	position: relative;
	width: calc(33% - 30px);
	margin: 15px;
	overflow: hidden;
	background-color: #fff;

	-webkit-box-shadow: 0 0 30px 0 rgba(0,0,0,0.2);
	box-shadow: 0 0 30px 0 rgba(0,0,0,0.2);

}
.page-template-page-home .diensten_wrapper .item{
	width: calc(25% - 30px);
}
.diensten_wrapper a.item:hover .image_wrapper{
	opacity: 0.7;
}
.diensten_wrapper .item .image_wrapper{
	position: relative;
	height: 0;
	padding-top: 75%;
	width: 100%;
  transition: all 0.3s ease;
}
.diensten_wrapper .item .image_wrapper .image{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;	

  transition: all 0.4s ease;
}
.diensten_wrapper .item .content{
	padding: 20px 15px;
}
.diensten_wrapper .item .content .inner_content{
	font-size: 14px;
	line-height: 18px;
	color: #999;
}
.diensten_wrapper .item .content .title{
	color: #143b54;
	font-size: 16px;
	transition: all 0.3s ease;
}
/* END diensten */


/* projects */
.project_wrapper{
	margin-left: -10px;
	margin-right: -10px;
}
.project_wrapper .item{
	border-radius: 5px;
	display: block;
	position: relative;
	height: 0;
	padding-top: calc(33.3% - 20px);
	width: calc(33.3% - 20px);
	margin: 10px;
	overflow: hidden;
  background-color: #231f20;
}
.project_wrapper .item .content{
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
	z-index: 5;

  transition: all 0.3s ease;
}
.project_wrapper a.item:hover .content{
	bottom: 30px;
}

.project_wrapper .item .content .title{
	color: #fff;
	font-weight: 700;
	font-size: 18px;
}
.project_wrapper .item .image{
	position: absolute;
	z-index: 0;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;

  transition: all 0.4s ease;
  transform: scale(1.1); /* Equal to scaleX(0.7) scaleY(0.7) */
}
.project_wrapper a.item:hover .image{
	opacity: 0.5;
  transform: scale(1); /* Equal to scaleX(0.7) scaleY(0.7) */
}
.project_wrapper .item .image:before{
	content: '';
	display: block;
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;

	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+20,000000+100&0+1,0.65+100 */
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 1%, rgba(0,0,0,0.12) 20%, rgba(0,0,0,0.65) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 1%,rgba(0,0,0,0.12) 20%,rgba(0,0,0,0.65) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0,0,0,0) 1%,rgba(0,0,0,0.12) 20%,rgba(0,0,0,0.65) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); /* IE6-9 */
}


/* AREA: footer */
#cta_block{
	padding: 60px 30px;
}

#area_footer{
	background-color: #fff;
}
#area_footer h5{
	margin-top: 20px;
	font-size: 18px;
}
#area_footer #footer_bottom{
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}
#area_footer #footer_bottom .copyright{
	font-size: 12px;
	opacity: .5;
}
#area_footer #footer_bottom .social_icons a{
	display: block;
	background-color: #a9a391;
	color: #fff !important;
	text-align: center;
	width: 30px;
	height: 30px;
	padding: 7px 0;
	border-radius: 50%;
	margin: 0 2px;

  transition: all 0.3s ease;
}
#area_footer #footer_bottom .social_icons a:hover{
	background-color: #cec5a8 !important;
}
/* END AREA: footer */


.form-control{
	background-color: #fafafa;
	margin-bottom: 10px;
}
span.wpcf7-not-valid-tip{
	margin-bottom: 20px;
	margin-top: -20px;
	font-size: 12px !important;
}


.grecaptcha-badge{
	display: none !important;
}