Your .container
has some padding. Now that padding will get applied to all the children of .container
. Your usp section is a child of it, so it is not possible to make it take full width of screen, unless you remove the parent (.container) padding, or take the usp section out of the .container
entirely. The previous answer does just that in fact.