:root {
    --primary-color: ;
    --secondary-color: ;
    --tertiary-color: ;
    --font-1: ;
    --font-2: ;
    --font-3: ;
    --font-4: ;
    --font-5: ;

    --padding: ;
}

.nav {

    /* background-color: rgb(166, 181, 168); */
    color: var(--primary-color);
    /* color: var(--primary-color); */
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 9.5vh;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    margin: 0 auto;
    padding: 0px 30px;
    left: 50%;
    transform: translate(-50%, 0px);
    font-family: var(--font-2);
    font-weight: 600;
    z-index: 990;
}

.nav ul {
    display: flex;
    gap: 20px;
    font-size: 21px;
}

.nav ul a {
    color: unset;
    text-decoration: none;
}

.nav ul li {
    list-style-type: none;
    font-family: var(--font-2);
    font-size: calc(11.3px + .7vw);

    &:hover {
        cursor: pointer;
    }
}



nav .logo {
    width: 62px;
    height: 62px;
    position: relative;
    top: 1px;
}

nav .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-menu {
    display: none !important;
}

.mobile-menu i {

    font-size: 24px;
    color: var(--primary-color);
}



.nav-drawer {
    background-color: var(--primary-color);
    background-color: rgba(162, 177, 169, 0.756);
    color: var(--secondary-color);
    backdrop-filter: blur(10px);
    font-family: var(--font-4);
    position: fixed;
    width: 100vw;
    height: 45vh;
    z-index: 999;
    padding: 40px 20px;

    transition: all .5s ease;
    box-shadow: 0px 0px 8px 4px;

    transform: translate(0px, -120%);
}

.nav-drawer-open {
    transform: unset !important;
}

.nav-drawer ul {
    display: flex;
    flex-direction: column;
    font-size: 30px;
}

.nav-drawer ul li {
    list-style-type: none;
}

.nav-drawer a {
    text-decoration: none;
    color: unset;
    padding: 10px 0px;
    border-bottom: 1px solid;
}

.nav-drawer .close {
    position: absolute;
    top: 7px;
    right: 5px;
}


.overlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(75, 75, 75, 0.281);
    z-index: 997;
    backdrop-filter: blur(1px)
}

.hide {
    display: none !important;
}

@media (max-width:760px) {
    nav .logo {
        width: calc(44px + 2vw);
        height: calc(44px + 2vw);
    }

    .nav {
        padding: 0px 20px;
    }

    .desktop-menu {
        display: none !important;
    }

    .mobile-menu {
        display: flex !important;
    }
}