/* ==========================================================================
   Social Follow
   ========================================================================== */
.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 2px solid var(--color-text-light);
    border-radius: 50%;
    transition: all 0.3s ease;
}
.social-icon-link img {
    width: 24px;
    height: auto;
    filter: grayscale(100%) opacity(70%);
    transition: all 0.3s ease;
}
.social-icon-link:hover {
    border-color: var(--color-green);
}
.social-icon-link:hover img {
    filter: grayscale(0%) opacity(100%);
}

