.brandfaq {
    width: 100%;
    background: #f7f7f7;
}

.inner_brandfaq {
    display: flex;
    flex-flow: column;
    max-width: 748px;
    padding: 2rem 1rem;
    margin: 0 auto;
}

.brandfaq .title {
    display: flex;
    flex-flow: column;
    align-items: center;
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    padding: 0 1rem;
}

.brandfaq .title .fa {
    font-size: 2.5rem;
    line-height: 4rem;
}

.brandfaq .question {
    width: calc(100% - 2rem);
    padding: 1rem;
    margin: .75rem 0;
    border-radius: 1rem;
    cursor: pointer;
    border: 1px solid #cdcdcd;
}

.brandfaq .question .ask {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}
.brandfaq .question .ask .fa {
    font-size: 1.5rem;
    margin: 0 1.5rem;
    transition: transform .3s;
}

.brandfaq .question .answer {
    display: none;
    padding-top: 1rem;
}
.brandfaq .question .answer p:nth-child(n+2) {
    margin-top: 1rem;
}
.brandfaq .question .answer ol>li {
    list-style-type: decimal;
}

.brandfaq .question.opened {
    background: #ffffff;
    border-color: transparent;
}
.brandfaq .question.opened .ask .fa {
    transform: rotate(180deg);
}