:root {
    --primary: #1D1D1B;
    --secondary: #9AC33E;
    --tertiary: #cee070;
    --quaternary: #e2eaa4;
}

body {
    background-image: url("../../img/general/bg.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 100%;
    font-family: 'AktivGrotesk', sans-serif;
    font-weight: normal;
    font-style: normal;
    color: var(--primary);
}

.page {
    min-height: 75%;
}

.btn-close-modal {
    background-color: var(--secondary);
    color: #fff;
    border-radius: 0;
    transition: all .2s ease-in-out;
}

.btn-close-modal:hover {
    transform: scale(1.05);
    color: #fff;
}

.navbar {
    min-height: 15%;
    display: flex;
    align-items: end;
    padding: 0 3%;
    box-shadow: none !important;
}

.navbar-brand {
    display: none;
}

.navbar-brand img {
    width: 200px;
}

.ateneo img {
    width: 200px;
}

.nav-brand {
    width: 15%;
    justify-content: start;
}

.nav-options {
    width: 70%;
    justify-content: center;
}

.nav-info {
    width: 15%;
    justify-content: end;
}

.nav-options .nav-item {
    margin: 0 2%;
}

.nav-username {
    margin-right: 50px;
}

.nav-link.username {
    display: flex;
    align-items: center;
    padding-bottom: 12px;
}

.nav-link.username:hover {
    cursor: default;
    color: var(--primary);
}

.nav-link.username .hello {
    font-size: 14px;
    font-weight: normal;
    color: var(--secondary);
    text-transform: capitalize;
}

.nav-link:not(.username):hover, .nav-link.active {
    color: var(--secondary);
}

.nav-link:not(.username):hover::after {
    width: 100%;
    transition: width .5s;
}

.nav-link:not(.username)::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    /* margin-top: 8px;*/
    background: var(--secondary);
}

.nav-link:not(.username).active::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: var(--secondary);
}

.nav-link:not(.username):focus, .nav-link:not(.username):target {
    color: var(--secondary);
}

.logout {
    font-size: 20px;
    color: var(--secondary);
}

.logout:hover {
    cursor: pointer;
    color: var(--secondary);
}

.kyowa {
    display: flex;
    align-items: center;
}

.kyowa img {
    width: 200px;
}

.nav-link {
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
}

footer {
    min-height: 10%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

footer div {
    text-align: center;
}

footer div[data-mdb-toggle="modal"] {
    cursor: pointer !important;
    font-size: 12px;
}

footer div[data-mdb-toggle="modal"]:hover {
    text-decoration: underline;
}

footer .footer-code {
    pointer-events: none;
    font-weight: 700;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: var(--secondary);
    border-radius: 6px;
    border: 2px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--secondary);
    opacity: 0.8;
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--secondary) transparent;
}

@media (max-width: 1600px) {
    body {
        background-position: 20% 100%;
    }

    .nav-link {
        font-size: 13px;
    }
}

@media (max-width: 1400px) {
    .nav-brand {
        width: 15%;
    }

    .nav-options {
        width: 70%;
    }

    .nav-info {
        width: 15%;
    }

    .nav-link, .logout {
        font-size: 11px;
    }

    .nav-link.username .hello {
        font-size: 10px;
    }

    .nav-username {
        margin-right: 0;
    }
}

@media (max-width: 1350px) {
    body {
        background-position: 40% 100%;
    }
}

@media (max-width: 1200px) {
    body {
        background-image: url("../../img/general/bg_md.svg");
        background-position: 35% 100%;
        background-size: 135%;
    }

    .nav-username {
        font-size: 10px !important;
    }

    .nav-brand {
        width: 11%;
    }

    .nav-options {
        width: 78%;
    }

    .nav-info {
        width: 11%;
    }

    .kyowa img {
        width: 170px;
    }
}

@media (max-width: 991px) {

    .navbar {
        padding: 3%;
    }

    .nav-brand {
        display: none;
    }

    .navbar-brand {
        display: flex;
    }

    .nav-options, .nav-info {
        width: 100%;
    }

    .nav-options .nav-link {
        text-align: center;
    }

    .nav-username {
        margin-right: 0;
    }

    .nav-info .nav-link {
        text-align: right;
    }

    .nav-link.username, .kyowa {
        justify-content: end;
    }

    footer {
        margin-top: 3%;
    }
}

@media (max-width: 576px) {
    body {
        background-image: url("../../img/general/bg_sm.svg");
        background-size: 100%;
    }
}