* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Source Sans Pro', sans-serif;
	background-color: #fcfcfc;
}


header {
    position: sticky;
    top: 0;
    background: #fcfcfc;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Optional shadow for better visibility */
}

.header-nav-list.active a,
.header-nav-link.header-active {
    color: #007bff; /* Example active color */
}

.header-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 10px;
	font-size: 16px;
}

.header-nav-lists {
	display: none;
}

.header-nav-list {
	padding: 0 24px;
	list-style-type: none;
}

.header-nav-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 10vh;
}

.header-nav-link {
	text-decoration: none;
	color: #008000;
	font-size: 20px;
}
.header-nav-link:hover {
	text-decoration: underline;
	color: #00A800;
}

.header-nav-list.active > a {
	text-decoration: underline;
	color: #00A800;
}
.header-active {
	color: #00A800;
}

.header-nav-logo {
	width: 160px;
	position: relative;
	z-index: 11;
}

.header-nav-logo img {
	max-width: 100%;
}

/**Hamburger ICON **/
.header-hamburger-icon {
	width: 100px;
	height: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	cursor: pointer;
}

.header-hamburger-line-1,
.header-hamburger-line-2,
.header-hamburger-line-3 {
	background-color: #d4af37;
	width: 1.78rem;
	height: 0.2rem;
	transition: all 0.2s ease-in-out;
	position: relative;
	z-index: 10;
}

.header-hamburger-line-1,
.header-hamburger-line-2 {
	margin-bottom: 6px;
}

/* Show class to  change the state of hambuger icon cross*/
.show .header-hamburger-line-1 {
	transform: translateY(10px) rotate(135deg);
}

.show .header-hamburger-line-2 {
	opacity: 0;
}

.show .header-hamburger-line-3 {
	transform: translateY(-8.6px) rotate(-135deg);
}

/*Show */

header ul.show {
	position: fixed;
	background-color: #fff;
	top: 8vh;
	left: 0;
	height: 100%;
	width: 100%;
	margin-top: -8vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 10;
}

header ul.show li {
	margin: 1rem 0;
}

.header-btn {
	text-decoration: none;
}

.header-btn-custom {
	padding: 10px 30px;
	width: 133px;
	height: 48px;
	border-radius: 4px;
	background-color: #d4af37;
	color: #fff;

}

.header-btn-custom:hover, 
.header-btn-custom:active {
	background-color: #c9a633;
	border: 1px solid #c9a633;
}

@media (min-width: 850px) {
	.header-nav-lists {
		display: flex;
	}

	.header-hamburger-icon {
		display: none;
	}
}

@media (min-width: 1200px) {
	* {
		/*font-size: 20px;*/
	}
}

/*mobile*/
.header-scrolled .header-nav-bar {
	height: 54px;
}
.header-scrolled .header-nav-logo {
	width: 125px;
}
/* no mobile, desktop only nav height smaller */
@media (min-width: 850px) {
	.header-scrolled .header-nav-bar {
		height: 50px;
	}
	.header-scrolled .header-nav-logo {
		width: 90px;
	}
}