/* Nav - CSS */
#nav {
    display: grid;

    align-self: start;

    grid-template-columns: auto;

    padding: 10px 0;

     display: grid;
    width: 100%;
    background-image: url('../img/nav-bg.jpg');
    background-position: center center;
    background-color: #111;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 200px;

    z-index: 4;
}

#nav-inner {
    display: grid;
}

@media(min-width: 768px) {
    #nav {
        grid-template-columns: auto 768px auto;
    }

    #nav-inner {
        grid-column: 2;
    }
}

@media(min-width: 992px) {
    #nav {
        grid-template-columns: auto 992px auto;
    }
}

@media(min-width: 1200px) {
    #nav {
        grid-template-columns: auto 1200px auto;
    }
}

@media(min-width: 1600px) {
    #nav {
        grid-template-columns: auto 1500px auto;
    }
}

/* - */

#nav-inner {
    justify-content: center;
    align-content: center;
    grid-gap: 12px;
}


@media(min-width: 992px) {
    #nav-inner {
        justify-content: space-between;
        grid-template-columns: max-content auto max-content;
    }
}

#logo-container {
    display: grid;
    align-self: center;

    grid-row: 1;
}

#logo {
    max-height: 120px;
    justify-self: center;
}

@media(max-width: 600px) {
    #logo {
        justify-self: center;
        max-width: 320px;
    }

}

#nav-links {
    font-family: "noto-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    display: none;
    grid-gap: 16px;
}

@media(min-width: 992px) {
    #nav-links {
        display: grid;
        grid-column: 3;
        align-self: center;
        grid-gap: 32px;
    }

}

#nav-links a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
}

@media(min-width: 992px) {
    #nav-links a {
        grid-row: 1;
        font-size: 15px;
        font-weight: 400;
        letter-spacing: 3px;
        padding-bottom: 4px;
        transition: border ease .5s;
    }

    .active-link a {
        color: #FFB300 !important;
    }

}

.page-link {
    justify-self: center;
    text-align: center;
}

.show-nav {
    display: grid !important;
}


/* - */

@media(min-width: 992px) {
    .page-link {
        grid-row: 1;
    }
}

/* - */
/* DROPDOWN */

@media(max-width:768px) {
    .page-linkdrop {}
}

.dropdown-outer:hover .dropdown-container {
    display: grid !important;
}

.dropdown-container {
    display: grid;
    background-color: #fff;
    padding: 16px;
    grid-gap: 8px;
}

.dropdown-container p {
    justify-self: center;
}

@media(min-width: 768px) {
    .dropdown-outer {
        grid-row: 1;
    }
}

@media(min-width: 768px) {
    .dropdown-container {
        display: none;
        position: absolute;
        z-index: 4;
        background-color: #fff;
        padding: 16px;
        grid-gap: 8px;
    }
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    color: rgb(0, 151, 176);
}

.active-link .caret {
    color: rgb(0, 151, 176);
}

/* - */

.burger-container {
    display: grid;
    /* grid-row: 1; */
    width: 32px;
    justify-self: center;
}

@media(min-width: 992px) {
    .burger-container {
        display: none !important;
    }
}

.burger-icon {
    font-size: 32px;
    align-self: center;
    color: white;
}

#burger-bars {}

#burger-cross {}
