
@import url('https://fonts.googleapis.com/css2?family=TikTok+Sans:opsz,wght@12..36,300..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=TikTok+Sans:opsz,wght@12..36,300..900&display=swap');

@import url('variables.css');


* {
    margin: 0px;
    box-sizing: border-box;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: 'TikTok Sans';
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--fontHeadings);
    color: var(--titles);
}
h1 {
    font-size: 55px;
    line-height: 60px;
    font-weight: 500;
    
}
h2 {
    font-size: 43px;
    line-height: 50px;
    font-weight: 600;
    margin-bottom: 25px;
}
h3 {
    font-weight: 500;
    font-size: 21px;
}
p {
    font-size: 17px;
    line-height: 30px;
    font-weight: 400;
    color: var(--text);
}
/* ul styling */
.checks li {
    position: relative;
    list-style-type: none;
    padding: 0;
    margin: 7px 0;
    line-height: 27px;
}
.checks li:before {
    content: "\f058";
    font-weight: 400;
    font-family: var(--fontAwesome);
    font-size: 15px;
    margin-right: 15px; 
    color: #00aa65;
}

.button {
    padding: 13px 55px 13px 30px;
    border-radius: 50px;
    font-size: 16px;
    background-color: var(--primary);
    border: 2px solid var(--primary);
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 10px 7px 0 0;
    font-weight: 500;
    position: relative;
    letter-spacing: -0.3px;
    transition: 0.15s;
}
.button:hover {
    transform: translateY(-3px);
}

.button::after {
    content: "\f061";
    font-family: var(--fontAwesome);
    font-weight: bold;
    font-size: 14px;
    transition: .15s;
    background-color: #d64800;
    position: absolute;
    right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    border-radius: 50%;
}

.button.call:after {
    content: "\f095";
}

.button.alt {
    padding: 13px 30px !important;
    position: relative;
    padding-right: 25px;
    background-color: unset;
    border-color: var(--titles);
    color: var(--titles);
    transition: .15s;
}
.button.alt::after {
    content: none;
}
.button.alt:hover {
    background-color: var(--titles);
    color: white;
}
.button.alt:hover::after {
    margin-left: 10px;
}

.btn-flat {
    color: var(--primary);
    font-weight: 600;
}

.sub-title {
    color: var(--primary);
    font-weight: 400;
    margin-bottom: 10px;
    font-size: 18px;
}


#wrapper {
    max-width: 1200px;
    margin: 0px auto;
}

/* ----------------------------------------- */

.header {
    width: 100%;
    background: white;
    position: sticky;
    top: 0;
    z-index: 2000;
    padding: 25px 0;
    box-shadow: 0px -35px 41px black;
    transition: 0.25s;
}
.header.shrink {
    padding: 14px 0;
}
.header nav .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .mail-ons i {
    color: var(--primary);
    border: 2px solid var(--primary);
    min-width: 50px;
    min-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.15s;
    margin-right: -15px;
}
.header .mail-ons span {
    display: none;
}
.header .mail-ons i:hover {
    background-color: var(--primary);
    color: white;
}
header .logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
header .logo i {
    min-width: 33px;
    min-height: 33px;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color: white;
    position: relative;
    top: -11px;
}
header .logo h3 {
    font-weight: 500;
    letter-spacing: -0.2px;
    font-size: 26px;
}
header .logo .city {
    background-color: var(--primary);
    color: white;
    border-radius: 3px;
    padding: 2px 9px;
    font-size: 15px;
    position: relative;
    right: -80px;
}

/* DESKTOP NAV */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-links .button {
    margin: 0px;
    color: white;
}
a.button.call {
    font-family: 'Tiktok Sans' !important;
    font-size: 16px;
}

.nav-links li a {
    color: #222;
    text-decoration: none;
    font-size: 17px;
    font-family: 'Kanit';
    transition: 0.15s;
}
.nav-links li a:hover {
    color: var(--primary);
}

/* --------- */

