.bl-featured-product{
    margin-bottom: 40px;
    padding: 40px 20px 10px;
    background-color: #FFF;
}
.bl-featured-product .f-title{
    position: relative;
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    background-color: #FFF;
}
.bl-featured-product .f-title::before{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    content: "";
    transform: translateY(-50%);
    width: 100%;
    height: 4px;
    background-color: #DC3F02;
    z-index: 0;
}
.bl-featured-product .f-title::after{
    position: absolute;
    top: 50%;
    left: 50%;
    content: "";
    transform: translate(-50%, -50%);
    width: 205px;
    height: 4px;
    background-color: #FFF;
    z-index: 0;
}
.bl-featured-product .list-products{
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.bl-featured-product .list-products .item-product{
    margin-bottom: 20px;
    width: 31%;
    text-decoration: none;
    color: #000;
}
.bl-featured-product .list-products .item-product .img{
    width: 100%;
    height: 250px;
}
.bl-featured-product .list-products .item-product .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bl-featured-product .list-products .item-product .item-title{
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
}
@media only screen and (max-width: 768px){
	.bl-featured-product .list-products .item-product{
        margin-bottom: 20px;
        width: 48%;
    }
}
@media only screen and (max-width: 480px){
	.bl-featured-product .list-products .item-product{
        width: 98%;
    }
}