.fc_frequently_asked_questions .tab_inner {
    box-sizing: border-box;
    background: #f9f9f9;
    padding: 0 30px;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s, padding 0.4s;
}
.fc_frequently_asked_questions .tab_inner > .wp_content {
    overflow: hidden;
}

.fc_frequently_asked_questions .tab_inner > .wp_content p {
    color: #6f6f6f;
    font-size: 18px;
}

.fc_frequently_asked_questions .faq_item.active .tab_inner {
    grid-template-rows: 1fr;
    padding: 30px;
}

.fc_frequently_asked_questions .faqs_container_nested {
    display: flex;
    gap: var(--gap-xl);
    flex-wrap: wrap;
}
.fc_frequently_asked_questions .faqs_container_nested .faqs_container {
    width: calc(50% - var(--gap-xl) / 2);
}
.faqs_container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faqs_container_nested h3 {
    color: var(--black);
    padding-left: 48px;
    background: left / 28px 30px no-repeat var(--logomark);
}
.fc_frequently_asked_questions .faq_item{
    background: var(--white-smoke);
}
.fc_frequently_asked_questions .faq_item .title {
    cursor: pointer;
    margin: 0;
    background: var(--white-smoke) calc(100% - 20px) center / 18px 10px no-repeat
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='22' height='13' fill='none'%3e%3cpath fill='%23F93A3C' d='M21.6 1.7c.5.3.5 1 .1 1.4l-10 9.6a1 1 0 0 1-1.4 0l-2-1.9a.9.9 0 0 1 0-1.2L18 .3a1 1 0 0 1 1.2-.1l2.4 1.5Z'/%3e%3cpath fill='%23F93A3C' d='M2.8.2A1 1 0 0 1 4 .2l9.6 9.4c.4.3.4.9 0 1.2l-2 2a1 1 0 0 1-1.3 0L.3 3a.9.9 0 0 1 .1-1.4L2.8.2Z'/%3e%3c/svg%3e");
    border-radius: 5px;
    padding: 20px 45px 20px 20px;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: 700;
    color: var(--tertiary);
}

@media (max-width: 1240px) {
    .fc_frequently_asked_questions .faqs_container_nested {
        gap: var(--gap-l);
    }
    .fc_frequently_asked_questions .faqs_container_nested .faqs_container {
        width: calc(50% - var(--gap-l) / 2);
    }
    .fc_frequently_asked_questions {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .fc_frequently_asked_questions {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

@media (max-width: 640px) {
    .fc_frequently_asked_questions .faqs_container_nested {
        gap: 20px;
    }
    .fc_frequently_asked_questions {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .fc_frequently_asked_questions .faqs_container_nested {
        flex-direction: column;
    }
    .fc_frequently_asked_questions .faqs_container_nested .faqs_container {
        width: 100%;
    }
}