As per jasny suggestions, we have added .container-smooth
a container to use the
same max-width
for all view-port sizes. This means that the container size won't
jump at media query breakpoints.
.container-smooth {
max-width: 1170px;
}
@media (min-width: 1px) {
.container-smooth {
width: auto;
}
}