.product-grid{
    text-align: center;
    position: relative;
    z-index: 1;
    border: 1px solid #2A3A8F;
}
.product-grid:before,
.product-grid:after{
    content: "";
    width: 0;
    height: 0;
    border-top: 1px solid #2A3A8F;
    border-left: 1px solid #2A3A8F;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}
.product-grid:after{
    border: none;
    border-right: 1px solid #2A3A8F;
    border-bottom: 1px solid #2A3A8F;
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
}
.product-grid:hover:before,
.product-grid:hover:after{
    width: 100%;
    height: 100%;
}
.product-grid .product-image{
    padding: 1px;
    overflow: hidden;
    position: relative;
}
.product-grid .product-image a.image{ display: block; }
.product-grid .product-image img{
    width: 100%;
    height: auto;
}
.product-grid .product-sale-label{
    color: #fff;
    background-color: #57b8eb;
    font-size: 13px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 2px 8px;
    position: absolute;
    left: 10px;
    top: 10px;
}
.product-grid .product-links{
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    position: absolute;
    top: 7px;
    right: 7px;
    z-index: 2;
    transition: all 0.3s ease 0s;
}
.product-grid:hover .product-links{ opacity: 1; }
.product-grid .product-links li a{
    color: #aaa;
    font-size: 16px;
    line-height: 31px;
    height: 33px;
    width: 33px;
    margin: 0 0 7px;
    border: 1px solid #e1e1e1;
    border-radius: 3px;
    display: block;
    transition: all 0.3s ease 0s;
}
.product-grid .product-links li a:hover{
    color: #fff;
    background-color: #2A3A8F;
    border-color: #2A3A8F;
}
.product-grid .product-content{ padding: 15px; }
.product-grid .title{
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0 0 11px;
}
.product-grid .title a{
    color: #202020;
    transition: all 0.3s ease 0s;
}
.product-grid .title a:hover{ color: #999; }
.product-grid .price{
    color: #555;
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 12px;
}
.product-grid .price span{ text-decoration: line-through; }
.product-grid .add-cart{
    color: #f3f3f3;
    background: #2A3A8F;
    font-size: 16px;
    font-weight: 400;
    padding: 8px 12px;
    border: 1px solid #f3f3f3;
    border-radius: 5px;
    display: block;
    transition: all 0.3s ease;
}
.product-grid .add-cart:hover{
    color: #f3f3f3;
    background: #3647ad;
    border-color: #2A3A8F;
}
.bg-website{
    background: #2A3A8F;
}
@media screen and (max-width: 990px){
    .product-grid{ margin-bottom: 30px; }
}

/*product details*/
