You are only tatgetting .btn_two for the hover effect .sidebar_menu .btn_two i:hover{ font-size: 30px; }
.sidebar_menu .btn_two i:hover{ font-size: 30px; }
You need to target the two classes.
.btn_one i:hover, .btn_two i:hover{ font-size: 30px; }