/* Nav - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

#nav {
    display: grid;

    grid-row: 2;
    grid-column: 1;
    z-index: 5;

    align-self: start;

    grid-template-columns: auto;

    padding: 24px 0;
    background-color: white;

    border-bottom: solid 2px rgb(255, 255, 255);

}

@media(max-width: 992px) {
    #nav {
        background-color: white;
    }
}

.desktop-logo {
    display: none !important;
}

.mobile-logo {
    display: grid !important;
}

@media(min-width: 768px) {
    #nav {
        grid-row: 1;
        margin-top: 16px;
    }
}

@media(min-width: 992px) {
    .desktop-logo {
        grid-row: 1;
        display: grid !important;
    }

    .mobile-logo {
        display: none !important;
    }

    #nav {
        grid-row: 1;
    }
}

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

#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;
    }
}

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

#nav-inner {
    align-content: center;
}

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

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

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

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

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

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

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

}

#nav-links a {
    text-decoration: none;
    color: #1C4E47;
    text-transform: uppercase;
    text-align: center;
    justify-self: center;

}

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

    .active-link {
        /*
		color: rgb( 28, 78, 71)!important;
		border-bottom: solid 2px var( --colour1 )!important;
		*/

        color: rgb(28, 78, 71) !important;
        border-bottom: solid 2px #68C4CB !important;
    }

    #nav-links a:hover {
        border-bottom: solid 2px #68C4CB !important;
    }
}

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

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

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

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

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

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

@media(min-width: 768px) {
    .dropdown-container {
        display: none;
        position: absolute;
        z-index: 9;
        background-color: var(--colour1);
        padding: 16px;
        grid-gap: 8px;
        margin-top: 30px;
    }
}

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


@media(min-width: 1200px) {
    .dropdown-container {
        margin-top: 0px;
    }
}

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

.menu_toggle {
    justify-self: center;
    margin: 32px;
    font-size: 24px;
}

.burger-container {
    display: grid;
    margin-top: 24px;
    background: #CEE086;
    background: linear-gradient(90deg, rgba(206, 224, 134, 1) 0%, rgba(117, 191, 197, 1) 35%, rgba(85, 154, 113, 1) 69%, rgba(28, 78, 71, 1) 100%);
}

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

.burger-icon {
    justify-self: center;
    margin: 8px;
    color: #fff;
    font-size: 24px;
}

.page-link {
    display: grid;
    justify-content: center;
    width: 100%;
    align-self: center;
}

#nav-links {
    grid-gap: 16px;
    margin: 24px 0 8px;
}

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