


#contact .social-icons
{
    margin: 10px 0 0 0;
    padding: 0;

    list-style: none;

    text-align: center;
}

#contact .social-icons li
{
    display: inline-block;

    margin: 0 15px;
}

#contact .social-icons li a
{
    font-size: 12px;
    line-height: 40px;

    position: relative;

    display: block;
    overflow: hidden;

    width: 40px;
    height: 40px;

    -webkit-transition: all .2s ease 0s;
            transition: all .2s ease 0s;

    color: #000;
    border-radius: 0;
    background: rgba(255,255,255,.06);
}

#contact .social-icons li a .overlay
{
    position: absolute;
    z-index: -1;
    top: 0;
    right: auto;
    left: 0;

    width: 100%;
    height: 100%;

    -webkit-transition: all .2s ease 0s;
            transition: all .2s ease 0s;

    background: rgba(255,255,255,1);
}

#contact .social-icons li a:hover .overlay
{
    right: 0;
    left: auto;

    width: 0;
}

#contact .social-icons li a:hover
{
    color: #fff;
    background: rgba(255,255,255,.06);
}


