.product-grid {
    font-family: 'Rubik', sans-serif;
    padding: 10px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, .15)!important;
    margin: 0 0px;
    transition: all 0.5s ease 0s;
}
.product-grid:hover{ box-shadow: 0px 0px 26px 0px rgba(0, 0, 0, 0.1); }
.product-grid .product-image{ position: relative; }
.product-grid .product-image a.image{ display: block; }
.product-grid .product-image img{
    width: 100%;
    height: 200px;
}
.product-grid .product-links{
    background: #fff;
    padding: 10px 0;
    margin: 0;
    box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.08);
    list-style: none;
    opacity: 0;
    position: absolute;
    bottom: 10px;
    left: 10px;
    transition: all 0.3s ease 0s;
}
.product-grid:hover .product-links{ opacity: 1; }
.product-grid .product-links li{
    padding: 0 13px;
    border-right: 1px solid #ebebeb;
    display: inline-block;
}
.product-grid .product-links li:last-child{ border-right: none; }
.product-grid .product-links li a{
    color: #222222;
    font-size: 15px;
    display: block;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease 0s;
}
.product-grid .product-links li a:hover{ color: #cc2121; }
.product-grid .product-links li a:before,
.product-grid .product-links li a:after{
    content: attr(data-tip);
    color: #fff;
    background-color: #383838;
    font-size: 12px;
    line-height: 18px;
    padding: 7px 10px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, .15);
    white-space: nowrap;
    display: none;
    transform: translateX(-50%);
    position: absolute;
    top: -42px;
    left: 50%;
    transition: all .3s ease 0s;
}
.product-grid .product-links li a:after{
    content: '';
    height: 15px;
    width: 15px;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transform: translateX(-50%) rotate(45deg);
    top: -20px;
}
.product-grid .product-links li a:hover:before,
.product-grid .product-links li a:hover:after{
    display: block;
}
.product-grid .product-content{
    padding: 15px 0;
    position: relative;
}
.product-grid .product-category{
    color: #929292;
    font-size: 13px;
    font-weight: 400;
    width: 100%;
    line-height: 22px;
    margin: 0 0 5px;
    display: inline-block;
}
.product-grid .product-category a{
    color: #929292;
    transition: all .3s ease 0s;
}
.product-grid .rating{
    font-size: 13px;
    width: 70px;
    padding: 0;
    margin: 0;
    list-style: none;
    display: inline-block;
}
.product-grid .rating li{
    color: #f5c60d;
    margin: 0 -2px;
}
.product-grid .rating li.disable{ color: #c4c4c4; }
.product-grid .title{
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0 0 6px;
}
.product-grid .title a{
    color: #292929;
    transition: all 0.3s ease 0s;
}
.product-grid .product-category a:hover,
.product-grid .title a:hover{
    color: #cc2121;
}
.product-grid .price{
    color: #cc2121;
    font-size: 15px;
    font-weight: 500;
}
@media screen and (max-width: 990px){
    .product-grid{ margin-bottom: 30px; }
}
h2.service-head {
    font-size: 24px;
    margin: 20px 0px;
}