/*master samplings 2024 - 19-09-2024 */
.dp-faq {
    text-align: center;
    background-color: #fff;
    padding-top: 80px;
    padding-bottom: 64px;
    --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);
    position: relative;
    z-index: 2;
}

.dp-faq__title {
    margin: 0 auto;
    max-width: 750px;
    font-family: var(--FONT-GOTHAM-BOOK);
    font-size: 48px;
    font-weight: 400;
    line-height: 70px;
    text-align: center;
    z-index: 2;
    position: relative;
    color: #333333;
}

.dp-faq__text {
    margin: 0;
    margin-top: 24px;
    color: #333333;
    font-family: var(--FONT-GOTHAM-BOOK);
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    text-align: center;
}

/*----Elements---*/
.dp-faq__container {
    width: 100%;
    max-width: 832px;
    margin: 0 auto;
    margin-top: 40px;

}

.dp-faq__item {
    text-align: left;
    border-bottom: 1px solid #cbcbcb;
}

.dp-faq__question {
    margin: 0;
    font-size: 14px;
    font-family: var(--FONT-GOTHAM-MEDIUM);
    font-weight: normal;
    padding: 15px 0;
    line-height: 24px;
    padding-right: 40px;
    cursor: pointer;
    position: relative;
    color: #333;
}

.dp-faq__question:focus-visible {
    box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #6893D2;
}

.dp-faq__question::after {
    content: " ";
    position: absolute;
    top: 16px;
    right: 0;
    width: 24px;
    height: 24px;
    background-image: url(../img/down.svg);
    background-size: cover;
    display: flex;
    cursor: pointer;
    transition: transform ease-in-out 0.5s;
}

.dp-faq__question--active::after {
    transform: rotate(180deg);
}

.dp-faq__answer {
    height: 0;
    overflow: hidden;
    transition: height ease-in-out 0.2s;
}

.dp-faq__answer-content {
    font-size: 14px;
    line-height: 1.4em;
    display: block;
    margin: 0;
    padding: 10px;
}

.dp-faq__answer-content a {
    color: #333;
    text-decoration: underline;
    font-family: var(--FONT-GOTHAM-MEDIUM);
}

.dp-faq__answer-content p {
    margin: 0;
}

.dp-faq .dp-link {
    margin-top: 50px;
}

.dp-faq__mentions {
    font-size: 11px;
    opacity: 0.5;
}

/*--responsive------*/
@media screen and (max-width: 1023px) {
    .dp-faq {
        margin: 0px;
        padding: 20px;
    }

    .dp-faq__title {
        padding-top: 20px;
    }

    .dp-faq__question {
        margin: 0;
        font-size: 16px;
        line-height: 1.4em;
    }

    .dp-faq__answer-content {
        font-size: 14px;
        line-height: 1.4em;
    }

}

@media screen and (max-width: 761px) {
    .dp-faq__title {
        font-size: 34px;
        line-height: 40px;
    }
}