.faq-list {
    width: 49.3%;
}
.faq__item {
    width: 100%;
    background-color: #FFFFFFFA;
    margin-bottom: 16px;
    border-radius: 5px;
    position: relative;
    transition: all .3s;
    border: 1px solid #EDEDED;
    box-shadow: 0 0 0 #00000026, 0 0 0 #00000012, 0 0 0 #00000017;
    transition: all .3s ease;
}
.faq-list .faq__item:last-child {
    margin-bottom: 0;
}
.faq__item--boxed{
    padding: 5px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: inset 0 0 6px #0000004d;
}
.faq__question {
    padding: 14px 20px;
    text-transform: none;
    border-bottom: 1px solid transparent;
    position: relative;
    transition: all 500ms ease;
    cursor: pointer;
    gap: 20px;
    line-height: 1.2;
    min-height: 72px;
}
.question_text {
    font-size: 18px;
    color: #121212;
    margin-bottom: 0;
    font-weight: 600;
    transition: all .3s;
    font-family: 'Nunito Sans';
}
.see_more_plus {
    transition: all .3s;
    color: var(--body-heading);
    display: flex;
}
.faq__question.active {
    background: #fff;
    color: var(--okay-basic-company);
}
.faq__question.active .faq__arrow{
    transform: rotate(-90deg);
}
.faq__content {
    padding: 0 !important;
    border-bottom: none;
    border-radius: 5px;
    position: relative;
    display: none;
}
.faq__answer {
    font-size: 16px;
    font-weight: 400;
    color: #555555;
    margin: 0 20px 0;
    padding: 16px 0 20px;
    position: relative;
    line-height: 1.6;
    border-top: 1px solid #EDEDED
}
.faq__question.active .question_text, .faq_item:hover .question_text {
    color: var(--body-heading);
}
.faq__question.active .see_more_plus {
    transform: rotate(180deg);
}
@media only screen and (max-width : 767px) {
    .faq__question{
        font-weight: 500;
        font-size: 14px;
    }
}