How to display image in square instead of circles

The shortcode below displays all IT department employees without a paged navigation and in squares instead of circles.

// Add the code below your theme's style.css if you need to change all employee images
div.emd-container .person-img {
border-radius: 0;
}
//If you want to change it for shortcode bases, wrap your shortcode in .square class
<div class="square">[employee_circle_grid filter="tax::departments::is::it;misc::posts_per_page::is::-1;"]</div>
// And add the following code to your theme's style.css file
.square div.emd-container .person-img {
border-radius: 0;
}