.product-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: flex-start;
    row-gap: 30px;
    column-gap: 20px;

    padding:20px 20px;
}

.inner-box {
    width:224px;
    height:258px;
    text-align: center;
    box-sizing:border-box;
}


.product-box .inner-box:hover{
	border:4px solid #0052a4;
}

.product-box .inner-box:hover .pr-name{
	background:#0052a4;
	color:#fff;

}

.product-box .inner-box img{
    height:228px;
    text-align:center;
    max-width:216px;
    padding-bottom: 5px;
}

.product-box .inner-box .pr-name {
    color: black;
    font-weight:bold;
}