.a21_bar_bottom {
    display: none;
}

@media (max-width: 991px) {

    footer {
        margin-bottom: 100px;
    }

    .a21_bar_bottom {
            
        display: block;
        position: fixed;
        bottom: 0;
        z-index: 20;
        width: 100%;
        background-color: #fff;
        padding: 20px 10px;
        box-shadow: 0 -5px 5px rgba(0, 0, 0, 0.3);

        ul {

            display: flex;
            justify-content: space-evenly;
            align-items: center;
            list-style: none;
            padding: 0;
            margin: 0;

            li {

                text-align: center;
                width: 100%;
                cursor: pointer;

                img {
                    height: 35px;
                }
                
                p {
                    padding-bottom: 0px;
                    margin-bottom: 0;
                    font-size: 12px;
                    line-height: 14px;
                }

                a {
                    text-decoration: none;
                    font-size: 11px;
                    line-height: 14px;
                }

            }

            li:hover { 
                
                p {
                    color: #0d3c5e;
                }

                img {
                    filter: brightness(0.8);
                }

            }

        }

    }

    .submenu {
        display: none !important;
        position: absolute;
        bottom: 50px;
        padding-bottom: 50px;
        flex-direction: column;
    }

    li:hover .submenu {
        display: flex !important;
        li {
            cursor: pointer;
            text-align: left;
            padding: 5px 10px;
            background: #fff;
        }
        li:hover {
            background-color:#0d3c5e;
        }
        li a {
            color: #0d3c5e;
            font-weight: 600;
        }
        li:hover a {
            color: #fff;
        }
    }

}