@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Sacramento&display=swap');

*{
    margin: 0px;
    padding: 0px;
}


/* font-family: 'Montserrat', sans-serif;
font-family: 'Poppins', sans-serif; */


.nav-container{
    /* background-color: #001220; */
    background: none;
    height: 15vh;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
    padding: 0px 5%;
    background-color: #001220;
    font-family: 'Poppins', sans-serif; 
}

.nav-left img{
    height: 60px;
}

.nav-right{
    color: white;
}

.nav-right ul{
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-right ul li{
    margin: 0px 20px;
    list-style: none;
    color: #bbbbbb;
    transition: 100ms color ease-in-out;
    cursor: pointer;
}

.nav-right ul li:hover{
    color: white;
}

.nav-right #hamburger-menu {
    display: none;
}



@media only screen and (max-width: 820px) {
    .nav-left img {
        width: 60vw;
        object-fit: scale-down;
      }
    
    .nav-right {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-right ul {
        display: none;
    }
    .nav-right ul li {
        width: 64px;
    }

    .nav-right #hamburger-menu {
        display: block;
    }

    .show-mobile-nav{
        flex-direction: column;
        /* background-color: #0B1D35; */
        height: 200px;
      }

    .show-mobile-nav ul li{
        display: flex;
        justify-content: center;
        margin: 2px
    }

    .heads-container {
        margin: 0px 2.5rem 0px 2.5rem;
    }
}