#footer {
    background: #343a40;
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 30px 0;
    color: $light;
    p {
        &.copyright {
            float: none;
            margin: 0;
            line-height: 40px;
            a {
                color: #17a2b8;
            }
        }
    }
    .social {
        clear: both;
        cursor: default;
        line-height: 1;
        margin-top: 10px;
        text-align: center;
        a {
            padding: 0 5px;
            i {
                &.fa {
                    font-size: 16px;
                    color: #999;
                    -webkit-transition: all .3s ease;
                    -moz-transition: all .3s ease;
                    transition: all .3s ease;
                }
            }
            &:hover {
                i {
                    &.fa {
                        color: $light;
                    }
                }
            }
        }
    }
}