.navbar-container{
    top: 0;
    position: fixed;
    width: 100%;
    height: 60px;
    background-color: orangered;
    border-radius: 0 0 20px 20px; 
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-top: -20px; */
}

.badge-nav a{
    text-decoration: none;
    color: white;
}
.badge-nav a:hover{
    text-decoration: none;
    color: white;
}
.badge-nav a:active{
    text-decoration: none;
    color: white;
}

/* ================= MID NAV ================== */
.mid-nav{
    margin: 8px auto;
    display: flex;
    width: 100%;
    height: 50px ;
}

.badge-nav{
    width: 15%;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;     
    color: white;  
}
.badge-nav h1{
    width: 100%;
    display: flex;
    margin: -5px 0 0 0;
    justify-content: end;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
}
.badge-nav img{
    width: 40px;
    margin: -5px 0 0 0;
    display: none;
}
.search-nav{
    display: flex;
    justify-content: center;
    width: 70%;
    align-items: center;
}
.search-container{
    display: flex;
    width: 100%;
    height: 42px;
    align-items: center;
    background-color: white;
    border-radius: 30px;
    
}
.box-search{
    margin: 0 0 0 5px;
    width: 90%;
    height: 40px;
    border: none;
    outline: none;  
    border-radius: 10px; 
    padding: 10px;
}
.button-search{    
    margin-right: 5px;
    background-color: white;
    width: 10%;
    border-radius: 10px;
    border: none;
    outline: none;
    border-color: white;
    text-decoration: none;
    height: 40px; 
    padding: 0 5px;
    color: orangered;

}
.button-search:active{
    background-color: none;
    opacity: 0.5;
    color: white;
    border: none;
    outline: none;
}
.button-search:hover{
    border: none;
    outline: none;
    background-color: none;
    opacity: 0.8;

}
.button-search:focus{
    outline: none;
    
    color: white;
}
.right-info-nav{
    width: 15%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.nav-info{
    display: flex;
    justify-content: end;
    list-style-type: none;
    margin: 0 10px;
    padding: 0;
}
.nav-info li{
    margin: 0;
    padding: 0;
}
.nav-menu{
    margin: 0 5px 0 5px;
}
.nav-menu-link{
    text-decoration: none;
    color: white;
}
.nav-menu-link:hover{
    text-decoration: none;
    color: grey;
    transition: 0.5s;
    
}

/* Style the dropdown button */
.dropbtn {
    border: none;
    background-color: orangered;
    cursor: pointer;
    color: white;
}
.dropbtn:hover{
    text-decoration: none;
    color: grey;
    transition: 0.5s;
    
}
  
  /* Style the dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    margin-left: -100px;
    border-radius: 10px;
    background-color: #f9f9f9;
    min-width: 160px;
    z-index: 1;
}  


  /* Style the links inside the dropdown */
.dropdown-content a {
    color: orangered;
    border-radius: 10px;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
  
  /* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: whitesmoke;
    text-decoration: none;
}
.dropdown-content:focus{
    outline: none;
}
  
  /* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Tablet styles */
@media only screen and (min-width: 768px) and (max-width: 1100px) {
    .badge-nav h1{
        display: none;
    }
    .badge-nav img{
        width: 40px;
        margin: -5px 0 0 0;
        display: flex;
        justify-content: center;
        align-items: center;        
    }
}
  
/* Mobile styles */
@media only screen and (max-width: 767px) {

    .badge-nav h1{
        display: none;
    }
    .badge-nav img{
        width: 40px;
        margin: -7px 0 0 10px;
        display: flex;
        justify-content: center;
        align-items: center;        
    }
}

/* Desktop styles */
@media only screen and (min-width: 992px) {
/* Add desktop-specific styles here */
}