.header {
	background-color: white;
	position: sticky;
	z-index: 999;
	top: 0;
}
.header .inner{
	display: flex;
	min-height: 100px;
	height: 100px;
	justify-content: space-between;
}

.header .logo {
	display:flex;
	justify-content: center;
	align-items: center;
}
.languageChange {
	margin:0 30px;
}
.languageChange a {
	text-decoration: none;
	cursor: pointer;
	color:#42474c;
	font-size: 16px;
	padding: 5px;
	position: relative;
}
.languageChange .current:after {
	content: "";
	position: absolute;
	bottom: 0;
	width: 50%;
	height: 3px;
	left:8px;
	background-color: #63d2af;
}
/* header nav menu begins here */
.header #nav {
	display: flex;
	align-items: center;
}
.header ul {
	list-style:none;
	background-color: white;
}
.header ul li {
	display: inline-block;
	position: relative;
	margin-left: 5px;
}
.header #navMenu > li:after {
	content: "";
	position: absolute;
	bottom: 0;
	width: 0;
	height: 3px;
	left:0;
	transition: width 1s;
	background-color: #63d2af;
}
.header #navMenu > li:hover::after {
	width:100%;
}
.header #navMenu .navCurrent:after {
	content: "";
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 3px;
	left:0;
	background-color: #63d2af;
}
.header #navRoutes {
	padding-right: 6px;
}
.header #navMenu span.icon {
	display: block;
	position: absolute;
	width: 12px;
	height: 12px;
	background-image: url("../images/down-arrow-svgrepo-com.svg");
	background-size: cover;
	bottom: calc(50% - 6px);
	right: 0;
}
.header ul li a {
	text-decoration: none;
	color:#42474c;
	text-align: center;
	padding: 10px;
	display: inline-block;
	border-radius: 10px;
}

.header ul li ul.dropDown {
	min-width:100%;
	position: absolute;
	z-index: 999;
	display: none;
	width: 200px;
}
.header ul li ul.dropDown li {
	display:block;
	padding: 10px 0px;
	border-bottom: 1px solid #dedede;
	margin-left: 0;
}
.header ul li ul.dropDown li a {
	color: #696d70;
	transition: color 0.5s;
}
.header ul li:hover ul.dropDown {
	display: block;
}
.header ul li:hover ul.dropDown li:hover {
	background-color: #f5f5f5;
}
.header ul li:hover ul.dropDown li:hover a {
	color:#2a93c9;
	transition: color 0.5s;
}

.header ul li ul.dropDown li.dropCurrent {
	background-color: #f5f5f5;
}
.header ul li ul.dropDown li.dropCurrent a {
	color:#2a93c9;
}

@media (max-width: 1200px) {
	.header .inner {
		height: auto;
	}
	.languageChange {
		display: flex;
	}
	#navMenu {
		display: flex;
		flex-wrap: wrap;
	}
	#nav #navMenu > * {
		width: 33%;
	}
	.header ul li {
		margin: 0 0 5px;
	}
}
@media (max-width: 768px) {
	.header .inner {
		display: flex;
		flex-direction: column;
	}
	.header ul li a {
		padding: 5px;
	}
	#nav {
		flex-direction: column;
	}
	#nav > * {
		margin-bottom: 10px;
	}
	#nav #navMenu > * {
		width: 50%;
		margin: 0;
		text-align: center;
	}
	#nav #navMenu {
		margin: 0;
	}
}