Website scroll not working on SAFARI
I have a site here missnationglobal.com. Scrolling works fine on Chrome and other browsers except safari.
I checked the css markup for the site and don't seem to be able to figure out what is causing it, here's some code:
html {
height: 100% !important;
width:100%;
overflow-x: hidden !important;
overflow:scroll;
-webkit-overflow-scrolling: touch;
-webkit-overflow-y: auto; /* added css prefix for safari */
}
body {
height: auto;
min-height: 100%;
overflow: hidden;
position: relative;
margin:0;
}
Any help is appreciated!