.fox-faq {
    width: 100%;
}

.fox-faq-header {
    text-align: center;
    margin-bottom: 55px;
}

.fox-faq-heading {
    margin: 0 0 10px;
    line-height: 1.15;
}

.fox-faq-description {
    font-size: 25px;
    line-height: 1.5;
}

.fox-faq-list {
    max-width: 1080px;
    margin: 0 auto;
}

.fox-faq-item {
    border-bottom: 1px solid #cfcfcf;
}

.fox-faq-question-wrap {
    width: 100%;
    padding: 28px 0;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
}

.fox-faq-question {
    font-size: 30px;
    line-height: 1.4;
    font-weight: 400;
    padding-right: 30px;
}

.fox-faq-icon {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7d3299;
    font-size: 34px;
    line-height: 1;
}

.fox-faq-minus {
    display: none;
}

.fox-faq-item.is-open .fox-faq-plus {
    display: none;
}

.fox-faq-item.is-open .fox-faq-minus {
    display: block;
}

.fox-faq-answer-wrap {
    padding: 0 70px 30px 0;
}

.fox-faq-answer {
    font-size: 17px;
    line-height: 1.6;
}

@media (max-width: 767px) {

    .fox-faq-header {
        margin-bottom: 30px;
    }

    .fox-faq-heading {
        font-size: 34px;
    }

    .fox-faq-question-wrap {
        padding: 20px 0;
    }

    .fox-faq-question {
        font-size: 19px;
    }

    .fox-faq-answer-wrap {
        padding-right: 20px;
        padding-bottom: 20px;
    }

    .fox-faq-answer {
        font-size: 15px;
    }

}