﻿#mobile-nav {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-size: 32px;
    row-gap: 20px;
    padding: 20px;
    background: white;
    opacity: .9;
}


.large-nav-buttons {
    margin-top: 20px;
}

.large-nav-button .button {
    padding: 12px 40px;
    border-radius: 8px;
}

#mobile-nav .button-accent {
    padding: 4px 12px;
    display: block;
}

.mobile-nav-item {
    display: block;
    width: 100%;
    text-align: center;
    max-width: 75vw;
    font-weight: bold;
}

    .mobile-nav-item a {
        text-decoration: none;
        color: black;
        font-weight: normal;
        transition: 1s ease all;
    }

        .mobile-nav-item a:hover {
            font-weight: bold;
        }

    .mobile-nav-item img {
        width: 200px;
    }

#open-mobile-nav-button {
    font-size: 22px !important;
    padding: 8px;
    display: none;
}

#close-mobile-nav-button {
    font-size: 32px !important;
    padding: 8px;
    color: black;
    position: fixed;
    top: 20px;
    right: 20px;
    color: #737373;
    z-index: 1;
}

/*SOCIALS*/
#socials-div-outer {
    background: #373737;
}

#socials-div {
    flex-direction: row;
    justify-content: end;
    width: 100%;
}

#social-links {
    display: flex;
    flex-direction: row;
    justify-content: end;
}

.social-link {
    padding: 4px 8px;
    display: block;
    font-size: 14px;
    color: white;
}

#open-enrollment {
    background: var(--accent-color);
    height: 50px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    font-weight:500;
    font-size:18px;
    letter-spacing:1.2px;
    color:white;
}

    #open-enrollment a {
        text-decoration: none;
        font-weight: 500;
        font-size: 18px;
        letter-spacing: 1.2px;
        color: white;
        transition: .5s ease all;
    }

    #open-enrollment a:hover {
        opacity:.7;
    }

/*NAVIGATION*/
#navigation-div-outer {
    background: rgba(255,255,255,.9);
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

#navigation-div {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#navigation-logo {
    height: 60px;
}

    #navigation-logo img {
        height: 100%;
    }

#navigation-links {
    max-width: 60%;
}


#navigation-div a {
    text-decoration: none;
    font-size: 12px;
    margin: 0 6px;
    text-transform: uppercase;
    font-weight: normal;
    color: #373737;
    letter-spacing: .7px;
    transition: .5s ease-in-out all;
}

    #navigation-div a:hover {
        color: var(--sec-color);
    }


@media (max-width: 900px) {
    #socials-div-outer {
        display: none;
    }

    #open-mobile-nav-button {
        display: block;
        font-size: 32px !important;
    }

    #navigation-logo {
        height: 60px;
        padding: 8px;
    }

    #page-cover.show-mobile-nav {
        display: block;
        z-index: 20;
        opacity: 1;
    }

    .mobile-nav-open
    #mobile-nav {
        display: flex;
    }
}

.give, .give a {
    padding: 6px 14px;
    background:orange;
    border-radius:4px;
    background-color: var(--pri-color);
    color:white !important;
}