
/* Navabar */
#nav-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:5px 100px;
    font-size: 14px;
    color: white;
    background-color: #313F35;
}
#nav-top a{
    color: white;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-decoration: none;
}
#nav-top-right img,#nav-top span,#nav-top-left a, #nav-top-right a:nth-child(2){
    opacity: 0.7;
}
#nav-mid{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:5px 100px;
    /* color: white; */
    background-color: #EDF0EE;
}
#nav-mid img{
    height: 60px;
}
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 48
}
#nav-mid .nav_span_btn_text{
    font-size: 14px;
    font-weight: 500;
}
#nav-mid button{
    padding: 6px 10px;
    border:1px solid black;
    background-color: white;
}
#nav-mid input{
    border:1px solid black;
    font-size: 16px;
    background-color: white;
    width: 60%;
    padding: 7.5px 10px;
}
#nav-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:10px 100px;
    border-top: 1px solid grey;
    border-bottom: 1px solid grey;
}
#nav-bottom a{
    color: rgb(0, 0, 0);
    font-weight: 400;
    text-decoration: none;
}

.dropdown-content {
    border: 2px solid #313F35;
    padding: 15px;
    /* margin-top: 2px; */
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content button {
    padding: 12px 16px;
    font-size: 16px;
    text-decoration: none;
    display: block;
    margin: 5px 0px;
    cursor: pointer;
}
.dropdown-content button:nth-child(odd) {
    color: rgb(255, 255, 255);
    font-weight: 500;
    border: none;
    background-color: #4E6D58 !important;
}

.dropdown:hover .dropdown-content {
    width: 200px;
    display: block;
    display: flex;
    flex-direction: column;
}   
