.services-btn .icon {
	width: 20px;
	height: 20px;
	background: url('/assets/images/icons/fi-sr-apps.svg');
	background-repeat: no-repeat;
	background-size: cover;
}

.services-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 7px 23px;
	background: #fff;
	border-radius: 24px;
	font-weight: 500;
	transition: .3s;
}

.services-btn:hover {
	background: #f3bc83;
	transition: .3s;
}

.header-menu {
	display: flex;
	align-items: center;
	gap: 30px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.header-menu a {
	text-decoration: none;
	font-family: "Montserrat", sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 175%;
	color: #121212;
	transition: .3s;
	position: relative;
}

.header-menu a::after {
	content: '';
	width: 100%;
	height: 1px;
	background-color: #274e83;
	transition: .3s;
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0;
}

.services-btn::after {
	display: none;
}

.header-menu a:hover::after {
	transition: .3s;
	opacity: 1;
}

.header-menu a:hover a {
	transition: .3s;
	color: #123262;
}

.header-container-row {
	display: flex;
	gap: 30px;
	align-items: center;
}


.services-menu {
	display: none;
	position: absolute;
	border-radius: 32px;
	padding: 30px;
	background: #fff;
	z-index: 1000;
	max-width: 1015px;
	justify-self: center;
	top: 85%;
}

.services-menu.active {
	display: flex;
	gap: 27px;
}

.services-menu__list {
	display: flex;
	gap: 15px;
	flex-direction: column;
	width: 100%;
}

.services-menu__list a {
	display: block;
	border-bottom: 1px solid rgba(221, 227, 233, 0);
	padding: 10px 0px;
	font-family: "Montserrat", sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 130%;
	color: #121212;
}

.services-menu__list a::after {
	display: none;
}

/* === БУРГЕР-КНОПКА === */
.burger {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 28px;
	height: 20px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1200;
}

.burger span {
	display: block;
	height: 3px;
	width: 100%;
	background: #123262;
	border-radius: 3px;
	transition: 0.3s;
}

.burger.active span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.burger.active span:nth-child(2) {
	opacity: 0;
}

.burger.active span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100vh;
	background: #fff;
	display: flex;
	flex-direction: column;
	padding: 0 18px;
	justify-content: flex-start;
	transition: right 0.4s ease;
	z-index: 1100;

}

.mobile-menu.second-open {
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.mobile-menu__header-burger {
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	padding: 0;
}

.mobile-menu__header {
	display: flex;
	justify-content: space-between;
	padding: 18px 0;
}


.mobile-menu.active {
	display: flex;
	right: 0;
}

.mobile-menu-section {
	display: flex;
	flex-direction: column;
	gap: 40px;
	position: relative;
	/* overflow: visible; */
}

.mobile-menu-section-main {
	display: flex;
	flex-direction: column;
	gap: 40px;
	/* position: relative;
	overflow: visible; */
}

.mobile-menu-section-main,
.mobile-menu-second {
	transition: all 0.3s ease;
	width: 100%;
}

.mobile-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.mobile-menu a {
	font-family: "Montserrat", sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 175%;
	color: #123262;
}

.mobile-menu__info {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 30px 0;
	height: 100%;
	justify-content: flex-end;
}

.mobile-menu__contact {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.mobile-menu__mail {
	display: flex;
	gap: 8px;
	align-items: center;
}

.mobile-menu__location {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.mobile-menu__location-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.mobile-menu__location-item:nth-child(2) {
	align-items: flex-start;
}

.mobile-menu__location-item-icon:nth-child(2) {
	position: relative;
	top: 3px;
}

.mobile-menu__location-item-icon,
.mobile-menu_icon {
	width: 20px;
	height: 20px;
}

.mobile-menu__contact a {
	font-family: "Montserrat", sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 125%;
	color: #121212;
}

.mobile-menu__mail a {
	font-family: "Montserrat", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 143%;
	color: #121212;
	text-decoration: none;
}

.mobile-menu__location-item span,
.mobile-menu__location-item a {
	font-family: "Montserrat", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 171%;
	color: #121212;
}

.mobile-menu-second {
	display: flex;
	flex-direction: column;
	gap: 30px;

	background: #fff;
	position: relative;
	top: 0;
	left: 100%;
	width: 100%;
}

.hidden {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 100%;
	transition: all 0.3s ease;
	pointer-events: none;
}

.mobile-menu-second-list {
	gap: 15px !important;
}

.mobile-menu-second-list li {
	border-bottom: 1px solid #dde3e9;
	padding: 10px 0px;
}

.mobile-menu-second-list li:last-child {
	border-bottom: none;
}

.mobile-menu-second-list li a {
	font-family: "Montserrat", sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 130%;
	color: #121212;
}

@media (max-width: 992px) {
	.header-container-row {
		display: none;
	}

	.burger {
		display: flex;
	}
}

@media (max-width: 1440px) {
	.header-search {
		position: relative;
		/* width: 100%; */
		flex-shrink: 0;
	}

	.header-search input {
		border: 1px solid #dde3e9;
		background: rgba(255, 255, 255, 0.25);
		color: #325b92;
		font-size: 16px;
		line-height: 175%;
		font-family: "Montserrat", sans-serif;
		font-style: normal;
		font-weight: 500;
	}

	.header-search input::placeholder {
		font-size: 16px;
		line-height: 175%;
		color: #325b92;
		font-family: "Montserrat", sans-serif;
		font-style: normal;
		font-weight: 500;
	}
}

@media (max-width: 768px) {
	.text-muted:nth-child(1) {
		display: none;
	}

	.mobile-menu.active .header-top {
		display: none !important;
	}

	.services-btn {
		padding: 0;
		position: relative;
		cursor: pointer;
	}

	.services-btn::after {
		content: url("data:image/svg+xml;charset=UTF-8,%3csvg width='12' height='24' viewBox='0 0 12 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.1571 12.7116L4.50006 18.3686L3.08606 16.9546L8.03606 12.0046L3.08606 7.05463L4.50006 5.64062L10.1571 11.2976C10.3445 11.4852 10.4498 11.7395 10.4498 12.0046C10.4498 12.2698 10.3445 12.5241 10.1571 12.7116Z' fill='%23325B92' /%3e%3c/svg%3e");
		display: flex;
		height: 24px;
		right: 0;
		position: absolute;
		width: 12px;
	}

	.services-btn:hover {
		background: transparent;
		border-radius: 0%;
	}

	.mobile-menu__back {
		font-family: "Montserrat", sans-serif;
		font-style: normal;
		font-weight: 500;
		font-size: 16px;
		line-height: 175%;
		color: #aeb7c6;
		display: flex;
		gap: 6px;
		align-items: center;
		cursor: pointer;
	}

	.mobile-menu__back::before {
		content: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20viewBox%3D%220%200%2012%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M1.84294%2012.7116L7.49994%2018.3686L8.91394%2016.9546L3.96394%2012.0046L8.91394%207.05463L7.49994%205.64062L1.84294%2011.2976C1.65547%2011.4852%201.55015%2011.7395%201.55015%2012.0046C1.55015%2012.2698%201.65547%2012.5241%201.84294%2012.7116Z%22%20fill%3D%22%23AEB7C6%22%20%2F%3E%0A%3C%2Fsvg%3E");
		width: 12px;
		height: 24px;
	}

	.header-search {
		width: 100%;
	}
}