@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
--primary: #FE7743;
--secondary: #0f1518;
--background: #FBE4D6;
--titles: #273F4F;
--text: #5c5c5c;

--wrapper-width-desktop: 1200px;
--wrapper-width-mobile: 90%;
}

* {
box-sizing: border-box;
margin: 0px;
}

body {
margin: 0px;
padding: 0px;
font-family: 'Plus Jakarta Sans';
}

.material-symbols-rounded {
font-variation-settings: 
'FILL' 0, 
'wght' 300, 
'GRAD' 0, 
'opsz' 48;
}


#wrapper {
max-width: var(--wrapper-width-desktop);
margin: 0px auto;
}

h2 {
font-size: 35px;
line-height: 45px;
margin-bottom: 10px;
}
h4 {
margin-bottom: 15px;
}
p {
margin: 20px 0;
}
p,li {
line-height: 27px;
font-size: 17px;
color: var(--text);
}
ul {
padding-left: 0px;
}
li {
list-style-type: none;
position: relative;
padding-left: 25px;
}
.ul-list-items li {
padding-left: 25px;
}
.content-section li:before,
.ul-list-items li:before {
content: "\f192";
font-family: "Font Awesome 6 Free";
/* font-weight: 900; */
font-size: 14px;
position: absolute;
top: 2px;
left: 0;
color: var(--primary);
}

.btn {
padding: 15px 24px;
display: inline-block;
background-color: var(--primary);
border: 2px solid var(--primary);
text-decoration: none;
color: white;
font-weight: 600;
font-size: 16px;
border-bottom: 2px solid rgba(0,0,0,0.3);
transition: 0.15s;
border-radius: 5px;
}
.btn.reg:after {
content: "\f061";
font-family: "Font Awesome 6 Free";
font-weight: 900;
margin-left: 15px;
font-size: 14px;
}
.btn.sec {
border-color: var(--secondary);
border-bottom: 2px solid rgba(0,0,0,0.3) !important;
color: white;
background-color: var(--secondary);
}
.btn:hover {
border-bottom-color: var(--primary);
transform: translateY(1px);
}
.btn.sec:hover {
border-bottom-color: var(--secondary);
}

.btn.flat {
background-color: unset;
color: var(--titles);
padding-left: unset;
padding-right: unset;
border-color: transparent;
}
.btn.flat:hover {
transform: unset;
}
.btn.flat:hover:after {
margin-left: 15px;
background-color: var(--titles);
color: white;
}
.btn.flat:after {
content: "\f061";
font-family: "Font Awesome 6 Free";
font-weight: 900;
margin-left: 10px;
font-size: 14px;
min-width: 25px;
min-height: 25px;
border-radius: 50%;
display: inline-flex;
justify-content: center;
align-items: center;
border: 1px solid var(--titles);
transition: 0.15s;
}

/* --------------------------------- */

.splide__arrow {
background: var(--primary) !important;
}
.splide__arrow svg {
fill: white !important;
}
.splide__slide:before {
content: none !important;
}
.splide__slide {
padding: 0px;
}
.splide__pagination li:before {
content: none !important;
}

.call-float {
border: 4px solid #ffeae1;
background-color: var(--primary);
position: fixed;
right: -63px;
top: 30vh;
text-decoration: none;
color: white;
padding: 13px 13px 25px 13px;
border-radius: 5px;
transform: rotate(-90deg);
}
.call-float i {
margin-right: 10px;
}


#mobile-menu-toggle {
padding: 0px;
background: none;
border: none;
}
#mobile-menu-toggle i {
font-size: 30px;
color: white;
cursor: pointer;
}
header.active #mobile-menu-toggle i {
color: black;
}

