 .mobile-nav {
    background: var(--main-background3);
    bottom: 0;
    color: var(--main-color-medium);
    display: none;
    justify-content: space-evenly;
    position: fixed;
    width: 100%;
    z-index: 4;
    align-items: center;
} 
@media screen and (max-width:960px) {
 .mobile-nav{
    display: flex;
}
}
 .mobile-nav a{
    text-decoration:none;
} 
.mobile-nav:before {
    background: var(--main-background4);
    content: " ";
    height: 1px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.mobile-nav__link {
    align-items: center;
    background: var(--main-background3);
    color: inherit;
    display: flex;
    flex-direction: column;
    font-size: 10px;
    font-weight: 400;
    height: 50px;
    width: 50px;
    border-radius: 8px;
    justify-content: center;
    letter-spacing: .01em;
    line-height: 14px;
    max-width: 64px !important;
    position: relative;
    text-align: center;
    white-space: nowrap;
    cursor:pointer;
}
.mobile-nav__link:hover {
    background: var(--main-background2);
    color:var(--main-color-hight);
}

.mobile-nav__link span {
    padding-top: 4px;
}
.mobile-nav__link_main {
background: var(--main-gradient);
    border: 2px solid var(--main-background3);
    border-radius: 8px;
    color: #000 !important;
    height: 60px;
    font-size:10px;
    position: relative;
    top: -5px;
    width: 60px;
}
.mobile-nav__link_main:hover {
background: var(--main-gradient);
opacity:0.9; 
}
.mobile-nav__link_main img{
    height: 26px;
    width: 26px;
    filter: brightness(0.3);   
}
.font-icon {
    fill: red;
    display: inline;
    width: auto;
}
.mobile-nav__link svg{
    height: 26px;
    width: 26px;
    fill: currentColor;    
}

.mobilemenu_project{
    position: fixed;
    background: var(--main-background3);
    height: auto;
    display: grid;
    padding: 10px;
    border-radius: 5px;
    align-items: center;
    gap: 10px;
    width: 280px;
    top: 80px;
    z-index: 2;
    bottom: 0;
    align-content: baseline;
        overflow: auto;
} 

.mobilemenu_project ul{
color: #fff;
    list-style: none;
    padding: 0px;
    margin: 0;
    gap: 10px;
    display: grid; 
} 
.mobilemenu_project li{
background: transparent;
    padding: 15px 10px 15px 10px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    gap: 10px;
        position: relative;
} 
.mobilemenu_project li:hover{
    background: #2b2d39!important;
    
} 
.activeSidebar {
    background: #24252f !important;
}