/* HAMBURGER */
.hamburger {
    display: none;
    width: 30px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    height: 2px;
    width: 100%;
    background: #222;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* X animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}



#hero {
    padding: 130px 0;
    background-image: url("../img/electrician.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    background-color: rgba(0, 0, 0, 0.7);
    background-position: center center;
}
#hero .content {
    display: grid;
    /* grid-template-columns: 1fr 400px; */
    grid-gap: 60px;
    align-items: center;
}
#hero .content article {
    text-align: center;
    max-width: 70%;
    margin: 0px auto;
}
#hero h1 {
    color: white;
}
#hero .intro-text {
    max-width: 60%;
    margin: 25px auto;
}
#hero ul {
    padding: 0px;
    margin: 20px 0;
}
#hero ul li {
    font-size: 18px;
    color: white;
}
#hero p {
    font-size: 19px;
    line-height: 35px;
    margin: 20px 0;
    color: white;
    font-weight: 300;
}
#hero .rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.10);
    padding: 8px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
}
#hero .rating .icon {
    display: flex;
    align-items: center;
    gap: 10px;
}
#hero .rating .icon h4 {
    color: white;
    font-weight: 500;
}
#hero .rating .icon img {
    width: 28px;
    background-color: white;
    border-radius: 50%;
    padding: 3px;
}
#hero .rating .stars i {
    color: orange;
    font-size: 14px;
    margin-left: -2.5px;
}

#hero .button.alt {
    border-color: white;
    color: white;
}
#hero .button.alt:hover {
    color: var(--titles);
    background-color: white;
}
#hero .form {
    padding: 25px;
}
#hero .form {
    background-color: white;
    border-radius: 10px;
}
#hero .form h3 {
    font-size: 20px;
}
#hero .form p {
    color: var(--text);
    font-size: 17px;
    line-height: 28px;
    margin-top: 10px;
}
#hero .advies-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: sans-serif;
}

#hero .advies-form label {
    font-size: 15px;
    margin-bottom: -4px;
    font-family: 'TikTok Sans';
}

#hero .select-wrapper select,
#hero .advies-form input {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #f5f5f5;
    font-size: 15px;
    outline: none;
    font-family: 'TikTok Sans';
}
#hero .select-wrapper select::placeholder,
#hero .advies-form input::placeholder {
    font-family: 'TikTok Sans'; 
}

#hero .select-wrapper select:focus {
    border-color: var(--primary);
    background: white;
}

#hero .advies-form input:focus {
    border-color: var(--primary);
    background: white;
}

#hero .advies-form button {
    margin-top: 6px;
    width: 100%;
    padding: 17px;
    border: none;
    border-radius: 40px;
    background: var(--primary);
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Kanit';
}

#hero .advies-form button:hover {
    opacity: 0.9;
}

#hero-usps #wrapper {
    background-color: var(--primary);
    margin-top: -40px;
    padding: 20px;
    border-radius: 15px;
    border-bottom: 1px solid var(--primary);
    max-width: 1400px;
}
#hero-usps #wrapper * {
    color: white;
}
#hero-usps .hero-usp {
    display: flex;
    align-items: center;
    gap: 10px;
}
#hero-usps .hero-usp img {
    width: 40px;
}
#hero-usps .hero-usp p {
    font-weight: 500;
}

.content-section {
    padding: 130px 0;
}
.content-section .content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 50px;
}
.content-section .content img {
    overflow-clip-margin: unset;
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;

    clip-path: polygon(
        94% 0%,      /* top-right (gespiegeld) */
        0% 0%,       /* top-left (gespiegeld) */
        6% 90%,      /* bottom-left (gespiegeld) */
        100% 100%    /* bottom-right (gespiegeld) */
    );
}
.content-section p {
    margin-bottom: 15px;
}
/* content section met background */
.content-section.bg {
    background-color: var(--light-bg);
}
.content-section.rev img {
    clip-path: polygon(
        6% 0%,     /* top-left */
        100% 0%,   /* top-right */
        94% 90%, /* bottom-right */
        0% 100%    /* bottom-left */
    );
}
.content-section img {
    
}

/* cta bar */
#cta-bar {
    background-color: var(--primary);
}
#cta-bar * {
    color: white;
}
#cta-bar .content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
#cta-bar .content article {
    position: relative;
}
#cta-bar .content article p {
    margin-bottom: 20px;
}
#cta-bar .content .right {
    padding: 70px;
}
#cta-bar .content .cta-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 453px;
    display: block;
}
#cta-bar .button {
    background-color: white;
    color: var(--titles);
    border-color: white;
}
#cta-bar .button::after {
    background-color: #ededed;
}
#cta-bar .button.alt {
    background-color: unset;
    color: white;
    border-color: white;
}
#cta-bar .button.alt:hover {
    background-color: white;
    color: var(--titles);
}

