.faq{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.block__description .faq{
    grid-template-columns: repeat(1, 1fr);
}
.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 {
    padding: 5px;
    background-color: #f0f0f0;
    border-radius: 10px;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 22px;
    background: #FFFFFF80;
    box-shadow: 0px 3px 12px 0px #0000002e;
}
.faq__question{
    position: relative;
    padding: 15px 50px 15px 15px;
    transition: all 500ms ease;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: var(--okay-body-text);
    line-height: 1.2;
}
.faq__arrow{
    position: absolute;
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    right: 15px;
    color: var(--basic-company);
    transition: all .3s ease;
}
.faq__question.active {
    color: var(--okay-basic-company);
}

.faq__content{
    position: relative;
    display: none;
    padding: 0 50px 0 15px;
}
.faq__answer{
    position: relative;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: normal;
    font-family: inherit;
}
