nav {
    width: 100%;
    height: 80px;
    padding: 20px 7vw;
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    background-color: transparent;
    z-index: 1000;
    transition: background-color 0.3s;
}

.nav-background-color {
    background-color: #03101e;
    transition: background-color 0.3s;
}

.nav-logo {
    font-size: 2em;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    font-variant: small-caps;
    letter-spacing: 0.1em;
    text-decoration: none;
    color: rgb(255, 255, 255);
    z-index: 1001;
    transition: color 0.3s;
}

.make-green {
    color: rgb(72, 255, 59) !important;
    transition: color 0.3s;
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    margin-left: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-container a {
    position: relative;
    padding: 20px;
    padding-right: 20px;
    margin-right:30px;
    color: #ffffff;
    transition: color 0.3s;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    z-index: 2;
}

.nav-container a:hover,
.dropdown-parent:hover > a {
    color: rgb(72, 255, 59);
    transition: color 0.3s;
}

.nav-container i {
    padding: 7px;
    color: #ffffff;
    transition: color 0.3s;
    font-size: 0.9em;
    transition: rotate 0.3s;
}

.nav-container a:hover i,
.dropdown-parent:hover i {
    color: rgb(72, 255, 59);
    rotate: 180deg;
    transition: color 0.3s, rotate 0.3s;
}

.dropdown-parent:hover .dropdown,
.divider:hover + .dropdown {
    opacity: 1;
    transition: opacity 0.3s;
    pointer-events: all;

}

.dropdown {
    width: 300px;
    position: absolute;
    background-color: rgb(0, 58, 94);
    top: 15px;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}


.dropdown a {
    font-size: 1em;
    margin: 0;
    padding: 10px 20px;
}

.divider {
    margin: 0;
    width: 100%;
    height: 1px;
    background-color: #ffffff;
}


select {
    margin: 20px;
    padding: 5px;
    background-color: transparent;
    border: 0px solid transparent;
    color: #ffffff;
    font-size: 1.1em;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s;
}

select:hover {
    color: rgb(72, 255, 59);
    transition: color 0.3s;
}

option {
    color: #8f8f8f;
}

.hamburger {
    display: none;
    position: absolute;
    right: 7vw;
    font-size: 1.8em;
    cursor: pointer;
    color: #fff;
    transition: color 0.5s;
    z-index: 1001;
}

.hamburger:hover {
    color: rgb(72, 255, 59);
    transition: color 0.5s;
}

.hamburger i {
    opacity: 1;
    transition: opacity 0.3s;
    pointer-events: all;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mobile-divider {
    display: none;
}



@media screen and (max-width: 1300px) {
    .hamburger{
        display: block;
    }

    .enable-on-mobile {
        opacity: 1 !important;
        transition: opacity 0.3s;
        pointer-events: all !important;
    }

    .nav-container {
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s;
        position:absolute;
        top: 80px;
        left: 0;
        height: calc(100lvh - 80px);
        width: 100lvw;
        padding: 20px 7vw;
        background-color: #1e63ac;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;

        overflow-y: scroll;
    }

    .nav-left, .nav-right {
        width: 100%;
        margin: 0;

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    select {
        width: 60px;
        margin: 15px;
        padding: 5px;
    }

    .nav-container a {
        width: 100%;
        padding: 20px;
        text-align: center;
    }

    .nav-container i {
        display: none;
    }

    .dropdown-parent {
        width: 100%;
    }

    .dropdown {
        display: none;
    }

    .dropdown-parent > a {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-divider {
        display: block;
        margin: 0;
        height: 1px;
        width: 80%;
        background-color: rgb(72, 255, 59);
    }
}
