The issue is coming from your Ninja Forms plugin. It has CSS that is overriding the Theme’s CSS. If you look at the Ninja Forms CSS on line 225 it has this code which is overriding it –
.one-third,
.two-sixths {
width: 31.623931623931625%;
}
So to fix it, just override it by adding priority to the Theme’s Responsive CSS on line 2672. You can add !important to the width like this –
.five-sixths,
.four-sixths,
.one-fourth,
.one-half,
.one-sixth,
.one-third,
.three-fourths,
.three-sixths,
.two-fourths,
.two-sixths,
.two-thirds {
margin: 0 0 40px;
width: 100% !important;
}
Add the above code in the Ambition’s Style.css file.