/* Style the navigation bar */
.navbar {
	font-family: inherit;
	min-height: 66px;
	position: fixed;
	top: 0;
	width: 100%;
	padding: 8px 16px;
	box-sizing: border-box;
	background-color: inherit;
	z-index: 10;
	flex-wrap: nowrap;

	/* 	display: -webkit-flex;
	flex-wrap: wrap;
	align-items: center;
    -webkit-flex-wrap: wrap;
    -webkit-align-items: center;
	justify-content: center; */
}

#logo-container{
	display: flex;
	float: left;
	margin-left: 100px;
	justify-content: center;
	align-items: center;
}

#menu{
	display: flex;
	float: right;
	margin-right: 100px;
	justify-content: center;
	align-items: center;
	background-color: inherit;
	overflow: hidden;
}

#nav-icons{
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

#nav-icons a,i{
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.arrow-down{
	width: 0;
	height: 0;
	border-color: inherit;
	border-top: 7px solid;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	margin-left: 7px;
}

#login img{
	width: 26px;
	height: 26px;
	position: relative;
	overflow: hidden;
	border-radius: 50%;
	margin-right: 10px;
}

/* Navbar links */
.navbar a, i{
	padding: 0 0.5rem 0 0.2rem;
	text-decoration: none;
	cursor: pointer;
	color: inherit;
}

.navbar #hamburger {
	font-size: 26px;
	display: none;
  }

 
/* Dropdown Button */
.dropbtn {
	padding: 0 1em 0 0.3em;
	height: 50px;
	background-color: inherit;
	cursor: pointer;
	border: 0;
	display: inline-flex;
	justify-content: center;
	align-items: center;

	color: inherit;
	font-family: inherit;
	font-size: 17.6px;
	font-weight: 500;

}

/* The container <div> - needed to position the dropdown content */
.dropdown {
	background-color: inherit;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
	display: none;
	position: absolute;
	background-color: inherit;
	z-index: 11;
}

/* Links inside the dropdown */
.dropdown-content a, option{
	padding: 0.5rem 4rem 0.5rem 1.8rem;
	width: auto;

	font-family: 'Jost', sans-serif;
	font-size: 1.1rem;
	font-weight: 500;
	line-height: 2;
	text-align: inherit;
	white-space: nowrap;
	word-break: break-word;
	word-wrap: break-word;

	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;

	transition: all 0.25s ease-in-out;
	border-color: inherit;
	border-bottom: 1px solid #e6e6e6;

	text-decoration: none;
	display: block;
}

/* Change color of dropdown links on hover */
.hover .dropdown-content a:hover {
	color: white;
	border-bottom: 1px solid #6592e6 !important;
	background-color: #6592e6 !important; 
}

/* Show the dropdown menu on hover */
.hover .dropdown:hover .dropdown-content {display: block;}
.dropdown.touch .dropdown-content {display: block;}

@media screen and (max-width: 1100px) {
	.navbar #menu #nav-icons,.dropdown .dropbtn {
		display: none;
	}
	.navbar #hamburger {
		position: absolute;
		top: 12px;
		right: 0;
		display: block;
	}
	.navbar #menu #nav-icons{
		position: absolute;
		top: 21px;
		right: 45px;
		display: block;
	}
	.navbar #logo-container{
		width: auto;
		margin-left: 0;
	}
  }

@media screen and (max-width: 1100px) {
	.navbar.responsive {
		display: flex;
		flex-direction: column;
	}
	.navbar.responsive #logo-container{
		align-self: flex-start;
	}

	.navbar.responsive #menu{
		display: flex;
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		row-gap: 10px;
	}

	.navbar.responsive .dropdown {
		display: flex;
		flex-wrap: wrap;
	}
	.navbar.responsive .dropdown-content {
		width: fit-content;
		position: relative;
		align-items: center;
		justify-content: space-evenly;
		flex-wrap: wrap;
	}

	.navbar.responsive.hover .dropdown:hover .dropdown-content {
		display: flex !important;
	}

	.dropdown.touch .dropdown-content {
		display: flex !important;
	}

	.navbar.responsive .dropdown-content a{
		text-align: center;
		padding: 0.5rem 0;
		margin-right: 10px;
	}
	.navbar.responsive .dropbtn {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		width: 100%;
		text-align: center;
	}
}

/* @media (hover: none) and (pointer: coarse) {
	.dropdown:hover .dropdown-content {display: none;}
	.dropdown:focus .dropdown-content {display: block;}
}
 */