.new-faq .faq-header small {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    color: #CB2128;
}

.new-faq .faq-header .section-header {
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    text-transform: uppercase;
    color: #1F3357;
}

.new-faq .faq-header {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.new-faq {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 64px;
    margin-top: 64px
}

.new-faq .faq-body {
    display: flex;
    justify-content: space-between;
}

.new-faq .faq-body .image {
    width: 48%;
}
.new-faq .faq-body .image img {
    width: 100%;
    height: 100%;
}
.new-faq .faq-body .content {
    width: 48%;
}

.new-faq .faq-body .content .tabs {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
}

.new-faq .faq-body .content .tabs .tab span {
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.2px;
    padding-bottom: 8px;
    width: fit-content;
    border-bottom: 1px solid transparent;
    color: rgba(122, 120, 143, 1);
    cursor: pointer;
}

.new-faq .faq-body .content .tabs .tab {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.new-faq .faq-body .content .tab-content {
    display: flex;
    flex-direction: column;
    gap: 24px
}
.new-faq .faq-body .content .tab-wrapper {
    display: flex;
    flex-direction: column;
    gap: 22px
}
.new-faq .faq-body .content .tab-content .tab-block {
    display: flex;
    flex-direction: column;
    gap: 20px
}
.new-faq .faq-body .content .tabs .tab.is-active span {
    border-bottom: 1px solid #CB2128;
    color: #CB2128;
}

.new-faq .faq-body .content .tab-block .block-title {
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.2px;
    color: #1F3357;
    cursor: pointer;
}

.new-faq .faq-body .content .tab-block .block-content {
    display: none;
}

.new-faq .faq-body .content .tab-block.is-active .block-content {
    display: block;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    color: #1F3357;
}


.new-faq .faq-body .content .tab-block .icon-svg {
    width: 12px;
    height: 12px;
}

@media screen and (max-width: 768px) {
    .new-faq {
        margin: 32px 0;
        gap: 24px
    }
    .new-faq .faq-body {
        flex-direction: column;
    }

    .new-faq .faq-body .image {
        width: 100%;
    }
    .new-faq .faq-body .content {
        width: 100%;
        margin-top: 24px
    }
    .new-faq .faq-header small {
        font-size: 12px;
    }
    .new-faq .faq-header .section-header {
        font-size: 24px;
        line-height: 28px;
    }

    .new-faq .faq-body .content .tab-block .block-title {
        font-size: 16px;
        line-height: 20px;
    }

    .new-faq .faq-body .content .tab-block.is-active .block-content {
        font-size: 14px;
        line-height: 18px;
    }

    .new-faq .faq-body .content .tabs .tab span {
        font-size: 16px;
        line-height: 20px;
    }
    .new-faq .faq-body .content .tabs {
        gap: 20px
    }
}