/*************/
/** FAQ **/
/*************/
.finder-faq {
    padding: 80px 40px;
    box-sizing: border-box;
    max-width: 1050px;
    margin: 0 auto;
    background-color: #fff;
    --FONT-CLARINS: "ClarinsRegular", "Clarins";
    --FONT-GOTHAM-BOOK: "Gotham SSm book A", "Gotham SSm book B", Helvetica, Arial,
        sans-serif;
    --FONT-GOTHAM-MEDIUM: "Gotham SSm medium A", "Gotham SSm medium B", Helvetica,
        Arial, sans-serif;
    font-family: var(--FONT-GOTHAM-BOOK);
}

.finder-faq__title {
    margin: 0;
    font-size: 36px;
    color: #333;
    text-align: center;
    font-weight: normal;
    font-family: var(--FONT-CLARINS);
}

.finder-faq__text {
    margin: 20px;
    color: #333;
    text-align: center;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.4em;
    font-family: var(--FONT-GOTHAM-MEDIUM);
}

@media(max-width:761px) {
    .finder-faq {
        margin: 0px;
        padding: 20px;

    }

    .finder-faq__title {
        font-size: 30px;
        line-height: 1em;
        text-align: center;
        padding-top: 20px;

    }

}


/*----Elements---*/
.finder-faq__container {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    margin-top: 30px;

}

@media(min-width:1024px) {
    .finder-faq__container {
        display: flex;
        gap: 40px;
    }

    .finder-faq__row {
        flex-basis: 50%;
    }
}

.finder-faq__item {
    text-align: left;
    border-bottom: 1px solid #cbcbcb;
}

.finder-faq__question {
    margin: 0;
    font-size: 14px;
    font-family: var(--FONT-GOTHAM-MEDIUM);
    font-weight: normal;
    padding: 15px 0;
    line-height: 20px;
    padding-right: 40px;
    cursor: pointer;
    position: relative;
    color: #333;
}

.finder-faq__question::after {
    content: "+";
    position: absolute;
    top: 0px;
    right: 0;
    width: 40px;
    height: 50px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Gotham SSm book A", "Gotham SSm book B", "Gotham Book",
        Helvetica, Arial, sans-serif;
    color: #8b8b8b;
    cursor: pointer;
}

.finder-faq__question--active::after {
    content: "-";
}

.finder-faq__answer {
    height: 0;
    overflow: hidden;
    transition: height ease-in-out 0.5s;
}

.finder-faq__answer-content {
    font-size: 13px;
    line-height: 1.4em;
    display: block;
    margin: 0;
    padding: 10px;
}

.finder-faq__answer-content a {
    color: #333;
    text-decoration: underline;
    font-family: var(--FONT-GOTHAM-MEDIUM);
}

.finder-faq__answer-content p {
    margin: 0;
}

.finder-faq .dp-link {
    margin-top: 50px;
}

.finder-faq__mentions {
    font-size: 11px;
    opacity: 0.5;
}

/*--responsive------*/
@media screen and (max-width: 1023px) {

    .finder-faq__question {
        margin: 0;
        font-size: 14px;
        line-height: 1.4em;
    }

    .finder-faq__answer-content {
        font-size: 13px;
        line-height: 1.4em;
    }

}



/*------------------------------------------------------------------------------------*/
.finder-faq__answer-content p {
    margin: 0 0 10px;
}
.finder-faq__answer-content p:last-of-type {
    margin-bottom: 0;
}