:root {
    --primary: #000000;
    --secondary: #ffffff;
}

.navbar-expand-lg .navbar-nav .nav-link {
    color: var(--secondary);
    font-size: 18px;
}

nav {
    position: absolute;
    z-index: 10;
    left: 0;
    right: 0;
    top: 0;
    font-family: "Montserrat", sans-serif;
    padding: 0 5%;
    height: 100px;
    background-color: none;
}

nav .logo {
    float: left;
    width: 180px;
    height: 10px;
    display: flex;
    align-items: center;
    font-size: 24px;
    color: #fff;
    margin-top: 45px;
}

nav .logo img {
    max-width: 100% !important;
}

nav .links {
    float: right;
    padding: 0;
    margin: 0;
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

nav .links li {
    list-style: none;
}

nav .links a {
    display: block;
    padding: 0.2em;
    font-size: 16px;
    font-weight: bold;
    color: #fff !important;
    text-decoration: none;
    cursor: pointer;
}
a:not([href]):not([class]) {
    color: none !important;
}

nav .links a:hover {
    color: burlywood !important;
}

#nav-toggle {
    position: absolute;
    top: -100px;
}

nav .icon-burger {
    display: none;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

nav .icon-burger .line {
    width: 30px;
    height: 5px;
    background-color: #fff;
    margin: 5px;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.logout-div button{
   /* background: #000 !important;
    border: solid 2px #000!important;
    border-radius: 12px;
    color: #fff;
    font-style: bold;
    font-weight: 700; */
    background: transparent !important;
    border-color: #fff;
    border-radius: 10px;
}
.logout-div button:hover{
    /*background: linear-gradient(90deg, #cccccc, #313131) !important;*/
    /* background: transparent !important; */
    background: #000 !important;
    color: #fff !important;
    border-color: #000;
    /*opacity: 20%;*/
}

@media screen and (max-width: 920px) {
    nav .logo {
        float: none;
        width: auto;
        justify-content: center;
    }
    nav .links {
        float: none;
        position: fixed;
        z-index: 9;
        left: 0;
        right: 0;
        top: 100px;
        bottom: 100%;
        width: auto;
        height: auto;
        flex-direction: column;
        justify-content: space-evenly;
        background-color: rgba(0, 0, 0, 0.8);
        overflow: hidden;
        box-sizing: border-box;
        transition: all 0.5s ease-in-out;
    }
    nav .links a {
        font-size: 20px;
    }
    nav :checked~.links {
        bottom: 0;
    }
    nav .icon-burger {
        display: block;
    }
    nav :checked~.icon-burger .line:nth-child(1) {
        transform: translateY(10px) rotate(225deg);
    }
    nav :checked~.icon-burger .line:nth-child(3) {
        transform: translateY(-10px) rotate(-225deg);
    }
    nav :checked~.icon-burger .line:nth-child(2) {
        opacity: 0;
    }
}