nav{
    /* background-color: black; */
    /* margin: 0 !important; */
    color: white;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    align-items: center;
    width: 100%;
    height: 10vh;
    padding: 0 5vh;
    padding-top: 2vh;
}
.menu ul{
    list-style: none;
}
.logo{
    margin-left: 6vh;
}
.logo a img{
    height: 4vw;
}
.menu ul a{
    display: flex;
    align-items: center;
    margin-left: 2em;
    height: 4vw;
}
.menu ul a li{
    color: white;
}
.menu ul a:hover{
    border-bottom: 5px solid rgb(255, 255, 255);
}

nav .hamburger_icon {
    display: none !important;
}

.menu-responsive {
    position: fixed;
    width: 100vw;
    background-color: #585858;
    transition: 0.5 all ease;
}
.menu-responsive li:hover{
    background-color: #242424;
}

.link {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    list-style: none;
    gap: 2.2vw;
    margin: 0;
    padding: 0;
}

/* .link li a {
    color: #fffcee77;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    line-height: 21.09px;
    text-align: left;
    text-transform: uppercase;
} */

/* .link li a:hover {
    color: #fffcee;
    font-weight: 700;
} */

.link-responsive {
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
}

.link-responsive li {
    padding: 2.5vw;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.link-responsive li{
    color: #fffcee;
    text-decoration: none;
}

.logo {
    font-family: Roboto;
    font-size: 24px;
    font-weight: 700;
    line-height: 28.13px;
    text-align: center;
    color: #fffcec;
}

@media screen and (max-width: 992px) {
    nav{
        /* padding: 4vh; */
        padding: 2vh 5vh;
        background-color: #000000;
    }
    .menu-responsive {
        top: 10vh;
    }
    nav .link #link {
        display: none;
    }
    .logo{
        margin-left: 0;
    }
    nav .hamburger_icon {
        float: right;
        display: block !important;
        /* z-index: 90; */
        /* background-color: aquamarine; */
    }

    .topnav.responsive {
        position: relative;
    }

    .topnav.responsive ul {
        /* top: 10vh; */
        z-index: 2;
    }

    .menu ul li:hover{
        border-bottom: 0px solid rgb(255, 255, 255);
    }
    .menu ul a:hover{
        border-bottom: 0px solid rgb(255, 255, 255);
    }
}

@media screen and (max-width: 768px) {
    .menu ul a:hover{
        border-bottom: 0px solid rgb(255, 255, 255);
    }
    .menu ul li:hover{
        border-bottom: 0px solid rgb(255, 255, 255);
    }
    .logo a img{
        height: 7vw;
    }
    .menu-responsive {
        top: 10vh;
    }
    nav .link #link {
        display: none;
    }

    nav .hamburger_icon {
        float: right;
        display: block !important;
    }

    .topnav.responsive {
        position: relative;
    }

    .topnav.responsive ul {
        top: 50px;
        z-index: 2;
    }
}
