/* CSS Document */

.heading-two{
	position: relative;
	margin-top: 5px;
	text-align: center;
	margin-bottom: 5px;
	color: #FE980F;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.heading-two:before{
	content: " ";
    position: absolute;
    background: #fff;
    bottom: -6px;
    width: 300px;
    height: 30px;
    z-index: -1;
    left: 50%;
    margin-left: -150px;
}
.heading-two:after{
	content: " ";
    position: absolute;
    border: 1px solid #f5f5f5;
    bottom: 18px;
    left: 0;
    width: 100%;
    height: 0;
    z-index: -2;
}

.product-box{
	border: 1px solid lightgray;
	background-color: white;
	margin-bottom: 50px;
}

.product-box img{
	background-color: lightgray;
	height: 300px;
}

.product-box .product-name{
	height: 50px;
	border-top: 1px solid lightgray;
}