#navbar {
	background-color: #fdfef9; /* Black background color */
  	position: fixed; /* Make it stick/fixed */
  	top: -58px; /* Hide the navbar 50 px outside of the top view */
  	width: 100%; /* Full width */
  	transition: top 0.3s; /* Transition effect when sliding down (and up) */
  	z-index: 150;
  	padding-top: 5px;
	padding-bottom: 5px;
	backdrop-filter: blur(3px) contrast(.8);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.18);
	opacity: 0.96;
}

.navbar_inner {
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
}

.navbar_left {
	text-align: left;
}

.navbar_nav {
	display: flex;
	align-items: center;
	gap: 32px;
	padding-top: 5px;
	padding-bottom: 5px;
}

#navbar .nav_link_scroll,
#navbar .nav_link_scroll:link,
#navbar .nav_link_scroll:visited {
	font: 400 16px/20px 'Roboto', Arial, Helvetica, Geneva, sans-serif;
	color: #242424;
	text-decoration: none;
	letter-spacing: 0.02em;
	border-bottom: 3px solid transparent;
	padding-bottom: 4px;
}

#navbar .nav_link_scroll:hover {
	color: #000000;
}

.nav_active,
.nav_link_scroll.nav_active {
	border-bottom-color: #000000 !important;
}

#navbar .navbar_text a,
#navbar .navbar_text a:link,
#navbar .navbar_text a:visited {
	color: #242424;
	text-decoration: none;
}

#navbar .navbar_text a:hover {
	color: #242424;
}

.navbar_right_first {
	width: 100%;
	padding-right: 0;
	float: left;
	text-align: right;
	padding-top: 5px;
	font-size: 18px;
	/*border:  1px solid blue;*/
}

.navbar_right {
	width: 50%;
	padding-right: 30px;
	float: left;
	text-align: right;
	padding-top: 5px;
	font-size: 18px;
}

/* Style the navbar links */

.navbar_spacer {
	margin-left: 10px !important;
}

.navbar_link {
	float: right;
	width: 40px;
	margin-left: auto;
	margin-right: auto;
}

.navbar_link img {
	width: 100%;
	height: auto;
}

.navbar_link_mob {
	float: right;
	width: 40px;
	margin-left: auto;
	margin-right: auto;
}

.navbar_link_mob img {
	width: 100%;
	height: auto;
}

.navbar_text a {
	color: #242424;
	text-decoration: none;
}

.navbar_text a:hover {
	color: #242424;
}

/*LOGO*/
.navbar_text {
font: 30px/50px 'elza-narrow', Arial, sans-serif;
}