header {
padding: 30px 0;
position: fixed;
top: 0;
width: 100%;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
transition: background-color 0.3s ease, box-shadow 0.3s ease;
z-index: 99999;
}
header nav {
max-width: var(--wrapper-width-desktop);
margin: 0px auto;
}
header nav .content {
display: flex;
align-items: center;
justify-content: space-between;
}
header nav .content article .logo {
width: 180px;
}
header nav .content article ul li:before {
content: none;
}
header nav .content article ul li {
padding: 0px;
}
header nav .content article ul li a {
font-weight: 600;
text-decoration: none;
color: white;
letter-spacing: -0.25px;
}
header nav .content article .btn {
color: white;
}
header nav .content article .btn-special h6,
header nav .content article .btn-special h4 {
color: white;
margin: 0px;
}
header nav .content article .btn-special h4 {
margin-top: 5px;
margin-bottom: 0px !important;
}
header nav .content article .btn-special {
margin-left: 25px;
}
header nav .content article .btn-special i {
background-color: var(--primary);
color: white;
}
header nav .content .menu-items-row {
display: flex;
align-items: center;
gap: 25px;
}
header nav .content .right {
display: flex;
}
header nav .content .logo.black {
display: none;
}
/* header active */
header.active {
background-color: white;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
header.active nav .content article ul li a {
color: var(--titles);
}
header.active nav .content .btn {
color: white;
}
header.active nav .content article .btn-special h6,
header.active nav .content article .btn-special h4 {
color: var(--titles);
}

header .sub-menu {
display: none;
background-color: white;
position: absolute;
padding: 20px 25px;
min-width: max-content;
border-radius: 7px;
border: 1px solid rgba(0, 0, 0, 0.1);
grid-gap: 15px;
}
header .sub-menu a {
color: var(--titles) !important;
font-size: 15.5px;
transition: 0.15s;
/* border: 1px solid red; */
}
header .sub-menu a:hover {
color: var(--primary) !important;
}
header .sub-menu a:after {
content: none !important;
}
header .menu-item.items a:after {
content: "\f107";
font-family: "Font Awesome 6 Free";
margin-left: 8px;
}


#hero {
background-image: 
linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.11)), 
url("../img/hero-img.jpg");
background-blend-mode: normal;
background-size: cover;
background-repeat: no-repeat;
background-position: top center;
padding: 200px 0 150px 0;
}
#hero .content {
display: grid;
grid-template-columns: 1fr 320px;
grid-gap: 300px;
}
#hero h1 {
font-size: 50px;
letter-spacing: -1px;
}
#hero h3 {
font-size: 18px;
font-weight: 400;
letter-spacing: 0.25px;
margin: 20px 0 35px 0;
line-height: 30px;
}
#hero article {
color: white;
}
#hero .btn.reg {
margin: 0 20px 15px 0;
}
#hero .btn.sec {
background-color: white;
color: black;
border-color: white;
}
#hero .btn.sec:hover {
border-bottom-color: #fff !important;
}
#hero .card {
background-color: white;
padding: 25px;
color: var(--titles);
border-radius: 5px;
display: none;
}
#hero .card h4 {
color: var(--titles);
font-size: 18px;
margin-bottom: 20px;
font-weight: 900;
}
#hero .card img {
width: 100%;
height: 150px;
object-fit: cover;
border-radius: 10px;
overflow-clip-margin: unset;
}
#hero .card .stats-row {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 20px;
margin-top: 15px;
}
#hero .card .stats-row .material-symbols-rounded {
color: var(--primary);
font-size: 40px;
}
#hero .card .stats-row h5 {
color: var(--titles); 
font-size: 19px;
letter-spacing: -1px;
}
#hero .card .stats-row h6 {
color: #939393;
font-size: 13px;
margin: 6px 0 0 0;
}
.stats-row article {
text-align: center;
}

#hero-services {
margin-top: -50px; 
}
#hero-services .content {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 20px;
}
#hero-services .content .service {
background-color: white;
display: flex;
align-items: center;
padding: 20px 15px;
border-radius: 7px;
/* box-shadow: 5px 8px 13px -6px rgba(0,0,0,0.11);
-webkit-box-shadow: 5px 8px 13px -6px rgba(0,0,0,0.11);
-moz-box-shadow: 5px 8px 13px -6px rgba(0,0,0,0.11); */
border: 1px solid rgba(0, 0, 0, 0.1);
}
#hero-services .content .service p {
font-size: 15px;
margin: 0px;
}
#hero-services .content .service .material-symbols-rounded {
font-size: 60px;
color: var(--primary);
margin-right: 10px;
}
#hero-services .content .service h4 {
font-size: 18px;
margin-bottom: 2px;
}
#hero-services .content .service a {
display: flex;
align-items: center;
text-decoration: none;
color: var(--primary);
font-weight: 600;
margin-top: 10px;
font-size: 15.5px;
}
#hero-services .content .service a i {
margin-left: 10px;
font-size: 13px;
position: relative;
top: 1px;
}

.content-section {
padding: 100px 0;
}
.content-section .content {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
}
.content-section .content article {
flex: 0 0 47%;
}
.content-section .content article ul {
margin: 20px 0;
}
.content-section .content article h4 {
color: var(--primary);
margin-bottom: 10px;
font-size: 20px;
}
.content-section .content article ul li {
line-height: 26px;
margin: 10px 0;
}
.content-section .content article .btn {
margin: 30px 20px 0 0 ;
}
.content-section .content article .img-wrapper {
height: 500px;
width: 100%;
/* border: 1px solid red; */
}
.content-section .content article .img-wrapper img {
width: 100%;
height: 100%;
margin: 0px;
display: block;
border-radius: 12px;
object-fit: cover;
overflow-clip-margin: unset;
}

.usps-slider .splide__track {
margin-top: 60px;
}
.usps-slider .splide__slide,
.usps-slider .splide__slide article {
height: 100%;
}
.usps-slider .splide__pagination {
bottom: -2.5em !important;
}

.services-slider .splide__pagination {
bottom: -2em !important;
}

