.sec-faq-wrapper{
    padding: 50px 0;
    background-color: #111112;
    display: none !important;
}
body.home .sec-faq-wrapper{
    padding: 150px 0 50px;
}
.acf-faq {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.acf-faq__item {
    width: 100%;
}

.acf-faq__question {
    background-color: #232323;
    list-style: none;
    margin: 0;
    padding: 20px;
    text-align: left;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 0;
    cursor: pointer;
}
.acf-faq__question:hover {
    background-color: #303030;
}



.acf-faq__question-text {
    flex: 1 1 auto;
}

.acf-faq__icon {
    flex: 0 0 auto;
    display: inline-block;
    width: 18px;
    height: 14px;
    background-image: url(../images/faq.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: rotate(-90deg);
    transition: transform 0.25s ease;
}

.acf-faq__answer {
    padding: 20px 30px 24px;
    color: #fff;
}


.acf-faq__answer-inner > *:first-child {
    margin-top: 0;
}

.acf-faq__answer-inner > *:last-child {
    margin-bottom: 0;
}

.acf-faq__item.is-open .acf-faq__icon {
    transform: rotate(-270deg);
}


@media (max-width: 767px) {
    .sec-faq-wrapper{
        padding: 80px 0 30px;
    }
    .acf-faq__icon {
        width: 14px;
        height: 18px;
    }
}