How to make social icons bigger and change color on hover

To make social icons bigger and change color on hover same as icons in this site (footer).

You can use this code to Custom CSS.

div.socialaccountlinks-v2-block {
    a.sqs-svg-icon--wrapper:hover {
        transform: scale(1.7);
        transition: all 0.3s ease;
    }
    a.sqs-svg-icon--wrapper:hover use.sqs-use--mask {
        fill: red !important;
    }
    a.sqs-svg-icon--wrapper {
             transition: all 0.3s ease;
    }
}

You can update color & scale ratio.