.content-section .usps-row {
margin-top: 60px;
display: grid !important;
grid-template-columns: repeat(4, 1fr);
/* grid-gap: 25px; */
}
.content-section .usps-row article {
border: 1px solid rgba(0, 0, 0, 0.1);
padding: 20px;
transition: 0.15s;
}
.content-section .usps-row article:hover {
background-color: var(--primary);
}
.content-section .usps-row article:hover .material-symbols-rounded,
.content-section .usps-row article:hover h4,
.content-section .usps-row article:hover p {
color: white;
}
.content-section .usps-row .material-symbols-rounded {
font-size: 50px;
color: var(--primary);
}
.content-section .usps-row p {
margin: 0px;
}

/* content section with background(color) */
.content-section.bgc {
background-color: var(--secondary);
}
.content-section.bgc h2 {
color: white;
}
.content-section.bgc p {
color: white;
font-weight: 300;
}
.content-section.bgc ul li {
color: white;
font-weight: 300;
}
.content-section.bgc .usps-row article {
border: 1px solid rgba(255, 255, 255, 0.3);
}
.content-section.bgc .usps-row article h4 {
color: white;
}
.content-section.bgc .btn.sec {
background-color: white;
color: black;
border-color: white;
}
.content-section.bgc .btn.sec:hover {
border-bottom-color: #fff !important;
}

/* content section floating content block (fcb) */
.content-section.fcb .content article {
flex: 0 0 45%;
}
.content-section.fcb .img-container {
display: flex;
align-items: center;
position: relative;
}
.content-section.fcb .img-container img {
/* width: 90%; */
float: right;
}
.block-float {
background-color: white;
border-radius: 5px;
position: absolute;
left: -70px;
width: 300px;
padding: 25px;
box-shadow: 5px 8px 13px -6px rgba(0,0,0,0.11);
-webkit-box-shadow: 5px 8px 13px -6px rgba(0,0,0,0.11);
-moz-box-shadow: 5px 8px 13px -6px rgba(0,0,0,0.11);
border: 1px solid rgba(0, 0, 0, 0.07);
}
.block-float h6 {
color: var(--primary);
font-size: 15px;
margin-bottom: 10px;
}
.block-float h4 {
color: var(--titles) !important;
}
.block-float ul li:before {
content: '\f00c';
font-weight: bold;
color: #00ba00;
}
.block-float ul li {
color: var(--text) !important;
font-size: 15px;
}
.block-float.pc {
background-color: var(--primary);
border-color: var(--primary);
}
.block-float.pc * ,
.block-float.pc ul li:before {
color: white !important;
}
/* content section reverse content */
.content-section.rev .block-float {
left: unset;
right: -60px;
}

.content-section .pills {
margin-top: 40px;
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 15px;
}
.content-section .pills a,
.content-section .pills span {
padding: 15px 30px;
border-radius: 70px;
background-color: #f2f2f2;
color: var(--secondary);
text-decoration: none;
font-weight: 800;
transition: 0.15s;
}
.content-section .pills a:hover {
color: white;
background-color: var(--primary);
}

/* content section align center */
.content-section.align-c .content {
align-items: center;
}

.usps-bg {
background-image: 
linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
url("../img/waarom-slotenmaker-frits.jpg");
background-blend-mode: normal;
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
padding: 150px 0;
}
.usps-bg .intro {
width: 60%;
}
.usps-bg h2,
.usps-bg .intro-txt {
color: white;
}
.usps-bg .content {
display: grid;
grid-template-columns: repeat(4, 1fr);
margin-top: 50px;
}
.usps-bg .content article {
color: white;
border: 1px solid rgba(255, 255, 255, 0.5);
padding: 30px;
transition: 0.15s;
}
.usps-bg .intro h4 {
color: var(--primary);
margin-bottom: 10px;
font-size: 20px;
}
.usps-bg .content article * {
transition: 0.15s;
}
.usps-bg .content article h4 {
font-size: 18px;
margin-bottom: 10px;
}
.usps-bg .content article p {
color: white;
}
.usps-bg .content article .material-symbols-rounded {
font-size: 50px;
margin-bottom: 13px;
}

.usps-bg .content article:hover {
background-color: var(--primary)
}

