Need to remove social media icons

I need to remove the social media icons in the screen capture below. i can remove it be deleting the # symbols but it leaves everything else off centre. how do i remove them and have everything still centred?

Hello there,

I hope you are doing well today.

You can use the following CSS code to remove the icons by going to Appearance > Customize > Additional CSS and pasting it there.

/*Social Icon Removal*/
.contact-us-social {
    display: none;
}

Best Regards,
Support

thanks. i was able to remove it. but how do i centre the rest?

Hello there,

Please try out the following CSS code to center the other elements:

#contact-us .section-content .contact-us-box {
    text-align: center;
    margin-left: 40%;
}

Best Regards,
Support