﻿.industry_title {
    margin-top: 0;
    margin-bottom: 24px;
    text-transform: uppercase;
    color: #00558c;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

.industry-card-container {
    padding-left: 20px;
    width: 615px;
}

.industrycard {
    width: 100%;
    max-width: 635px;
    height: 100px;
    background-color: #ffffff;
    padding: 20px;
    box-sizing: border-box;
    transition: background-color 0.25s ease;
    cursor: pointer;
    margin-bottom: 20px;
}

    .industrycard > div {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        padding: 0 30px 0 30px;
    }


.industrycard-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 32px;
    margin: 0;
    color: #00558c;
}

.industrycard-title:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 8px;
    height: 8px;
    border-right: 2px solid #00558c;
    border-bottom: 2px solid #00558c;
    transform: rotate(-45deg);
    position: relative;
    right: -10px;
    transition: right .3s
}

.industrycard:hover .industrycard-title:after {
    right: -20px;
}

.industrycard-body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; /* Medium */
    font-size: 16px;
    color: #00558c;
    display:none;
}

.image-container {
    width: calc( 100% - 680px );
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
    height: 100%;
}

.responsive-image {
    max-width: none;
}

.ccard__link {
    color: #00558c;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    position: relative;
    float: right;
    margin-right: 10px;
}

    .ccard__link:after {
        content: "";
        display: inline-block;
        vertical-align: middle;
        width: 8px;
        height: 8px;
        border-right: 2px solid #00558c;
        border-bottom: 2px solid #00558c;
        transform: rotate(-45deg);
        position: relative;
        right: 0;
        transition: right .3s
    }

    .ccard__link:hover:after, .ccard__link:focus:after {
        right: -10px;
        border-color: #222;
    }

@media only screen and (max-width: 992px) {

    .industrycard-title {
        font-size: 20px;
    }

    .industry-card-container, .image-container {
        width: 100%;
        padding-left: 7.5px;
        padding-top: 12.5px;
    }

    .image-container {
        display: block;
        overflow: auto;
    }

    .responsive-image, .industrycard {
        max-width: 100%;
    }

    .industrycard {
        height: auto;
    }

        .industrycard > div {
            padding: 0;
            transform: none;
            top: auto;
        }

    .industrycard-body {
        font-size: 18px;
        margin-block: auto;
        margin: 10px 0 0 0;
    }

    .industrycard:active {
        /* background-color: #00bfae;*/
    }

    .ccard__link {
        float: none;
        margin: 40px 35px;
        display: block;
    }
}
