#header {
	background: #fff;
	transition: all 0.5s;
	z-index: 997;
	box-shadow: 2px 0px 5px 0px rgb(0 0 0 / 20%);
}

#header .logo {
	font-size: 28px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-family: var(--font-family-poppins);
	border: none;
}

a.close-nav {
	position: absolute;
	right: 5px;
	top: 5px;
	border-radius: 50%;
	z-index: 1;
	padding: 0;
}

@media (max-width: 768px) {
	#header .logo {
		display: flex;
		align-items: center;
	}
}

.logo.logo-text {
	letter-spacing: 4px !important;
	color: var(--black-2);
}

#header .logo a {
	color: var(--primary);
}

#header .logo img {
	max-height: 60px;
}

header .btn,
header .form-control {
	padding: 6px 12px;
}

/*--- Background Styles ---*/
.bg-gradient-green,
.bg-gradient-blue {
	position: relative;
}

.bg-gradient-green::after,
.bg-gradient-blue::after {
	content: '';
	background: linear-gradient(90deg, rgba(38, 83, 162, 0.6) 0%, rgba(38, 83, 162, 0) 100%);
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1;
}

.bg-gradient-green::after {
	background: linear-gradient(90deg, rgba(50, 118, 58, 0.6) 0%, rgba(50, 118, 58, 0) 100%);
}

#header .dropdown-menu {
	box-shadow: 0px 3px 24px 0px #231F2029;
	border: none;
	transform: translate(-0.40625px, 50px) !important;
}

@media (max-width: 768px) {
	#header .dropdown-menu.mobile-open {
		transform: none !important;
		position: relative;
		display: block;
		margin-left: 20px;
		box-shadow: none;
	}
}

#header .dropdown-menu li {
	display: flex;
	align-items: center;
}

#header .dropdown-item {
	font-size: 14px;
	font-weight: 400;
	line-height: 18px;
	padding: 10px 20px;
}

#header .dropdown-item img {
	width: 20px;
	aspect-ratio: 1/1;
	margin-right: 10px;
}

.dropdown-div {
	display: none;
	position: absolute;
	background-color: #FFF;
	width: 346px;
	overflow: auto;
	z-index: 1;
	max-height: 200px;
	text-align: left;
	height: 200px;
	box-shadow: 0px 3px 12px 0px #2653A23D;
	border-radius: 5px;
}

.dropdown-div a {
	color: black;
	padding: 6px 12px;
	text-decoration: none;
	display: block;
}

.dropdown-div a:hover {
	background-color: #2E9D643D;
}

.header-right .mobile-header-right {
	display: flex;
	align-items: baseline;
	justify-content: space-evenly;
	align-content: center;
	flex-wrap: nowrap;
	flex-direction: row;
}

@media (max-width: 640px) {
  .header-right {
		width: auto;
	}
}
