/* NAVBAR
---------------------------------------------------------------------------  */
.navbar {
    width: 100%; 
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 60px;
    font-size: .8em;
    /*background: linear-gradient(90deg, #fcff9e 0%, #339933 100%);*/
    /*border: 1px solid rgba(0, 0, 0, 0.2);*/
    padding-bottom: 1em;
}

/* LOGO
---------------------------------------------------------------------------  */
.navbar-logo {
    min-width: 120px;
    position: relative;
    top: 1em;
    left: 1em;
    font-size: 1em;
    text-align: left;
}

/* MENU
---------------------------------------------------------------------------  */
.navbar-menu {
    min-width: 120px;
    list-style-type: none;
    display: none;
}

.nav-links,
.navbar-logo {
    text-decoration: none;
    color: rgba(0, 0, 0, 1);
    text-transform: uppercase;
}
.nav-links .nav-link-selected a {
    text-decoration: underline;
}

.navbar-menu li {
    text-align: center;
    margin: 0.9em auto;
}

/* HAMBURGER ICON
---------------------------------------------------------------------------  */
.navbar-toggle {
    position: relative;
    top: 0.4em;
    right: .9em;
    min-width: 120px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5em;
    text-align: right;
}

.navbar-toggle i {
    color: black;
    color: rgba(0, 0, 0, 0.5);
}

/* JS CLASS TOGGLES
---------------------------------------------------------------------------  */
.active {
    display: block;
}
.inactive {
    display: none;
}

/* I like to include this as it helps me set breakpoints 
Extra small (xs) devices (portrait phones, less than 576px)

Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }
*/

@media screen and (min-width: 768px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        padding-bottom: 0;
        min-height: 70px;
        align-items: center;
    }

    .navbar-logo {
        top: 0;
    }

    .navbar-menu {
        display: flex;
        margin-right: 30px;
        flex-direction: row;
        justify-content: flex-end;
    }

    .navbar-menu li {
        margin: 0;
    }

    .nav-links {
        margin-left: 40px;
    }

    .navbar-toggle {
        display: none;
    }

    .carousel-toggle {
        display: none;
    }

    .navbar-logo:hover,
    .nav-links:hover {
        color: rgba(0, 128, 0, 1);
        text-decoration: underline;
    }
}
