header{
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, .16) 0px 1px 4px;
    margin-bottom: 20px;
}

header .nav-div{
    width: 100%;
    max-width: 1250px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

header .nav-div .logo-div{
    display: flex;
    text-decoration: none;
    margin-right: auto;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

header .nav-div .logo-div img{
    width: 30px;
    height: 30px;
}
header .nav-div a p{
    font-size: 1.325em;
    font-weight: bold;
    margin-left: 10px;
    letter-spacing: 0.5px;
    color: #00bf63;
}

header .nav-div ul{
    display: flex;
    list-style-type: none;
}
header .nav-div ul li{
    height: max-content;
}
header .nav-div ul li a{
    font-size: 1rem;
    font-weight: 550;
    text-decoration: none;
    letter-spacing: 0.5px;
    font-weight: bold;
    padding: 10px 20px;
}
header .nav-div ul li a:hover{
    color: #00bf63;
}

header .nav-div .menu-buttons{
    display: flex;
  
    align-items: center;
    justify-content: center;
}
header .nav-div .menu-buttons a{
   padding: 10px 15px;
   text-decoration: none;
   font-size: 17px;
   cursor: pointer;
}

header .nav-div .menu-buttons a:hover{
    color: #00bf63;
}

header .nav-div .menu-buttons .drawer-button{
   display: none;
}

header .dropdown {
    position: relative;
    display: block;
  }
  
header  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    right: 0;
    min-width: 126px;
  }
  
header  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    text-align: center;
    display: block;
  }
  
header  .dropdown-content a:hover {background-color: #ddd;}
  
header  .dropdown:hover .dropdown-content {display: block;}
  
header  .dropdown:hover .dropbtn {background-color: #3e8e41;}

@media (max-width: 768px) {
    header{
        padding-right: 15px;
        padding-left: 15px;
    }
    header .nav-div ul{
        display: none;
    }
    header .nav-div .menu-buttons .drawer-button{
        display: block;
     }
     
}

.search-layout {
    position: relative;
    display: none;
    width: 100%; 
    max-width: 1250px; 
    margin-bottom: 30px;
}

.search-layout input[type="text"] {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 1px solid #ccc;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
}

.search-layout i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #888;
    cursor: pointer;
}
