
header{
    display: flex;
    background-color: #fff;
    justify-content: space-between;
    /* margin: -8px -8px 0 -8px; */
    height: 100px;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    z-index: 100;
}

.header_logo {
     margin-left: 20px;
     width: 50%;
}
.header_logo img {
    width: 220px;
    height: 80px;
}
.header_nav {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 20px;
}

.header_nav_links {
    display: flex;
    justify-content: space-between;
}
.header_nav_links a {
    color:#38003D;
    font-size: 16px;
    font-weight: 600;
}
.header_nav_links a:hover {
    border-bottom: 2px solid #38003D;
}
.header_nav_search {
    padding-top: 20px;
    display: flex;
    justify-content: end;
}
.header_nav_search_icon{
    background-color: #fff;
    width: 400px;
    height: 27px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.7);
}
.header_nav_search input {
   width: 440px;
   height: 25px;
   border-radius:25px;
  border: none;
  font-size: 16px;
    padding-left: 10px;
}
.fa-magnifying-glass{
    position: absolute;
    right: 10px;
    color:#38003D;
}