#services {
padding: 100px 0;
}
#services .content-top {
display: flex;
align-items: start;
justify-content: space-between;
flex-wrap: wrap;
}
#services .content-top h4 {
color: var(--primary);
margin-bottom: 10px;
font-size: 20px;
}
#services .content-top article {
flex: 0 0 47%;
}
#services .content-top .right {
padding-top: 25px;
}
#services .content-top .right .btn {
margin: 20px 20px 0 0;
}
#services .content-top .content {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 40px;
}
#services .splide__list {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-gap: 20px;
margin-top: 50px;
}
#services .service {
border-radius: 10px;
border: 1px solid rgba(0, 0, 0, 0.2);
padding: 30px;
transition: 0.15s;
}
#services .service * {
transition: 0.15s;
}
#services .service:hover {
background-color: var(--primary);
}
#services .service:hover * {    
color: white !important;
}
#services .service:hover .flat:after {
background-color: white;
color: var(--primary);
}
#services .service .material-symbols-rounded {
color: var(--primary); 
font-size: 50px;
margin-bottom: 12px;
position: relative;
left: -8px;
}
#services .service h3 {
margin-bottom: 10px;
}
#services .service p {
font-size: 16px;
}
#services .service .flat {
margin-top: 10px;
font-weight: 700;
}
#services .service .flat:after {
background-color: var(--primary);
color: white;
border-color: var(--primary);
}
#services .splide__slide {
padding: 0px;
/* margin: 0 10px !important; */
}
#services .splide__track {
margin-top: 70px;
}

#cta-bar {
margin-bottom: 100px;
}
#cta-bar .content {
padding: 60px;
background-image: 
linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.75)), 
url("../img/hero-img.jpg");
background-blend-mode: normal;
background-size: cover;
background-repeat: no-repeat;
background-position: top center;
border-radius: 10px;
}
#cta-bar .content article {
max-width: 60%;
margin: 0px auto;
text-align: center;
}
#cta-bar .content article h2,
#cta-bar .content article p {
color: white;
}
#cta-bar .content article .intro {
margin-top: 25px;
margin-bottom: 40px;
}
#cta-bar .buttons {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
margin-top: 30px;
}
.btn-special {
display: flex;
align-items: center;
text-decoration: none;
}
.btn-special .icon-wrapper {
border: 2px solid var(--primary);
border-radius: 50%;
margin-right: 12px;
}
.btn-special i {
color: var(--primary);
background-color: white;
width: 42px;
height: 42px;
display: flex;
align-items: center;
justify-content: center;
font-size: 17px;
border-radius: 50%;
margin: 5px;
}
.btn-special h6 {
color: white;
text-align: left;
font-size: 14px;
font-weight: 400;
}
.btn-special h4 {
color: white;
text-align: left;
font-size: 17px;
margin-top: 7px;
margin-bottom: 0px !important;
}

#blogs {
padding: 100px 0;
}
#blogs .content-top {
text-align: center;
margin-bottom: 50px;
}
#blogs .content-top h3 {
color: var(--primary);
margin-bottom: 10px;
font-size: 20px;
}
#blogs .content {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 35px;
}
#blogs .content a {
text-decoration: none;
border: 1px solid rgba(0, 0, 0, 0.15);
border-radius: 5px;
transition: 0.15s;
}
#blogs .content a:hover {
box-shadow: 5px 8px 13px -6px rgba(0,0,0,0.11);
-webkit-box-shadow: 5px 8px 13px -6px rgba(0,0,0,0.11);
-moz-box-shadow: 5px 8px 13px -6px rgba(0,0,0,0.11);
border: 1px solid rgba(0, 0, 0, 0.07);
}
#blogs .content a:hover .btn {
background-color: var(--primary);
border: 2px solid var(--primary);
border-bottom: 2px solid rgba(0,0,0,0.3);
color: white;
}
#blogs .content .img-wrapper {
position: relative;
}
#blogs .content .category {
background-color: var(--primary);
color: white;
border-radius: 5px;
display: inline-flex;
align-items: center;
font-size: 14px;
padding: 5px 10px;

position: absolute;
left: 20px;
top: 20px;
}
#blogs .content .category i {
margin-right: 5px;
}
#blogs .content .img-wrapper img {
height: 200px;
width: 100%;
border-radius: 5px;
object-fit: cover;
overflow-clip-margin: unset;
display: block;
}
#blogs .content .card {
padding: 30px;
}
#blogs .content .card h3 {
color: var(--titles);
font-size: 20px;
line-height: 30px;
}
#blogs .content .card .date {
color: grey;
font-size: 15px;
margin: 12px 0;
font-weight: 600;
}
#blogs .content .card p {
font-size: 15.5px;
}
#blogs .content .card .btn {
margin-top: 20px;
background-color: unset;
border: 2px solid var(--secondary);
color: var(--secondary);
}

footer #footer-top {

