.header {
    position: relative;
	padding: 14px 0;
	background-color: var(--white);
    border-top: 24px solid var(--darkblue);
    box-shadow: 1px 1px 15px #302e4069;
    z-index: 2;
}
.header .logo {
	height: 32px;
	text-decoration: none;
    margin-right: auto;
}
.header .logo span{
	display: inline-block;
	font-weight: 700;
	color: var(--darkblue);
	margin-left: 24px;
	padding-bottom: 2px;
}
.header .search-icon svg{
    cursor: pointer;
    height: 32px;
    width: 32px;
    margin-right: 24px;
}
.header .search-icon svg.close{
    display: none;
}
.nav-profile{
    position: relative;
}
.nav-profile-image{
    height: 36px;
    width: 36px;
}
.nav-profile-image img {
    object-fit: cover;
    width: 36px;
    height: 36px;
    border-radius: 100%;
    cursor: pointer;
}
.nav-profile-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 102%;
    width: 200px;
    background: var(--white);
    padding: 8px 12px;
    border-radius: 4px;
    box-shadow: 1px 1px 15px #302e4069;
    font-size: 16px;
    z-index: 20;
}
.profile-name {
    font-weight: 600;
    color: var(--darkblue);
    padding-bottom: 4px;
    margin-bottom: 4px;
    border-bottom: 1px solid var(--lightgray);
}
.profile-item a {
    display: block;
    color: var(--darkblue);
    text-decoration: none;
    padding: 4px 0;
}
.profile-item a:hover {
    font-weight: 600;
}
.nav-profile-image:hover .nav-profile-dropdown{
    display: block;
}
@media (max-width: 480px) {
    .header .logo span {display: none;}
}