.lgw-service-menu {
	--lgw-accent: #2b93cb;
	--lgw-indicator: #89c9df;
	--lgw-ink: #284d62;
	--lgw-line: #dce9ef;
	--lgw-menu-line: #2b93cb;
	--lgw-panel: #fff;
	position: relative;
	width: 100%;
	color: var(--lgw-ink);
	font-family: "DM Sans", Arial, sans-serif;
}

.lgw-service-menu,
.lgw-service-menu * {
	box-sizing: border-box;
}

.lgw-service-menu a,
.lgw-service-menu button {
	font: inherit;
	color: inherit;
}

.lgw-menu {
	width: 100%;
	padding: 0;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--lgw-line);
	display: grid;
	grid-template-columns: repeat(var(--lgw-menu-items, 1), minmax(0, 1fr));
	gap: 0;
}

.lgw-mobile-toggle,
.lgw-mobile-menu {
	display: none;
}

.lgw-menu__home,
.lgw-menu__trigger {
	width: 100%;
	min-width: 0;
	height: 58px;
	padding: 0 10px;
	border: 0;
	border-radius: 0;
	background: transparent;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	text-decoration: none;
	color: var(--lgw-ink);
	font-family: "DM Sans", Arial, sans-serif;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.2;
	text-transform: none;
	letter-spacing: .01em;
	white-space: normal;
	cursor: pointer;
	transition: color .18s ease;
}

.lgw-menu__home::after,
.lgw-menu__trigger::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -1px;
	width: 0;
	height: 1px;
	background: var(--lgw-menu-line);
	transform: translateX(-50%);
	transition: width .2s ease;
}

.lgw-menu__home:hover,
.lgw-menu__home:focus-visible,
.lgw-menu__trigger:hover,
.lgw-menu__trigger:focus-visible,
.lgw-menu__trigger.is-active {
	background: transparent;
	color: var(--lgw-accent);
	box-shadow: none;
	outline: none;
}

.lgw-menu__home:hover::after,
.lgw-menu__home:focus-visible::after,
.lgw-menu__trigger:hover::after,
.lgw-menu__trigger:focus-visible::after,
.lgw-menu__trigger.is-active::after {
	width: 30px;
}

.lgw-mega[hidden] {
	display: none !important;
}

.lgw-mega {
	margin: 0;
	border: 0;
	border-top: 1px solid var(--lgw-line);
	border-bottom: 1px solid var(--lgw-line);
	border-radius: 0;
	background: var(--lgw-panel);
	box-shadow: none;
	overflow: hidden;
	z-index: 20;
}

.lgw-mega--container {
	width: 100%;
}

.lgw-mega--viewport {
	width: 100vw;
	margin-left: calc(50% - 50vw);
}

@supports (width: 100dvw) {
	.lgw-mega--viewport {
		width: 100dvw;
		margin-left: calc(50% - 50dvw);
	}
}

.lgw-mega__head {
	min-height: 68px;
	padding: 0 48px;
	background: var(--lgw-panel);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	border-bottom: 1px solid var(--lgw-line);
}

.lgw-mega__title {
	margin: 0;
	color: var(--lgw-ink);
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 26px;
	font-weight: 600;
	line-height: 1.1;
}

.lgw-mega__catalog {
	color: var(--lgw-accent) !important;
	font-family: "DM Sans", Arial, sans-serif;
	font-size: 10px;
	font-weight: 600;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: .08em;
	text-decoration: none;
}

.lgw-mega__catalog:hover,
.lgw-mega__catalog:focus-visible {
	text-decoration: underline;
	text-underline-offset: 4px;
	outline: none;
}

.lgw-mega__grid {
	padding: 14px 48px 26px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0 clamp(24px, 3vw, 48px);
}

.lgw-mega__service {
	min-height: 48px;
	padding: 10px 2px;
	border-bottom: 1px solid #e3edf5;
	border-bottom: 1px solid color-mix(in srgb, var(--lgw-line) 80%, white);
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--lgw-ink);
	font-family: "DM Sans", Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
	text-align: left;
	text-decoration: none;
}

.lgw-mega__service::after {
	content: "";
	flex: 0 0 5px;
	width: 5px;
	height: 5px;
	margin-left: 12px;
	border-radius: 50%;
	background: var(--lgw-indicator);
	transition: background-color .2s ease, transform .2s ease;
}

a.lgw-mega__service:hover,
a.lgw-mega__service:focus-visible {
	color: var(--lgw-accent);
	outline: none;
}

a.lgw-mega__service:hover::after,
a.lgw-mega__service:focus-visible::after {
	background: var(--lgw-accent);
	transform: scale(1.4);
}

@media (max-width: 1100px) {
	.lgw-mega__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.lgw-mega__head {
		padding: 0 17px;
	}

	.lgw-mega__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding: 10px 17px 20px;
	}

	.lgw-mega__catalog {
		font-size: 9px;
	}
}

