/* Make the logo container circular */
.gm-logo {
border-radius: 50%;
overflow: hidden; /* clips the image into a circle */
}
/* Make both logo images circular */
.gm-logo__img {
border-radius: 50%;
object-fit: cover;
width: 100%;
height: 100%;
display: block;
}