.mobile-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5%;
    position: relative;
    display: none;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo-section img {
    width: 50px;
}

.mobile-menu i {
    font-size: 25px;
    color: var(--main-clr);
}

.mleft-nav {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 70%;
    background: var(--main-clr);
    height: 100vh;
    overflow: hidden;
    overflow-y: scroll;
    z-index: 99999;
    opacity: 0;
    transition: all .4s ease-in-out;
}

.mobile-nav-active {
    right: 0;
    opacity: 1;
}

.mleft-nav-header {
    padding: 10%;
    font-size: 30px;
}

.mleft-nav-box {
    padding: 10% 10%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 20px;
}

.mleft-nav-box a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
}



















@media (width <=768px) {
    .mobile-nav {
        display: flex;
    }
    nav{
        display: none;
    }
}



/* added nav parts */

.download {
    position: relative;
}

.download div {
    position: absolute;
    top: 100%;
    background: #fff;
    padding: 10px;
    z-index: 999;
    border-radius: 10px;
    display: none;
}

.download div p {
    font-size: 1rem;
    color: #000;
    transition: all .4s ease-in-out;
}

.download div p:hover {
    font-weight: 500;

}
.download:hover  .download-div{
    display: block;
}