#header {
	padding: 20px 0;
	position: fixed;
	width: 100vw;
	background-color: rgba(255, 255, 255, 0);
	z-index: 100;
	transition: all 0.5s;
}

#header.scroll {
	background-color: rgba(255, 255, 255, 1);;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.nav-item.active {
	font-family: ClashDisplayBold;
}

#header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#header .container .nav {
	flex-basis: 600px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#header .logo {
    width: 180px;   
}


#header {
	/* border: 1px solid rgba(0, 0, 0, 0.1); */
}

#header > div {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.navbar-nav {
	display: flex;
	flex-direction: row;
	justify-content: center;
	padding: 0px;
	gap: min(20%, 66px);
}

.navbar-nav a {
	font-weight: 600;
	font-size: 15px;
	color: var(--GRAY);
	display: block;
	transition: all 0.2s;
	white-space: nowrap;
}

#header .navbar-nav a:hover {
	color: var(--DARK_BLUE_2);
}

#header .current-menu-item a {
	color: var(--DARK_BLUE_2);
}

#header .hamburger-menu {
	width: 43px;
	height: 43px;
	border: none;
	padding: 0;
	margin: 0;
	background-color: transparent;
}

#header .hamburger-menu img {
	width: 100%;
}

.sidebar .nav {
    display: block;
}

.sidebar .nav-item {
    display: block;
    margin: 15px 0;
}

.sidebar .sidebar-content,
.sidebar .sidebar-overlay {
	top: 0;
	left: 0;
	bottom: 0;
    width: 100vw;
    height: 100vh;
	position: absolute;
	transition: all 0.3s ease-in-out 0s;
}

.sidebar .sidebar-overlay {
	right: 0;
	opacity: 0;
	width: 100%;
	z-index: 999;
	transform: scale(0);
	background: rgba(0, 0, 0, 0.4);
}

.sidebar .sidebar-content {
	width: min(70%, 300px);
	color: #333;
	padding: 15px;
	z-index: 9999;
	background: white;
	transform: translateX(-100%);
}

.sidebar.active .sidebar-content {
	transform: translateX(0);
}

.sidebar.active .sidebar-overlay {
	opacity: 1;
	transform: scale(1);
}

.sidebar .sidebar-content .top-head .name {
	font-size: 28px;
	font-weight: 400;
	margin-bottom: 5px;
}

.sidebar .sidebar-content .top-head .email {
	font-size: 13px;
	margin-bottom: 50px;
}

.sidebar .sidebar-content .nav-left > a {
	color: #333;
	display: block;
	font-size: 16px;
	padding: 10px 0;
	line-height: 24px;
	vertical-align: top;
	text-decoration: none;
}

.sidebar .sidebar-content .nav-left > a > span {
	color: #aaa;
	font-size: 24px;
	min-width: 40px;
	display: inline-block;
}

#header .side-nav ul {
	margin: 0;
	padding: 30px 20px 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 25px;
}

#header .side-nav .button-primary {
	margin-top: 25px;
}

#header a {
	/* color: var(--GRAY); */
}

#header .side-nav a:hover {
	/* color: var(--WHITE); */
}

#header .side-nav .current-menu-item a {
	/* color: black; */
}

.main-logo {
	height: 45px;
}