background-color: #161616;
padding: 100px 0;
}
footer .content {
display: grid;
grid-template-columns: 450px 1fr;
grid-gap: 30px;
}
footer .footer-columns {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 30px;
}
footer .content article h4,
footer .content article a,
footer .content article ul li a,
footer .content article p {
color: white;
}
footer .content article a {
text-decoration: none;
color: #b8b8b8;
}
footer .content .intro img {
width: 200px;
}
footer .content .intro p {
color: #b8b8b8;
margin: 15px 0 20px 0;
}
footer .content article .social {
color: var(--primary);
font-size: 18px;
font-weight: 700;
display: inline-flex;
align-items: center;
margin-bottom: 15px;
}
footer .content article .social i {
margin-right: 10px;
}
footer .content article .directions {
color: white;
font-weight: 700;
}
footer .content article .directions i {
margin-right: 10px;
}
footer .content article h4 {
margin: 0 0 20px 0;
font-size: 19px;
}
footer .content article ul li {
padding: 0px;
margin: 10px 0;
}
footer .content article ul li:before {
content: none;
}
footer .content article ul li a {
color: #b8b8b8;
font-size: 16px;
}
footer #footer-bottom .content {
display: unset;
}
footer #footer-bottom {
background-color: white;
padding: 30px 0;
}
footer #footer-bottom article {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
gap: 40px;
}
footer #footer-bottom article p {
color: #515151;
}
footer #footer-bottom .links {
display: flex;
align-items: center;
gap: 15px;
}
footer #footer-bottom .links a {
color: var(--titles);
font-weight: 600;
}

#mobile-menu-toggle {
display: none;
}

/* splide custom styling */
.splide__slide {
margin: 0px !important;
}
.splide__pagination__page.is-active {
background: var(--primary) !important;
}


/* landings pagina css */
.over-ons-lp {
background-image: 
linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.11)), 
url("../img/locksmith-8559026.jpg") !important;
}

#hero-lp {
background-image: 
linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.11)), 
url("../img/hero-img.jpg");
background-blend-mode: normal;
background-size: cover;
background-repeat: no-repeat;
background-position: top center;
padding: 200px 0 100px 0;
}
#hero-lp article {
width: 50%;
}
#hero-lp h1 {
font-size: 50px;
letter-spacing: -1px;
}
#hero-lp h3 {
font-size: 18px;
font-weight: 400;
letter-spacing: 0.25px;
margin: 20px 0 35px 0;
line-height: 30px;
}
#hero-lp article {
color: white;
}
#hero-lp .btn.reg {
margin: 0 20px 15px 0;
}
#hero-lp .btn.sec {
background-color: white;
color: black;
border-color: white;
}
#hero-lp .btn.sec:hover {
border-bottom-color: #fff !important;
}

#content-sec-usps {
padding: 100px 0;
}
#content-sec-usps .content {
display: grid;
grid-template-columns: 1fr 500px;
grid-gap: 90px;
}
#content-sec-usps .ul-list-items {
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 0 15px;
}
#content-sec-usps .ul-list-items li:before {
content: '\f00c' !important;
font-weight: bold;
}
#content-sec-usps .usp-blocks-article {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 20px;
text-align: center;
}
#content-sec-usps .usp-blocks-article .material-symbols-rounded {
font-size: 45px;
color: var(--primary);
margin-bottom: 10px;
} 
#content-sec-usps .usp-blocks-article h4 {
margin-bottom: 10px;
}
#content-sec-usps .usp-blocks-article p {
margin: 0px;
}
#content-sec-usps .usp-blocks-article .block {
background-color: rgba(254, 119, 67, 0.1);
border-radius: 10px;
padding: 20px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
#content-sec-usps .btn.reg {
margin-top: 30px;
margin-right: 13px;
margin-bottom: 13px;
}

#werkgebieden {
padding: 60px 0;
background-color: var(--primary);
margin-top: 100px;
}
#werkgebieden h3 {
font-size: 25px;
max-width: 500px;
text-align: center;
color: white;
margin: 0px auto 40px auto;
}
#werkgebieden article p:before {
content: "\f3c5";
font-family: "Font Awesome 6 Free";
font-weight: 900;
font-size: 14px;
margin-right: 10px;
}
#werkgebieden article {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 20px;
max-width: 700px;
justify-content: center;
margin: 0px auto;
}
#werkgebieden article p {
background-color: white;
color: var(--primary);
display: inline-flex;
align-items: center;
padding: 10px 20px;
border-radius: 100px;
font-weight: 600;
font-size: 15.5px;
margin: 0px;
}

#faq {
padding: 100px 0;
}
#faq .sm-wrapper {
max-width: 70%;
margin: 0px auto;
}
#faq h2 {
text-align: center;
margin-bottom: 40px;
max-width: 60%;
margin: 0 auto 40px auto;
}
#faq .accordion {
/* border: 1px solid #ccc; */
/* border-radius: 5px; */
overflow: hidden;
}
#faq .accordion-item {
margin-bottom: 15px;
}
#faq .accordion-header {
border: 1px solid #ddd;
border-radius: 7px;
background: #f7f7f7;
padding: 20px 45px 20px 20px;
cursor: pointer;
font-weight: bold;
position: relative;
transition: 0.15s ease;
line-height: 26px;
}
#faq .accordion-header.open {
background-color: var(--primary);
color: white;
}
#faq .accordion-header.open::after {
color: white;
}
#faq .accordion-header::after {
content: '\f077';
font-family: "Font Awesome 6 Free";
font-weight: 900;
position: absolute;
right: 15px;
top: 50%;
transform: translateY(-50%);
transition: transform 0.3s ease;
color: var(--primary);
}
#faq .accordion-header:hover {
border-color: var(--primary);
}
#faq .accordion-header.open::after {
transform: translateY(-50%) rotate(180deg);
}
#faq .accordion-content {
display: none;
padding: 30px 20px 20px 20px;
background: #fff;
line-height: 29px;
border: 1px solid #ddd;
border-radius: 0 0 7px 7px;
margin-top: -10px;
}
.iframe-maps {
display: block;
}

