/* navbar container */
#nav_container {
	position: fixed;
	top: 0;
	left: 0px;
	width: 100%;
	/* margin: 0px auto;
	display: flex;
	align-items: center;
	justify-content: center; */
	background: white;
	/* z-index: 10; */
	z-index: 101;
}

#nav_container_bg {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: white;
}

/******* menu *******/
#menu_holder {
	position: relative;
	margin: auto;
	width: 95%;
	max-width: 1500px;
	z-index: 5;
}

#desktop_menu_holder {
	/* color: #000; */
	width: 100%;
	max-width: 1500px;
	margin: auto;
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: space-between;
	box-sizing: border-box;
	padding: 30px 0px 25px;
	position: relative;
	z-index: 1;
}

.subsubMenuCol li {
    list-style-type: none;
	border-bottom:0; 
}

.jumpLabels {
    position: fixed;
    left: 365px;
    top: 25px;
    z-index: 1001;
}
	.jumpLabels ul {
	    list-style-type: none;
	}
	
	.jumpLabels li {
	    box-sizing: border-box;
	    height: 0;
	    width: fit-content;
	    background-color: white;
	    overflow: hidden;
	}
	
	.jumpLabels li:has(a:focus) {
	  height: fit-content;
	  visibility: visible;
	  overflow: auto;
	  padding: 5px;
	}

/******* end menu *******/

/******* mobile menu  *******/



@media screen and (max-width: 1100px) {}



@media screen and (max-width: 950px) {}

@media screen and (min-width: 951px) {}

@media screen and (max-width: 600px) {}

/******* end mobile menu  *******/


/******* Footer *******/


#footer_container {
	width: 95%;
	height: 100px;
	background: white;
	max-width: 1500px;
	margin: 0 auto;
	margin-top: 100px;
}


#footer_elements_container {
	display: flex;
	justify-content: flex-end;
}


.footerElement {
	margin-left: 40px;
}



/******* end Footer *******/




/* fixed postion elements */
#overlay_bg {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(255, 255, 255, 0.8);
	z-index: 10;

	font-size: 36px;
	/* display: flex; */
	flex-direction: column;
	align-items: center;
	justify-content: center;

}

.mobileMenuButton {
	height: 80px;
}

.close_btn {
	width: 40px;
	height: 50px;
	position: fixed;
	top: 30px;
	right: 20px;
	background: transparent;
	margin-left: 10px;
	cursor: pointer;
	z-index: 14;
	display: none;
}

.overlay_hr {
	transition: all ease-out 0.5s;
	width: 100%;
	border: none;
	border-radius: 3px;
	position: absolute;
	background: #1a1a1a;
	/* background-image: linear-gradient(90deg, #ff2da1 20%, #ff0023 80%); */
	top: 10%;
	height: 2px;
}

.close_btn #overlay_hr1 {
	transform: rotate(45deg);
}

.close_btn #overlay_hr2 {
	transform: rotate(-45deg);
}

#menu_search_container {
	margin-right: 10px;
}

#menu_search_container {
	display: flex;
    align-items: center;
    position: absolute;
    top: -3px;
    right: 9px;
    height: 38px;
    /* background: white; */
    padding: 0 0 0 0px;
}



.searchPlaceHolder {
	height: 100%;
	width: 50px;

	position: relative;

	display: flex;
	justify-content: center;
	align-items: center;
}

.footerLinksWrapper {
	display: flex;
	flex-direction: column;
	gap: 1rem; /* or whatever spacing you want */
}

.footerLinksRow {
	display: flex;
	justify-content: space-between; /* or use center or start depending on design */
	gap: 1rem; /* spacing between links */
}
#search_icon {
	width: 25px;
	height: 25px;
	margin-left: 15px;
	cursor: pointer;
	background: none;
    border: 0;
}

#search_icon .cls-2 {
	stroke: #000;
}

#menu_search_input {
	font-size: 18px;
	height: 24px;
	/*width: 0;*/
	padding: 0;
	margin: 0;
	border: 0;
	transition: all 0.3s ease-in-out;
	border-bottom: 1px solid black;
}

#menu_search_input.active {
	width: 400px;
	padding: 2px;
	background: white;
}


#mobile_menu_search_container {
	display: flex;
    align-items: center;  
    height: 48px;
    background: white;
    padding: 10px 0 10px 0px;
}

#mobile_search_icon {
	width: 25px;
	height: 25px;
	margin-left: 0px;
	cursor: pointer;
}

#mobile_search_icon .cls-2 {
	stroke: #000;
}

#mobile_menu_search_input {
	font-size: 18px;
	height: 24px;
	width: 0;
	padding: 0;
	margin: 0;
	border: 0;
	transition: all 0.3s ease-in-out;
	border-bottom: 1px solid black;
}

#mobile_menu_search_input.active {
	width: 400px;
	padding: 2px;
}




