/* Add custom CSS styles below */ 

.navbar-brand img {
    max-height: 3rem;
    max-width: 100px;
    width: auto;

    filter: drop-shadow(0 0 6px orange)
            drop-shadow(0 0 12px #ff8c00);
    animation: orangeGlow 1.8s ease-in-out infinite alternate;
}

@keyframes orangeGlow {
    from {
        filter: drop-shadow(0 0 4px orange)
                drop-shadow(0 0 8px #ff8c00);
        transform: scale(1);
    }

    to {
        filter: drop-shadow(0 0 10px orange)
                drop-shadow(0 0 22px #ff6a00);
        transform: scale(1.04);
    }
}
.sicon-list:before {
    content: "\ed14";
}