.nt-faq_main-title {
    color: var(--e-global-color-primary );
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 10px;
}

.nt-faq_main-title-separator {
    overflow: hidden;
    text-align: center;
}
.nt-faq_main-title-separator-inner {
    position: relative;
    display: inline-block;
}
.nt-faq_main-title-separator img {
    height: 50px;
    width: 50px;
    object-fit: contain;
}
.nt-faq_main-title-separator-inner:before {
    content: "";
    height: 1px;
    width: 100px;
    background-color: black;
    position: absolute;
    top: 50%;
    left: -110px;
}
.nt-faq_main-title-separator-inner:after {
    content: "";
    height: 1px;
    width: 100px;
    background-color: black;
    position: absolute;
    top: 50%;
    right: -110px;
}

.nt-faq-listing {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nt-faq-item {
    border: 1px solid #DEDEDE;
    display: flex;
    flex-direction: column;
}
.nt-faq-item .nt-faq-item_question {
    background: none;
    color: var(--e-global-color-text);
    cursor: pointer;
    text-align: left;
    padding: 18px 60px 18px 24px;
    font-size: 1.125rem;
    position: relative;
    transition: .3s;
}
.nt-faq-item .nt-faq-item_question:hover,
.nt-faq-item.active .nt-faq-item_question {
    background: #F0F0F0;
}
.nt-faq-item .nt-faq-item_question:before,
.nt-faq-item .nt-faq-item_question:after{
    content:"";
    background: black;
    display: block;
    height: 1px;
    width: 22px;
    position: absolute;
    top: 50%;
    right: 24px;
    transition: .3s;
}
.nt-faq-item .nt-faq-item_question:before {
    transform: rotate(90deg);
}
.nt-faq-item .nt-faq-item_question:after {
    transform: rotate(180deg);
}
.nt-faq-item.active .nt-faq-item_question:before,
.nt-faq-item.active .nt-faq-item_question:after {
    transform: none;
}


.nt-faq-item .nt-faq-item_reponse {
    color: var(--e-global-color-text);
    padding: 12px 24px;
    font-size: 1rem;
    display: none;
    opacity: 0;

    transition: opacity .3s;
}

.nt-faq-item.active .nt-faq-item_reponse {
    opacity: 1;
}
