I don’t know if this is the culprit, but it might be:
I noticed you’ve imported the Forever (parent theme’s) stylesheet into the Ever After style.css via:
@import url("../forever/style.css");
But you’ve also copied a huge amount of CSS below it as well. This means you’re duplicating a huge amount of CSS that could be interfering with things.
Can you try removing the CSS below the import statement and see if things return to normal? Only CSS you want to override in a child theme should be there, not the entire contents of the parent’s CSS file.
Let me know if that does anything.
2. Commented out all Custom CSS in the “Custom CSS” plugin
This is a side note, but you don’t also need a custom CSS plugin if you already have a child theme. I recommend you keep all your custom CSS in one place: the child’s style.css.