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

#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;
}

/******* 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: 100%;
	/* height: 100px; */
	/* max-width: 1500px; */
	margin: 0 auto;
	margin-top: 100px;
	
	background: rgb(38, 68, 77);
	color: #AAAAAA;

	font-size: 14px;
}


#footer_elements_container {
	display: flex;
	justify-content: space-between;
	/* align-items: center; */
	height: 100%;

	padding: 50px 0;
	margin: 0 auto;
    width: 95%;
    max-width: 1500px;
    z-index: 5;
}

#footer_elements_container .rightFooter {
	display: flex;
	flex-direction: column;
}


.footerElement {
	/* margin-left: 40px; */
	line-height: 1.6em;
}


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

	#footer_container {
		font-size: 18px;
	}

	#footer_elements_container {

		flex-direction: column;
		gap: 50px;
		width: 90%;

	}



}



/******* 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);
}