Image and Text hover at the same time

I don’t think you can do this with native Webflow hover styles.

However you can create an interaction on the parent Service Link class that changes both the child image and text elements. Be sure to use the “Only affect children with this class” setting so you don’t change styling of other child and text elements on the page.

It is also possible to do this via custom code, using CSS of the form:

.parent:hover .child1 {some styling}
.parent:hover .child2 {some more styling}