body:not(.home) section#faq{
    padding-top: 80px;
}

section#faq{
    background: #fef6f4;
    padding-bottom: 80px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section#faq .container{
    z-index: 2;
    overflow: visible;
}

section#faq:before{
    content: '';
    position: absolute;
    bottom: -150px;
    height: 800px;
    width: 1200px;
    background-size: contain;
    background-image: url(/wp-content/themes/charliens/assets/images/beeldmerktwee.png);
    opacity: 0.05;
    background-repeat: no-repeat;
    background-position: bottom;
    z-index: 1;
    pointer-events: none;
}

section#faq .container h2{
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 50px;
    line-height: 50px;
}

section#faq .container h3{
    text-align: center;
    margin: 0;
}

section#faq .container .faqwrapper{
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

section#faq .container .faqwrapper .singlefaq{
    cursor: pointer;
}

section#faq .container .faqwrapper .singlefaq .vraag{
    background: white;
    padding: 10px 40px 10px 20px;
    border-radius: 4px;
    position: relative;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

section#faq .container .faqwrapper .singlefaq.opened .vraag:after{
    transform: rotate(0deg);
}

section#faq .container .faqwrapper .singlefaq .vraag:after{
    position: absolute;
    content: '\f107';
    right: 15px;
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font: var(--fa-font-solid);
    transition: 0.2s ease-in-out all;
    transform: rotate(-90deg);
}

section#faq .container .faqwrapper .singlefaq .antwoord{
    display: none;
    margin: 0 auto;
    background: #005e5d;
    padding: 10px 20px;
    box-sizing: border-box;
    margin-top: 5px;
    color: white;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}

@media only screen and (max-width: 1200px) {
    section#faq{
        padding-bottom: 60px;
    }

    section#faq .container h2{
        font-size: 45px;
        line-height: 45px;
    }

    section#faq:before{
        width: 100%;
    }

    body:not(.home) section#faq{
        padding-top: 60px;
    }
}

@media only screen and (max-width: 700px) {
    section#faq .container .faqwrapper{
        grid-template-columns: 1fr;
    }
}