html {
    position: relative;
    width: 100%;
    height: 100%;
    font-size: 0.8rem;
}

body {
    height: 100%;
    background-color: #fff;
    color: #000;
	box-sizing: content-box;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	font-family: 'Montserrat', sans-serif;
}

#page-container {
    position: relative;
    padding: 0;
    min-height: 100%;
}

header{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 20px 0 20px;
    transition: all 0.25s;
    z-index: 14;
}

header.scrolled{
    background-color: #19353f;
}


/********************************/
/**************Divs**************/
/********************************/

.logo{
    height: 50px;
    transition: all 0.25s;
}

header.scrolled .logo{
    height: 60px;
}

#hero-container{
	display: block;
	width: 100%;
	height: 100vh;
	color: #fff;
	background-position: center;
	background-size: cover;
}

#hero-container.alt{
    height: 450px;
}

#hero-container.alt2{
    height: 250px;
}

.map{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.contact-block{
	position: relative;
	padding: 20px 20px 40px;
	background-color: rgba(103, 110, 18, 0.85);
	color: #fff;
	z-index: 6;
}

.contact-block img{
	margin: 0 auto 25px;
	height: 25px;
}

footer{
	padding: 3rem 0;
	background-color: #19353f;
	color: #fff;
	font-size: 0.9rem;
}


/********************************/
/**********Other Pages***********/
/********************************/

.product-img{
	max-width: 100px;
}

.product-price,.product2-price,.product3-price,.product4-price,.product5-price{
    padding-top: 60px;
    font-weight: 600;
}

.reference-logo{
    margin: 0 auto;
    max-width: 100%;
    max-height: 80px;
}

/********************************/
/**************Menu**************/
/********************************/

#nav{
    position: relative;
    text-align: right;
    font-weight: 300;
}

#nav > ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

#nav > ul > li{
    display: inline-block;
    position: relative;
    margin: 0 2px;
	padding: 4px 2px;
	color: #fff;
    font-weight: 600;
}

#nav > ul > li.active{
	background-color: #676e12;
    transition-duration: 0.25s;
}

#nav > ul > li.active:hover{
	background-color: #19353f;
}

#nav > ul > li::after{
    content: "";
    display: block;
    position: absolute;
    left: 1%;
    bottom: 2px;
    width: 98%;
    height: 1px;
	background-color: #fff;
    transform: translateY(3px) scale(0);
	opacity: 0;
    transition-duration: 0.25s;
}

#nav > ul > li.active::after{
	display: none;
}

#nav > ul > li:hover::after{
    transform: translateY(0px) scale(1);
	opacity: 1;
}

#nav > ul > li:last-child::after{
    display: none;
}
      #nav > ul > li > ul {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
    width: auto;
    padding: 4px 0;
    background-color: #19353f;
    list-style: none;
    white-space: nowrap;
    text-align: left;
}

#nav > ul > li:hover > ul {
    display: block;
}

#nav > ul > li > ul > li {
	padding: 2px 16px 2px 16px;
	color: #fff;
    font-weight: 600;
}

#nav > ul > li > ul > li.active{
	background-color: #676e12;
    transition-duration: 0.25s;
}

#nav > ul > li > ul > li.active:hover{
	background-color: #19353f;
}

#but-menu{
    vertical-align: middle;
    cursor: pointer;
}


#mobile-nav{
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    padding: 25px 0;
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 300;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -2;
}

#mobile-nav.active{
    opacity: 1;
}

#mobile-nav ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

#mobile-nav ul li{
    position: relative;
    text-align: center;
    line-height: 45px;
    letter-spacing: 2px;
}

#mobile-nav > ul > li::after{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transform: translateY(3px) scale(0);
    transition: all 0.45s;
}

#mobile-nav > ul > li:hover::after{
    transform: translateY(0px) scale(1);
}

#close-menu{
    position: absolute;
    left: 25px;
    top: 25px;
    width: 80px;
    height: 80px;
    cursor: pointer;
}

#close-menu div{
    position: absolute;
    left: 5px;
    top: 37px;
    width: 70px;
    height: 6px;
    background-color: #fff;
    border-radius: 5px;
    transition: all 0.5s;
}

#mobile-nav.active #close-menu div:first-child{
    transform: rotate(45deg);
}

#mobile-nav.active #close-menu div:last-child{
    transform: rotate(-45deg);
}

/********************************/
/**************Heads*************/
/********************************/

h1, h2{
	margin-bottom: 10px;
	letter-spacing: 2px;
	font-size: 1.4rem;
	font-weight: 600;
}

.title{
	margin-bottom: 10px;
	font-size: 4rem;
	font-weight: 100;
	line-height: 4rem;
}

.sub-title{
	font-size: 1.2rem;
	font-weight: 600;
}

/********************************/
/************Paragraphs**********/
/********************************/

/********************************/
/**************Buttons***********/
/********************************/

