* {
	margin: 0;
	padding: 0;
}

body {
	font-family: poppins;
}
.top-bar {
	background-color: #4C2D4A ;
	color: white;
	padding: 12px;
	width: 100%;
	flex-shrink: 0;
	opacity: 0.85;
	border-bottom: 1px solid white;
}

 .top-bar-content {
	display: flex;
	color: white;
	text-decoration: none;
	gap: 16px;
	align-items: center;
	justify-content: center;
	text-wrap: nowrap;
}

.top-bar-item a {
	color: white;
	text-decoration: none;
	font-style: italic;
}

.divider {
	margin: 0 12px;
}

.top-bar-item i {
	padding: 6px;
}

.top-bar-item:hover i {
	color: orange;
}
.top-bar-item:hover a {
	color: orange;
}

@media screen and (max-width: 991px) {
	.top-bar {
		bottom: 0;
		left: 0;
		position: fixed;
		box-sizing: border-box;
		z-index: 10000;
		width: 100%;
		gap: 40px;
		}
	
	.divider {
		display: none;
		}
	
	.top-bar-item  {
		padding: 10px;
		font-size: 30px;
		width: 25%;
		box-sizing: border-box;
		}
	}


.site-header {
	background-color: #4C2D4A;
	display: flex;
	opacity: 0.8;
	font-style: italic;
	font-size: 18px;
	font-family: poppins;
}

.logo {
	font-size: 30px;
	color: white;
	text-decoration: none;
	padding: 14px 16px;
}

.logo a {
	color: white;
	text-decoration: none;
	font-style: italic;
}
.navbar  {
	color: white;
	
}

.navbar ul {
	display: flex;
	list-style-type: none;
	color: white;
}
.navbar ul li {
	padding: 14px 16px;
}

.navbar ul a {
	color: white;
	text-decoration: none;
	text-transform: uppercase;
	padding: 14px 16px;
	text-wrap: nowrap;
}

.navbar ul a:hover {
	background-color: white;
	color: #4C2D4A;
}

.right-side-header button {
	padding: 8px 12px;
	color: white;
	border: 1px solid white;
	font-size: 20px;
	font-style: italic;
	background-color: #4C2D4A;
	margin: 14px;
	padding: 4px 6px;
	box-sizing: border-box;
}
.right-side-header button:hover {
	background-color: white;
	border-radius: 30px;
	color: #333;
	padding: 4px 16px;
	transition: 0.3s ease;;
}
.right-side-header a {
	float: right;
	display: flex;
	margin-top: 12px;
	text-decoration: none;
	color: white;
	padding: 14px 16px;
}

.toggle-mobile-icon {
	display: none;
}