﻿/*Navbar Bottom Mobile*/
.navMenu-bottom-mobile {
    display: flex;
    position: sticky;
    bottom: 0px;
    background: #eee8e8;
    justify-content: space-between;
    width: 100%;
    padding: 8px;
    font-size: 13.5px;
    margin: 0px;
    background: #fff;
    color: #333;
    border-top: solid 1px #e1e1e1;
    transition: all .7s linear;
    list-style: none;
    overflow:auto;
}

    .navMenu-bottom-mobile li {
        margin-left: 13px;
        margin-right: 13px;
        margin-top: 2px;
    }

    .navMenu-bottom-mobile li i {
        display: block;
        text-align: center;
        font-size: 20px;
    }
.nav-link-mobile img {
    width: 20px;
    height:auto;
    aspect-ratio: 150 / 150;
    display: block;
    max-width: 100%;
    object-fit: cover;
}

    .navMenu-bottom-mobile li span {
        display: block;
        text-align: center;
    }

.nav-link-mobile {
    color: #555;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

    .nav-link-mobile.active {
        background-color: rgba(255,255,255,0.25);
        color: #444;
        font-weight: 600;
    }

    .nav-link-mobile:hover {
        background-color: rgba(255,255,255,0.1);
        color: #444;
        font-weight: 600;
    }

    @media (min-width: 1170px) {
        .navMenu-bottom-mobile {
        display: none;
    }
}

@media (min-width: 667px)
{
    .navMenu-bottom-mobile {
        justify-content: center;
        gap: 30px;
    }
 }
/*End Nvabar Bottom Mobile*/
@media(max-width:1169px) {
   
}