Hi Orlando. You just made a mistake in the code.
Your code in custom.css is
@media (min-width: 1400px)
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
max-width: 1130px !important;
}
But should be
@media (min-width: 1400px) {
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
max-width: 1130px !important;
}
}
Tip: if something does not work in cusstom.css always look for your mistake instead of editing the template files.
In particular, if the code contains media query, this is not possible to correctly copy the code from the inspector. You should check and edit it after copying