#ourclients {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 30px;
    height: 220px;
}

    #ourclients .clients-wrap {
        display: block;
        width: 95%;
        margin: 0 auto;
        overflow: hidden;
    }

        #ourclients .clients-wrap ul {
            display: block;
            list-style: none;
            position: relative;
            margin-left: auto;
            margin-right: auto;
        }

            #ourclients .clients-wrap ul li {
                display: block;
                float: left;
                width: 220px;
                height: 220px;
                text-align: center;
                margin-right: 10px; /* Adjust the space between images as needed */
            }

                #ourclients .clients-wrap ul li img {
                    width: 100%; /* Make the image take full width */
                    height: 200px;
                    max-width: 250px; /* Set a max-width to prevent overflow */
                    border: 2px solid #ddd;
                    border-radius: 5px;
                }