/* stappen */
#stappen {
    padding: 120px 0;
}
#stappen .content-top {
    display: grid;
    grid-template-columns: 1fr 500px;
    margin-bottom: 100px;
}
#stappen .content-top p {
    /* margin-top: 40px; */
}
#stappen .content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 70px;
    position: relative;
    border-top: 2px dashed #d8d8dc;
}
#stappen .content article {
    position: relative;
    top: -33px;
}
#stappen .content article div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#stappen .content article .count {
    background-color: var(--titles);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
#stappen .content article .count:after {
    position: absolute;
    right: -18px;
    content: "\f061";
    font-weight: bold;
    font-family: var(--fontAwesome);
    color: var(--titles);
    font-size: 20px;
}
#stappen .content article img {
    filter: invert(41%) sepia(84%) saturate(2980%) hue-rotate(5deg) brightness(101%) contrast(102%);
    width: 57px;
    position: relative;
    left: -4px;
    margin-bottom: 7px;
}
#stappen .content article .icon-wrapper {
    /* border: 1px solid red; */
    background-color: white;
    width: 70px;
    height: auto;
    position: relative;
}
#stappen .content article .icon-wrapper:before {
    content: "";
    width: 25px;
    height: 40px;
    position: absolute;
    left: -15px;
    background-color: white;
}
#stappen i {
    color: var(--primary);
    font-size: 27px;
}
#stappen h3 {
    font-weight: 500;
    font-size: 21px;
    margin: 10px 0;
}

#diensten {
    /* background-color: var(--light-bg); */
    padding: 0 0 130px 0;
    overflow: hidden;
}
#diensten .content {
    max-width: 60%;
    margin: 0px auto;
    margin-bottom: 60px;
}
#diensten .content * {
    text-align: center;
}
#diensten .swiper {
    max-width: 85%;
    margin: 0px auto;
}
#diensten .dienst {
    text-decoration: none;
    position: relative;
}
#diensten .dienst:hover .card-bottom {
    margin-left: 10px;
    margin-right: 10px;
}
#diensten .dienst img {
    width: 100%;
    height: 300px;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    overflow-clip-margin: unset;
}
#diensten .card-bottom {
    background-color: white;
    margin: -65px 20px 0 20px;
    border-radius: 10px;
    z-index: 999;
    position: relative;
    padding: 25px;
    transition: .15s;
    border: 1px solid #eeeeee;
}
#diensten .card-bottom h3 {
    margin-bottom: 10px;
    font-size: 23px;
    line-height: 27px;
}

#contact {
    padding: 130px 0;
}
#contact h2 {
    margin-bottom: 40px;
}
#contact .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
#contact .content article iframe {
    display: block;
    border-radius: 15px;
}
#contact .contact-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}
#contact .contact-blocks .full-width {
    grid-column: 1 / 3; /* spans both columns */
}
#contact .contact-block {
    background-color: var(--light-bg);
    border-radius: 15px;
    padding: 25px;
    border-bottom: 2px solid var(--light-bg);
    transition: 0.15s;
}
#contact .contact-block:hover {
    border-color: var(--primary);
}
#contact .contact-block:hover .img-wrapper {
    transform: translateY(-5px);
}
#contact .contact-block {
    text-decoration: none;
}
#contact .contact-block .img-wrapper {
    background-color: white;
    display: inline-flex;
    border-radius: 15px;
    padding: 10px;
    margin-bottom: 5px;
    transition: 0.15s;
}
#contact .contact-block img {
    min-width: 30px;
    max-width: 30px;
    min-height: 30px;
    max-height: 30px;
    filter: invert(36%) sepia(94%) saturate(4200%) hue-rotate(2deg) brightness(102%) contrast(105%);
}

#contact .contact-block h3 {
    margin: 5px 0;
}
#contact .contact-block span {
    color: var(--primary);
    font-weight: 500;
    margin-top: 7px;
    display: inline-flex;
    font-size: 18px;
    font-family: 'Kanit';
}

#usp-blocks {
    padding: 130px 0;
}
#usp-blocks .top-content {
    max-width: 60%;
    margin: 0px auto;
    margin-bottom: 60px;
    text-align: center;
}
#usp-blocks .content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
#usp-blocks .content article {
    border-right: 2px dashed #d8d8dc;
    padding-right: 20px;
}
#usp-blocks .content article:last-child {
    border: unset;
}
#usp-blocks .content article img {
    filter: invert(41%) sepia(84%) saturate(2980%) hue-rotate(5deg) brightness(101%) contrast(102%);
    width: 57px;
    margin-bottom: 10px;
}
#usp-blocks .content article h3 {
    font-size: 21px;
    margin-bottom: 10px;
}

