Skype is not allowed as valid protocol and WP does not allow it by default. You need to add following PHP code in the child theme. Create child theme if you have not already.
function corporate_club_allow_skype_protocol( $protocols ) {
$protocols[] = 'skype';
return $protocols;
}
add_filter( 'kses_allowed_protocols' , 'corporate_club_allow_skype_protocol' );
And then, use following CSS for styling the icon.
.corporate_club_widget_social ul li a[href*="skype:"]::before {
content: "\f17e";
}
Now you can add skype link like you are adding Facebook, Twitter, etc.