You would need to remove the bottom margin on the #head-wrap….but you’ll only want to do that on the home page since you’ll need that space on other pages. Add this to your css file –
.home #head-wrap {
margin: 0;
}
For the space at the bottom of your slider, look for .slider-inner around line 2570 in your css file and change the padding to “0” –
.slider-inner {
margin: 0 auto !important;
overflow: hidden;
padding: 0 !important;
width: 100%;
}