How to hide horizontal scroll?

Add this code and your horizontal scroll should disappear.

html, body {
    max-width: 100%;
    overflow-x: hidden;
}