.section_faq .page_ttl{margin-bottom: 30px;}

.faq__list{
    list-style-type: none;
    margin: 0;
    position: relative;
    padding: 0;
}
.faq__item{
    margin-bottom: 15px;
    position: relative;
}
.faq__item:last-child{
    margin-bottom: 0;
}
.faq__item--boxed{
    background-color: #fff;
    border: 1px solid #D6D6D6;
    border-radius: 5px;
    overflow: hidden;
    transition: all .3s ease;
}
.faq__item--boxed:hover{  border: 1px solid #8b8b8b;}
.faq__question{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    position: relative;
    padding: 18px 16px;
    transition: all 500ms ease;
    cursor: pointer;
    font-weight: 600;
    font-size: 20px;
    color: var(--okay-body-text);
    line-height: 1.2;
}
.faq__arrow svg{
    width: 30px;
    height: 30px;
    transition: all .3s ease;
}
.faq__question.active {
    background: #2A2A2A;
    color: #fff;
}
.faq__question.active .faq__arrow svg{
    transform: rotate(-180deg);
}
.faq__content{
    position: relative;
    display: none;
    padding: 20px 16px;
}
.faq__answer{
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    font-weight: normal;
    font-family: inherit;
}
@media only screen and (max-width : 991px) {
    .faq__question{
        font-size: 18px;
        padding: 16px 10px;
    }
    .faq__content {
        padding: 16px 10px;
    }
    .faq {
        width: 100%;
    }
}
.faq_image {
    height: 590px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    border-radius: 16px;
    z-index: 1;
}