/*
 * header.css — Green River College SDEV
 * Recreated from devs.greenrivertech.net/css/header.css
 */

#education {
    display: flex;
    align-items: center;
}

#education * {
    color: black;
    margin-bottom: 0;
}

#education:hover {
    background: green;
}

#education:hover * {
    color: white;
    text-decoration-line: none;
}

.color1 { background-color: #205b10 !important; }
.color2 { background-color: #073c06 !important; }
.color3 { color: #0d0c0c !important; }

.btn {
    background-color: #073c06 !important;
    opacity: 0.8 !important;
}
.btn:hover {
    background-color: #073c06 !important;
    opacity: 1.0 !important;
}

.card-header {
    background-color: #0d0c0c !important;
}

.navbar-right .nav-item {
    padding-top: 0;
    padding-bottom: 0;
    height: 56px;
}

.mark, mark {
    background: yellow;
}

.navbar {
    background-color: #205b10;
}

.navbar-brand :not(img) {
    display: flex;
    margin-bottom: 0;
}

.navbar-brand img {
    width: 50px;
    height: 50px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    color: white !important;
}

/* Large desktops */
@media screen and (min-width: 992px) {
    .navbar {
        padding: 0 !important;
        height: 3.5em;
        padding-left: 10px !important;
    }
    .navbar-collapse { margin-top: 0; }
    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 18px;
        border-right-style: solid;
        border-right-width: 1px;
        border-bottom: 0;
        padding-right: 1rem !important;
    }
    #lastNavLink { border: none; }
    .navbar-expand-lg .navbar-nav .nav-link:hover { color: greenyellow; }
    #education {
        font-size: 16px;
        text-align: center;
        color: green;
        background: white;
        padding-left: 10px;
        padding-right: 10px;
        text-decoration: none;
        transition: 0.5s;
    }
    .nav-item h3 { visibility: hidden; }
}

/* Tablets & small devices */
@media screen and (min-width: 380px) and (max-width: 991px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 18px;
        padding-bottom: 0.9rem;
        border-bottom: 1px solid white;
    }
    #lastNavLink {
        border: none;
        padding-bottom: 0.5rem;
    }
    .navbar-expand-lg .navbar-nav .nav-link:hover { color: greenyellow; }
    .nav-item {
        font-size: 15px;
        padding: 5px;
        text-align: left;
    }
    #education {
        font-size: 14px;
        text-align: left;
        color: green;
        background: white;
        text-decoration: none;
        transition: 0.5s;
    }
    .navbar-collapse { margin-top: 0.5rem; }
    .nav-item h3 { padding-top: 10px; }
}

/* Extra small devices */
@media screen and (max-width: 379px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 1.4rem;
        padding: 18px;
        transition: 1s;
        border-bottom: 1px solid white;
    }
    .navbar-expand-lg .navbar-nav .nav-link:hover { color: greenyellow; }
    .nav-item {
        font-size: 1.4rem;
        padding: 5px;
        text-align: left;
    }
    #education {
        font-size: 11px;
        text-align: center;
        color: green;
        background: white;
        padding: 5px;
        text-decoration: none;
        transition: 0.5s;
    }
    .nav-item h3 { padding-top: 10px; }
}
