.fixed-top:not(.nav-fixed) .navbar .navbar-brand i{
    color:#fff;
}
.w3l-footer9 h2 a.navbar-brand i{
    color:#fff;
}

.fixed-social {
    position: fixed;
    z-index: 9;
    bottom: 50px;
    left: 50px;
    right: unset;
}

.fixed-social:before, .fixed-social:after {
    content: "";
    display: block;
    position: absolute;
    border: 1px solid #25D366;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: animate 1.5s linear infinite;
    opacity: 0;
    backface-visibility: hidden;
}

.fixed-social:before, .fixed-social:after {
    content: "";
    display: block;
    position: absolute;
    border: 1px solid #25D366;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: animate 1.5s linear infinite;
    opacity: 0;
    backface-visibility: hidden;
}

.fixed-social__icon {
    display: block;
    height: 50px;
    width: 50px;
}

.fixed-social:after {
    animation-delay: .5s;
}

@keyframes animate
{
    0%
    {
        transform: scale(0.5);
        opacity: 0;
    }
    50%
    {
        opacity: 1;
    }
    100%
    {
        transform: scale(1.2);
        opacity: 0;
    }
}