Can I change the color of the envelope icon when the email link is hovered?
.contact-info.box-style2 p a:hover .contact-info.box-style2 .box-icon i {
color: red;
}
/* for demo purposes */
.flaticon-envelope {
display: inline-block;
background: blue;
height: 20px;
width: 20px;
}
<div class="contact-info box-style2 ft-contact-info">
<div class="box-icon"><i class="flaticon-envelope"></i></div>
<p><a href="mailto:info@ictconsults.tech">info@ictconsults.tech</a></p>
</div>