Ritual theme, corner radius issues for images

I am looking for a way to make these images display as circles but they don’t turn to circles unless I make them much smaller even though their radius is turned up to 100. Is there a way to have circles that are this size?

Hey, can you share your site url so that I can address this issue properly and provide you the solution code.

Yes the url is www.autobongs.com

I see you’ve added the border radius which is 100px. This is not enough to make the images block circular.

Here is the correct code to use.

.image-block__image {
 border-radius: 50% !important;
}

Output:

Thank you so much that worked perfectly.