header{
    width: 100%;
    padding: 15px 0;
    background-color: #2478c6;
    display: flex;
    justify-content: center;
    position: fixed;
}
header .header-content{
    width: 100%;
    position: relative; 
}



header .top-wrapper{
    display: flex;
}

header .top-wrapper .logo{
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: auto;
}
header .top-wrapper .logo img{
   width: 50px;
   height: 50px;
}

header .top-wrapper .logo span{
   font-size: 1.5rem;
   font-weight: bold;
   color: white;
   letter-spacing: 0.2px;
   margin-left: 4px;
}

header .top-wrapper .link-wrappper{
    margin-left: auto;
    display: flex;
    align-items: center;
    margin-left: 10px;
}

header .top-wrapper .link-wrappper .links{
    color: white;
    font-weight: bold;
    background-color: #185f9d;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.2px;
    cursor: pointer;
    margin-right: 10px;
}

header .top-wrapper .link-wrappper .close{
    display: none;
}

header .top-wrapper .link-wrappper .links:last-child{
    margin-right: 0;
}

header .top-wrapper .link-wrappper .links:hover{
    background-color: black;
}

header .top-wrapper .link-wrappper .links span{
    margin-left: 2px;
}

header .search-wrapper{
    width: 100%;
    margin-top: 10px;
    background-color: #185f9d;
    border-radius: 4px;
    padding: 2px 5px;
    display: none;
    align-items: center;
    padding-right: 0;
   
}
header .search-wrapper input{
   width: 100%;
   height: auto;
   height: 100%; 
   border: none; 
   outline: none;
   padding: 4px 10px;
   background-color: transparent;
   font-size: 16px;
   color: white;
}

header .search-wrapper input::placeholder {
    color: #ccc; 
}
header .search-wrapper button{
    border: none;
    outline: none;
    background-color: #023969;
    color: white;
    padding: 5px 16px;
    border-radius: 4px;
    cursor: pointer;
}
header .search-wrapper .search-button{
    border-radius: 4px;
    cursor: pointer;
}
header .search-wrapper .search-button i{
    padding: 8px;
    margin-right: 5px;
    margin-left: 5px;
    color: white;
}

header .search-wrapper .search-button:hover{
    background-color: rgb(2, 45, 100);
}

header .dropdown-menu {
    display: none;
    position: absolute;
    top: 50px; 
    right: 10px;
    background-color: #185f9d;
    border-radius: 5px;
    width: 150px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    border: 2px solid #49a9fc;
}

header  .dropdown-menu .dropdown-item {
    color: white;
    padding: 10px;
    display: block;
    font-size: 16px;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

header .dropdown-menu .dropdown-item:hover {
    background-color: black;
}


@media (max-width: 1050px) {
    header .header-content{
        margin-right: 3%;
        margin-left: 3%;
    }
}

@media (max-width: 550px) {
    header .top-wrapper .logo span{
        font-size: 1.2rem;
    }
    header .top-wrapper .logo img{
        width: 40px;
        height: 40px;
     }

     header .top-wrapper .link-wrappper .links{
        font-size: 15px;
    }
    header .search-wrapper input{
        font-size: 14px;
    }

}

@media (max-width: 460px) {
    header .top-wrapper .logo span{
        font-size: 1rem;
    }

    header .top-wrapper .link-wrappper .links{
        font-size: 14px;
    }
    header .top-wrapper .logo img{
        width: 30px;
        height: 30px;
     }
}

@media (max-width: 380px) {
    header .top-wrapper .logo span{
        font-size: 14px;
    }

    header .top-wrapper .link-wrappper .links{
        font-size: 12px;
        padding: 4px 8px;
        text-align: center;
    }
    
}

