Big spacing between about us and our culture

There is oddly big spacing between the two widgets.

Also how do I remove the footer at the bottom with the 4 sections?

Hey there,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

/*remove widget*/
#footer > div.bottom-footer{
  margin-top:0px;
}
footer#footer{
  padding-top:0px
}

/*reduce padding of about us section*/
section#about {
    padding-bottom: 0;
}

Best Regards,
Support.

The footer did not go away.

Here’s the revised code for removing the footer.

Admin Area -> Appearance -> Customize -> Additional CSS

/*remove widget*/
#footer > div.container{
  display:none !important
}
#footer > div.bottom-footer{
  margin-top:0px !important;;
}
footer#footer{
  padding-top:0px !important;
}

Best regards,
Support.