section.industries-section {
    padding: 60px 0;
    background-color: #191919;
}

section.industries-section .text-wrapper {
    margin-bottom: 48px;
}
section.industries-section .text-wrapper h2 {
    color: #FFFFFF;
    line-height: 56px;
    margin-bottom: 12px;
}
section.industries-section .text-wrapper h6 {
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: #FFFFFF;
    opacity: 0.3;


}
section.industries-section .text-wrapper p {
    color: #FFFFFF;
    font-size: 18px;
    margin-bottom: 0;
}

section.industries-section .list-industries {
    flex-direction: row !important;
    align-items: center;
    justify-content: space-between;
}

section.industries-section .list-industries .services-card a {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
}

section.industries-section .list-industries .services-card img {
    width: 52px;
    margin-right: 20px;
}

section.industries-section .list-industries .services-card a:hover {
    color: #4BABE7;
}
section.industries-section .list-industries .services-card a:hover p::after {
    display: inline-block;
    transition: all 0.5s ease;
}
section.industries-section .list-industries .services-card p::after {
    content: "";
    display: none;
    margin-left: 20px;
    vertical-align: top;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('../../assets/img/blue-arrow-bold@2x.png');
}

@media screen and (max-width: 767px) {
    .industries-services .industries-list {
        flex-direction: column;
        align-items: stretch;
    }

    /* The cards carry Bootstrap's col-6 (flex: 0 0 50%; max-width: 50%) from
       block.php. That is correct for the two-up grid, but once this list becomes
       a single column the 50% cap is never lifted, so each card renders at half
       the viewport width and centred - an indented column with heavily wrapped
       labels. Restore full width for the stacked layout. */
    section.industries-section .list-industries .services-card {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }
}