.cellNavLeft{
    width: 19%;
    height: 100vh;
    position: absolute;
    z-index: 99998;
    left: 0;
    top: 0;
    display: none;
    transition: 0s;
}

.openCloseNav{
    width: 80%;
    height: 100vh;
    right: 0;
    position: absolute;
    z-index: 99998;
    top: 0;
    transition: 0.3s;
    transform: translateX(100%);
}

.cellNav.active .openCloseNav{
    transform: translateX(0);
}

.cellNav{
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 18px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    height: fit-content;
    margin-right: 0;
    margin-left: auto;
    overflow-x: hidden;
    overflow-x: clip;
    position: sticky;
    top: 0;
    z-index: 99999;
    
}

.cellNav:hover {
    background-color: #ddd;
}

.cellNavTop{
    background-color: rgb(255, 255, 255);
    position: relative;
    text-align: center;
    font-size: 18px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 99999;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 10px;
    align-items: center;
    box-shadow: 0 6px 14px 5px rgb(0 0 0 / 33%);
}

.toplogo{
    height: 77%;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 0;

}

.topclose{
    height: 100%;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;

}

.cellNavRight{
    background-color: rgb(244, 244, 244);
    text-align: center;
    font-size: 18px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    position: absolute;
    width: 100%;
    right: 0;
    top: 0;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    height: 100vh;
    z-index: 99998;
    box-shadow: 0 6px 14px 5px rgb(0 0 0 / 33%);

}

.navLink{
    text-decoration: none;
    transition: 0.3s;
    justify-content: left;
    text-align: left;
}

.navLink:hover{
    background-color: #ddd;
    text-decoration: none !important;
}

.navLink::after{
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: #5bc5ab;
    transition: width .3s;
}

.navText{
    padding-top: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    color: #000;
    font-size: 3.7vh;
    font-weight: 700;
    transition: 0.3s;
    justify-content: left;
    text-align: left;
    width: max-content;
    min-width: 100%;
}

.navText.expandLink::after{
    content: '>';
    margin-left: 20px;
    
}

.navLink:hover .navText{
    color: #5bc5ab;
    font-size: 4vh;
}

.expandNav{
    max-width: 0px;
    transition: 0.7s;
}
.expandNavMore.active .expandNav{
    max-width: 100%;
}

.secondNavText{
    color: #000 !important;
    font-size: 3.7vh !important;
}

.secondNavText:hover{
    color: #5bc5ab !important;; 
}

.backNav{
    text-decoration: none;
    transition: 0.3s;
    justify-content: left;
    text-align: left;
    padding-top: 10px;
    color: #000;
    font-size: 4.5vh;
    width: max-content;
    min-width: 100%;
    padding-left: 20px;
    font-weight: 700;
    
}

.backNav:hover{
    color: #5bc5ab;
    text-decoration: none !important;
    background-color: #ddd;
}


@media screen and (min-width: 700px) {
    .cellNav{
        display: none;
    }
}