.nav {
    background: #498a65;
    padding: 10px 0;
    width: 100%;
    position: fixed;
    z-index: 9;
}

.nav__wrapper {
    display: flex;
    align-items: center;
	justify-content: space-between;
    padding: 0 40px;
}

.nav__logo img {
    width: 35px;
    filter: invert(90%) sepia(43%) saturate(344%) hue-rotate(1deg) brightness(95%) contrast(92%);
}







.nav__item {
    font-family: "Google Sans Medium", sans-serif;
    /* font-weight: 500; */
    font-size: 15px;
    text-decoration: none;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    transition: all 0.5s ease;
    padding:  10px;
}

.nav__item:last-child {
    padding: 10px 0 10px 10px;
}

.nav__item a {
    text-decoration: none;
    color: #fff;
    transition: all 0.5s ease;
}

.nav__item a:hover {
    color: #efd369;
}

.nav__item a i {
    font-size: 12px;
    color: #efd369;
}


.nav__item span i {
    font-size: 12px;
    color: #efd369;
}


.sub__nav {
    display: none;
    position: absolute;
    background: #498a65;
    /* background: red; */
    padding: 25px 15px 15px 15px;
    margin-left: -15px;

}

.nav__item:hover .sub__nav {
    display: block;
}

.sub__item {
    padding: 10px 0;
    display: flex;
}

.nav-icon {
    width: 11px;
	filter: brightness(0) saturate(100%) invert(94%) sepia(27%) saturate(904%) hue-rotate(357deg) brightness(94%) contrast(97%);
	margin-left: 5px;
}

.sub__item a {
    display: block;
}



.auth {
    display: flex;
    align-items: center;
}

.nav-account {
    display: flex;
    align-items: center;
    color: #ebe961; 
    font-weight: bold;
    margin-right: 10px;
}

.account-icon {
    width: 20px;
	/* filter: brightness(0) saturate(100%) invert(94%) sepia(27%) saturate(904%) hue-rotate(357deg) brightness(94%) contrast(97%); */
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(326deg) brightness(103%) contrast(101%);
	margin-right: 5px;
}
