footer {
    width: 100%;
    /* position: fixed;
    z-index: 9999;
    bottom: 0;
    left: 0; */
    background-color: #000;
    color: #000;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    margin-top: -5px;
}

footer .navbar-Link {
    display: flex;
    width: 100%;
}

footer .btn {
    flex: 1;
    font-size: 1.2rem;
    letter-spacing: 5px;
    min-width: auto;
    color:#fff;
    padding: 1.2rem 0;
    text-align: center;
    border-color: transparent;
    border-radius: 0;
    border-left: 1px solid rgba(137, 134, 134, 0.767);
    outline: 0;
}

footer .btn:first-child{
    border-left: 0;
}

footer .btn:hover,footer .btn:active {
    border-color: transparent;
    border-left: 1px solid rgba(137, 134, 134, 0.767);
    color:#f8b62b;
}

footer .btn:hover:first-child{
    border-left: 0;
}

footer .btn i{
    margin-right: 1rem;
    display: inline-block;
}

@media (max-width: 991px) {
    footer .navbar-Link {
        width: 100%;
    }

    footer .navbar-Link .btn {
        min-width: auto;
        font-size: 1.5rem;
        padding: 3px 0;
    }

    footer .navbar-Link .btn i {
        margin-right: auto;
        margin-left: auto;
    }

    footer .navbar-Link .btn span {
        display: none;
    }
}