/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');*/


/* Global Classes */



header{
    top: 0%;
    background-color: inherit;
    margin-bottom: -2%;
    
}

nav{
    padding: 0%;
    margin: auto auto auto auto;
    width: 80%;
    
}


/*Classes*/

.navbar {

    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: inherit;

}

.brand-title{
    font-size: 1.5rem;
    margin: .5rem;
}

.brand-title a {
    
    color:  #004aad;
    font-weight: bolder;
    font-size: 3rem;
    padding: 0.25rem;
    text-decoration: none;
    
}

.navbar-links ul {
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar-links li{
    list-style: none;
}

.navbar-links li a {
    text-decoration: none;
    color: #004aad;
    font-size: 1.5rem;
    padding: 1rem;
    display: block;
    
}

.navbar-links li a:hover {
    text-decoration: none;
    color: rgb(96, 96, 151);
}

.dropbtn {
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
}

.dropdown {
  position: relative;
  display: inline-block;    
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 1.5rem;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
/*.dropdown:hover .dropbtn {background-color: #3e8e41;}*/

/* Screen specific styles */



.toggle-button {
    position: absolute;
    top: 1.25em;
    right: 2.5em;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 5em;
    height: 2.5em;
    background-color: inherit; 
}

.toggle-button .bar {
    height: 2.5em;
    width: 100%;
    background-color: #004aad;
    border-radius: 10px;
}

@media (max-width: 550px){

    .brand-title a {
        margin-left: 50%;
        margin-right: 50%;
    }
    .navbar{
        align-items: center;
        justify-content: center;
    }

    .toggle-button{
        
        position: relative;
        margin-bottom: 2rem;
        margin-left: 50%;
        margin-right: 50%;
    }

}

@media (max-width: 999px){
    
    .toggle-button{
        display: flex;
    }

    .navbar-links{
        display: none;
        width: 100%;
    }

    .navbar{
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-links ul{
        width: 100%;
        flex-direction: column;
        background-color: whitesmoke;
    }

    .navbar-links li {
        text-align: center; 
        background-color: inherit;
    }

    .navbar-links li a {
        padding: .5em 1em;
        background-color: inherit;
    }

    .navbar-links.active{
        display: flex;
    }

}


/*
@media (min-width: 1000px) {}
*/
