Hi @Onicklin,
I hope you are well today and thank you for your question.
It seems this is happening because of the following CSS code that you are using on your site generated by Yellow Pencil editor.
#content .vc_row-o-columns-middle:hover {
position: relative;
top: -82px;
}
To resolve the issue, you can either remove above custom CSS code or add the following CSS code in the Custom CSS code option of your theme on the below path.
Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code
#page-container #content .vc_row-o-columns-middle:hover {
top: 0;
}
Best regards,
Shufflehound team