@media (max-width: 767px) {
	body.lgw-mobile-menu-is-open {
		overflow: hidden;
	}

	.lgw-service-menu .lgw-menu,
	.lgw-service-menu > .lgw-mega {
		display: none !important;
	}

	.lgw-mobile-toggle {
		width: 44px;
		height: 44px;
		padding: 0;
		border: 0;
		background: transparent;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 5px;
		color: var(--lgw-ink);
		cursor: pointer;
	}

	.lgw-mobile-toggle span {
		width: 23px;
		height: 1.5px;
		border-radius: 2px;
		background: currentColor;
		transition: width .2s ease, background-color .2s ease;
	}

	.lgw-mobile-toggle span:nth-child(2) {
		width: 17px;
	}

	.lgw-mobile-toggle:hover,
	.lgw-mobile-toggle:focus-visible {
		color: var(--lgw-accent);
		outline: none;
	}

	.lgw-mobile-toggle:hover span:nth-child(2),
	.lgw-mobile-toggle:focus-visible span:nth-child(2) {
		width: 23px;
	}

	.lgw-mobile-menu[hidden] {
		display: none !important;
	}

	.lgw-mobile-menu {
		position: fixed;
		z-index: 999999;
		inset: 0;
		background: rgba(40, 95, 125, .34);
		display: block;
		opacity: 0;
		transition: opacity .24s ease;
	}

	.lgw-mobile-menu.is-open {
		opacity: 1;
	}

	.lgw-mobile-menu__drawer {
		width: min(420px, 91vw);
		height: 100%;
		margin: 0;
		background: var(--lgw-panel);
		display: flex;
		flex-direction: column;
		transform: translateX(-100%);
		transition: transform .28s ease;
	}

	.lgw-mobile-menu.is-open .lgw-mobile-menu__drawer {
		transform: none;
	}

	.lgw-mobile-menu__head {
		min-height: 72px;
		padding: 0 20px;
		border-bottom: 1px solid var(--lgw-line);
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 20px;
	}

	.lgw-mobile-menu__head strong {
		font-family: "Cormorant Garamond", Georgia, serif;
		font-size: 25px;
		font-weight: 600;
		line-height: 1;
	}

	.lgw-mobile-menu__close {
		width: 38px;
		height: 38px;
		padding: 0;
		border: 1px solid var(--lgw-line);
		border-radius: 50%;
		background: transparent;
		color: var(--lgw-ink);
		font-size: 22px;
		line-height: 1;
		cursor: pointer;
	}

	.lgw-mobile-menu__content {
		flex: 1 1 auto;
		min-height: 0;
		padding: 7px 20px 24px;
		overflow-y: auto;
		overscroll-behavior: contain;
	}

	.lgw-mobile-menu__home,
	.lgw-mobile-menu__trigger {
		width: 100%;
		min-height: 52px;
		padding: 0;
		border: 0;
		border-bottom: 1px solid var(--lgw-line);
		background: transparent;
		display: flex;
		align-items: center;
		justify-content: space-between;
		color: var(--lgw-ink);
		font-family: "DM Sans", Arial, sans-serif;
		font-size: 11px;
		font-weight: 600;
		line-height: 1.25;
		text-align: left;
		text-transform: uppercase;
		letter-spacing: .045em;
		text-decoration: none;
		cursor: pointer;
	}

	.lgw-mobile-menu__trigger b {
		flex: 0 0 auto;
		color: var(--lgw-accent);
		font-size: 16px;
		font-weight: 400;
		transition: transform .2s ease;
	}

	.lgw-mobile-menu__trigger.is-active {
		color: var(--lgw-accent);
	}

	.lgw-mobile-menu__trigger.is-active b {
		transform: rotate(45deg);
	}

	.lgw-mobile-menu__services[hidden] {
		display: none !important;
	}

	.lgw-mobile-menu__services {
		padding: 7px 0 12px 13px;
		border-bottom: 1px solid var(--lgw-line);
	}

	.lgw-mobile-menu__services a,
	.lgw-mobile-menu__services > span {
		min-height: 39px;
		padding: 8px 7px 8px 0;
		display: flex;
		align-items: center;
		color: var(--lgw-ink);
		font-family: "DM Sans", Arial, sans-serif;
		font-size: 12px;
		font-weight: 400;
		line-height: 1.35;
		text-decoration: none;
	}

	.lgw-mobile-menu__services a:hover,
	.lgw-mobile-menu__services a:focus-visible {
		color: var(--lgw-accent);
		outline: none;
	}

	.lgw-mobile-menu__footer {
		margin-top: auto;
		padding: 16px 20px;
		border-top: 1px solid var(--lgw-line);
	}

	.lgw-mobile-menu__catalog {
		min-height: 45px;
		padding: 0 16px;
		background: var(--lgw-accent);
		display: flex;
		align-items: center;
		justify-content: center;
		color: #fff;
		font-family: "DM Sans", Arial, sans-serif;
		font-size: 10px;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: .07em;
		text-align: center;
		text-decoration: none;
	}
}

@media (max-width: 480px) {
	.lgw-menu {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lgw-mega__head {
		min-height: 62px;
	}

	.lgw-mega__grid {
		grid-template-columns: 1fr;
	}

	.lgw-mega__catalog {
		max-width: 115px;
		text-align: right;
	}
}
