.header-container {
	position: sticky;
	top: 0;
	z-index: 9999; /* Always on top of everything */
	width: 100%;
	background-color: #fdfaff !important;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	border-bottom: 1px solid #746972;

	.dropdown {
		display: none;
	}
	.logo-div {
		font-size: 40px !important;
	}

	.logo-div img {
		width: 100%;
		height: 100%;
		object-fit: fill;
	}
	.logo-div a {
		color: #746972 !important;
		font-size: 3rem !important;
	}

	.links-div {
		font-size: 20px;
		text-align: right;
		margin-right: 200px;
		position: relative;
	}

	.links-div a {
		padding: 10px;
		text-decoration: none !important;
	}

	.links-div a:hover {
		border: 1px solid #fcea0f;
		border-radius: 2rem;
		text-decoration: none;
	}

	@media (max-width: 920px) {
		.dropdown {
			width: 100%;
			display: flex !important;
			flex-direction: row;
			justify-content: center;
			text-align: center;
			z-index: 1002;
		}

		.dropdown-menu {
			z-index: 9999;
		}

		.links-div {
			display: none;
		}
		.dropdown-toggle::after {
			display: none;
		}
	}
}
