.info {
	background-color: var(--secondary-color);
}

.info-wrapper {
	width: 85%;
	margin: auto;
}

.phone-number-header-link {
	background-color: var(--primary-color);
	color: white;
	cursor: pointer;
}

#header {
	position: sticky;
	top: -5px;
	left: 0;
	z-index: 999999;
}

.info-wrapper {
	display: flex;
	justify-content: center;
}

.other-info-wrapper {
	display: none;
	align-items: center;
}

.other-info-list {
	display: flex;
	gap: 10px;
}

/* .other-info-list a {
	display: inline-block;
} */

.other-info-list li {
	display: flex;
	justify-content: center;
	align-items: center;
}

.center-icon {
	display: flex;
	justify-content: center;
	align-items: center;
}

.location {
	color: white;
}

.navigation {
	/* padding: 1.5rem 0px; */
	background-color: white;
}

.navigation-links {
	position: absolute;
	z-index: 10000;
	left: 0; /* Align with the left edge of the relative div */
	bottom: 0; /* Move up halfway from the bottom of the relative div */
	transform: translateY(100%);
	/* display: none; */
	flex-direction: column;
	width: 100%;
	transition: 0.4s opacity ease-in-out;

	opacity: 0;
	pointer-events: none;
}

.navigation-links.active {
	opacity: 1;
	pointer-events: initial;
}

.navigation-links.active {
	display: flex;
}

.navigation-links > li {
	width: 100%;
	background: white;
	/* padding: 35px; */
	height: 100px;
	text-align: center;
	border-bottom: 1px solid #dbdbdb;
}

.navigation-links a {
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
}

.navigation a {
	color: #4f4f58;
}

.navigation-wrapper {
	width: 90%;
	margin: auto !important;
	display: flex;
	justify-content: space-between;
	margin: 20px 0px;
}

.logo-img {
	width: 90px;
	height: 90px;
}

.hamburger-icon {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
}

.hamburger-line {
	height: 1.5px;
	background-color: black;
	transition: 0.1s all ease-out;
}

.hamburger-line-top.active {
	transform: rotate(45deg) translate(0px, -4px);
	transform-origin: left;
}

.hamburger-line-middle.active {
	opacity: 0;
}

.hamburger-line-bottom.active {
	/* transform: rotate(135deg) translate(-5px, 5px); */
	transform: rotate(-45deg) translate(7px, -15px);
	transform-origin: right;
	/* margin-left: -15px; */
}

.hamburger-menu-btn {
	cursor: pointer;
}

.hamburger-menu-text {
	font-size: 1.2rem;
}

.hamburger-menu-wrapper {
	display: flex;
	gap: 5px;
}
.hamburger-icon {
	width: 25px;
}

@media only screen and (min-width: 950px) {
	.other-info-wrapper {
		display: flex;
	}

	.navigation-wrapper {
		width: 80%;
	}

	.info-wrapper {
		justify-content: space-between;
	}

	.hamburger-menu-btn {
		display: none;
	}

	#header {
		/* position: relative;
		z-index: -1; */

		background: transparent;
	}

	.navigation {
		position: absolute;
		/* top: 10vh; */
		top: 0;
		left: 0;
		width: 100%;
		/* background-color: transparent; */
	}

	.navigation-links > li {
		width: auto;
		padding: 0;
		/* background-color: transparent; */
		border: none;
		height: auto;
	}

	.navigation-links {
		display: flex;
		position: static;
		transform: none;
		opacity: 1;
		pointer-events: initial;
		gap: 5rem;
		justify-content: flex-end;
		flex-direction: row;
	}
}
