.featured-products .inner-wrapper{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.featured-products .product-item{
    width: 25%;
    text-align: center;
    padding: 0 30px;
}
.featured-products .product-img{
    width: 100%;
}

.featured-products .product-link{
    border-radius: 25px;
    background: red;
    display: inline-block;
    padding: 12px 24px;
    width: auto;
    color: #fff;
    transition: all 0.5s;
    background-color: rgba(0, 133, 209);
    margin-top: 30px;
    margin-bottom: 30px;
}
.featured-products .product-link:hover {
    transition: all 0.5s;
    background-color: #0085D1A1;
}
.featured-products .price-featured{
    text-align: center;
    color: rgba(0, 133, 209);
    font-size: 18px;
    font-weight: 600;
}
.featured-products .product-title{
    font-size: 16px!important;
    letter-spacing: 1px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

@media only screen and (max-width: 576px) {
    .featured-products .product-item{
        width: 100%;
    }
}
body #main-content .container:before{
    height: calc(100% - 100px);
}