#reviews {
    background-color: var(--light-bg);
    padding: 130px 0;
    overflow: hidden;
}
#reviews .content {
    max-width: 60%;
    margin: 0px auto;
    margin-bottom: 60px;
}
#reviews .content * {
    text-align: center;
}
#reviews i {
    color: #ffa500;
}
#reviews h3 {
    margin: 10px 0;
}
#reviews p {
    font-size: 16px;
}
#reviews .review {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
}
#reviews .profile {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
#reviews .profile img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    overflow-clip-margin: unset;
}
#reviews .profile h4 {
    font-weight: 500;
    letter-spacing: 0.3px;
}
#reviews .profile .date {
    font-size: 14px;
    margin-top: -5px;
}

/* footer */
footer {
    background-color: var(--dark-bg);
    padding: 130px 0 0 0;
}
footer .content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
footer .intro {
    font-weight: 300;
    font-size: 17.5px;
}
footer .content.bottom {
    margin-top: 80px;
    padding-bottom: 50px;
    display: block;
}
footer * {
    color: white;
}
footer h3 {
    margin-bottom: 11px;
}
footer a {
    text-decoration: none;
}
footer ul {
    padding: 0px;
    margin: 0px;
}
footer ul li {
    list-style-type: none;
    line-height: 27px;
    margin: 20px 0;
}
footer ul li a {
    font-size: 17.5px;
    font-weight: 300;
    line-height: 27px;
    transition: 0.15s;
}
footer ul li a:hover {
    color: var(--primary);
}
footer .contact-info {
    display: flex;
    align-items: start;
    gap: 20px;
    margin-bottom: 20px;
}
footer .contact-info img {
    width: 30px;
}
footer .contact-info h4 {
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 5px;
}
footer .contact-info a {
    transition: 0.15s;
}
footer .contact-info a:hover {
    color: var(--primary);
}


/* FAQ */
.faq {
    padding: 130px 0;
    background-color: var(--primary);
}

.faq__inner {
    max-width: 860px;
    margin: 0 auto;
}

.faq__title {
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    /* border: 1px solid rgba(0,0,0,0.12); */
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.faq__btn {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 20px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
}

.faq__q {
    font-size: 19px;
    font-weight: 700;
    line-height: 29px;
    font-family: 'Tiktok Sans', sans-serif;
    color: var(--titles);
}

.faq__icon {
    width: 18px;
    height: 18px;
    position: relative;
    flex: 0 0 18px;
}

.faq__icon::before,
.faq__icon::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: transform 180ms ease, opacity 180ms ease;
}

.faq__icon::after {
    transform: rotate(90deg);
}

.faq__btn[aria-expanded="true"] .faq__icon::after {
    opacity: 0;
    transform: rotate(90deg) scaleX(0.2);
}

.faq__panel {
    height: 0;
    overflow: hidden;
    transition: height 240ms ease;
}

.faq__a {
    padding: 0 20px 20px;
    font-size: 16px;
    line-height: 26px;
    color: var(--text);
}

/* .faq__btn:focus-visible {
    outline: 3px solid rgba(0,0,0,0.25);
    outline-offset: 2px;
    border-radius: 12px;
} */

@media (prefers-reduced-motion: reduce) {
    .faq__panel { transition: none; }
    .faq__icon::before,
    .faq__icon::after { transition: none; }
}

