Looks like, for some reason, your styles (bootstrap et al) are being compiled into the HTML source directly, as opposed to what should be happening where you build a minified file and link to it.
In its current state, you're transferring the static css every time a page loads, as opposed to allowing the single file to be cached on the browser, causing further load delay.
Looks like, for some reason, your styles (bootstrap et al) are being compiled into the HTML source directly, as opposed to what should be happening where you build a minified file and link to it.
File in question:
https://github.com/ChrisTitusTech/website/blob/master/themes/northendlab/layouts/partials/style.html#L13
Outputs this type of HTML output, as opposed to a link:
In its current state, you're transferring the static css every time a page loads, as opposed to allowing the single file to be cached on the browser, causing further load delay.