.faq {
    background-color: white;
    border-radius: 4px;
    padding: 13px 22px 13px 29px;
    margin-bottom: 1rem;
}

.question-row.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.answer-row {
    overflow: hidden;
    height: 0;
    transition: height 500ms ease;
    -moz-transition: height 500ms ease;
    -ms-transition: height 500ms ease;
    -o-transition: height 500ms ease;
    -webkit-transition: height 500ms ease;
}

.answer-row .row {
    display: flex;
}

.answer-row .col {
    width: 50%;
    padding-top: 17px;
    padding-bottom: 17px;
}

.answer-row .answer-image {
    margin-left: 8px;
}

.answer-row .answer-image img {
    border-radius: 10px;
}