/* mobile menu */
@media screen and (max-width: 1080px) {
    .nav-links .mail-ons a {
        border-left: unset !important;
    }
    .header .mail-ons a {
        padding-left: 0px !important;
    }
    .header .mail-ons i {
        margin-right: unset !important;
    }
    .header .mail-ons a {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .header .mail-ons span {
        display: block;
    }
    
    .hamburger {
        display: flex;
    }

    /* turn into dropdown */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        justify-content: start;
        background: white;
        border-bottom: solid 1px #eee;
        padding: 0 5%;
        overflow: hidden;
        gap: 2px;

        /* Smooth open animation without max height */
        height: 0;
        opacity: 0;
        pointer-events: none;

        transition: height 0.35s ease, opacity 0.25s ease;
    }

    .nav-links.active {
        height: auto; /* actual height based on content */
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links li {
        width: 100%;
    }
    .nav-links li a {
        padding: 10px 20px;
        border-radius: 10px;
        width: 100%;
        border-left: 1px dashed #bbbbbb;
        display: inline-flex;
    }
    .nav-links li .button {
        border-radius: 50px;
        border-left: unset;
    }

    .nav-links li a:hover {
        background-color: var(--light-bg);
        border-color: var(--light-bg);
    }

    .nav-links li:last-child {
        border-bottom: none;
        padding-bottom: 50px;
    }

    .nav-links li a {
        font-size: 17px;
        color: #222;
    }

    .nav-links .mail-ons a:hover {
        background-color: unset;
    }
    .nav-links .mail-ons a:hover i {
        color: white;
        background-color: var(--primary);
    }
}
@media screen and (min-width: 1081px) {
    .nav-links {
        padding: unset !important;
        height: unset !important;
    }
}

/* responsive */
/* mobile */
@media screen and (max-width: 600px) {

    h1 {
        font-size: 30px;
        line-height: 36px;
    }

    h2 {
        font-size: 28px;
        line-height: 35px;
    }
    
    .sub-title {
        margin-bottom: 5px;
    }

    #wrapper {
        max-width: 90%;
    }

    /* ------------------------------ */

    header .logo h3 {
        font-size: 22px;
    }
    header .logo .city {
        font-size: 13.5px;
    }

    #hero {
        padding: 70px 0 100px 0;
        background-color: rgba(0, 0, 0, 0.8);
    }
    #hero .content article {
        max-width: unset;
    }
    #hero .intro-text {
        max-width: unset;
    }

    #hero-usps #wrapper {
        max-width: 90%;
    }
    #hero-usps .hero-usp {
        justify-content: center;
    }

    .content-section {
        padding: 65px 0;
    }
    .content-section .content {
        grid-template-columns: 1fr;
    }
    .content-section .content img {
        height: 270px;
        clip-path: polygon(6% 0%, /* top-left */ 100% 0%, /* top-right */ 94% 90%, /* bottom-right */ 0% 100% /* bottom-left */);
    }

    .content-section.rev .content {
        display: flex;
        flex-direction: column-reverse;
    }

    #diensten .content {
        max-width: unset;
    }
    #diensten {
        padding-bottom: 65px;
    }

    #stappen {
        padding: 65px 0 80px 0;
    }
    #stappen .content-top {
        grid-template-columns: 1fr;
    }
    #stappen .content {
        grid-template-columns: 1fr;
        border-top: unset;
        border-left: 2px dashed #d8d8dc;
        gap: 30px;
    }
    #stappen .content article {
        padding-left: 30px;
    }
    #stappen .content article div {
        justify-content: start;
        flex-direction: row-reverse;
    }
    #stappen .content article .count {
        position: absolute;
        left: -17px;
    }
    #stappen .content article .count:after {
        right: unset;
        bottom: -20px;
        transform: rotate(90deg);
        left: 5.2px;
    }

    #cta-bar {
        padding: 65px 0;
    }
    #cta-bar .content {
        grid-template-columns: 1fr;
    }
    #cta-bar .content .right {
        padding: 0;
    }
    #cta-bar .content .cta-img {
        width: 130px;
        right: unset;
        bottom: 10px;
        left: 0;
    }

    #usp-blocks {
        padding: 65px 0;
    }
    #usp-blocks .top-content {
        max-width: unset;
    }
    #usp-blocks .content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    #usp-blocks .content article {
        border-right: unset;
    }

    #reviews {
        padding: 65px 0;
    }
    #reviews .content {
        max-width: unset;
    }

    #contact {
        padding: 65px 0;
    }
    #contact .content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    #contact .contact-blocks {
        grid-template-columns: 1fr;
    }
    #contact .contact-blocks .full-width {
        grid-column: unset;
    }
    #contact .contact-block {
        padding: 10px 15px;
        display: flex;
        align-items: center;
        gap: 20px;
    }
    #contact .content article iframe {
        height: 290px;
    }

    footer {
        padding: 65px 0 0 0;
    }
    footer .content {
        grid-template-columns: 1fr;
    }
    
    /* FAQ */
    .faq {
        padding: 65px 0;
    }
    .faq__inner {
        max-width: 90%;
    }
    .faq__q {
        font-size: 18px;
    }
}

