header{
    height: 90px;
    padding: 20px 58px;
    background-color:#5F688F;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


header h1{
    font-family: baumans, Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 36px;
    color: white !important;
}

header a {
    text-decoration: none !important;
    color: white !important;
}

.header-1{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    margin-left: 4rem;
}
.header-1 div{
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-1 div h2{
    font-size: 20px;
    font-family: Inter, sans-serif;
    font-weight: 600;
}

header ul{
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    gap: 25px;
    color: white;
}

.header-1 div h2{
    color: white !important;
}

header a,
header ul li a,
.header-1 a {
    color: white !important;
    text-decoration: none !important;
}

#li1, #li2, #li3 {
    position: relative;
}

#li1::after, #li2::after, #li3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    border-bottom: 2px solid white;
    transition: width 0.3s ease;
}

#li1:hover::after, #li2:hover::after, #li3:hover::after {
    width: 100%;
}

header ul li{
    font-family: Inter, Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    padding-bottom: 2px;
}