.al-header {
	background: #fff;
	height: 48px;
	position: sticky;
	top: 0;
	width: 100%;
	filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.1));
	z-index: 10;
}
.al-header-section {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 12px 16px;
}
.al-header .al-wrap {
	padding: 0;
}
.al-nav {
	position: relative;
}
.al-nav-subnav {
	overflow: hidden;
	height: 0;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 100%;
	left: -16px;
	background: #fff;
}
.al-nav-toggle {
	display: block;
}
.al-header .al-btn {
	margin-left: auto;
	max-width: 140px;
	height: 24px;
	font-size: 12px;
}
.al-header-logo {
	max-width: 138px;
}
.al-header-logo img {
	display: block;
	max-width: 100%;
}
.al-nav-toggle:active + .al-nav-subnav, .al-nav-toggle:hover + .al-nav-subnav {
	overflow: inherit;
	height: auto;
	opacity: 1;
	visibility: visible;
	padding: 12px 18px;
	display: grid;
	grid-gap: 15px;
}
.al-nav-subnav .al-nav-link {
	display: block;
	font-weight: 600;
	font-size: 16px;
	line-height: 150%;
	letter-spacing: 0.15px;
	color: #666;
	cursor: pointer;
}
.al-nav-subnav .al-nav-link:hover, .al-nav-subnav .active  .al-nav-link {
	color: #45A7C7;
}
@media (min-width: 769px) {
	.al-header, .al-header-section {
		height: 80px;
	}
	.al-nav-toggle {
		display: none;
	}
	.al-header-logo {
		max-width: none;
		order: -1;
		margin-right: auto;
	}
	.al-nav-subnav {
		overflow: inherit;
		height: auto;
		opacity: 1;
		visibility: visible;
		position: relative;
		top: auto;
		left: auto;
		padding: 0;
		display: flex;
		gap: 48px;
	}
	.al-nav-subnav .al-nav-link {
		font-weight: 400;
		font-size: 18px;
		line-height: 140%;
	}
	
}
@media (min-width: 1025px) {
	.al-header .al-btn {
		margin-left: 48px;
		max-width: none;
		height: 48px;
		font-size: 14px;
	}
}