Force Footer to Bottom of Page

/* Force footer to the bottom on pages with limited content */

Note: One issue is that the body background color/image shows. On this page it's the gray area between the content and footer.

Here's the CSS:

.fl-page {
position: relative;
min-height: 100vh;
padding-bottom: 60px; /* Should be equal to the height of your footer */
}
.fl-page-footer-wrap {
width: 100%;
position: absolute;
bottom: 0px;
}