:root{
    /*--light_blue: #B1D0E0;*/
    /*--med_light_blue: #6998AB;*/
    /*--med_blue: #406882;*/
    /*--dark_blue: #1A374D;*/

    --light_blue: #00A8CC;
    --med_light_blue: #0C7B93;
    --med_blue: #27496D;
    --dark_blue: #142850;

    --brand_complement: #990099;
    --brand_color: #009900
}

body{
    width: 100vw;
    /*height: 100%;*/
    /*overflow-x:hidden;*/
    font-family: 'Exo', sans-serif !important;
    /*position:fixed;*/
}

.navbar{
    /*position:absolute;*/
    width: 100%;
    /*top:0;*/
    z-index: 997;
}

.main-container{
    margin-top: 80px !important
}

.bg_navbar{
    border-bottom: none;
}

html{
    overflow-x: hidden;
}
body{
    /*background: #cdd5de;*/
}
.get_started_btn{
    cursor: pointer;
    padding: 10px;
    /*border: 3px solid var(--dark_blue);*/
    border-radius: 50px;
    color: #000;
    text-decoration: none;
    transition: 0.5s;
    display: inline-block;
    background: #fff;
}

.get_started_btn:hover {
    box-shadow: 0 8px 15px rgb(0 0 0 / 20%);
    color: #4e54cb;
    text-decoration: none;
}

.nav-link{
    color: black !important;
    font-size: 1.2rem;
}

.above_nav{
    /*position:absolute;*/
    /*top:0;*/
    width: 100%;
    height: min-content;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    background: white;
}

.brand_name{
    font-size: 26px;
    font-weight: 600;
    font-style: italic;
    color: #009900;
}

nav{
    height: 40px !important;
}

.logo_container{
    display: grid;
    align-items: end;
    white-space: nowrap;
    justify-content: center;
}
.logo{
    grid-row: span 2;
}

div.nav-item{
    justify-self: end;
    position: relative;
}
div > a.nav-link{
    justify-self: end;
}

ul.navbar-nav{
    display: grid;
    justify-items: center;
    background: white;
    border-radius: 5px;
}
.cols-6{
    grid-template-columns: repeat(6,1fr);
}
.cols-5{
    grid-template-columns: repeat(5,1fr);
}


a.nav-link:hover{
    background-color: unset;
}

@media (max-width: 768px) {
    ul.navbar-nav {
        grid-template-columns: 1fr;
    }
    #navbarNavDropdown{
        position:absolute;
        left: 0;
        top: 100px;
        z-index: 999;
        width: 300px !important;
        box-shadow: #0000002b 0 0 4px 1px;
        border-radius: 5px;
    }

    .nav-section{
        grid-column:1;
        grid-row: 1;
    }
    .logo_container{
        grid-column: 2;
    }


}

.dropdown-toggle::after{
    display: none;
}

#user_icon path{
    transition: 0.2s ease;
}

#user_icon:hover path {
    stroke: rgb(0,153,0) !important;
}
