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: 60px 40px 60px;
    margin-bottom: 60px;
    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: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    max-height: 60px;
}

.card-content {
    margin: 25px 0;
    font-size: 14px;
    line-height: 28px;
    height: 144px;
    color: #68747f;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}

.card-more {
    color: #68747f;
}