#reviews {
padding: 130px 0;
background-color: var(--primary);
}
#reviews h2, #reviews h3 {
text-align: center;
color: white;
}
#reviews h3 {
margin-bottom: 60px;
}
#reviews .content {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 35px;
}
#reviews .content article {
border-radius: 10px;
padding: 25px;
background-color: #fff;
}
#reviews .content article p {
line-height: 29px;
color: #575757;
margin: 0px;
font: 15px;
}
#reviews .content article .stars {
margin: 15px 0;
}
#reviews .content article .stars i {
color: #ffd500;
}
#reviews .content article h4 {
color: var(--primary);
font-size: 16px;
font-weight: 500;
margin-bottom: 0px;
}
#reviews .content article h5 {
font-weight: 500;
font-size: 14.5px;
margin-top: 5px;
}

/* contact landings pagina */
#neem-contact-op {
padding: 100px 0;
}
#neem-contact-op .contact-block-sm {
background-color: var(--primary);
padding: 25px;
border-radius: 10px;
}
#neem-contact-op .contact-block-sm:hover p i {
margin-left: 10px;
}
#neem-contact-op .contact-block-sm * {
color: white;
transition: 0.2s;
}
#neem-contact-op .contact-block-sm i {
font-size: 25px;
color: white;
margin-bottom: 13px;
}
#neem-contact-op .contact-block-sm p {
margin: 0px !important;
font-weight: 700;
}
#neem-contact-op .contact-block-sm p i {
font-size: 13px;
margin-left: 5px;
}
#neem-contact-op .contact-block-sm {
text-decoration: none;
}
#neem-contact-op .content {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 50px;
}
#neem-contact-op .content .right {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 30px;
}

/* contact pagina */
#contact {
padding: 100px 0;
}
#contact .content {
display: flex;
align-items: center;
justify-content: space-between;
}
#contact .content .left {
flex: 0 0 55%;
}
#contact .contact-details {
flex: 0 0 35%;
margin-top: -330px;
background-color: var(--primary);
border-radius: 10px;
padding: 20px;
gap: 15px;
display: flex;
flex-direction: column;

position: sticky;
top: 200px;
}
#contact .contact-block i {
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 7px;
border: 1px solid white;
font-size: 18px;
}
#contact .contact-block {
display: flex;
align-items: center;
padding: 10px;
}
#contact .contact-block * {
margin: 0px;
color: white;
}
#contact .contact-block h4 {
font-size: 17px;
}
#contact .contact-block p {
font-size: 15.2px;
margin-top: 4px;
}
#contact .contact-block .texts {
margin-left: 15px;
}
#contact .form-row {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
margin-bottom: 30px;

}
#contact .form-group {
display: flex;
flex-direction: column;
}

#contact label {
font-weight: 600;
margin-bottom: 10px;
}
#contact input,
#contact select,
#contact textarea {
font-family: 'Plus Jakarta Sans';
padding: 15px;
border-radius: 5px;
border: 1px solid rgba(0, 0, 0, 0.2);
outline: none;
font-size: 15px;
}
#contact input:focus,
#contact input:focus-visible,

#contact select:focus,
#contact select:focus-visible,

#contact textarea:focus,
#contact textarea:focus-visible,
{
border-color: var(--primary);
outline: none;
}


/* .error { color: red; }
.success { color: green; }
form { max-width: 400px; margin: auto; }
label { display: block; margin-top: 10px; }
input, textarea { width: 100%; padding: 8px; box-sizing: border-box; }

.honeypot {
display: none;
}

.honeypot {
position: absolute;
left: -9999px;
opacity: 0;
pointer-events: none;
}
.error {
color: red;
font-size: 14px;
display: block;
margin-bottom: 10px;
}
.success {
color: green;
font-weight: bold;
margin-bottom: 20px;
padding: 10px;
background-color: #d4edda;
border: 1px solid #c3e6cb;
border-radius: 4px;
}
.form-container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
}
.form-group {
margin-bottom: 15px;
}
.form-group label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
.form-group input,
.form-group textarea {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 16px;
}
.form-group textarea {
resize: vertical;
min-height: 100px;
}
.submit-btn {
background-color: #007bff;
color: white;
padding: 12px 30px;
border: none;
border-radius: 4px;
font-size: 16px;
cursor: pointer;
margin-top: 15px;
}
.submit-btn:hover {
background-color: #0056b3;
} */

