Why does:
width: 98%; max-width: 1140px;
do the same as
width: 1140px; max-width: 98%;
The first one make
Use only
max-width: 1140px;
or
width: 98%;
not both. If you want to see the difference go here.