Hi There,
Look for this part on your custom CSS:
@media (max-width:979px){
.x-brand img {
width: 280px;
float: right;
padding-left: 0px;
}
Update to this:
@media (max-width:979px){
.x-brand img {
width: 280px;
float: right;
padding-left: 0px;
}
}
Closing curly brace is missing for media query.
Please make sure that for every open curly brace there’s a corresponding closing.
Hope this helps.