/* tarieven */
#tarieven.bg {
background-color: #fff1ec;
}
#tarieven.bg tr {
background-color: white;
}
#tarieven.bg .prijslijst td:first-child {
/* border: 1px solid red; */
}
#tarieven.bg .prijslijst th:first-child {
border-radius: 7px 0 0 0 !important;
}
#tarieven.bg .prijslijst th:nth-child(2) {
border-radius: 0 7px 0 0 !important;
}

.prijslijst {
max-width: 800px;
margin: 0 auto;
padding: 100px 0;
}
.prijslijst h2 {
font-size: 1.8rem;
margin-bottom: 1rem;
color: #333;
}
.prijslijst h3 {
font-size: 1.2rem;
margin-top: 2rem;
margin-bottom: 0.5rem;
padding-bottom: 0.25rem;
}
.prijslijst table {
width: 100%;
border-collapse: collapse;
margin-bottom: 1.5rem;
}
.prijslijst th {
text-align: left;
padding: 0.75rem;
}
.prijslijst th:first-child {
border-radius: 7px 0 0 7px !important;
}
.prijslijst th:nth-child(2) {
border-radius: 0 7px 7px 0 !important;
text-align: right;
width: 40%;
}
.prijslijst td {
text-align: left;
padding: 0.75rem;
border-bottom: 1px solid #e0e0e0;
}
.prijslijst th {
background-color: #fe7743;
font-weight: bold;
color: white;
}
.prijslijst td:last-child {
text-align: right;
white-space: nowrap;
font-weight: 600;
}

/* extra @media css */
@media screen and (max-width: 600px) {
    #neem-contact-op .content {
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
    #neem-contact-op .content .right {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
}
@media screen and (max-width: 600px) {
    #neem-contact-op {
        padding: 55px 0;
    }
    #neem-contact-op .content {
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
}
@media screen and (min-width: 601px) and (max-width: 1000px) {
    #neem-contact-op {
        padding: 75px 0;
    }
    #neem-contact-op .content .right {
        grid-template-columns: 1fr;
        grid-gap: 27px;
    }
}
/*--------------*/

/* special */
@media screen and (max-width: 500px) {
header .icon-wrapper {
    margin: 0px !important;
}
header .btn-special .text {
    display: none;
}
#content-sec-usps .ul-list-items {
    grid-template-columns: repeat(1, 1fr);
}

.content-section .usps-row {
    display: flex !important;
}

footer .footer-columns {
    grid-template-columns: 1fr !important;
}

}

/* main mobile */
@media screen and (max-width: 900px) {

#wrapper {
    max-width: var(--wrapper-width-mobile);
}

h1 {
    font-size: 30px !important;
}
h2 {
    font-size: 27px;
    line-height: 37px;
}

/* --------------------------- */
.block-float {
    display: none;
}

.splide__arrow--next {
    right: -1em !important;
}
.splide__arrow--prev {
    left: -1em !important;
}

/* header (menu) */    

#mobile-menu-toggle {
    display: block;
}
header {
    z-index: 9999;
    padding: 20px 0;
}
header nav {
    /* max-width: var(--wrapper-width-mobile); */
    /* padding-left: 5%; */
    margin: 0px auto;
}
header.active .fa-bars {
    color: black;
}
header nav .content {
    flex-direction: row;
    position: relative;
    gap: 10px;
    padding: 0 5%;
}
header .right-header-content {
    display: flex;
    justify-content: end;
    gap: 20px;
}
header nav .content .right {
    justify-content: end;
}
header nav .content #mobile-menu-toggle {
    order: 3;
}
header .logo {
    width: 140px !important;
}
header nav .content article .btn-special {
    margin: 0px;
}
header nav .content .menu-items-row {
    text-align: left;
    align-items: unset;
}
nav article.right .menu-items-row {
    flex-direction: column;
    background: white;
    position: absolute;
    top: 120%;
    left: 0;
    right: 0;
    display: none;
    transition: max-height 0.3s ease;
    overflow: hidden;
    max-height: 0;
}
nav article.right ul.open {
    display: flex;
    max-height: 500px;
    padding: 20px 5% 40px 5%;
}
header nav .last {
    border: unset !important;
}
header .sub-menu {
    position: relative;
    border: unset;
    padding: 20px 0 0 15px;
}
.article-float-right {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 20px;
}

#hero {
    padding: 170px 0 120px 0;
}
#hero .content {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 50px;
}

#hero-services .content {
    grid-template-columns: repeat(1, 1fr);
}

#services .content,
#services .splide__list {
    display: flex;
    grid-gap: unset;
}


.prijslijst {
    padding: 55px 0;
}
.content-section {
    padding: 55px 0;
}
.content-section .content {
    gap: 50px;
}
.content-section .content article {
    flex: 0 0 100% !important;
}
.content-section .content .img-container {
    width: 100%;
}
.content-section .content article .img-wrapper {
    width: 100%;
    height: 31vh;
}
.content-section .content article .img-wrapper img {
    height: 100%;
    width: 100% !important;
}

