/* Control the Image Container */
.image-container {
    width: 100%;
    height: 200px;  
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; 
}

/* Control the Image of product  */
.image-container img {
    object-fit: contain; 
    border-radius: 5px; 
    max-width: 100%;
    max-height: 100%;
}
/* Used for hold Product card container */
    .product-content {
        border: 1px solid #dfe5e9;
        margin: 0 auto;
        background: #fff;
        padding: 15px;
        border-radius: 5px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    
    .product-content .product-deatil {
        border-bottom: 1px solid #dfe5e9;
        padding-bottom: 1px;
        padding-left: 16px;
        padding-top: 16px;
        position: relative;
        background: #fff
    }
    /* for product description  */
    .product-content .description {
        font-size: 12.5px;
        line-height: 20px;
        padding: 10px 14px 16px 19px;
        background: #fff
    }
    
    .product-content .product-info {
        padding: 11px 19px 10px 20px
    }
    
    /* for product name  */
    .product-content name.a {
        padding: 5px 10px;
        margin-left: 16px
    }
    /* for product visit button  */
    .product-info.smart-form .btn {
        padding: 6px 12px;
        margin-left: 12px;
        margin-top: -10px
    }
    
    
    /* add padding in product-detail */
    .product-deatil {
        padding: 30px 30px 50px
    }
    
    
    .product-deatil .name {
        margin-top: 0;
        margin-bottom: 0
    }
    
    .product-deatil .name small {
        display: block
    }
    
    .product-deatil .name a {
        margin-left: 0
    }
    
    
    /* control the dynamic response of product card */
    @media only screen and (min-width:1024px) {
        .product-content div[class*=col-md-4] {
            padding-right: 0
        }
        .product-content div[class*=col-md-8] {
            padding: 0 13px 0 0
        }
        
        .product-content .product-info {
            position: relative
        }
    }