.service-boxes {
    column-gap: 25px;
    row-gap: 20px;
    margin: 20px;
    flex-flow: wrap;
}

.service-box {
    position: relative;
    max-width: 250px;
    width: 250px;
    padding: 15px 13px;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 4px 18px 0px rgba(231, 233, 255, 0.92);
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

.service-box img {
    width: 50px;
}

.service-box h5 {
    color: #000;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 10px 0px;
}

.service-box p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.service-box span {
    background: #4154f1;
    width: 55px;
    text-align: center;
    border-radius: 6px;
    color: white;
    padding: 2px 8px;
}

.service-box span.paid {
    background: #f5c42f;
}

.service-box .cart-view {
    position: absolute;
    bottom: 10px;
    right: 10px;
    border: none;
    background: black;
    color: white;
    border-radius: 100%;
    padding: 6px 11px;
}

.service-box .cart-view i {
    font-size: 20px;
}

.service-box .cart-view:hover,
.service-box .cart-view:active {
    background: #4154f1;
}

.product_quantity {
    display: flex;
    column-gap: 18px;
}

.product_quantity button {
    border: none;
    outline: none;
    border-radius: 3px;
}

.product_quantity input {
    width: 60px;
    text-align: center;
    border: 2px solid gainsboro;
    border-radius: 6px;
}

.add-to-cart,
.add-to-cart.cart-btn {
    border: none;
    outline: none;
    padding: 10px 25px;
    border-radius: 8px;
    background: #4154f1;
    color: white;
    font-size: 18px;
    font-weight: 600;
}

@media only screen and (max-width: 450px) {
    .service-boxes {
        margin: 0px;
        column-gap: 8px;
        row-gap: 15px;
    }
    .service-box {
        max-width: 48%;
        width: 48%;
    }
}