.section-faq h2 {
    text-align: center;
}

.section-faq__item {
    border: 1px solid #f1f1f1;
}

.section-faq__btn {
    background-color: #f7f7f7;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 14px;
    font-weight: 700;
    transition: 0.4s;
}

.section-faq__item.active,
.section-faq__btn:hover {
    background-color: #ebebeb;
}

.section-faq__btn:after {
    content: '\002B';
    color: #777;
    font-size: 16px;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.section-faq__btn.active:after {
    content: "\2212";
}

.section-faq__text {
    /*padding: 0 18px;*/
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;

    color: rgba(32,32,32,.81);
    font-size: 14px;
    line-height: 22px;
}

.section-faq__text span {
    display: inline-block;
    padding: 18px;
}