.m_network {
    padding: 0 48px 100px 48px;
    background: #111;
    color: #fff;
}

.m_network_container {
    max-width: 1440px;
    margin: 0 auto;
}

.m_network_content {
    max-width: 720px;
    margin-bottom: 56px;
}

.m_network_subheadline {
    display: block;
    margin-bottom: 10px;

    color: #e62020;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .3em;
    text-transform: uppercase;
}

.m_network_headline {
    margin: 0;

    font-weight: 900;
    line-height: .9;
    text-transform: uppercase;
}

.m_network_text {
    margin-top: 24px;

    max-width: 580px;

    color: rgba(255, 255, 255, .55);

    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
}

.m_network_elements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.m_network_item {
    position: relative;
    cursor: pointer;
    padding: 34px 30px;

    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .03);

    transition: border-color .28s ease, background .28s ease, transform .28s ease;
}

.m_network_item:hover {
    transform: translateY(-4px);

    border-color: rgba(230, 32, 32, .8);
    background: rgba(230, 32, 32, .08);
}

.m_network_item_logo {
    display: flex;
    align-items: center;

    height: 70px;
    margin-bottom: 32px;
}

.m_network_item_logo img,
.m_network_item_logo svg {
    max-width: 180px;
    max-height: 70px;

    width: auto;
    height: auto;
}

.m_network_item_name p {
    margin: 0 0 8px;

    color: #fff;

    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
}

.m_network_item_partnership p {
    margin: 0;

    color: rgba(255, 255, 255, .45);

    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.m_network_cta {
    margin-top: 24px;
    padding: 40px;

    border: 1px solid rgba(230, 32, 32, .45);
    background: rgba(230, 32, 32, .12);
}

.m_network_cta_title {
    margin: 0 0 16px;

    color: #fff;

    font-weight: 900;
    line-height: .95;
    text-transform: uppercase;
}

.m_network_cta_text {
    max-width: 620px;
    margin-bottom: 28px;

    color: rgba(255, 255, 255, .6);

    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
}

.m_network_cta_link a {
    display: inline-flex;
}

@media (max-width: 1024px) {
    .m_network_elements {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .m_network {
        padding: 0 24px 72px 24px;
    }

    .m_network_elements {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .m_network_cta {
        margin-top: 18px;
        padding: 30px 24px;
    }
}