a, a:hover{
	color: inherit;
}

/* SEO: interne links in redactionele content laten opvallen */
.cms-content a{
	color: #676e12;
	font-weight: 600;
	text-decoration: underline;
}
.cms-content a:hover{
	color: #19353f;
	text-decoration: none;
}

header a,
header a:hover,
#mobile-nav a,
#mobile-nav a:hover{
	text-decoration: none;
}

a.link-button,
.contact-form input[type="submit"],
.product-form input[type="submit"]{
	display: inline-block;
	margin: 15px 0;
	padding: 4px 16px;
	background-color: #676e12;
	color: #fff;
	border: none;
	text-decoration: none;
	letter-spacing: 1px;
	font-size: 1.0rem;
	font-weight: 600;
	transition-duration: 0.2s;
}

a.link-button:hover,
.contact-form input[type="submit"]:hover,
.product-form input[type="submit"]:hover{
	background-color: #fff;
	color: #676e12;
	text-decoration: none;
}

.product-form input[type="submit"]{
	width: 100%;
	border: solid 2px #676e12;
	text-align: center;
	font-weight: 400;
	font-size: 1rem;
}

.link-image{
	width: 100%;
	padding-bottom: 120%;
	background-position: center;
	background-size: cover;
	filter: grayscale(1) brightness(0.8);
	transition-duration: 0.25s;
}

.link-image:hover{
	filter: grayscale(0) brightness(1);
}

.contact-form input[type="submit"]{
	margin: 5px 0;
}

.contact-form input[type="submit"]:focus{
    transform: scale(0.95)
}

.social-link {
    margin: 0 4px;
    text-decoration: none !important;
    font-size: 1.2rem;
}

/********************************/
/**************Sliders***********/
/********************************/


/********************************/
/***************Forms************/
/********************************/

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea{
    margin: 10px 0 0;
    width: 100%;
    padding: 0 8px;
    background-color: #0b1d24;
    color: #fff;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 25px;
}

.contact-form textarea{
    height: 130px;
    resize: none;
}

.contact-form input[type="text"]::placeholder,
.contact-form input[type="tel"]::placeholder,
.contact-form input[type="email"]::placeholder,
.contact-form textarea::placeholder{
    color: #fff;
    font-weight: 400;
}

.product-form input[type="number"]{
	padding: 2px 12px;
	width: 60px;
	border: solid 1px #aaa;
	cursor: pointer;
}

.product-form input[type="text"],
.product-form input[type="tel"],
.product-form input[type="email"],
.product-form textarea,
.product-form select{
	width: 100%;
	border: solid 1px #aaa;
	padding: 2px 4px;
}

.product-form input[type="text"]::placeholder,
.product-form input[type="tel"]::placeholder,
.product-form input[type="email"]::placeholder,
.product-form textarea::placeholder{
	color: #676e12;
}


/********************************/
/**************Colours***********/
/********************************/

.bg-lines{
	background-image: url(../images/lines.png);
	background-position: right bottom;
	background-size: 400px;
	background-repeat: no-repeat;
}

.bg-blue{
	background-color: #19353f;
}

.bg-gray{
	background-color: #ebebeb;
}

.txt-green{
	color: #676e12;
}

.txt-white{
	color: #fff;
}


/********************************/
/********************************/
/********************************/

.shape-small{
	margin: 15px 0 20px;
	height: 40px;
}

.underlined{
    text-decoration: underline !important;
}

.background{
	background-position: center;
	background-size: cover;
}

.languages img {
    height: 20px;
}

.languages {
    margin: 0 0 !important;
    padding: 4px 0 !important;
}

@media only screen and (max-width: 991px) {
	.logo{
		height: 40px;
		transition: all 0.25s;
	}
	
	header.scrolled .logo{
		height: 30px;
	}

}

@media only screen and (max-width: 767px) {

    #nav > ul > li{
        display: none;
    }

    #nav > ul > li:last-child{
        display: block;
	}

	.logo{
		height: 30px;
		transition: all 0.25s;
	}
	
	header.scrolled .logo{
		height: 30px;
	}

	.link-image{
		padding-bottom: 75%;
	}

	.title{
		font-size: 2.5rem;
		line-height: 2.5rem;
	}
	
	.sub-title{
		font-size: 1.1rem;
	}

	.map{
		position: relative;
		left: 0;
		top: 0;
		height: 250px;
	}


    .social-link {
        margin-top: 15px;
        font-size: 2rem;
    }
	
}

@media only screen and (max-width: 575px) {

	header{
		padding: 10px 0;
	}

	.title{
		font-size: 2.2rem;
		line-height: 2.2rem;
	}

	.product-price{
		padding-top: 20px;
	}
}

@media only screen and (max-width: 400px) {
}

.g-recaptcha {
    margin-top: 20px;
    margin-left: 0px;
    transform:scale(0.83);
    transform-origin:0 0;
}