I’m not very good at editing these. I’ve tried adjusting the margin using inline styling but it did not work. Any help with this would be greatly appreciated.
Personally I would avoid using padding to create vertical space like the NEW plague.
Rather use margin-bottom, the reason for this is collapsing margins. Which will be a lot more forgiving!
Try this:
.three-col {
margin-bottom: 90px !important; /*<- this important is because it's being overwritte somewhere else. I'd look into that as well.*/
/*padding:150px 0;*/
/*padding:9.375rem 0;*/
font-weight:300;
line-height:1.6;
font-size:16px;
font-size:1.0rem
}