body {
	padding: 0px;
	margin: 0px;
	color: rgba(0, 0, 0, 0.70);
    font-family: 'open_sansregular';
    font-size: 1.6rem;
	background-color: #FAF3E6;
    /*overflow-x: hidden;*/
}
html {
    font-size: 62.5%;
}
/*#page{
	overflow: hidden;
}*/
.dblock{
	display:none;
}
#menu {
	display: none;
}
.mm-current {
	display: block !important;
}
#mobile-contact-bar {
    display: none;
}
/****captcha****/
.grecaptcha-badge{
	display:none;
}
.formError {
	z-index: 1 !important;
}
/***************************************************index***************************************************/
.body-top-btm {
    margin-top: 9px;
	margin-bottom: 9px;
}
/****header****/
.header-area {
	position: fixed;
	padding: 38px 0;
	left: 0;
	width: 100%;
	z-index: 99;
}
.header-wrap {
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.20);
	background: rgba(255, 255, 255, 0.10);
	backdrop-filter: blur(10px);			
	padding: 13px 28px;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.header-logo img {
	width: 113px;
}
.header-right {
    display: flex;
    align-items: center;
    justify-content: end;
    column-gap: 60px;
}
.header-nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 60px;
}
.header-nav li {
	margin: 0;
	padding: 0;
    font-family: 'OpenSans-SemiBold';
	font-size: 1.6rem;
	line-height: 24px;
	color: #fff;
}
.header-nav li a:hover {
	color: rgba(250, 243, 230, 0.7);
}
.header-btn .common-btn {
	top: 3px;
}
.header-area.stiky .header-wrap {
	border-color: #374221;
	background-color: #374221;
}
.header-area.stiky .header-btn .common-btn:hover {
	border-color: #FAF3E6;
}
/***mobile-menu***/
.menu-bar {
    position: relative;
    max-width: 30px;
	height: 30px;
    width: 100%;
	margin-left: auto;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.menu-bar div, .menu-bar::after, .menu-bar::before {
    display: block;
    background-color: #FAF3E6;
    content: '';
    height: 2px;
    margin: 5px 0 5px auto;
    width: 30px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    position: relative;
    top: 6px;
    right: 0;
}
.menu-bar::before {
	margin-top: 0;
}
.menu-bar::after {
	margin-bottom: 0;
}
.menu-bar div {
	width: 80%;
}
.menu-bar::after {
	width: 60%;
}
.menu-bar.active div {
    transform: scale(0);
}
.menu-bar.active:before {
    transform: translateY(6px) rotate(135deg);
	width: 100%;
}
.menu-bar.active:after {
    transform: translateY(-8px) rotate(-135deg);
	width: 100%;
}
.mobile-header-menu {
	position: absolute;
	top: 80px;
	background-color: #374221;
	height: 70vh;
	width: 100%;
	left: 0;
	padding: 40px;
	border-radius: 10px;
	border: 1px solid #374221;
	clip-path: inset(0 0 100% 0);
	left: 50%;
    transform: translateX(-50%);
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
.mobile-header-menu-wrap {
	height: 100%;
	overflow-x: auto;
}
.mobile-header-menu-wrap li a:hover {
	color: rgba(250, 243, 230, 0.7);
}
.mobile-header-menu-wrap::-webkit-scrollbar {
	background-color: #101010;
	width: 8px;
	border-radius: 10px;
}
.mobile-header-menu-wrap::-webkit-scrollbar-thumb {
	background-color: #2c2c2c;
	border-radius: 10px;
}
.mobile-header-menu ul {
	flex-direction: column;
	text-align: center;
	margin: 0;
	padding: 0;
	list-style: none;
}
.mobile-header-menu.mob-menu-active {
	clip-path: inset(0 0 0 0);
}
.mobile-header-menu li {
	padding: 0;
	font-size: 2rem;
	margin-bottom: 20px;
}
.mobile-header-menu li:last-child {
	margin-bottom: 0;
}
.mobile-header-menu li::after {
	display: none;
}
.mobile-header-menu li.active {
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
	animation-fill-mode: both;
    -webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
    -webkit-animation-delay: calc(0.1s * attr(data-animation-offset number 1));
	-o-animation-delay: calc(0.1s * attr(data-animation-offset number 1));
	animation-delay: calc(0.1s * attr(data-animation-offset number 1));
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}
/****banner-sec****/
.banner-sec {
	position: relative;
}
.banner-video, .each-banner {
	height: 924px;
}
.banner-video video {
    height: 100%;
    display: block;
    object-fit: cover;
}
.banner-slider {
	height: 100%;
}
.banner-sec .swiper-slide {
	height: auto;
}
.each-banner {
    border-radius: 20px;
    overflow: hidden;
}
.each-banner img {
	height: 100%;
	object-fit: cover;
}
.banner-content {
    position: absolute;
    left: 0;
	bottom: 145px;
    z-index: 2;
    width: 100%;
}
.banner-content .common-btn:hover {
	background-color: #FAF3E6;
	border-color: #FAF3E6;
	color: #374221;
}
.banner-content img {
	margin-bottom: 35px;
	width: 293px;
}
.banner-content .border-btn {
	margin-left: 8px;
}
.banner-content p {
  	color: #FAF3E6;
  	margin: 15px 0 46px;
}
.banner-content .common-btn {
	min-width: 150px;
	text-align: center;
}
/****product-sec****/
.product-sec {
	padding: 105px 0 80px;
	position: relative;
}
.product-heading {
	margin-bottom: 40px;
}
.product-heading p {
	color: rgba(53, 67, 35, 0.7);
	max-width: 830px;
	margin: 15px auto 0;
}
.product-tab-btn .product-tab-btn-wrap {
	border-bottom: 0;
}
.product-tab-btn-wrap button {
	border: 0;
	background-color: transparent;
}
.product-tab-btn .product-tab-btn-wrap .text-item span {
	position: relative;
}
.product-tab-btn .product-tab-btn-wrap .text-item button {
    border: 0;
    background-color: transparent;
    text-transform: none;
    color: rgba(53, 67, 35, 0.5);
    letter-spacing: normal;
    width: 100%;
    text-align: left;
    position: relative;
    padding: 9px 23px 10px 23px;
    border: 1px solid rgba(53, 67, 35, 0.5);
    border-radius: 100px;
	text-align: center;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.product-tab-btn .product-tab-btn-wrap {
    column-gap: 8px;
    justify-content: center;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.product-tab-btn .product-tab-btn-wrap .text-item  {
	font-family: 'OpenSans-SemiBold';
	font-size: 1.4rem;
    margin: 0;
    word-break: break-word;
	width: 12%;
	line-height: 20px;
}
.product-tab-btn .product-tab-btn-wrap .text-item a {
	color: rgba(53, 67, 35, 0.5);
}
.product-tab-btn .product-tab-btn-wrap .text-item button:hover {
	background-color: #354323;
	color: #fff;
}
/* .product-tab-btn .product-tab-btn-wrap .text-item:hover button {
	color: #fff;
} */
.product-tab-btn .product-tab-btn-wrap .text-item button.active {
	background-color: #354323;
}
.product-tab-btn .product-tab-btn-wrap .text-item.active button {
	color: #fff;
	background-color: #354323;
}
/****product-tab-content****/
.product-slider {
	margin-top: 80px;
}
.each-product-slider-info {
    position: absolute;
    left: 16px;
    top: 15px;
    padding: 1px 11px 3px 11px;
    width: 100%;
    border-radius: 30px;
    border: 1px solid rgba(53, 67, 35, 0.50);
    background: rgba(53, 67, 35, 0.10);
    backdrop-filter: blur(10px);
	max-width: max-content;
}
.each-product-slider-info p {
	font-family: 'OpenSans-SemiBold';
	font-size: 1.4rem;
	line-height: 20px;
	color: #8C8E72;
	margin-bottom: 0;
	text-align: center;
}
.each-product-slider-img {
	border-radius: 20px;
	background-color: #F6EAD2;
	border: 1px solid #F6EAD2;
	padding: 35px 110px;
}
.each-product-slider-img img {
	margin-top: 20px;
}
.product-top-mark {
	position: absolute;
	left: 0;
	top: -15%;
	pointer-events: none;
	z-index: -1;
}
.product-right-mark {
	position: absolute;
	right: 0;
	top: 20%;
	pointer-events: none;
	z-index: -1;
}
.product-btm-mark {
	position: absolute;
	left: 0;
	bottom: -5%;
	pointer-events: none;
	z-index: -1;
}
.product-btn {
	text-align: center;
	margin-top: 57px;
}
.each-product-slider-content {
	margin-top: 16px;
}
.each-product-slider-content h6 {
	color: #1D1D1D;
	font-size: 2rem;
	line-height: normal;
	font-family: 'Cinzel-Bold';
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.each-product-slider-content p {
	color: #354323;
	margin: 6px 0 14px;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
/****service-sec****/
.service-sec {
	position: relative;
}
.service-bg {
    padding: 80px 0;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
}
.service-bg::after {
	background: linear-gradient(180deg, rgba(17, 17, 17, 0.40) 0%, rgba(17, 17, 17, 0.70) 100%);
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}
.service-title,
.service-slider {
	position: relative;
	z-index: 2;
}
.service-title {
	text-align: center;
	margin-bottom: 52px;
}
.service-title h2 {
    color: #fff;
    margin: 25px 0 20px;
}
.service-title p {
    color: #fff;
    margin: 0 auto;
    max-width: 1095px;
}
.each-service {
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(15px);
	padding: 28px 32px;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
	height: 100%;
}
.each-service:hover {
	background-color: #354323;
}
.each-service-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 67px;
}
.each-service-vector {
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.20);
	background: rgba(255, 255, 255, 0.10);
	padding: 10px 12px;
	width: 100%;
	max-width: max-content;
}
.each-service-info h3 {
	color: #fff;
}
.each-service-info p {
	color: rgba(255, 255, 255, 0.7);
	margin-top: 10px;
	margin-bottom: 0;
}
.each-service-vector img {
	width: 22px;
	height: 24px;
}
.service-slider .swiper-slide {
    height: auto;
}

/****about-sec****/
.about-sec {
	position: relative;
	padding: 109px 0 136px;
}
.about-mark {
	position: absolute;
	left: 0;
	top: -16%;
	pointer-events: none;
	z-index: -1;
}
.about-img img{
	border-radius: 20px;
	overflow: hidden;
}
.about-img {
    padding-right: 68px;
}
.about-info p {
	margin: 15px 0 37px;
}
.about-info ul {
	margin-bottom: 0;
}
.about-info li {
    font-size: 2rem;
    font-family: 'Cinzel-Bold';
    color: #354323;
    line-height: normal;
    position: relative;
    letter-spacing: normal;
    padding-left: 23px;
    border-bottom: 1px solid rgba(53, 67, 35, 0.15);
    margin-bottom: 27px;
    padding-bottom: 27px;
}
.about-info li:last-child {
	margin-bottom: 0;
}
.about-info li::after {
	content: '';
	position: absolute;
	background-image: url(../images/bullet.svg);
	height: 10px;
	width: 10px;
	background-size: 9px;
	left: 0;
	top: 8px;
	background-repeat: no-repeat;
	background-position: center;
}
.about-info {
  	padding-left: 10px;
}
.about-info .common-btn {
	margin-top: 54px;
}
/****faq-sec****/
.faq-sec {
	padding-bottom: 118px;
	position: relative;
}
.faq-mark {
	position: absolute;
	right: 0;
	pointer-events: none;
	top: -12%;
	z-index: -1;
}
.faq-wrap {
	max-width: 1148px;
	margin: 0 auto;
}
.faq-title {
	margin-bottom: 48px;
	text-align: center;
}
.faq-title h2 {
	color: #090A0E;
}
.faq-title h6 {
	color: #090A0E;
	font-family: 'open_sansregular';
	font-size: 1.6rem;
	line-height: 24px;
	margin-top: 6px;
}
.acc-block ul {
	padding: 0 ;
	margin: 0;
	list-style: none;
}
.acc-block li {
	border-radius: 15px;
	border: 1.5px solid #F6EAD2;
    background-color: #F6EAD2;
	padding: 25px 35px 27px 35px;
	margin-bottom: 25px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.acc-block li:last-child {
	margin-bottom: 0;
}
.acc-block li>*:not(:first-child) {
	display: none;
}
.acc-block li h6::after {
    position: absolute;
    height: 43px;
    width: 43px;
    background-image: url(../images/acc-down-arrow.svg);
    background-size: 12px;
    content: "";
    top: -9px;
    right: 0;
    transition: all 0.5s;
	background-repeat: no-repeat;
	background-position: center;
	border: 1px solid #354323;
	border-radius: 100%;
}
.show_accordian h6::after {
    background-image: url(../images/acc-up-arrow.svg) !important;
	background-color: #354323;
	top: 21px !important;
}
.acc-block h6 {
	position: relative;
	text-transform: none;
	cursor: pointer;
	padding-right: 28px;
	color: #090A0E;
	font-family: 'OpenSans-SemiBold';
	font-size: 1.6rem;
	line-height: 24px;
	padding-right: 40px;
}
.acc-block p {
    margin-top: 15px;
    margin-bottom: 0;
    max-width: 945px;
    width: 100%;
    color: rgba(9, 10, 14, 0.70);
    font-size: 1.4rem;
    line-height: 22px;
    padding-right: 50px;
}
.acc-block li:hover::after {
	background-image: url(../images/acc-up-arrow.svg) !important;
}
/****footer-area****/
.footer-area {
	position: relative;
}
.footer-mark {
	position: absolute;
	left: 0;
	top: -35%;
	pointer-events: none;
	z-index: -1;
}
.footer-wrap {
    border-radius: 20px;
    background: #354323;
    overflow: hidden;
	padding: 56px 0 22px;
}
.each-footer-top h6 {
	color: rgba(255, 255, 255, 0.70);
	font-family: 'open_sansregular';
	font-size: 1.6rem;
	line-height: 24px;
	margin-bottom: 7px;
}
.each-footer-top a {
	font-size: 2rem;
	color: #fff;
	font-family: 'Cinzel-Bold';
	line-height: normal;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-footer-top td {
	font-size: 2rem;
	color: #fff;
	font-family: 'Cinzel-Bold';
	line-height: normal;
}
.each-footer-top td:nth-child(even) {
	padding-left: 10px;
}
.each-footer-top li {
	font-size: 2rem;
	color: #fff;
	font-family: 'Cinzel-Bold';
	line-height: normal;
}
.footer-top-right {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    flex-wrap: wrap;
	padding-left: 17%;
}
.each-footer-top a:hover {
	color: #F6EAD2;
	text-decoration: underline;
}
.each-footer-opening-time {
	margin-top: 30px;
}
.each-footer-top ul {
	margin-bottom: 0;
}
.each-footer-call {
	margin-top: 12px;
}
.footer-btm {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 43px;
	padding-top: 20px;
}
.footer-credit h6 {
	color: rgba(255, 255, 255, 0.70);
	font-family: 'open_sansregular';
	font-size: 1.4rem;
	line-height: 22px;
}
.footer-privacy a {
	color: rgba(255, 255, 255, 0.70);
	font-family: 'open_sansregular';
	font-size: 1.4rem;
	line-height: 22px;
}
.footer-privacy a:hover {
	color: #F6EAD2;
}
.footer-logo img {
	width: 170px;
}
/***************************************************faq***************************************************/
/****inner-banner-sec****/
.inner-banner-sec {
	position: relative;
}
.inner-banner-content {
    position: absolute;
    left: 0;
    bottom: 37%;
    z-index: 2;
    width: 100%;
	text-align: center;
}
.each-inner-banner {
    border-radius: 20px;
    overflow: hidden;
	height: 500px;
}
.each-inner-banner img {
	height: 100%;
	object-fit: cover;
}
.inner-banner-mark {
    position: absolute;
    right: 0;
    bottom: -30%;
    pointer-events: none;
    z-index: -1;
}
/****faq-page****/
.faq-page .faq-title h2 {
	color: #090A0E;
}
.faq-page .faq-sec {
  	padding-top: 87px;
	padding-bottom: 87px;
}
.faq-page .acc-block h6 {
	font-family: 'OpenSans-SemiBold';
}
/***************************************************faq***************************************************/
/****over-ons-page****/
.over-ons-page .inner-banner-mark {
	bottom: -50%;
}
/****counter-sec****/
.counter-sec {
	padding-top: 25px;
}
.each-counter {
    border-radius: 10px;
    background-color: #F6EAD2;
    overflow: hidden;
    height: 100%;
    text-align: center;
    padding: 15px;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.each-counter h2 strong {
	font-weight: normal;
}
.each-counter-value {
	display: flex;
	align-items: center;
	justify-content: center;
}
.each-counter h6 {
	font-size: 1.6rem;
	font-family: 'OpenSans-SemiBold';
	color: #354323;
	line-height: 24px;
	margin-top: 5px;
}
.counter .col-lg-3 {
	padding: 0 12px;
}
.counter .row {
	margin: 0 -12px;
	row-gap: 12px;
}
/****over-ons-page****/
.over-ons-page .about-sec {
  	padding: 55px 0 58px;
}
.over-ons-page .about-img {
    padding-left: 30px;
	padding-right: 0;
}
.over-ons-page .about-info {
	padding-right: 30px;
}
.over-ons-page .about-info h2 {
	margin-bottom: 20px;
}
.over-ons-page .about-info p {
	/* font-family: 'OpenSans-Bold'; */
	max-width: 695px;
	width: 100%;
	margin-top: 0;
	margin-bottom: 25px;
}
.over-ons-page .about-info p:last-child {
	margin-bottom: 0;
}
.over-ons-service-mark {
	position: absolute;
	left: 0;
	bottom: -15%;
	pointer-events: none;
	z-index: -1;
}
.overons-top-slide{
	border-radius: 20px;
	overflow: hidden;
}
/****over-ons-product-sec****/
.over-ons-product-sec {
  	padding: 62px 0 66px;
}
.over-ons-product-title {
	text-align: center;
	margin-bottom: 50px;
}
.over-ons-product-slider .swiper-button-next {
	right: -2.5%;
}
.over-ons-product-slider .swiper-button-prev {
	left: -2.5%;
}
/****over-ons-gallery****/
.over-ons-gallery {
	padding-bottom: 9px;
}
.each-gal-img {
	border-radius: 20px;
	overflow: hidden;
}
.each-gal-img img {
	height: 100%;
	object-fit: cover;
	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.each-gal-big {
	height: 440px;
	margin-bottom: 9px;
}
.each-gal-small {
	height: 302px;
}
.over-ons-right-gal .col-6 {
	padding: 0 4.5px;
}
.over-ons-right-gal .row {
	margin: 0 -4.5px;
}
.over-ons-left-gal .col-6 {
	padding: 0 4.5px;
}
.over-ons-left-gal .row {
	margin: 0 -4.5px;
}
.over-ons-gallery .row {
	margin: 0 -4.5px;
	row-gap: 7px;
}
.each-gal-img:hover img {
    transform: scale(1.1);
}
.each-gal-btm-big {
	margin-top: 9px;
	margin-bottom: 0;
}
/***************************************************aanbod-list***************************************************/
/****inner-header****/
.inner-header .header-wrap {
	background-color: #374221;
	border-color: #374221;
}
.inner-header .header-btn .common-btn {
    top: 3px;
    border-color: #FAF3E6;
}
.aanbod-list-sec {
	padding: 200px 0 53px;
}
.aanbod-list-left .col-lg-3 {
	width: 16%;
	padding: 0 5px;
}
.aanbod-list-left .row {
	margin: 0 5px;
	row-gap: 10px;
}
.each-aanbod-list-part {
    /* padding: 7px 15px 9px; */
    border: 1px solid rgba(53, 67, 35, 0.5);
    background-color: transparent;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
	border-radius: 100px;
	overflow: hidden;
	font-family: 'OpenSans-SemiBold';
	font-size: 1.4rem;
	color: rgba(53, 67, 35, 0.5);
	line-height: 20px;
	cursor: pointer;
}
.category-list-btn {
	padding: 7px 15px 9px;
	height: 100%;
	width: 100%;
	display: block;
}
.each-aanbod-list-part.active {
    background-color: #354323;
    border: 1px solid #354323;
	color: #fff;
}
.aanbod-list-sec .form__checkbox {
    opacity: 0;
    position: absolute;
}
.filter-sort .select-style {
    width: 100%;
    border-radius: 100px;
    padding: 7px 35px 9px 15px;
	border: 1px solid rgba(53, 67, 35, 0.5);
    background: url(../images/filter-arrow.svg) no-repeat 85% center / 12px;
    background-color: transparent;
    appearance: none;
    line-height: 20px;
	font-family: 'OpenSans-SemiBold';
	font-size: 1.4rem;
	color: rgba(53, 67, 35, 0.5);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    cursor: default;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
	text-align: center;
}
.filter-sort .select-style.show {
    border-radius: 10px 10px 0 0;
}
.filter-sort .select-style:hover,
.filter-sort .select-style.show {
	background-color: #354323;
	color: #fff;
	background-image: url(../images/filter-white-arrow.svg);
}
.filter-sort .filter-content::-webkit-scrollbar {
	background-color: #dbdbdb;
	width: 10px;
}
.filter-sort .filter-content::-webkit-scrollbar-thumb {
	background-color: #999999;
}
.filter-sort .filter-content.show-div {
    display: block;
}
.filter-sort .sorteren_op-filter .form-check-input {
    display: none;
}
.filter-sort {
    display: flex;
    align-items: center;
    justify-content: end;
}
.filter-sort .aanbod-filter {
    width: 158px;
}
.filter-sort .filter-content {
    display: none;
    background-color: #354323;
    padding: 10px 10px 15px;
    z-index: 2;
	color: #fff;
    border: 1px solid #354323;
    border-top: 0;
    border-radius: 0 0 5px 5px;
    margin-top: -5px !important;
    cursor: default;
    max-height: 230px;
    overflow-y: auto;
    z-index: 999;
	font-family: 'OpenSans-SemiBold';
}
.filter-sort .dropdown-menu.show {
    display: block;
}
.filter-sort label {
    color: #fff;
    margin-bottom: 10px;
    display: block;
    width: 100%;
    z-index: 2;
    font-size: 1.4rem;
    cursor: pointer;
}
/****aanbod-product-sec****/
.aanbod-product-sec {
	padding-bottom: 93px;
}
.aanbod-product-sec .col-xl-3 {
	padding: 0 16px;
}
.aanbod-product-sec .row {
	margin: 0 -16px;
	row-gap: 38px;
}
.aanbod-product-sec .each-product-slider-img {
	padding: 35px 130px;
}
/***************************************************contact***************************************************/
/****contact-page****/
.contact-page .inner-banner-mark {
    bottom: -61%;
}
.contact-page .form-sec .form-wrap {
    padding: 72px 0;
}
.contact-page .footer-mark {
	display: none;
}
/****map-area****/
.map-area {
	padding-bottom: 9px;
	position: relative;
}
.map-mark {
    position: absolute;
    left: 0;
    top: -18%;
    z-index: -1;
    pointer-events: none;
}
.map {
	height: 484px;
	border-radius: 20px;
	overflow: hidden;
}
/***************************************************aanbod-dtl***************************************************/
/****bk-btn-sec****/
.bk-btn-sec {
    padding-top: 186px;
}
.bk-btn-right-two .common-btn{
	background-color: transparent;
	color: rgba(53, 67, 35, 0.5);
	border: 1px solid rgba(53, 67, 35, 0.50);
}
.bk-btn-left .common-btn{
	background-color: transparent;
	color: rgba(53, 67, 35, 0.5);
	border: 1px solid rgba(53, 67, 35, 0.50);
	border-radius: 100px;
	padding: 7px 23px;
}
.bk-btn-right{
	display: flex;
	column-gap: 9px;
	justify-content: end;
}
/****aanbod-bk-btn-sec****/
.aanbod-bk-btn-sec {
    margin-top: -46px;
}
.aanbod-bk-btn-sec .common-btn{
	min-width: 192px;
	border-radius: 100px;
	font-size: 1.4rem;
	text-align: center;
	line-height: 20px;
	padding: 9px 18px;
}
.bk-btn-right-one .common-btn {
	background-color: transparent;
    color: rgba(53, 67, 35, 0.5);
    border: 1px solid rgba(53, 67, 35, 0.50);
}
.bk-btn-left .common-btn:hover {
	background-color: #374221;
	border-color: #374221;
	color: #FAF3E6;
}
.aanbod-bk-btn-sec .bk-btn-right-one .common-btn.active {
	background-color: #354323;
	color: #fff;
}
/* .aanbod-bk-btn-sec .bk-btn-right-one .common-btn.active:hover {
	background-color: transparent;
    color: rgba(53, 67, 35, 0.5);
    border: 1px solid rgba(53, 67, 35, 0.50);
} */
.aanbod-bk-btn-sec .bk-btn-right-one .common-btn:hover {
	background-color: #374221;
	border-color: #374221;
	color: #FAF3E6;
}
/********dtl-top-sec********/
.dtl-top-sec {
	padding-top: 20px;
	overflow: hidden;
	position: relative;
    padding-bottom: 80px;
}
.dtl-top-mark {
	position: absolute;
	right: 0;
	top: -2%;
	pointer-events: none;
	z-index: -1;
}
.dtl-top-sec .col-lg-7{
	width: 53%;
	padding-left: 10px;
	padding-right: 10px;
}
.dtl-top-sec .col-lg-5{
	width: 47%;
	padding-left: 10px;
	padding-right: 10px;
}
.dtl-top-sec .row{
	margin-left: -10px;
	margin-right: -10px;
}
.dtl-top-slider .row{
	margin-left: -10px;
	margin-right: -10px;
}
.dtl-top-sec .col-md-3 {
	width: 23%;
	padding-left: 10px;
	padding-right: 10px;
}
.dtl-top-sec .col-md-9 {
    width: 77%;
	padding-left: 10px;
	padding-right: 10px;
}
.dtl-top-sec .gallery-thumbs .dtl-olivara-slide {
	height: 100%;
	border-radius: 10px;
}
.dtl-top-sec .gallery-thumbs .dtl-olivara-slide img { 
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
    overflow: hidden;
}
.gallery-thumbs .swiper-slide .dtl-olivara-slide {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.dtl-olivara-slide {
    border-radius: 20px;
    overflow: hidden;
	background-color: #F6EAD2;
	padding: 38px 180px;
}
.dtl-olivara-slide.thumb-img{
	background-color: #F6EAD2;
	padding: 15px 55px;
	border-radius: 10px;
}
.gallery-thumbs {
    position: relative;
}
.gallery-thumbs-wrapper .row {
    row-gap: 20px;
    height: 100%;
	flex-direction: column;
}
.gallery-thumbs {
    height: 100%;
    object-fit: cover;
}
.dtl-top-content {
    border-radius: 20px;
    background: #F6EAD2;
	padding: 18px 50px 21px;
	height: 100%;
}
.dtl-top-content .each-product-info h1 {
    margin-bottom: 45px;
	color: #354323;
}
.aanbod-contact-info {
    padding-left: 5px;
}
.aanbod-contact-info p {
    margin-bottom: 3px;
}
.product-price-info{
	display: flex;
	align-items: center;
	column-gap: 25px;
}
.product-price-info p{
	margin-bottom: 0;
	color: rgba(53, 67, 35, 0.80);
}
.product-price-info p strong{
	font-size: 1.6rem;
	color: #354323;
	line-height: 24px;
	font-weight: normal;
	font-family: 'OpenSans-SemiBold';
}
.product-price-info{
	margin-bottom: 44px;
}
.product-text-btm-info{
	margin-top: 54px;
}
.each-product-info p{
	font-size: 1.4rem;
	line-height: 22px;
}
.product-text-btm-info p strong{
	font-weight: normal;
	font-family: 'OpenSans-SemiBold';
}
.product-text-btm-info p{
	font-size: 1.6rem;
	color: #354323;
	line-height: 24px;
	margin-bottom: 7px;
}
.photo-remain {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	border-radius: 10px;
	background: rgba(53, 67, 35, 0.70);
    height: 100%;
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}
.gallery-thumbs-wrapper .col-12 {
	height: 22.9%;
}
.dtl-olivara-slide.thumb-img {
	position: relative;
	height: 100%;
}
.dtl-olivara-slide.thumb-img img {
	height: 100%;
	object-fit: cover;
}
.photo-remain p{
	color: #FFF;
	margin-bottom: 0;
}
.aanbod-top-slider .dtl-olivara-slide {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.aanbod-top-slider .swiper-slide {
	height: auto;
}
/****aanbod-dtl-top-product-info****/
.aanbod-dtl-top-product-info{
	background: #F6EAD2;
	padding: 41px;
	border-radius: 20px;
	height: 100%;
	display: none;
}
.aanbod-dtl-top-product-info h3{
	color: #354323;
	padding-bottom: 35px;
}
.aanbod-dtl-top-product-info-wrap ul li{
	border-radius: 10px;
	background: #FAF3E6;
	padding: 19px 35px;
	display: flex;
	justify-content: space-between;
	margin-bottom: 8px;
	column-gap: 25px;
	align-items: center;
}
.aanbod-dtl-top-product-info-wrap ul{
	margin-bottom: 0;
}
.aanbod-dtl-top-product-info-wrap ul li h6{
	font-size: 1.6rem;
	color: rgba(0, 0, 0, 0.70);
	line-height: 24px;
	font-family: 'OpenSans-SemiBold';
	width: 30%;
}
.aanbod-dtl-top-product-info-wrap ul li p{
	margin-bottom: 0;
	width: 31.5%;
}
/*****form-sec*****/
.form-sec .form-wrap {
    padding: 33px 0 85px;
}
.form-sec{
	position: relative;
}
.form-mark {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	z-index: -1;
}
.form-txt h2 {
    margin-bottom: 16px;
}
.form-info {
    margin-top: 32px;
}
.form-txt {
    padding: 50px 27px 70px 40px;
    max-width: 562px;
	border-radius: 20px;
	background: #F6EAD2;
}
.form-block .form-group {
	margin-bottom: 20px;
}
.form-block .form-style {
	resize: none;
	border: none;
    font-family: 'open_sansregular';
    font-size: 1.6rem;
    padding: 18px 30px;
	border-radius: 10px;
	background: #FAF3E6;
	color: #354323;
	line-height: 24px;
}
.form-block .form-style::placeholder{
	color: rgba(16, 24, 36, 0.50);
}
.form-block .form-style:-ms-input-placeholder {
	color: rgba(16, 24, 36, 0.50);
}
.form-block .form-style::placeholder {
	color: rgba(16, 24, 36, 0.50);
}
.form-block .form-style:focus {
    box-shadow: none;
	border: none;
}
.form-block textarea.form-style {
    min-height: 137px;
}
.form-block {
	border-radius: 20px;
	background: #F6EAD2;
	padding: 52px 80px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.each-form-left-info-part{
	display: flex;
	align-items: center;
	column-gap: 18px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	border-bottom: 1px solid rgba(53, 67, 35, 0.15);
	padding: 22px 0;
	max-width: 452px;
}
.each-form-left-info-part:last-child{
	border-bottom: none;
	padding-bottom: 0;
}
.form-left-info h6{
	color: #354323;
	font-size: 1.6rem;
	line-height: 24px; 
	font-family: 'open_sansregular';
	margin-bottom: 2px;
}
.form-left-info p{
	color: #354323;
	margin-bottom: 28px;
}
.form-wrap .col-lg-5{
	width: 40%;
	padding-left: 10px;
	padding-right: 10px;
}
.form-wrap .col-lg-7{
	width: 60%;
	padding-left: 10px;
	padding-right: 10px;
}
.form-wrap .row{
	margin-left: -10px;
	margin-right: -10px;
}
.form-block button{
	margin-top: 7px;
}
.each-form-left-info a:hover {
	color: rgba(53, 67, 35, 0.7);
}
.each-form-left-info a{
	color: rgba(0, 0, 0, 0.70);
	font-size: 1.6rem;
	line-height: 24px;
	font-family: 'open_sansregular';
}
.each-form-left-info em{
	font-style: normal;
	color: rgba(0, 0, 0, 0.70);
	font-size: 1.6rem;
	line-height: 24px;
	font-family: 'open_sansregular';
}
.each-form-left-info-img {
	height: 50px;
	width: 50px;
	border: 1px solid rgba(0, 0, 0, 0.50);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	overflow: hidden;
}
.form-block .form-style.photo_upload, 
.form-block .form-style.foto_upload {
	color: rgba(255, 255, 255, 0.70);
}
/****aanbod-dtl-tab-sec****/
.dtl-tab-sec .tab-btn ul.tabs li {
    position: relative;
    display: inline-block;
    word-break: break-word;
	border-radius: 100px;
    cursor: pointer;
	border-radius: 100px;
	border: 1px solid rgba(53, 67, 35, 0.50);
	background: transparent;
	color: rgba(53, 67, 35, 0.50);
	font-size: 1.4rem;
	line-height: 20px;
	min-width: 148px;
	text-align: center;
	padding: 9px 18px;
}
.dtl-tab-sec .tab-btn ul.tabs li:nth-child(2){
	min-width: 178px;
	text-align: center;
}
.dtl-tab-sec .tab-content p{
	font-size: 1.4rem;
}
.dtl-tab-sec .tab_content {
    display: none;
}
.dtl-tab-sec .tab_drawer_heading{
    display: none;
}
.dtl-tab-sec .tab_drawer_heading{
	display: none;
}
.dtl-tab-sec .tab-btn .tabs {
    display: flex;
    column-gap: 21px;
    max-width: max-content;
    padding: 10px 0;
    overflow: hidden;
    margin-bottom: 20px;
}
.dtl-tab-sec .tab-btn .tabs li.active{
	border-radius: 100px;
	background: #354323;
	color: #FFF;
}
.dtl-tab-sec .kenmerken-tab{
	overflow: hidden;
}
.dtl-tab-sec .tab-btn .common-btn:hover{
	background: #354323;
	color: #FFF;
}
/****related-product-sec****/
.related-product-sec {
  	padding-bottom: 75px;
}
.related-product-title {
  	text-align: center;
  	margin-bottom: 75px;
}
.related-product-slider .swiper-button-next {
    right: -2.5%;
}
.related-product-slider .swiper-button-prev {
    left: -2.5%;
}
.related-product-slider .common-arrow {
	top: 41%;
}
/****aanbod-dtl-page****/
.aanbod-dtl-page .footer-mark {
    left: auto;
    right: 0;
}
/***************************************************popup***************************************************/
.modal-area .modal-dialog {
    max-width: 63%;
    margin: 8% auto 0;
}
.modal-area .modal {
	background: rgba(246, 234, 210, 0.6);
}
.modal-area .modal-content {
    border: 0;
	border-radius: 0;
    background-color: transparent;
	position: relative;
}
.modal-content-wrap {
    border-radius: 0;
    overflow: hidden;
}
.pop-up-image {
	height: 100%;
	border-radius: 20px;
	overflow: hidden;
}
.pop-up-image img {
	height: 100%;
	object-fit: cover;
}
.modal-content-wrap .col-lg-5 {
	width: 46%;
}
.modal-content-wrap .col-lg-7 {
	width: 54%;
}
.modal-area .popup-content {
    padding: 50px 75px;
	background-color: #354323;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
}
.popup-mark {
	position: absolute;
	right: 0;
	top: 2px;
	pointer-events: none;
	z-index: 0;
}
.modal-area .popup-content p {
	margin: 30px 0 32px;
	color: rgba(255, 255, 255, 0.7);
}
.modal-area .popup-content .common-btn {
	background-color: rgba(255, 255, 255, 0.1);
	color: #FAF3E6;
}
.modal-area .popup-content .common-btn:hover {
	background-color: #FAF3E6;
	color: #354323;
}
/**********************************STYLE FOR DEVELOPERS***************************************/

/*******loader*****/
#loader_section{
	display:none;
	width:100%;
	position: fixed;
	top: 0;
	background: #000000b8;
	z-index: 9999999;
	height: 100vh;
	padding: 30vh 0px;
  }
  #loader_section p{
	color: #fff;
	font-size: 1.8rem;
	text-align: center;
  }
  #loader_section img{
	width: 100px;
	margin-bottom: 25px;
  }
  
  /*********Morgen Footer************/
  .morgeninternet-footer {
	  background: #000000;
	  width: 100%;
	  height: 50px;
	  display: block;
	  text-align: center;
	  transition: 0.3s all;
	  max-width: calc(100% - 14px);
	  margin: 10px auto 0;
	  border-radius: 10px;
  }
  
  .morgeninternet-footer:hover {
	  background: #202020;
	  transition: 0.3s all;
  }
  
  .morgeninternet-footer > img {
	  height: 35px;
	  padding-top: 15px;
  }
  
  
  /****aanbod dtl****/
  .kenteken_np{
	  background-image: url(../images/kenteken_plaat/kenteken_plaat.svg);
	  background-repeat: no-repeat;
	  background-position: left;
	  padding: 4px 10px 6px 20px;
	  color: #000;
	  background-size: contain;
  }
  .star_icon{
	  margin-bottom: 30px;
  }
  .star_icon h4{
	  padding-bottom: 10px;
	  text-transform: uppercase;
	  padding-top: 15px;
	  margin-bottom: 15px;
	 /* color: #1c1c1c;*/
	  border-bottom: 1px solid #181716;
	  padding-bottom: 10px;
  }
  .star_icon p img{
	  width: 15px;
	  margin-top: -3px;
	  margin-right: 5px;
  }
  .star_icon p{
	  padding-bottom: 6px;
	  word-break: break-word;
  }
  .photo_contnt li img{
	  width: 15px;
	  margin-left: 5px;
  }
  .star_icon h3 {
	  margin: 40px 0 30px;
  }
  .aanbod-detail-tab-sec .tab-content .star_icon p {
	  margin: 0;
  }
  .bullet-panel h3 {
	  margin-bottom: 30px;
  }
  .cursor{
	  cursor:pointer;
  }
  .aanbod-loader {
	  width: 45px;
	  height: 40px;
	  background: linear-gradient(#1F221F calc(1*100%/6),#fff 0 calc(3*100%/6),#1F221F 0),
				linear-gradient(#1F221F calc(2*100%/6),#fff 0 calc(4*100%/6),#1F221F 0),
				linear-gradient(#1F221F calc(3*100%/6),#fff 0 calc(5*100%/6),#1F221F 0);
	  background-size: 10px 400%;
	  background-repeat: no-repeat;
	  animation: matrix 1s infinite linear;
	}
	@keyframes matrix {
	  0% {
		background-position: 0% 100%, 50% 100%, 100% 100%
	  }
	
	  100% {
		background-position: 0% 0%, 50% 0%, 100% 0%
	  }
	}
	.load_aanbod{
	  justify-content: center;
	  display: flex;
	  column-gap: 30px;
	  align-items: center;
	  color: #1F221F;
	}
  
  
  .carpass-img {
	  width: 115px;
  }
  
  .popup .popuptext {
	  display: none;
	  width: 200px;
	  background-color: #25D366;
	  color: #fff;
	  text-align: center;
	  border-radius: 20px;
	  padding: 8px 0;
	  position: absolute;
	  z-index: 1;
	  bottom: 3px;
	  right: 71px;
	  font-size: small;
  }
  
  .notifcation {
	  position: relative;
  }
  
  .alert-number {
	  display: none;
	  position: absolute;
	  bottom: 27px;
	  right: 0px;
	  border-radius: 50%;
	  width: 17px;
	  height: 17px;
	  background-color: red;
	  color: white;
	  text-align: center;
	  font-size: small;
	  animation: shake 0.5s;
	  animation-iteration-count: 1;
  }
  
  @media screen and (max-width: 600px) {
	  .popuptext {
		  right: 60px !important;
	  }
  }
  @media (max-width : 767.98px){
	  .fixed-whatsapp-icon{
		  display: none;
	  }
  }
  /* .each-service:hover .each-service-arrow .common-arrow-part{
	  background-color: #FAFAFA;
  } */
  .privacy_section h2{
	  padding-top: 85px;
  }
  /* .share-social-media-button{
	  padding: 6px 9px;
  } */
  /* @media(max-width: 519px) and (min-width: 416px){
	  .calculator{
		  height: 1670px !important;
	  }
  }
  @media(max-width: 415px){
	  .calculator{
		  height: 1826px !important;
	  }
  } */
  
  .calsty {
	  border: 0;
	  width: 100%;
	  height: 603px;
	  background: transparent;
  }
  /* @media(max-width: 519px){
	  .calsty{
		  height: 1036px !important;
	  }
  } */
  .fix-wp {
	  position: fixed;
	  bottom: 50px;
	  right: 50px;
	  z-index: 98;
	  width: 52px;
	  height: 52px;
	  background-color: #25D366;
	  border-radius: 100%;
  }
  .fix-wp a {
	  height: 100%;
	  width: 100%;
	  display: flex;
	  align-items: center;
	  justify-content: center;
  }
  .fix-wp img {
	  width: 25px;
  }

  .privacy_section {
    padding: 60px 0;
}
.privacy-page .aanbod-footer-svg-mark {
	display: none;
}
.thank-you-page-page .banner-sec {
	margin-bottom: 10px;
}
.thank-you-page-page .banner-sec h1 {
	margin-bottom: 15px;
}


.share-btn {
    /* display: table;
    margin-left: auto; */
    /* margin-top: 2px; */
}
.share-social-media-button .a2a_dd {
    border: 1px solid rgba(53, 67, 35, 0.50);
    border-radius: 100%;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.share-social-media-button .a2a_dd svg {
    margin-top: -2px;
    margin-left: 3px;
}



