.course-item {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2),
    0px 1px 18px rgba(0, 0, 0, 0.12),
    0px 6px 10px rgba(0, 0, 0, 0.14);
    margin-bottom: 50px;
    transition: 0.5s;
    overflow: hidden;

}

.course-item:hover {
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2),
    0px 6px 30px rgba(0, 0, 0, 0.12),
    0px 16px 24px rgba(0, 0, 0, 0.14);
    transform : translate(0, -10px);
}

a.course-item-img {
    display: block;
}

.course-item-img::after {
    content: '';
    display: block;
    padding-top: 53%;
}

.course-item-content {
    padding: 20px;
    border-bottom: 1px solid #E0E0E0;
}

a.course-item-title {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 150%;
    color: #333333;
    height: 48px;
    overflow: hidden;
    margin-bottom: 12px;
    display: block;
    text-decoration: none;
}

.course-item-tuition {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 19px;
}
.course-item-tuition .text-line-through {
    font-size: 12px;
    color: #828282;
}

.course-item-option {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.course-item-location {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 19px;
    color: #005587;
}

.course-item-location i {
    margin-right: 10px;
}

a.course-item-link {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 17px;
    color: #005587;
    text-decoration: none;
}