.boxed-row {
    max-width: 1500px; /* Adjust the width as needed */

    /* Additional styles */
    padding: 20px; /* Add padding if needed */
}

/* Styles for desktop */
@media only screen and (min-width: 768px) {
    .boxed-row {
        margin: 0px 50px; /* Center the row horizontally with a larger margin on desktop */
    }
}

/* Styles for mobile */
@media only screen and (max-width: 767px) {
    .boxed-row {
        margin: 0px 10px; /* Center the row horizontally with a smaller margin on mobile */
    }
}