@media screen and (min-width: 601px) and (max-width: 1000px) {

    h1 {
        font-size: 39px;
        line-height: 50px;
    }

    h2 {
        font-size: 31px;
        line-height: 40px;
    }

    #wrapper {
        max-width: 80%;
    }
    .nav-links {
        padding: 0 10%;
    }

    /* ------------------------------ */

    header .logo h3 {
        font-size: 24px;
    }
    header .logo .city {
        font-size: 14px;
    }

    #hero {
        padding: 70px 0 100px 0;
        background-color: rgba(0, 0, 0, 0.8);
    }
    #hero .content article {
        max-width: unset;
    }
    #hero .intro-text {
        max-width: unset;
    }

    #hero-usps #wrapper {
        max-width: 90%;
    }
    #hero-usps .hero-usp {
        justify-content: center;
    }

    .content-section {
        padding: 65px 0;
    }
    .content-section .content {
        grid-template-columns: 1fr;
    }
    .content-section .content img {
        height: 340px;
        clip-path: polygon(6% 0%, /* top-left */ 100% 0%, /* top-right */ 94% 90%, /* bottom-right */ 0% 100% /* bottom-left */);
    }

    .content-section.rev .content {
        display: flex;
        flex-direction: column-reverse;
    }

    #diensten .content {
        max-width: unset;
    }
    #diensten {
        padding-bottom: 65px;
    }

    #stappen {
        padding: 65px 0 80px 0;
    }
    #stappen .content-top {
        grid-template-columns: 1fr;
    }
    #stappen .content {
        grid-template-columns: repeat(2, 1fr);
        border-top: unset;
        border: none;
        gap: 40px;
    }
    #stappen .content article .count:after {
        content: none;
    }
    #stappen .content article .count {
        display: flex !important;
    }

    #cta-bar {
        padding: 65px 0;
    }
    #cta-bar .content {
        grid-template-columns: 1fr;
    }
    #cta-bar .content .right {
        padding: 0;
    }
    #cta-bar .content .cta-img {
        width: 130px;
        right: unset;
        bottom: 10px;
        left: 0;
    }

    #usp-blocks {
        padding: 65px 0;
    }
    #usp-blocks .top-content {
        max-width: unset;
    }
    #usp-blocks .content {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    #usp-blocks .content article {
        border-right: unset;
    }

    #reviews {
        padding: 65px 0;
    }
    #reviews .content {
        max-width: unset;
    }

    #contact {
        padding: 65px 0;
    }
     #contact .content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    #contact .content article iframe {
        height: 290px;
    }

    footer {
        padding: 65px 0 0 0;
    }
    footer .content {
        grid-template-columns: 1fr;
    }

    /* FAQ */
    .faq {
        padding: 65px 0;
    }
    .faq__inner {
        max-width: 80%;
    }
    .faq__q {
        font-size: 18.5px;
    }
}

@media screen and (min-width: 1001px) and (max-width: 1400px) {

    h1 {
        font-size: 40px;
        line-height: 42px;
    }

    h2 {
        font-size: 35px;
        line-height: 40px;
    }

    #wrapper {
        max-width: 80%;
    }
    .nav-links {
        padding: 0 10%;
    }

    /* ------------------------------ */

    #hero {
        padding: 120px 0 140px 0;
        background-color: rgba(0, 0, 0, 0.8);
    }
    #hero .content article {
        max-width: 80%;
    }
    
    #hero-usps #wrapper {
        max-width: 90%;
    }
    #hero-usps .hero-usp {
        justify-content: center;
    }

    .content-section {
        padding: 100px 0;
    }

    #diensten .content {
        max-width: unset;
    }
    #diensten {
        padding-bottom: 100px;
    }

    #stappen {
        padding: 100px 0;
    }
    #stappen .content-top {
        grid-template-columns: 1fr;
    }
    #stappen .content {
        grid-template-columns: repeat(2, 1fr);
        border-top: unset;
        border: none;
        gap: 40px;
    }
    #stappen .content article .count:after {
        content: none;
    }
    #stappen .content article .count {
        display: flex !important;
    }

    #cta-bar .content .right {
        padding-right: 0px;
    }

    #usp-blocks {
        padding: 100px 0;
    }
    #usp-blocks .top-content {
        max-width: unset;
    }
    #usp-blocks .content {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    #usp-blocks .content article {
        border-right: unset;
    }

    #reviews {
        padding: 100px 0;
    }
    #reviews .content {
        max-width: unset;
    }

    #contact {
        padding: 100px 0;
    }

    footer {
        padding: 75px 0 0 0;
    }
    footer .content {
        grid-template-columns: 1fr 1fr;
    }

    /* FAQ */
    .faq {
        padding: 100px 0;
    }
    .faq__inner {
        max-width: 60%;
    }
    .faq__q {
        font-size: 18.5px;
    }
}

