.navbar {
/*	max-width:100%;*/
    width: 100%;
	height:80px;
	position: fixed;
    top: 0;
/*    left: 0;*/
background-color: #F2F9FF;
    z-index: 1000;
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 4px;
}

#menu-box-container {
	width:50px;
	height: 35px;
/*	border:1px solid #524C84;*/
	border-radius: 4px;
	display: flex;
/*	justify-content: space-evenly;*/
	flex-direction: column;
	background-color: #FFFDE1;
   display: none;
}

#menu-box-container > div {
	max-width: 100%;
	height: 8px;
	background-color: blue;
	margin-top: 1px;
	margin: 3px;
	background-color: #22559C;
	background-color: #22559C;
}

.logo-container {
	width:90px;
	height: 70px;
/*	border:1px solid black;*/
}

#logo {
  width:100%;
  height:100%;
}

.navitem-container {
   width:auto;
   height: auto;
/*   border:1px solid blue;*/
   display: flex;
   list-style-type: none;
   padding: 4px;
   justify-content: center;
   align-items: center;
}
/*
.navitem-container > li {
	margin:5px;
	font-size: 1.2rem;
	font-family: "Poppins", sans-serif;
   font-weight: 300;
   font-style: normal;
   color:#364F6B;
}*/

.navitem-container > li > a {
	text-decoration: none;
	margin:8px;
	font-size: 1.2rem;
	font-family: "Poppins", sans-serif;
   font-weight: 400;
   font-style: normal;
   color:#364F6B;
   padding:4px;
}

.navitem-container > li > a:hover {
	color:white;
	background-color:#19A7CE ;
}

.navitem-container > li > a:active {
	color:white;
	background-color:#146C94 ;
}


.menus > div {
  width:100%;
  height: 5px;
/*  border:1px solid blue;*/
  background-color: #0081D1;
  margin-top: 5px;
/*  display: none;*/
}

#menu-items {
  width:80vw;
  min-height: 100vh;
  position: fixed;
  z-index: 1000;
  top:0;
  left:0;
/*  border:1px solid red;*/
/*  background-color: #FFF4EA;*/
/*  background-color: #FBFBFB;*/
  background-color: #FBFBFB;
  background-color: #F4F6FF;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: none;
}

#menu-items > .close-menu-container {
  width:100%;
  height: 100px;
/*  border:1px solid black;*/
/*  position: fixed;*/
/*  top: 0;*/
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 8px;
}

.menu-logo {
  max-width:100px;
  height: 80px;
}

.menu-lists-container {
  width:100%;
  height: auto;
/*  border:1px solid black;*/
  display: flex;
  justify-content: center;

}

#close-menu {
  width:30px;
  height: 30px;
  background-color: #E8F9FF;
/*  border:1px solid black;*/
}

#close-menu-icon {
  width: 100%;
  height: 100%;
}

.nav-menus-container {
  width:300px;
  height: 400px;
/*  border:1px solid red;*/
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  list-style: none;
}

.nav-menus-container > li {
  margin-top: 30px;
/*  text-decoration: underline;*/
  text-decoration-thickness: 1px;
}

.nav-menus-container > li > a {
  text-decoration: none;
  margin: 10px;
  font-size: 1.8rem;
  font-weight: bold;
  color:#1679AB;
}



.nav-menus-container > li > a:active {
  color: white;
  background-color: #2C4E80;
  padding: 8px;
  border-radius: 4px;
}

#cta-btn {
	max-width:150px;
	height: auto;
	font-size: 16px;
	font-weight: bolder;
	border:none;
	padding:12px;
	border-radius: 4px;
	background-color: #1D6BE0;
	color:white;
	font-family: "Poppins", sans-serif;
   font-weight: 800;
   font-style: normal;
   text-shadow: 1px 1px 2px black;
  box-shadow: 0.4px 0.4px 0.4px 0.4px black;
  text-decoration: none;
}



/*#cta-btn:hover {
  transform: scale(0.9);
}
*/
#cta-btn:active {
	transform: scale(0.9);
}



@media (max-width:412px) {
	.navitem-container {
		display: none;
	}
}


@media (max-width:1000px) {
   #menu-box-container {
		width:40px;
		height: 30px;
/*		border:1px solid #524C84;*/
		border-radius: 4px;
		display: flex;
	/*	justify-content: space-evenly;*/
		flex-direction: column;
	/*	background-color: #F5FC9E;*/
	}

	.navitem-container {
		display: none;
	}
}

@media (max-width:425px) {

  .nav-menus-container > li > a  {
    font-size: 1.5rem;
  }
  
	#cta-btn {
    max-width: 150px;
    height: auto;
    padding:8px;
	}

	#cta-btn > a {
		font-size: 1rem;
	}

	.logo-container {
		width:60px;
		height: 60px;
	}
}