It seems this piece of code, it’s missing 2 closing brackets.
/*hide home instagram on mobile*/
@media only screen and (max-width: 979px) {
.homeinstagram {
display:none;
}
/*shape filter for mobile shop*/
@media only screen and (min-width: 979px) {
.mobileshapetoggle {
display:none!important;
}
replace it by this
/*hide home instagram on mobile*/
@media only screen and (max-width: 979px) {
.homeinstagram {
display:none;
}
}
/*shape filter for mobile shop*/
@media only screen and (min-width: 979px) {
.mobileshapetoggle {
display:none!important;
}
}
-Rui