.faq_wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-top: 1px solid #d9d9db;
    margin-top: 30px;
    padding-bottom: 100px;
}

.faq_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #d9d9db;
    padding-bottom: 10px;
}
.faq_question {
    width: 100%;
    display: flex;
    padding: 10px 30px 0 0;
    font-weight: bold;
    cursor: pointer;
    position: relative;
}
.faq_question:after {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    content: '\f061';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
    height: 16px;
    color: #f07e26;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.open .faq_question:after {
    transform: rotate(90deg);
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.faq_answer {
    display: none;
    width: 100%;
}
.faq_answer p {
    padding: 10px;
    font-size: 18px;
}
