How can I justify my paragraph and headline alignment to the left?

I want to have my paragraphs and headlines justified left instead of centered ( the fonts to be bolded have been successfully done)

https://bleswold.myshopify.com/

pw:skeosh

@kirkcanada

ADD these line in theme.scc or theme.css or base.css in assets folder of edit theme

#Slide-template--15888812572905__multicolumn-1 {
text-align: left !important;
}

and

.multicolumn-card.content-container {
{
text-align: left !important;
}

ADD these line in theme.scc or theme.css or base.css in assets folder of edit theme

.multicolumn-list__item.grid__item center .multicolumn-card__info  .rte {
    text-align: left;
}

.multicolumn-list__item.grid__item center .multicolumn-list.h3 {
    color: #0e57a0!important;
    font-weight: 800!important;
}

Please add below css in bottom of assets/section-multicolumn.css file

.multicolumn-list__item {
text-align: left ;

}
Thank you.