.m_faq {
    position: relative;

    padding: 100px 48px;

    background: #111;
    color: #fff;

    overflow: hidden;
}

.m_faq_container {
    width: 100%;
    max-width: 1440px;

    margin: 0 auto;
}

.m_faq_content {
    margin-bottom: 56px;
}

.m_faq_subheadline {
    display: block;

    margin-bottom: 10px;

    color: #e62020;

    font-weight: 700;
    letter-spacing: .3em;
    text-transform: uppercase;
}

.m_faq_headline {
    margin: 0;

    color: #fff;

    font-weight: 900;
    line-height: .9;
    text-transform: uppercase;
	
	text-align: center;
}

.m_faq_text {
    max-width: 580px;

    margin-top: 24px;

    color: rgba(255, 255, 255, .55);

    font-weight: 300;
    line-height: 1.7;
}

.m_faq_text > *:first-child {
    margin-top: 0;
}

.m_faq_text > *:last-child {
    margin-bottom: 0;
}

.m_faq_elements {
    display: flex;
    flex-direction: column;

    gap: 14px;
}

.m_faq_item {
    position: relative;

    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .03);

    transition:
        border-color .28s ease,
        background .28s ease;
}

.m_faq_item:hover,
.m_faq_item.is_open {
    border-color: rgba(230, 32, 32, .8);
    background: rgba(230, 32, 32, .08);
}

.m_faq_item_trigger {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 32px;

    padding: 26px 30px;

    color: #fff;
    background: transparent;

    border: 0;

    text-align: left;

    cursor: pointer;
}

.m_faq_item_title {
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
}

.m_faq_item_icon {
    position: relative;

    flex-shrink: 0;

    width: 22px;
    height: 22px;
}

.m_faq_item_icon span {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 18px;
    height: 2px;

    background: #e62020;

    transform: translate(-50%, -50%);

    transition:
        transform .28s ease,
        opacity .28s ease;
}

.m_faq_item_icon span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
}

.m_faq_item.is_open .m_faq_item_icon span:last-child {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
}

.m_faq_item_panel {
    display: none;

    padding: 0 30px 28px;
}

.m_faq_item_text {
    padding-top: 22px;

    color: rgba(255, 255, 255, .55);

    font-weight: 300;
    line-height: 1.7;

    border-top: 1px solid rgba(255, 255, 255, .1);
}

.m_faq_item_text > *:first-child {
    margin-top: 0;
}

.m_faq_item_text > *:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {

    .m_faq {
        padding: 80px 24px;
    }

    .m_faq_content {
        margin-bottom: 40px;
    }

    .m_faq_elements {
        gap: 12px;
    }

    .m_faq_item_trigger {
        gap: 20px;

        padding: 22px 20px;
    }

    .m_faq_item_panel {
        padding: 0 20px 24px;
    }

}