/* Hover effect on course listings */
.product-link:hover {
transform: scale(1.05);
color: #003087
}

.product-link {
transition: transform 0.5s ease;
transform: none;
color: #000000;
}

/* blue underline when hover over listings */
.product-results .product-tile:hover {
    box-shadow: inset 0px -5px 0px #003087;
}

/* end hover effect on course listings */
