/* 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: 1050px) {

	#footer_container {
		font-size: 18px;
	}

	#footer_elements_container {

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

	}



}



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


