
.faq__item{
    margin-bottom: 0;
    position: relative;
    border: 1px solid #DADADA;
    background-color: #F5F5F5;
}
.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--boxed {
     background-color: #ffffff;
    border-radius: 130px;
    transition: all .3s ease;
    min-height: 84px;
    z-index: 10;
    box-shadow: none;
    border: none;
}
.faq__wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: max-content;
    z-index: 20;
    background: black;
    background-color: #ffffff;
    border: 1px solid #C3C3C3;
    transition: var(--tr-3s);
    box-shadow: 0px 4px 17px 0px transparent;
    border-radius: 5px;
}
.faq__question {
    position: relative;
    padding: 28px 16px;
    transition: all .3 ease;
    cursor: pointer;
    font-weight: 600;
    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(-16px, -50%);
    color: #5D5D5D;
    transition: all .3s ease;
}
.faq__question span {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(16px, -50%);
    width: 80%;
}
.faq__content {
    padding: 0 !important;
    border-bottom: none;
    border-radius: 5px;
    position: relative;
    display: none;
}
.faq__answer {
    position: relative;
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.6;
    font-weight: 400;
    padding: 28px 16px;
    padding-top: 0;
    color: #5D5D5D;
}

.faq__item--boxed.visible {
    transition: var(--tr-3s);
    border-radius: 36px;
    z-index: 99;
}
.faq__item--boxed.visible .faq__wrapper {
    border: 1px solid var(--basic-company);
}
.faq__question.active {
    color: var(--basic-company);
}
.faq__wrapper:hover {
    border: 1px solid var(--basic-company);
}
.faq__wrapper:hover svg {
    color:var(--basic-company);
}
.faq__question.active svg {
    transform: translate(-16px, -50%) rotate(-180deg);
}

.faq__content{
    position: relative;
    display: none;
    padding: 0 0 0 50px;
    border-bottom: 1px solid #f2f2f2;
}

