.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;
}

/* Wrapper for multiple fixed contact buttons (WhatsApp + Telegram) */
.fixed-socials {
    position: fixed;
    z-index: 9;
    bottom: 50px;
    left: 50px;
    right: unset;
    display: flex;
    gap: 14px;
}

.fixed-socials .fixed-social {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
}

.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--tg:before, .fixed-social--tg:after {
    border-color: #229ED9;
}

.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;
    }
}