/*======================
   01. Google fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap');

/*======================
   02. Basic css
========================*/
html{
	font-size: 62.5%;
}
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}

body {
	line-height: 1.45;
	font-family: 'Rubik', sans-serif;
	background-color: #f3f5e9;
	color: #203019;
	font-size: 2.2rem;
}

ol,
ul {
	list-style: none;
}

a:hover {
	text-decoration: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus{
	outline: none;
}
h1,
h2,
h3,
h4,
h5,
h6{
	font-weight: 700;
}
a, button{
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
/* page loader  */
#preloader {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	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;
}
.loader3 {
	width: 5.0rem;
	height: 5.0rem;
	display: inline-block;
	padding: .0rem;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 5.0rem;
	height: 5.0rem;
	border-radius: 100%;
	background: #203019;
	-webkit-animation: loader3 1.5s linear infinite;
	animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
	animation-delay: -0.9s;
	-webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	        transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	        transform: scale(1, 1);
    	opacity: 0;
  	}
}

@-webkit-keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	opacity: 0;
  	}
}
/*Hamburger-menu START CSS*/
.hamburger-menu {
	cursor: pointer;
	display: none;
	height: 5.6rem;
	width: 5.6rem;
	border-radius: 1rem;
	background-color: #203019;
	background-image: url(../img/bar.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 2.5rem;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.hamburger-menu.current{
	background-image: url(../img/close.svg);
	background-color: #fff;
}
/*ofcanvas-menu*/
.ofcavas-menu {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: -1;
	top: 0;
	left: -100%;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	background-image: url(../img/menu_bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	padding-top: 35rem;
	overflow: auto;
	padding-bottom: 3rem;
}

.ofcavas-menu.current {
	left: 0;
}
.ofcavas-menu ul li:not(:last-child){
	border-bottom: 0.1rem solid rgba(255, 255, 255, 0.3);
}
.ofcavas-menu ul li a {
	font-size: 4.2rem;
	font-weight: 500;
	color: #203019 !important;
	padding: 2.5rem 0;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
}
.menu_content{
	padding-left: 8rem;
}
.menu_content a{
	color: inherit;
}
.menu_content a:hover{
	color: #fff;
}
.menu_content h3 {
	padding-left: 4.4rem;
	font-size: 3.2rem;
	max-width: 33rem;
	padding-top: 2.5rem;
	padding-bottom: 3rem;
}

header {
	border-top: 0.5rem solid #8FB059;
	background-color: #fff;
}

/*sticky START CSS*/
header.sticky {
   -webkit-box-shadow: 0 .8rem 2.0rem 0 rgba(0, 0, 0, .1);
   box-shadow: 0 .8rem 2.0rem 0 rgba(0, 0, 0, .1);
}
header>.container{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.logo{
	display: inline-block;
	position: relative;
	width: 100%;
	max-width: 38rem;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	top: 6rem;
}
#menu li {
	display: inline-block;
	padding: 0 2rem;
}
#menu li a {
	font-size: 2.8rem;
	color: #000000;
	padding: 0;
	font-weight: 500;
	border-bottom: 0.8rem solid transparent;
	border-top: 0.8rem solid transparent;
}
#menu>li>a.active,
#menu>li>a:hover {
	border-bottom-color: #8FB059;
}
.button{
	background-color: #8FB059;
	border-radius: 1rem;
	padding: 1.8rem 2.5rem;
	color: #fff !important;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.17;
	border: 1px solid transparent;
}
header .button{
	padding: 1.4rem 2.5rem;
}
.button i{
	margin-left: 1.4rem;
}
.button:hover,
.button.active{
	background-color: #203019;
}
.button.active:hover{
	background-color: #fff;
	border-color: #203019;
	color: #203019 !important;
}
.social_media{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
}
.social_media a{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	color: #fff !important;
	height: 5.6rem;
	width: 5.6rem;
	border-radius: 1rem;
	background-color: #203019;
	font-size: 2.9rem;
}
.social_media a:hover{
	background-color: #8FB059;
}
.social_media a:not(:last-child){
	margin-right: 0.8rem;
}

.social_media.white a{
	background-color: #fff;
	color: #203019 !important;
}
.social_media.white a:hover{
	background-color: #203019;
	color: #fff !important;
}

.hero_section{
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	width:100%;
	min-height: calc(100vh - 14.5rem);
	color: #fff;
	position: relative;
	z-index: 1;
	padding: 4rem 0 16rem;
}
.hero_section::before{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	z-index: -1;
	background: -o-radial-gradient(circle, rgba(32,48,25,1) 0%, rgba(106,116,101,1) 100%);
	background: radial-gradient(circle, rgba(32,48,25,1) 0%, rgba(106,116,101,1) 100%);
	mix-blend-mode: multiply;
	opacity: 0.7;
}
.hero_section h1{
	font-size: 8.2rem;
	line-height: 1.12;
	max-width: 95rem;
}
.hero_section p{
	font-size: 2.6rem;
	max-width: 77rem;
}
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
	opacity: 0;
}
.service_area{
	position: relative;
	z-index: 3;
	margin-top: -16rem;
}
.service_box{
	text-align: center;
	background-color: #fff;
	border-radius: 1rem;
	-webkit-box-shadow: 0.1rem 0.5rem 4rem rgba(0, 0, 0, 0.16);
	        box-shadow: 0.1rem 0.5rem 4rem rgba(0, 0, 0, 0.16);
	padding: 4rem;
}
.service_box h4{
	font-size: 3.4rem;
	max-width: 34.5rem;
}
.service_box p{
	max-width: 37.5rem;
}
.service_box img{
	height: 10.5rem;
}
.form_box{
	background-color: #8FB059;
}
.form_box h4 {
	max-width: 100%;
	font-size: 4rem;
	color: #fff;
	padding-bottom: 4.7rem;
	padding-top: 1.7rem;
}
.form_box input {
	width: 100%;
	height: 7rem;
	border-radius: 1rem;
	background-color: #fff;
	border: none;
	font-size: 2.2rem;
	padding: 0 2.2rem 0 3rem;
	margin-top: 1.5rem;
	color: #203019;
	background-image: url(../img/calendar.svg);
	background-repeat: no-repeat;
	background-size: 3.8rem;
	background-position: calc(100% - 2.2rem) center;
}
.form_box input::-webkit-input-placeholder{
	color: #203019;
	opacity: 1;
}
.form_box input::-moz-placeholder{
	color: #203019;
	opacity: 1;
}
.form_box input:-ms-input-placeholder{
	color: #203019;
	opacity: 1;
}
.form_box input::-ms-input-placeholder{
	color: #203019;
	opacity: 1;
}
.form_box input::placeholder{
	color: #203019;
	opacity: 1;
}
.row{
	margin-left: -1.5rem;
	margin-right: -1.5rem;
}
.row>div{
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
.service_area .row{
	margin-left: -2.5rem;
	margin-right: -2.5rem;
}
.service_area .row>div{
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}
.senary_area{
	padding-top: 5rem;
	padding-bottom: 7.5rem;
}
.img_box{
	position: relative;
	padding-bottom: 3rem;
	padding-right: 3rem;
	z-index: 1;
}
.img_box::before{
	position: absolute;
	bottom: 0;
	right: 0;
	content: '';
	height: calc(100% - 3rem);
	width: calc(100% - 3rem);
	-webkit-box-shadow: 0.1rem 0.5rem 4rem rgba(0, 0, 0, 0.16);
	        box-shadow: 0.1rem 0.5rem 4rem rgba(0, 0, 0, 0.16);
	border-radius: 1rem;
	background-color: #8FB059;
	z-index: -1;
}
.img_box img{
	width: 100%;
	border-radius: 1rem;
}
.senary_area h2{
	font-size: 6rem;
	line-height: 1.2;
}
.senary_content{
	max-width: 65rem;
}
/*wij area*/
.wij_area{
	padding: 18.5rem 0 10.5rem;
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}
.wij_area h2{
	font-size: 5.6rem;
	max-width: 48.8rem;
}
.wij_area p{
	max-width: 56rem;
}
.btn_wrap a{
	width: 22rem;
}
.btn_wrap .button{
	border-width: 0.2rem;
}
.button.outline{
	border-color: #203019;
	color: #203019 !important;
	background-color: transparent;
}
.button.outline:hover{
	background-color: #203019;
	color: #fff !important;
}
/*footer*/
footer{
	background: #203019;
	line-height: 1.9;
	padding: 8rem 0 7rem;
}
footer .social_media a{
	background-color: #8FB059;
}
footer .social_media a:hover{
	background-color: #fff;
	color: #203019 !important;
}
footer h3{
	font-size: 4.4rem;
	font-weight: 700;
	color: #8FB059;
	margin-bottom: 3rem;
}
footer ul li a{
	white-space: nowrap;
}
footer a{
	color: #FFFFFF;
}
footer p{
	color: #FFFFFF;
}
footer p span{
	color: #8FB059;
	transition: 0.3s;
}
footer p span:hover{
	color: #fff;
}
.icon{
	width: 2.4rem;
	margin-right: 2rem;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
footer a:hover{
	color: #8FB059;
}
footer .button{
	padding: 1.4rem 2.5rem;
}
footer .button:hover{
	background-color: #fff;
	color: #203019 !important;
}
.footer_bottom {
	font-size: 1.6rem;
	padding-top: 6rem;
}
.flogo{
	display: inline-block;
	width: 100%;
	max-width: 43.8rem;
}
.top_footer{
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.top_footer>div{
	width: auto;
	max-width: 25%;
	-webkit-box-flex: 0;
	    -ms-flex-positive: 0;
	        flex-grow: 0;
}
/*end footer*/

/*inner page*/
.hero_section.inner_area{
	min-height: auto;
	padding: 16.5rem 0;
}
.hero_section.inner_area h2{
	font-size: 7rem;
	max-width: 95rem;
	line-height: 1.26;
}
.service_area.v2{
	margin-top: -11rem;
}
.left_content p{
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.6;
}
.left_content, .tekstpagina{
	margin-top: 14rem;
}
.left_content .breadcrumb, .tekstpagina .breadcrumb{
	background-color: transparent;
	padding: 0;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	margin-bottom: 40px;
}
.left_content .breadcrumb li,
.left_content .breadcrumb li a,
.tekstpagina .breadcrumb li,
.tekstpagina .breadcrumb li a{
	color: #203019;
	font-size: 2.0rem;
}

.tekstpagina h3{
	font-weight:700;
	font-size: 3.2rem;
	padding-bottom:20px;
}

.tekstpagina p a{
	color:#8FB059;
	text-decoration:underline;
}

.tekstpagina ul{
	list-style:none;
	list-style-position: inside;
	margin-bottom:30px;
}

.tekstpagina ul li::before{
  content: "\2022";  
  color: #8FB059; 
  font-weight: bold; 
  display: inline-block; 
  width: 1em; 
}

.card_area{
	padding: 2rem 0 12rem;
}
.card_area .row{
	margin-left: -2.5rem;
	margin-right: -2.5rem;
}
.card_area .row>div{
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}
.box{
	background-color: #fff;
	-webkit-box-shadow: 0.1rem 0.5rem 4rem rgba(0, 0, 0, 0.16);
	        box-shadow: 0.1rem 0.5rem 4rem rgba(0, 0, 0, 0.16);
	border-radius: 10px;
	overflow: hidden;
	text-align: center;
}
.box_img{
	overflow: hidden;
}
.box_img img{
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.box:hover .box_img img{
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}
.box_body{
	padding: 3.5rem 4rem 4rem;
}
.box_body h2{
	font-size: 3.4rem;
	max-width: 23.7rem;
	margin-left: auto;
	margin-right: auto;
}
.box_body p{
	max-width: 34.3rem;
	margin-left: auto;
	margin-right: auto;
	min-height:70px;
}

/*map area*/
.map_area{
	background-color: #fff;
	padding: 4.5rem 0 8.5rem;
	font-size: 2.6rem;
}
.title_sm{
	font-size: 3.2rem;
	font-weight: 700;
}
.map_area p a{
	color: inherit;
}
.map_area p a:hover{
	color: #8FB059;
}
.contact_area{
	padding: 10rem 0;
}
.contact_form input,
.contact_form textarea{
	border: none;
	background-color: #fff;
	border-radius: 10px;
	font-size: 2.2rem;
	color: #203019;
	padding: 0 3rem;
	width: 100%;
	margin-top: 3rem;
	height: 7rem;
}
.contact_form textarea {
	resize: none;
	height: 37rem;
	padding: 2rem 3rem;
}
.contact_form input::-webkit-input-placeholder{
	color: #203019;
	opacity: 1;
}
.contact_form input::-moz-placeholder{
	color: #203019;
	opacity: 1;
}
.contact_form input:-ms-input-placeholder{
	color: #203019;
	opacity: 1;
}
.contact_form input::-ms-input-placeholder{
	color: #203019;
	opacity: 1;
}
.contact_form input::placeholder{
	color: #203019;
	opacity: 1;
}
.contact_form textarea::-webkit-input-placeholder{
	color: #203019;
	opacity: 1;
}
.contact_form textarea::-moz-placeholder{
	color: #203019;
	opacity: 1;
}
.contact_form textarea:-ms-input-placeholder{
	color: #203019;
	opacity: 1;
}
.contact_form textarea::-ms-input-placeholder{
	color: #203019;
	opacity: 1;
}
.contact_form textarea::placeholder{
	color: #203019;
	opacity: 1;
}
.wij_area.v2{
	padding-top: 37rem;
}
.line{
	width: 100%;
	height: 0.1rem;
	background-color: #707070;
	margin-top: 3.5rem;
}
.link{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	color: #203019;
}
.link:hover{
	color: #8FB059;
}
.link img{
	width: 2.5rem;
	margin-right: 1.2rem;
}
.social_icon{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.social_icon a{
	height: 3.7rem;
	width: 3.7rem;
	border-radius: 1rem;
	background-color: #fff;
	border: 0.1rem solid #707070;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-left: 1rem;
	padding: 0 0.7rem;
}
.social_icon a:hover{
	background-color: #707070;
}
.social_icon a img{
	max-height: 60%;
	max-width: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
}
.description{
	max-width: 95.3rem;
}
.description h2{
	font-size: 4.4rem;
}
.description .button{
	width: 22.2rem;
}
.decs h4{
	font-size: 2.8rem;
}
.decs ul li{
	padding-left: 2.4rem;
	margin-top: 0.5rem;
	position: relative;
}
.decs ul li::before{
	position: absolute;
	left: 0;
	top: 1rem;
	height: 1rem;
	width: 1rem;
	border-radius: 50%;
	content: '';
	background-color: #8FB059;
}

.opsomming ul{
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}

.gallery_area{
	padding: 7rem 0 9rem;
}

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