librandi Hi
There is incorrect syntax in the code you added:
@media (min-width: 992px)
.t4-main-body {
padding-top: 4.57rem!important;
padding-bottom: 4.57rem!important;
}
you should change it to:
@media (min-width: 992px){
.t4-main-body {
padding-top: 4.57rem!important;
padding-bottom: 4.57rem!important;
}
}
you lack of 2 blankets after the media query. I updated above code and it's working now.
You should review your other code again.
Regards