.m_icons {
    background: #0c0c0c;
    padding: 100px 48px 0;
}

.m_icons_container {
    max-width: 1440px;
    margin: 0 auto;
}

.m_icons_content {
    text-align: center;
}

.m_icons_subheadline {
    display: block;

    margin-bottom: 10px;

    color: #e62020;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.m_icons_headline {
    margin: 0;

    color: #fff;

    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.92;
    letter-spacing: -0.01em;
}

.m_icons_text {
    margin: 16px auto 0;

    max-width: 560px;

    color: rgba(255,255,255,.5);

    font-size: 16px;
    line-height: 1.7;
}

.m_icons_image {
    position: relative;
    margin-top: 60px;
}

.m_icons_image::before {
    content: '';

    position: absolute;
    top: 0;
    left: 0;

    width: 4px;
    height: 100%;

    background: #e62020;

    z-index: 2;
}

.m_icons_image img {
    width: 100%;
    height: auto;
    display: block;
}

.m_icons_elements {
    display: flex;
    flex-wrap: wrap;
    gap: 1px;

    margin-top: 0;

    background: rgba(255,255,255,.08);
}

.m_icons_item {
    flex: 1;
    min-width: 220px;

    background: #111;

    padding: 36px 28px;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.m_icons_item_icon {
    width: 42px;
    height: 42px;

    margin-bottom: 4px;
}

.m_icons_item_icon svg {
    width: 100%;
    height: 100%;

    fill: #e62020;
}

.m_icons_item_icon img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.m_icons_item_titel p {
    margin: 0;

    color: rgba(255,255,255,.35);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
}

.m_icons_item_fact p {
    margin: 0;

    color: #fff;

    font-size: 28px;
    font-weight: 900;
    line-height: 1.1;
}

/* Tablet */

@media (max-width: 1024px) {

    .m_icons_elements {
        gap: 1px;
    }

    .m_icons_item {
        flex: 0 0 calc(50% - 1px);
    }

}

/* Mobile */

@media (max-width: 767px) {

    .m_icons {
        padding: 80px 24px 0;
    }

    .m_icons_item {
        flex: 0 0 100%;
    }
}