/* nav bar configs */

header {
    position: relative;
}

.logo {
    height: 90px;
    width: auto;
}

.nav-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 70%;
}

.nav-container {
    display: flex;
    align-content: center;
    font-family: 'Lato', sans-serif;
}

.nav-bar a {
    color: #fff;
    margin-right: 30px;
    font-size: 20px;
    text-transform: uppercase;
}

.logo-container {
    width: 40%;
}

.logo-container {
    font-size: 0px;
}

.nav-bar a:hover {
    border-bottom: 2px solid #04630c;
}


/* *********************************************************************************************** */


/* language nav bar */

.new-nav {
    /* display: flex;
      justify-content: flex-end; */
    float: right;
    max-width: 100px;
}


/* Style The Dropdown Button */

.dropbtn {
    background-color: transparent;
    font-size: 15px;
    border: none;
    cursor: pointer;
    color: #fff;
}


/* The container <div> - needed to position the dropdown content */

.dropdown {
    position: relative;
    display: inline-block;
    margin-right: 25px;
    margin-top: 10px;
}


/* Dropdown Content (Hidden by Default) */

.dropdown-content {
    font-size: 15px;
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 60px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}


/* Links inside the dropdown */

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}


/* Change color of dropdown links on hover */

.dropdown-content a:hover {
    background-color: #046307;
    color: #fff;
    font-weight: 300;
}


/* Show the dropdown menu on hover */

.dropdown:hover .dropdown-content {
    display: block;
}


/* Change the background color of the dropdown button when the dropdown content is shown */

.dropdown:hover .dropbtn {
    background-color: #046307;
    color: #fff;
}


/* ----------------------------------- */