﻿header.header .hero .hero-body {
    padding: 40px 0 0;
}

.case-study-card {
    display: block;
    border-radius: 3px;
    box-shadow: 0 6px 24px 0 rgba(0, 0, 0, 0.08);
    padding: 15px 15px 0px;
    transition: all .2s ease;
    cursor: pointer;
}

.case-study-card:hover {
    transform: translate3d(0, -10px, 0)
}

.case-study-card:hover .card-more {
    color: #00a870;
}

.card-image {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-content {
    margin: 10px 0;
    font-size: 14px;
    /*line-height: 28px;*/
    color: #68747f;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-more {
    color: #68747f;
}