.faq {
    background-color: white;
    color: black;
    border-radius: 4px;
    box-shadow: 0 5px 10px 0 rgb(0, 0, 0, 0.25);
    margin-top: 8px;
    font-size: 18px;
    font-weight: 500;
    color: #ef5948;
}

.question {
    padding: 10px 65px 10px 14px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
}

.question .icon {
    margin-right: 4px;
    font-size: 17px;
    color: #f4a935;
}

.question::after {
    content: "\002B";
    font-size: 18px;
    position: absolute;
    right: 20px;
    transition: 0.2s;
}

.question.active::after {
    transform: rotate(45deg);
}

.answercont {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}

.answer {
    padding: 10px 20px 20px;
    line-height: 30px;
    background: #fff0ee;
    font-size: 18px;

}

.answer .icon-left {
    margin-right: 4px;
    font-size: 18px;
    color: #f4a935;
}

.answer .icon-right {
    margin-left: 4px;
    font-size: 18px;
    color: #f4a935;
}

@media screen and (max-width: 790px) {
    html {
        font-size: 14px;
    }

    .wrapper {
        width: 80%;
    }
}