Сергей Ракипов,
проба угадать, что вам нужно ... )))
<!DOCTYPE html>
<html lang="ru_RU">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<style>
.box {
cursor: pointer;
font-size: 24px;
display: block;
}
.box2 {
color: blue;
font-size: 24px;
display: block;
}
</style>
<script>
jQuery( document ).ready( function ( $ ) {
$( '.box' ).hover( function () {
// навели мышь на элемент
$( '.box2' ).css( 'color', window.matchMedia('(min-width: 640px)').matches ? 'red' : 'orange');
}, function () {
// убрали мышь с элемента
$( '.box2' ).css( 'color', window.matchMedia('(min-width: 640px)').matches ? '' : 'Lime' );
} );
} );
</script>
</head>
<body>
<div>
<p class="box">Какой то текст</p>
</div>
<div>
<p class="box2">Элемент</p>
</div>
</body>
</html>