.faq__right {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.faq__right i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: linear-gradient(180deg, #FFC6D8 0%, #FF7FA7 100%);
    transform: rotate(10deg);
    font-size: 1.25rem;
    color: #FFF;
    box-shadow: 0px 12px 20px 0px #FF7FA74D;
}

.faq__ws {
    display: flex;
    flex-direction: column;
}

.faq__title {
    font-size: 28px;
    font-weight: 700;
    color: #0B014A;
    font-family: var(--shoor);
    line-height: 1;
}

.faq__ws .faq__sub_title {
    font-size: 12px;
    font-weight: 400;
    line-height: 2;
}

.faq__box {
    background: #FFFF;
    border-radius: 24px;
    padding: .8rem;
    position: relative;
}

.faq_right_body {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.faq__question_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq__question_btn i {
    transform: rotate(270deg);
}

.body_icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: #6462F91A;
    transform: rotate(10deg);
    font-size: 1.25rem;
    color: #6462F9;
}

.body_icon {
    background: linear-gradient(180deg, #F6F7F9 0%, rgba(246, 247, 249, 0) 100%);
    padding: .8rem;
    border-radius: 24px;
}

.faq__question_btn .d-flex {
    align-items: center;
    gap: .5rem;
}

.faq__title_item {
    color: #0B014A;
    font-size: 1rem;
    font-weight: bold;
}

.faq__question_btn i {
    font-size: 13px;
    padding: 1rem;
    transition: .8s;
}

.faq__answer {
    font-size: 14px;
    padding: 1rem;
    background: linear-gradient(180deg, #F6F7F9 0%, rgba(246, 247, 249, 0) 100%);
    border-radius: 24px;
    margin-top: 10px;
    color: #0B014A;
    opacity: .7;
    line-height: 2;
    display: none;
}

.faq__answer.active {
    display: flex;
}

.faq__box .faq__question_btn.active i {
    color: #0B014A;
    transform: rotate(90deg);

}

.faq__question_btn.active .d-flex .body_icon i::after {
    opacity: 1;
}

.faq__question_btn .d-flex .body_icon i::after {
    content: '';
    position: absolute;
    background: linear-gradient(180deg, #A09EFF 0%, #6462F9 100%);
    opacity: 0;
    inset: 0;
    transition: 0.5s;
    z-index: -1;
}

.faq__question_btn .d-flex .body_icon i {
    font-size: 24px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.faq__question_btn.active .d-flex .body_icon i {
    color: #FFF;
    transform: rotate(0deg);
    box-shadow: 0px 12px 20px 0px #6462F94D;
}

.all_items_faq {
    position: relative;
}

.all_items_faq:before {
    content: "";
    width: 253px;
    height: 110%;
    background-color: #E9EAF0;
    position: absolute;
    border-radius: 48px;
    left: 10%;
}

.faq_right__heading {
    margin-bottom: 24px;
}

.faq__right {
    position: relative;
}

@media (max-width:991.98px) {

    .all_items_faq:before {
        content: unset;
    }

    .all_items_faq {
        margin-bottom: unset;
    }
}

@media (max-width:767.98px) {}


@media (max-width:575.98px) {

    .faq__right {
        position: relative;
    }

    .body_icon {
        display: none;
    }

}