.header-template-3 {
	background: #fff;
	border-bottom: 1px solid #eceef2;
	position: relative;
	z-index: 100;
}

.header-template-3 .header-3-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 72px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.header-template-3 .header-3-logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: #101828;
	font-weight: 700;
	font-size: 18px;
}

.header-template-3 .header-3-logo img {
	max-height: 36px;
	width: auto;
	display: block;
}

.header-template-3 .header-3-logo .header-3-logo-text {
	font-size: var(--ahura-logo-text-font-size, 18px);
	font-weight: 700;
	color: inherit;
	display: inline-block;
	margin: 0;
	padding: 0;
	line-height: 1.3;
	text-decoration: none;
}

.header-template-3 .header-3-nav {
	flex: 1;
	display: flex;
	justify-content: center;
}

.header-template-3 .header-3-menu {
	display: flex;
	align-items: center;
	gap: 8px 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.header-template-3 .header-3-menu > li {
	position: relative;
}

.header-template-3 .header-3-menu > li > a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 0;
	color: #344054;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	transition: color .2s ease;
}

.header-template-3 .header-3-menu > li > a:hover,
.header-template-3 .header-3-menu > li.current-menu-item > a {
	color: #101828;
}

.header-template-3 .header-3-menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	inset-inline-start: 0;
	min-width: 180px;
	margin: 0;
	padding: 8px 0;
	list-style: none;
	background: #fff;
	border: 1px solid #eceef2;
	border-radius: 10px;
	box-shadow: 0 12px 30px rgba(16, 24, 40, .08);
	z-index: 20;
}

.header-template-3 .header-3-menu > li:hover > .sub-menu {
	display: block;
}

.header-template-3 .header-3-menu .sub-menu a {
	display: block;
	padding: 8px 14px;
	color: #344054;
	text-decoration: none;
	font-size: 14px;
}

.header-template-3 .header-3-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.header-template-3 .header-3-login {
	color: #344054;
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	white-space: nowrap;
}

.header-template-3 .header-3-login:hover {
	color: #101828;
}

.header-template-3 .header-3-actions .h-btn,
.header-template-3 .header-3-actions #action_link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 8px 16px;
	border-radius: 999px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
}

.header-template-3 .header-3-menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 0;
	background: #f2f4f7;
	border-radius: 10px;
	cursor: pointer;
	color: #101828;
}

.header-template-3 .hide-desktop {
	display: none;
}

@media (max-width: 991.98px) {
	.header-template-3 .hide-mobile {
		display: none !important;
	}
	.header-template-3 .hide-desktop {
		display: inline-flex;
	}
	.header-template-3 .header-3-inner {
		min-height: 64px;
	}
}
