#topbar {
	background-color: var(--topbar-bg);
}

.topbar-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: var(--topbar-container-width);
	height: var(--topbar-height);
	padding: 10px;
    margin: 0 auto;
}

.topbar-logo {
	line-height: 0;
}

.topbar-logo svg {
	width: auto;
	height: var(--topbar-logo-size);
}

.topbar-logo img {
    max-height: 100%;
    width: auto;
    display: block
}

.topbar-nav ul {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 20px;
}

.topbar-nav ul li a {
	font-family: "Poppins", sans-serif;
	font-size: var(--topbar-font-size);
	font-weight: var(--topbar-font-weight);
	color: var(--topbar-text-color);
    transition: all .2s ease;
}

.topbar-nav ul li a:hover {
	color: var(--topbar-hover-color);
}

@media (max-width: 576px) {
	.topbar-nav ul li:not(:last-child) {display: none;}
}