* {
    font-family: "Inter", sans-serif;
    margin: 0px;
    scroll-behavior: smooth;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

a:visited, a:link {
    color: #030880;
}

#burger-menu {
    display: none;
}

nav {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#navbar {
    width: 100%;
    padding-top: 3rem;
    padding-bottom: 2.2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.384),
                0 0 75px rgba(0, 0, 0, 0.22);
    position: fixed;
    background: #fff;
    z-index: 999;
}

#navbar-logo {
    padding: 1rem 2rem;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.384);
    border-radius: 1.7rem;
    background: #fff;
    transition: all 0.1s ease;
}

#navbar-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 0 45px #bba35e;
    cursor: pointer;
}

.line-gold-vertical {
    width: 1px;
    height: 6rem;
    background: #bba35e;
}

#navbar-list {
    height: 100%;
    width: 34%;
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    font-family: "Inter", sans-serif;
    font-size: 1.9rem;
    font-weight: 600;
    letter-spacing: .06rem;
    color: #030880;
}

#navbar-list > li {
    transition: all 0.2s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#navbar-list > li:hover {
    cursor: pointer !important;
    transform: scale(1.1);
}

#navbar-list > li:first-child {
    font-weight: 700;
}

#navbar-list > li:last-child {
    color: white !important;
    padding: 1rem 1.3rem;
    background: rgb(0,6,130);
    background: -moz-linear-gradient(128deg, rgba(0,6,130,1) 0%, rgba(0,4,89,1) 100%);
    background: -webkit-linear-gradient(128deg, rgba(0,6,130,1) 0%, rgba(0,4,89,1) 100%);
    background: linear-gradient(128deg, rgba(0,6,130,1) 0%, rgba(0,4,89,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000682",endColorstr="#000459",GradientType=1);
    border-radius: 3rem;
}

#navbar-list > li:last-child:hover {
    box-shadow: 0 0 35px rgba(0, 7, 130, 0.678);
}

#navbar-list > li:last-child > a:visited {
    color: white !important;
}

#navbar-list > li:last-child > a:link {
    color: white;
}


.navbar-list-line {
    border-radius: 2rem;
    height: 3px;
    width: 0%;
    background: #030880;
    transition: all 0.2s ease;
}

#navbar-list > li:hover > .navbar-list-line {
    width: 100%;
}


@media only screen and (max-width: 1480px) {
    #navbar-logo, #navbar-logo:hover {
        padding: 0;
        box-shadow: none;
        transform: scale(1);
    }
    
    #navbar-list  {
        width: 100%;
        z-index: -1;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        position: fixed !important;
        transition: all 0.2s ease-in-out;
        height: 0.1px;
        overflow: hidden;
        padding-top: 32vh;
        display: none;
        box-shadow:  0 0 32px black;
    }

    #navbar-list > li {
        margin: 1.5rem;
    }

    #burger-menu {
        display: block;
        transition: all 0.2s ease-in-out;
        filter: drop-shadow(0 0 15px #bba35e);
    }
}