Website Pages Are Moving Strangely - Dawn Theme

Hello Everyone !

My website working strange, when entering links, the page is moving weird and overflowing the page on mobile and desktop too.

I added a photo and video of the issue :

The website link is : www.pawzyy.co.il

The problem with your website will be caused by the coding or setup of your theme, by resetting or changing theme or reducing the size of media on your store it should be fixed

Thereโ€™s maybe more specific solution ?

How can we find the code that I need to fix ?

I didnโ€™t found him yet :confused:

I found the solution !

The problem was in base.css then .grid

flex-wrap: nowrap;

I changed the flex wrap to : flex-wrap: wrap;

and column-gap: 2px ; (it was 10px, I reduced it)

.grid {
display: flex;
flex-wrap: wrap;
margin-bottom: 2rem;
padding: 0;
list-style: none;
column-gap: 2px ;
row-gap: var(โ€“grid-mobile-vertical-spacing);
}