.content-section .usps-row {
    display: flex !important;
}

/* content section reversed content */
.content-section.rev .content {
    flex-direction: column-reverse;
}

.usps-bg {
    padding: 55px 0;
}
.usps-bg .intro {
    width: 100%;
}
.usps-bg .content {
    grid-template-columns: repeat(1, 1fr);
}

#services {
    padding: 55px 0;
}
#services .content-top .content {
    grid-template-columns: 1fr;
    grid-gap: 0;
}
#services .content-top article {
    flex: 0 0 100%;
}
#services .content-top .right {
    padding: 0px;
}
#services .content {
    grid-template-columns: repeat(1, 1fr);
}

#cta-bar .content {
    padding: 55px 20px;
}
#cta-bar .content article  {
    max-width: unset;
}

#blogs {
    padding: 55px 0;
}
#blogs .content {
    grid-template-columns: repeat(1, 1fr);
}

footer .content {
    grid-gap: 50px;
}
footer .footer-columns {
    grid-template-columns: 1fr 1fr;
}
footer #footer-top {
    padding: 55px 0;
}
footer .content {
    grid-template-columns: repeat(1, 1fr);
}


/* landings pagina */
#hero-lp {
    padding: 150px 0 55px 0;
}
#hero-lp article {
    width: 100%;
}

#content-sec-usps {
    padding: 55px 0;
}
#content-sec-usps .content {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 60px;
}
#content-sec-usps .usp-blocks-article p {
    font-size: 15px;
    line-height: 23px;
}

.content-section .usps-row {
    display: flex !important;
}

#faq {
    padding: 55px 0;
}
#faq h2 {
    max-width: 100%;
}
#faq .sm-wrapper {
    max-width: unset;
}

#reviews {
    padding: 55px 0;
}
#reviews .content {
    grid-template-columns: repeat(1, 1fr);
}

}

/* tablet and higher */
@media screen and (min-width: 901px) and (max-width: 1200px) {

/* header (menu) */    

#mobile-menu-toggle {
    display: block;
}
header {
    z-index: 9999;
    padding: 20px 0;
}
header nav {
    /* max-width: var(--wrapper-width-mobile); */
    /* padding-left: 5%; */
    margin: 0px auto;
}
header.active .fa-bars {
    color: black;
}
header nav .content {
    flex-direction: row;
    position: relative;
    gap: 10px;
    padding: 0 5%;
}
header .right-header-content {
    display: flex;
    justify-content: end;
    gap: 20px;
}
header nav .content .right {
    justify-content: end;
}
header nav .content #mobile-menu-toggle {
    order: 3;
}
header .logo {
    width: 140px !important;
}
header nav .content article .btn-special {
    margin: 0px;
}
header nav .content .menu-items-row {
    text-align: left;
    align-items: unset;
}
nav article.right .menu-items-row {
    flex-direction: column;
    background: white;
    position: absolute;
    top: 120%;
    left: 0;
    right: 0;
    display: none;
    transition: max-height 0.3s ease;
    overflow: hidden;
    max-height: 0;
}
nav article.right ul.open {
    display: flex;
    max-height: 500px;
    padding: 20px 5% 40px 5%;
}
header nav .last {
    border: unset !important;
}
header .sub-menu {
    position: relative;
    border: unset;
    padding: 20px 0 0 15px;
}
.article-float-right {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 20px;
}

#wrapper {
    max-width: 85%;
}

h2 {
    font-size: 27px;
    line-height: 35px;
}

/* --------------------- */
#hero {
    padding: 120px 0 150px 0;
}
#hero .content {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 50px;
}

.usps-bg {
    padding: 80px 0;
}

.prijslijst {
    padding: 80px 0;
}

#content-sec-usps {
    padding: 80px 0;
}
#content-sec-usps .content {
    grid-template-columns: 420px 1fr ;
}
#content-sec-usps .usp-blocks-article {
    grid-template-columns: repeat(1, 1fr);
}

.content-section .content .img-container {
    width: 100%;
}
.content-section.bgc {
    padding: 80px 0;
}
.content-section .block-float {
    left: -50px;
    width: 250px;
}
.content-section.rev .block-float {
    right: -50px;
}
#cta-bar .content article {
    max-width: 80%;
}

.content-section .usps-row {
    display: flex !important;
}

#faq {
    padding: 80px 0;
}

#reviews {
    padding: 80px 0;
}

#services .content-top .content {
    grid-template-columns: 1fr;
    grid-gap: 0px;
}
#services .content,
#services .splide__list {
    display: flex;
    grid-gap: unset;
}


}

@media screen and (min-width: 1201px) and (max-width: 1350px) {

header nav {
    max-width: 90%;
}

#wrapper {
    max-width: 80%;
}

}