wordpress网站主页最底部的不需要的空间[关闭]

I am having a problem with the website i've created. Its having unwanted space at the extreme bottom of the home page. No matter what i did, it still remains there. The website is built in wordpress. I tried removing the closing php tag from the bottom of functions.php. Nothing's really worked.

The page link is http://icoachgym.com/

.call-to-action class has a margin-bottom of 500px. In the file my-custom-styles.css.

enter image description here

There is an issue with your css. It is on line 286. http://icoachgym.com/wp-content/themes/icoachgym/assets/css/my-custom-styles.css

my-custom-styles.css:286

.call-to-action {
    margin-bottom: 500px;
}

you need to change that to this:

.call-to-action {
    margin-bottom: 50px;
}