@media only screen and (max-width: 768px) {
    #custom-footer-menu {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #121212;
        border-top: 1px solid #1f1e1e;
        z-index: 1000;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    #custom-footer-menu a {
        text-decoration: none;
        color: #ffffff;
    }

    #custom-footer-menu .icon-box {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #custom-footer-menu .icon-box-img img {
        max-width: 20px;
        height: auto;
        filter: brightness(0) invert(.8);
    }

    #custom-footer-menu .icon-box-text {
        margin-top: 5px;
        font-size: 12px;
    }

    #custom-footer-menu .icon-box>* {
        color: #bababa;
        font-weight: 1000;
    }
    #custom-footer-menu .last-reset p{
        margin-bottom: 10px;
    }

}

@media only screen and (min-width: 769px) {
    #custom-footer-menu {
        display: none;
    }
}