.faq_custom {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.faq__list{
    list-style-type: none;
    margin: 0;
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq__item{
    margin-bottom: 0;
    position: relative;
    background-color: #F5F5F5;
}
.faq__item--boxed{
    background-color: #F2F6F1;
    border-radius: 130px;
    transition: all .3s ease;
    min-height: 84px;
    z-index: 10;
}
.faq__item--boxed.visible{
    transition: var(--tr-3s);
    border-radius: 36px;
    z-index: 99;
}
.faq__wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: max-content;
    z-index: 20;
    background: black;
    background-color: #F2F6F1;
    border: 1px solid #DEEADF;
    transition: var(--tr-3s);
    box-shadow: 0px 4px 17px 0px transparent;
    border-radius: 36px;
}
.faq__item--boxed.visible .faq__wrapper {
    border: 1px solid #68B745;
}

.faq__question{
    position: relative;
    padding: 20px 30px;
    transition: all .3 ease;
    cursor: pointer;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    color: var(--body-text);
    display: flex;
    min-height: 84px;
}
.faq__question svg{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-30px, -50%);
    color: var(--basic-company);
}
.faq__question span{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(30px, -50%);
    width: 80%;
}
.faq__arrow{
    position: absolute;
    width: 40px;
    height: 40px;
    top: calc(50% - 20px);
    left: auto;
    right: 16px;
    transition: all .3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40' fill='none'%3E%3Cpath d='M11 16L20 24L29 16' stroke='%23F06402' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}
.faq__question.active svg{transform: translate(-30px, -50%) rotate(-180deg);}
.faq__question.active{color: #68B745;}
.faq__content{
    position: relative;
    display: none;
    padding: 0 0 0 50px;
    border-bottom: 1px solid #f2f2f2;
}
.faq__answer{
    position: relative;
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.6;
    font-weight: 400;
    padding: 20px 30px 20px 30px;
}
.faq__answer::before{
    content: '';
    position: absolute;
    width: 91%;
    height: 2px;
    background: #DEEADF;
    top: 0;
    left: 30px;
}
.faq__wrapper:hover .faq__question{
    color: var(--basic-company);
}

.faq__wrapper:hover{
    border: 1px solid #68B745
}
